﻿#page-content {
    padding-top: 20px;
    padding-bottom: 100px;
    font-size: 17px;
    max-height: 100%;
    overflow-y: scroll;
    overflow-x: auto;
}

    #page-content .list-group {
        max-width: 400px;
    }

    #page-content img {
        border: 2px solid #444;
        border-radius: 10px;
        max-width: 100%;
        min-width: 200px;
        height: auto;
    }


#sidebar {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    width: 0;
    padding: 10px 0 100px 0;
    -webkit-transition: width 0.3s ease-in-out, padding 0.2s ease-in-out;
    -moz-transition: width 0.3s ease-in-out, padding 0.2s ease-in-out;
    -o-transition: width 0.3s ease-in-out, padding 0.2s ease-in-out;
    transition: width 0.3s ease-in-out, padding 0.2s ease-in-out;
    /*border-right: 1px solid #444;*/
    background-color: #303030;
}

#wrapper.menu-displayed #sidebar {
    width: 220px;
    padding-left: 10px;
    padding-right: 10px;
    /* override overflow: hidden of sidebar to show scroll bar if menu is displayed */
    overflow: auto;
}

#wrapper #sidebar {
    /* by default hide scrollbar, it will be only shown if menu-displayed class will be added*/
    overflow: hidden;
}

.sidebar-nav {
    padding: 0;
    list-style: none;
}

    .sidebar-nav li {
        padding-left: 20px;
        line-height: 25px;
        max-height: 25px;
        overflow: hidden;
        position: relative;
    }

    .sidebar-nav h5 {
        /*max-height: 25px;*/
        overflow: hidden;
    }

    .sidebar-nav li a {
        display: block;
        text-decoration: none;
        font-size: 15px;
        color: white;
        transition: all 0.1s ease-in-out;
    }

        .sidebar-nav li a:hover {
            color: #00bc8c;
            transform: scale(1.1);
        }


.highlight {
    color: #00bc8c !important;
    border: 1px dotted #00bc8c;
}

.no-transition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

iframe {
    border: 1px solid #444;
    max-width: 100%;
    width: 560px;
    height: 315px;
}