﻿@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

* {
    box-sizing:border-box;
}

body {
    margin: 0;
    font-size: .875rem;
    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;
}*/

#sidebar a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.wrapper {
    display: flex;
    /*width: 100%;*/
}

.menu-header {
    font-size: 1.5rem;
}

#content {
    width: calc(100% - 250px);
    padding: 0px 30px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#content.active {
    width: 100%;
}

.content-body {
    margin-top: 20px;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #619081;
    color: #fff;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#bcib-logo {
    width: 300px;
    margin: 5px 0;
    padding-bottom: 15px;
}

#report-header {
    display: flex;
    justify-content: space-between;

}

#report-header ul {
    margin-top: 20px;
    border: 1px solid #808080;
    color: #808080;
    padding-right: 5px;
}

#report-header li {
    list-style: none;
    text-align: right;
}

.survey-header {
    display: flex;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }

    #sidebar.active {
        margin-left: 0;
    }
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #619081;
}

#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: #7386D5;
    background: #fff;
}

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #619081;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #619081;
}

.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);
}

.hiddenText input[type="check"] + label {
    display: none;
}

.card-row {
    display: flex;
    align-content: stretch;
    align-items: stretch;
}

.card {
    padding: 15px;
    margin: 5px;
    flex-grow: 1;
}

a {
    color: inherit;
    text-decoration: underline;
}

img.bcib-logo {
    width: 300px;
    padding-bottom: 15px;
}


/*
 * Printing
 */
@media print {

    /* hide stuff */
    body::before,
    .navbar,
    #sidebar,
    .sidebar
    .sidebar-heading,
    .sidebar-sticky,
    nav, hr, .no-print,
    .sidebar img {
        display: none;
    }

    /* global reset */
/*    body {
        font-family: Georgia, serif;
        font-size: 16pt;
        line-height: 24pt;
        background: none;
        color: #000;
        width: 100%;
    }*/

    /* layout reset */
    .table, .col-md-9, .col-lg-10 {
        width: 100%;
        border: none;
        padding: 0;
        margin: 50px 0 0 0;
        color: #000;
    }

    #content, .report {
        font-size: .8rem;
        line-height: 1.2rem;
        width: 100%;
        page-break-inside: auto;
    }

    @page {
        size: A4;
        margin: 2cm !important;
/*        orphans: 4;
        widows: 2;*/
    }

    /*dl {
        width: 100%;
        overflow: hidden;
        background: #ff0;
        padding: 0;
        margin: 0;
        white-space: nowrap;
    }

    dt {
        float: left;
        width: 40%;*/
        /*adjust the width; make sure the total of both is 100% */
        /*background: #cc0;
        padding: 0;
        margin: 0;
    }

    dd {
        float: right;
        width: 60%;*/
        /* adjust the width; make sure the total of both is 100% */
        /*background: #dd0;
        padding: 0;
        margin: 0;
    }*/



}


