:root {
    --syst1: #B05313;
    --aero-red:#da291c;
}
body{
    margin:0;
}
.wrapper{
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: white;
}
.login.wrapper{
    background-color: var(--aero-red);
}
.menu{
    height: 100px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: sticky;
    top: 0;
    background-color: var(--aero-red);
    z-index: 4;
}
.menu img{
    max-height: 80px;
}
.menu .navbar{
    height: 80px;
}
.menu .navbar .nav-item{
    margin-left: 5px;
}
.menu .navbar .nav-link{
    font-size: 18px;
    color: white;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    transition: 0.5s ease-in;
}
.navbar-nav .nav-link.active{
    border-bottom: 2px solid var(--aero-red) !important;
}
.menu .navbar .nav-link:hover{
    border-bottom: 2px solid var(--aero-red);
    transition: 0.5s ease-out;
}
.body{
    height: calc( 100vh - 150px );
}
.body-device{
    height: calc( 100vh - 32px );
}

.footer-device{
    height: 30px;
    border-top: 2px solid var(--PAS-green);
    background-color: white;
}
.footer{
    height: 50px;
    background-color: var(--aero-red);
}

#body_sidebar_content{
    max-width: calc(100% - 30px);
    margin-left: 15px;
    width: calc(100% - 30px);
}

#body_sidebar_content button{
    border-bottom: 2px solid gray;  
}


#body_sidebar_content button:hover{
    border-bottom: 2px solid var(--aero-red);  
}

#body_sidebar_content button.active{
    border-bottom: 2px solid var(--aero-red);
}
.side-menu-button{
    text-align: left;
    font-size: 22px;
}

.loader-container{
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    z-index:100;
    background-color: rgba(0,0,0,0.5);
}
.loader {
    height: 40px;
    width: 400px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.loader--dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    border: 0px solid white;
}
.loader--dot:first-child {
    background-color: rgb(76,141,43);
    animation-delay: 0.5s;
}
.loader--dot:nth-child(2) {
    background-color: rgb(255,199,44);
    animation-delay: 0.4s;
}
.loader--dot:nth-child(3) {
    background-color: rgb(255,103,32);
    animation-delay: 0.3s;
}
.loader--dot:nth-child(4) {
    background-color: rgb(100,168,219);
    animation-delay: 0.2s;
}
.loader--dot:nth-child(5) {
    background-color: rgb(0,92,185);
    animation-delay: 0.1s;
}
.loader--dot:nth-child(6) {
    background-color: rgb(0,47,108);
    animation-delay: 0s;
}
.loader--text {
    position: absolute;
    top: 200%;
    left: 0;
    right: 0;
    width: 4rem;
    margin: auto;
    color: white;
}
.loader--text:after {
    content: "Loading";
    font-weight: bold;
    animation-name: loading-text;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes loader {
    15% {
        transform: translateX(0);
    }
    45% {
        transform: translateX(400px);
    }
    65% {
        transform: translateX(400px);
    }
    95% {
        transform: translateX(0);
    }
}
@keyframes loading-text {
    0% {
        content: "Loading";
    }
    25% {
        content: "Loading.";
    }
    50% {
        content: "Loading..";
    }
    75% {
        content: "Loading...";
    }
}


.editor-page-container{
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: 0;
    z-index:100;
    background-color: rgba(0,0,0,0.5);
    padding: 60px;
    overflow: auto;
    display: none;
}
.editor-page-container .editor{
    width: 100%;
    background-color: white;
    border-radius: 15px;
}
.editor-page-container .editor-header{
    min-height: 60px;
    background-color: var(--aero-red);
    color: white;
    border-radius: 15px 15px 0px 0px;
}
.editor-page-container .editor-body{
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
}
.editor-page-container .editor-header button{
    margin-top: 10px;
    margin-right: 10px;
}
.editor-page-container .editor-header-content{
    padding-top: 10px;
    padding-left: 20px;
    font-size: 24px;
}

.editor-body{
    padding-bottom: 20px;
}