﻿body {
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
/* Dropdown Button */
.MenuDropDownListBtn, .NavButton {
    line-height: 20px;
    background: none;
    color: #ff6500 !important;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

li a {
    line-height: 20px;
    background: none;
    color: #ff6500 !important;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
/* The container <div> - needed to position the dropdown content */
.MenuDropDownList {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.MenuDropDownList-content {
    display: none;
    position: absolute;
    background-color: rgba(0,0,0,0.7);
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.MenuDropDownList-content a {
    /*color: black;*/
    padding: 12px 16px;
    text-decoration: none;
    color: #ff6500;
    display: block;
}

/* Change color of dropdown links on hover */
.MenuDropDownList-content a:hover {background-color: rgba(0,0,0,1);}

/* Show the dropdown menu on hover */
.MenuDropDownList:hover .MenuDropDownList-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.MenuDropDownList:hover .MenuDropDownListBtn {
    /*background-color: #3e8e41;*/
}




.commentBox {
    background-color: #efefef;
    padding: 10px;
    border-radius: 10px;
}

.starFade {
    background-image: url('../Images/StarFade.gif');
    min-width: 20px;
    min-height: 20px;
    display: inline-block;
    cursor: pointer;
}

.starFadeN {
    background-image: url('../Images/StarFade.gif');
    min-width: 20px;
    min-height: 20px;
    display: inline-block;
}

.starGlow {
    background-image: url('../Images/starglow.gif');
    min-width: 20px;
    min-height: 20px;
    display: inline-block;
    cursor: pointer;
}

.starGlowN {
    background-image: url('../Images/starglow.gif');
    min-width: 20px;
    min-height: 20px;
    display: inline-block;
}

/*
    DEMO STYLE
*/

@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    color: #ff6500 !important;
    background: rgba(0,0,0,1);
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 150px;
    max-width: 150px;
    background: rgba(0,0,0,1);
    color: #ff6500 !important;
    transition: all 0.3s;
}

    #sidebar.active {
        margin-left: -250px;
    }

    #sidebar .sidebar-header {
        padding: 20px;
        background: rgba(0,0,0,1);
    }

    #sidebar ul.components {
        padding: 20px 0;
    }

    #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: rgba(0,0,0,1);
    }

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: rgba(0,0,0,1);
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 5px;
        margin-bottom: 5px;
    }

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    

        #sidebar.active {
            margin-left: 0;
        }

    #sidebarCollapse span {
        display: none;
    }
}