@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

body {
    background-color:#333344;
    font-family: 'Poppins', sans-serif;
}

/*************************************************************************************************************************
top
*************************************************************************************************************************/

#top {
    text-align: center;
    background-color: white;
}

#top a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-size: 36px;
    color: black;
}

/*************************************************************************************************************************
menu
*************************************************************************************************************************/

#menu {
    background-color: #171933;
    border: 0 solid darkorange;
    border-bottom-width: 5px;
}

#menu a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-size: 18px;
    color: #8C9CBD;
}

#menu li a {
    margin-right: 10%;
    margin-left: 10%;
}

#menu li a:hover {
    color: white;
    background-color: black;
}

/*************************************************************************************************************************
content (module.html)
*************************************************************************************************************************/

/*this is only next to side nav in module.html*/
#content-module {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}

#content-module tr {
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: darkgrey;
}

#content-module th {
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: darkgrey;
}

#content-module hr {
    display: block; height: 1px;
    border: 0; border-top: 1px solid #7386D5;
    margin: 1em 0; padding: 0;
}

/*this is only next to side nav in module.html*/
.navbar {
    min-width: 384px;
    padding: 0 0;
    background: #fff;
    border: none;
    border-radius: 3px;
    margin-bottom: 20px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/*this is only next to side nav in module.html*/
.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
    background: #7386D5;
}

/*prevent toggle button from running against left boundary*/
.navbar-header {
    margin-left: 0 !important;
}

/*************************************************************************************************************************
content (on all other pages)
*************************************************************************************************************************/



.panel-default  {
    min-width: 384px;
}

.panel-default .panel-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: #171933;
    border: 0 solid #171933;
}

.panel-body.md-content{
    padding-top: 0;
}

#content {
    margin-top: 20px;
    padding-right: 100px;
    padding-left: 100px;
    margin-left: auto;
    margin-right: auto;
}

.content-text {
    font-family: 'Poppins', sans-serif;
    font-size:16px;
    color:#000000;
    text-align: left;
    vertical-align: top;
    padding: 20px 20px;

}

.content-text a {
    color:#8C9CBD;
    font-family: 'Poppins', sans-serif;
    font-size:16px;
}

/*************************************************************************************************************************
app
*************************************************************************************************************************/

#app {
}



/*************************************************************************************************************************
footer
*************************************************************************************************************************/

#footer {
    text-align: center;
    color: white;
    padding-bottom: 20px;
}