@charset "UTF-8";

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.Layout {
    background-image: url('/img/background.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.Layout img {
    width: 200px;
}

.Layout .TitleSystem {
    font-weight: 900;
    font-size: 30px;
    color: #5E5E5E;
}

.Layout .nav-item {
    display: none;
}

.Layout .navbar {
    background-color: #FFF;
    border-bottom: solid 1px #F49561 !important;
}

.Layout .navbar a {
    font-weight: 900;
    font-size: 25px;
}

.Layout .navbar .dropdown {
    color: #5E5E5E !important;
    margin-right: 40px;
}

.Layout .navbar .dropdown a {
    color: #5E5E5E !important;
    padding-left: 20px;
    font-size: 20px;
}
.Layout .contentOutline {
    display: inline-flex;
    width: 100%;
    
}

.Layout .contentOutline .content {
    /*height: 100vh;*/
    /*width: calc(100% - 100px);*/
    width:100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    height: 100vh;
    padding-bottom:20px;
    /*margin-left:auto;
    margin-right:auto;*/
}

.Layout .contentOutline .content .contentBorder {
    height: 100vh;
    padding: 0;
}

.Layout .contentOutline .content .contentBorder iframe {
    height: 100vh;
}

.Layout .contentOutline .sidebar {
    padding: 0;
    width: 100px;
    background-color: #F49561;
    height: calc(100vh - 74px);
    overflow-y: auto;

}

/*.Layout .contentOutline .sidebar ::-webkit-scrollbar{
    height: 10px;
    width: 12px;
    background-color: transparent;
    &::-webkit-scrollbar-thumb;
    background-color: #66666665;
    border-radius: 10px;
    border: 3px solid #fff;
}*/
.Layout ::-webkit-scrollbar {
    height: 10px;
    width: 5px;
    background-color: transparent;
}
.Layout ::-webkit-scrollbar-thumb {
    background-color: #66666665;
    border-radius: 10px;
    /*border: 1px solid #fff;*/
}
.Layout .contentOutline .sidebar .menutext {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 19px;
    border-bottom: solid 2px #FFF;
}

.Layout .contentOutline .sidebar .menutext:hover {
    background-color: #F47029;
}

.Layout .contentOutline .sidebar .menutext a {
    color: #FFF !important;
    text-decoration: none;
}

.Layout .content {
    background-image: url('/images/background.png');
    /* background-color: black; */
}

@media (max-width: 767px) {
    .Layout .nav-item {
        display: inline-block;
        padding-left: 20px;
    }

    .Layout .contentOutline .sidebar {
        width: 0 !important;
        display: none;
    }

    .Layout .contentOutline .content {
        width: 100%;
    }
}


#loading {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    display: none;
    background: #fff;
    opacity: .5;
    transition: all 0.6s ease-out;
}

    #loading::before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #fff;
        border-color: #f89462 transparent #f89462 transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1.5s linear infinite;
        animation: animate-preloader 1.5s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
