﻿.look {
    border: 1px solid red;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.has-children {
    background-color: #406990;
}

.font-consolas {
    font-family: Consolas !important;
}

/*COLORS*/
.color-white {
    color: #ffffff !important;
}

.color-grey {
    color: #818181 !important;
}

.color-black {
    color: black;
}

.background-color-green {
    background-color: #3eb733;
}

.background-color-light-green {
    background-color: #71bf6a;
}

.background-color-light-light-green {
    background-color: #2ce51c;
}

.border-color-green {
    border-color: #3eb733;
}

.border-color-light-green {
    border-color: #71bf6a;
}

.border-color-light-light-green {
    border-color: #2ce51c;
}
/*END COLORS*/

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #406990;
}

.background-lightskyblue {
    background-color: #d1e8ff;
}

.background-lightskyblue-lightskyblue {
    background-color: #e8f4ff;
}

.fill {
    height: 100%;
    width: 100%;
}

.message {
    padding: 1px, 4px, 1px, 4px;
}

/*---OVERFLOW---*/

.overflow {
    overflow-x: hidden;
    overflow-y: auto;
}

    .overflow::-webkit-scrollbar {
        height: 12px;
        width: 12px;
        background: #337ab7;
    }

    .overflow::-webkit-scrollbar-thumb {
        background: #284159;
    }

    /*IE EDGE*/
    .overflow.overflow-W {
        scrollbar-base-color: #337ab7;
        scrollbar-face-color: #284159;
        scrollbar-arrow-color: #337ab7;
        scrollbar-track-color: #337ab7;
    }

    .overflow::-ms-track {
        background: #284159;
    }

    .overflow::-ms-thumb {
        background: #284159;
    }

/*---END OVERFLOW---*/

.body-fill {
    display: flex;
}

.vertical-align-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    text-align: right;
}

.small-font {
    font-size: 11px;
}

.medium-font {
    color: #999999;
    font-size: 15px;
}

.no-padding {
    padding: 0px;
}

.padding-5 {
    padding: 5px;
}

.compact-left-padding {
    padding-left: 5px;
}

.compact-right-padding {
    padding-right: 5px;
}

.compact-vertical-top {
    padding-top: 1px;
    margin-top: 1px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.compact-vertical-bottom {
    padding-top: 0px;
    margin-top: 0px;
    padding-bottom: 1px;
    margin-bottom: 1px;
}

.margin-box {
    margin: 2px;
}

.height-20 {
    height: 20px;
}

.message {
    position: fixed;
}
/*--------SIDE BAR--------*/
#sidebar {
    top: 0px;
    left: 0px;
    bottom: 0px;
    position: fixed;
    min-width: 200px;
    max-width: 200px;
    background: #284159;
    color: #fff;
    transition: all 0.3s;
}

    #sidebar.active {
        margin-left: -200px;
    }

    #sidebar .sidebar-header {
        padding: 20px;
        background: #406990;
    }

    #sidebar ul.components {
        padding: 20px 0;
        border-bottom: 1px solid #47748b;
    }

    #sidebar ul p {
        color: #fff;
        padding: 10px;
    }

    #sidebar ul li a {
        padding: 10px;
        font-size: 1.1em;
        display: block;
    }

        #sidebar ul li a:hover {
            color: #284159;
            background: #fff;
        }

    #sidebar ul li.active > a, a[aria-expanded="true"] {
        color: #fff;
        background: #406990;
    }

.wrapper {
    display: flex;
    align-items: stretch;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -200px;
    }

        #sidebar.active {
            margin-left: 0;
        }
}
/*--------END SIDE BAR--------*/

.hover-change-background:hover {
    background-color: #406990;
}

a[data-toggle="collapse"] {
    position: relative;
}

a[aria-expanded="false"]::before, a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}

a[aria-expanded="true"]::before {
    content: '\e260';
}

/*--------CHILD PAGE--------*/

#childPage {
    left: 200px;
    right: 0px;
    top: 60px;
    bottom: 0px;
    transition: all 0.3s;
    position: absolute;
}

    #childPage.active {
        left: 0px;
    }

@media (max-width: 768px) {
    #childPage {
        left: 0px;
    }

        #childPage.active {
            left: 200px;
        }
}
