
	@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
	
	:root {
		--dorivit-dark-green: #00ADA7;
        --dorivit-dark-green-hover: #00918b;
        --dorivit-green: #A3E1E0;
        --dorivit-light-green: #D9F3DD;
        --allmost-black: 4#c4c4c;
	}

	html {
		height: 100%;
	}

	body {
		height: 100%;
		color: var(--allmost-black);
		font-family: 'Open Sans', sans-serif;
		font-size: 14px;
	}
	
	h1 {
		font-size: 26px;
		font-weight: 800;
        margin:5px 0 20px 0;
	}
	h2 {
		font-size: 22px;
		font-weight: 400;
        margin:25px 0 20px 0;
	}
	h3 {
		font-size: 18px;
		font-weight: 800;
        margin:20px 0 15px 0;
	}
	h4 {
		font-size: 16px;
		font-weight: 700;
	}
	h5 {
        font-size: 14px;
        font-weight: 800;
    }

    a { color: var(--dorivit-dark-green); }
    a:hover { color: var(--dorivit-dark-green-hover); }


    /* boostrap overrides */

        /* round corners */
        .btn { border-radius: 2px; }
        .form-control { border-radius: 2px; }

        /* color */
        .btn-primary {
            background-color: var(--dorivit-dark-green);
            border-color: var(--dorivit-dark-green);
        }
        .btn-primary:hover {
            background-color: var(--dorivit-dark-green-hover);
            border-color: var(--dorivit-dark-green-hover);
        }

        /* form-field-focus */
        .form-control:focus {
            box-shadow: none;
        }
        .btn:focus, .btn:active {
            outline: none !important;
            box-shadow: none !important;
        }

        /* fix padding in code block */
        .card pre {
            padding:0;
            margin:0;
        }


    /*
     * Sidebar
     */

    .sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 100; /* Behind the navbar */
        padding: 48px 0 0; /* Height of navbar */
        margin: 10px 0 0 0;
        box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    }

    .sidebar-sticky {
        position: relative;
        top: 0;
        height: calc(100vh - 48px);
        padding-top: .5rem;
        overflow-x: hidden;
        overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
    }

    @supports ((position: -webkit-sticky) or (position: sticky)) {
        .sidebar-sticky {
            position: -webkit-sticky;
            position: sticky;
        }
    }

    .sidebar .nav-link {
        font-weight: 500;
        color: #333;
    }

    .sidebar .nav-link .feather {
        margin-right: 4px;
        color: #999;
    }

    .sidebar .nav-link.active {
        color: var(--dorivit-dark-green);
    }

    .sidebar .nav-link:hover .feather,
    .sidebar .nav-link.active .feather {
        color: inherit;
    }

    .sidebar-heading {
        font-size: .75rem;
        text-transform: uppercase;
    }

    .sidebar i.icofont {
        color: #adadad;
    }

    /*
     * Navbar
     */

    .navbar-brand {
        padding-top: .75rem;
        padding-bottom: .75rem;
        font-size: 1rem;
        background-color: var(--dorivit-dark-green);
        box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
    }

    .navbar .form-control {
        padding: .75rem 1rem;
        border-width: 0;
        border-radius: 0;
    }

    .form-control-dark {
        color: #fff;
        background-color: rgba(255, 255, 255, .1);
        border-color: rgba(255, 255, 255, .1);
    }

    .form-control-dark:focus {
        border-color: transparent;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
    }

    /*
     * Content
     */

    [role="main"] {
        padding-top: 65px; /* Space for fixed navbar */
        min-height:800px;
    }

    footer {
        margin-top:30px;
        border-top: 1px dashed lightgrey;
    }

    footer a {
        color: var(--dorivit-dark-green);
    }

    footer > div {
        text-align: center;
        padding:25px 0 30px 0;
        color: #959595;
    }

    footer > div img {
        opacity: 0.5;
        filter: alpha(opacity=50); /* For IE8 and earlier */
    }

	/* auth pages */

	body.auth {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 150px;
		background: url('../images/bg-photo/login_bg.jpeg') top -200px center no-repeat;
	}

    body.auth h1 {
        padding:0;
        margin:0 0 22px 0;
        color: var(--dorivit-dark-green);
        font-weight: 100;
        text-transform: uppercase;
        font-size: 14px;
    }

    body.auth .banner {
        position: absolute;
        bottom: 130px;
        width: 100%;
    }

    body.auth .banner .container {
        background: var(--dorivit-dark-green);
        padding:20px 30px;
        border-radius: 6px;
        color:#fff;
    }

    body.auth .footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 50px;
        line-height: 50px;
        background-color: #f5f5f5;
    }

	body.auth .form-signin {
        width: 100%;
        max-width: 430px;
        padding: 10px 30px 5px 30px;
        margin: auto;
        background: rgb(229, 229, 229); /* Fallback for older browsers without RGBA-support */
        background: rgba(229, 229, 229, 0.7);
        border-radius: 0px;
        box-shadow: 0px 2px 6px rgba(0, 0, 0, .4);
        font-size:13px;
	}

    body.auth .logo { margin:5px 0 10px 0; }
    body.auth .form-signin input { margin:10px 0; }
    body.auth .form-signin button { margin:20px 0; }





