﻿/* container for entire report */
.rpt-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}

/* report side menu */
.rpt-menu {
    background-color: #009688;
}

.rpt-menu ul {
    list-style: none;
    padding: 25px 20px 0px 20px;
    margin: 0 auto;
    width: fit-content;
}

.rpt-menu ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 10px;
}

.rpt-menu-img-cont {
    flex-grow: 0;
    flex-shrink: 0;
    width: 25px;
    margin-right: 0px;
    margin-bottom: 7px;
}

.rpt-menu-img {
    width: 100%;
}

.rpt-menu-title-cont {
    display: none;
}

.rpt-menu-title-cont p a {
    font-size: 18px;
    padding: 10px 0px 0px 5px;
    color: white;
    white-space: nowrap;
}

.rpt-nocontent-dark {
    color: white;
    background-color: rgba(255,255,255,0.1);
    padding: 10px;
    margin-bottom: 25px;
}

.rpt-nocontent-light {
    color: inherit;
    background-color: rgba(0,0,0,0.05);
    padding: 10px;
    margin-bottom: 25px;
}

/* report main */
.rpt-main {
    padding: 0px 15px 0px 10px;
    width: 100%;
    margin: 0 auto;
}

.w3-panel:first-child {
    margin-top: 0px;
}

.hide-on-small {
    display: none;
}

/* old inline styling dependencies */
.w3-teal a.more-less-buttons {
    color: #F57C00;
}

body {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#side-nav .navbar-nav li {
    width: 100%;
}

#side-nav .navbar-nav li.active {
    color: #fff;
    background-color: #f44336;
}

#side-nav .nav > li > a:hover, .nav > li > a:focus {
    color: #fff; 
}

.criminal-details {
    display: none;
}

/* report media queries, mobile first, bootstrap 3 break points */

/* Retina */
@media only screen and (min-width: 320px) {
    .rpt-menu-img-cont {
        display: initial;
    }

    .rpt-menu-title-cont {
        display: none;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
    .rpt-menu {
        min-width: 60px;
    }
    .rpt-menu-img-cont {
        display: initial;
    }

    .rpt-menu-title-cont {
        display: none;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
    .rpt-menu {
        min-width: 170px;
    }
    .rpt-main {
        padding: 0px 15px 0px 18px;
    }

    .rpt-menu-img-cont {
        display: none;
    }

    .rpt-menu-title-cont {
        display: initial;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
    .rpt-menu {
        min-width: 200px;
    }
    .rpt-menu-img-cont {
        display: initial;
        margin-right: 10px;
        margin-bottom: 10px;
        width: 30px;
    }

    .rpt-menu-title-cont {
        display: initial;
    }

    .hide-on-small {
        display: block;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {

}
