*{
padding:0;
margin:0;
}
body {
    background-color: #F1F1F1;
    font-family: 'Open Sans', sans-serif;
    }

/*here are formats for different fonts */
.large{
  font-size:15px;
}
.small_description{
font-size:14px;
}

a{
  text-decoration: none;
}

#popup{
  text-align:left;
}
.little_bundle{
display:block;
margin-bottom:5px;
text-align:center;
padding:5px;
border: solid 1px #acacac;
border-radius:3px;
background-color:white;
width:250px;

}

#main_container{
width:1100px;
margin-right:auto;
margin-left:auto;
}

#main_container_header{
  width:1100px;
  margin-top:25px;
  margin-right:auto;
  margin-left:auto;
  font-family:'Open Sans', sans-serif;
  text-align:left;
font-size:20px;
}

#small_container{
width:750px;
margin-right:auto;
margin-left:auto;
text-align:center;
}

#small_container_header{
  width:750px;
  margin-top:25px;
  margin-right:auto;
  margin-left:auto;
  font-family:'Open Sans', sans-serif;
  text-align:left;
font-size:20px;
}

.green {
color:green;
}
.red{
color:red;
}
.active{
background-color: #d7d7d7;
}
.list_item{
  padding:10px;
  display:block;
  margin:10px 0;
  border: solid 1px #999;
  cursor:pointer;
}
.list_item:hover{
  background-color:#d7d7d7;
}
.no_padding_left{
  padding-left:0;
}

.page_title{
font-size:15px;
text-align:left;
margin-top:15px;
}

.page_title_2{
  font-size:15px;
  text-align:left;

}




#login{
border: solid 1px #000;
margin-bottom:15px;
padding:5px;
}

.button{
border:solid 1px #ACACAC;
background-color:#EFEFEF;
display:block;
width:200px;
float:left;
text-decoration:none;
padding:10px;
margin-right:15px;
font-family:'Open Sans', sans-serif;
border-radius:5px;

}



.answer_holder{
border: 1px solid #999;
margin: 10px 0;
padding:7px;
}

.answer{
padding: 10px 0;
}

#question_navigator {
width:25%;
float:left;
max-height:500px;
overflow-y:scroll;
}

#question_content{
width:65%;
float:left;
padding:30px 5% 10px 5%;
}

#header_wrapper{
background-color: #323266;
padding: 10px;
margin-top: -30px;
margin-left: -30px;
margin-right: -30px;

}


#header a{
color: #fff;
margin: 0 40px 0 0;
text-decoration:none;
cursor:pointer;
}
ul{
padding-left:30px;
}

.quote{
background:#efefef;
padding:5px;
margin:10px;
}

#button_holder{
margin-bottom:7px;
clear:right;
}

h1,h2{
font-family:'Open Sans', sans-serif;
text-align:left;
font-weight:300;
}

.large_textbox {
font-size:20px;
font-weight:300;
border-radius:5px;
width:400px;
border:1px solid #cacaca;
padding:5px;
}






.clear{
clear:both;
}



.rounded_holder{
padding:30px;
font-family:sans-serif;
font-weight:200;
margin-top:20px;
margin-bottom:10px;
background-color:#FFFFFF;
border:solid 1px #CACACA;
border-radius:4px;
box-shadow: 1px 1px 1px #E0E0E0;
-webkit-box-shadow: 1px 1px 1px #E0E0E0;
-moz-box-shadow: 1px 1px 1px #E0E0E0;
}


/*styles for add_course */
.label{
font-size:20px;
display:block;
width:160px;
margin-right:75px;
float: left;
}

.user_input{
display:block;
width:600px;
float:left;

}

.text_input{
width:400px;
max-width:400px;

border-radius:3px;
border: solid 1px #CACACA;
font-family:sans-serif;
font-weight:200;
font-size:18px;
padding:10px;
}

.form_row{
margin:20px;
}

.form_additional_info{
color:#999999;
font-size:12px;
}

.submit_button{
padding:7px 15px 7px 15px;
font-size:15px;
display:inline-block;
background-color:#EFEFEF;
border-radius:3px;
border:solid 1px #CACACA;
margin-top:15px;
text-decoration:none;
color:#000;
margin-right:5px;
margin-left:5px;
}

/*html messages*/
.error{
color:#AA0000;
border: 1px solid #AA0000;
padding: 5px;
margin: 5px 0;
}

.neutral_message{
border: 1px solid #acacac;

}

.add_something{
display:block;
padding:10px;
float:left;
height:100%;
font-size: 20px;
background-color:#cacaca;
}

.add_something_description{
float:left;
vertical-align:middle;
height:100%;
border: 1px solid black;
}
.extra_height{
height:57px;
}

.white{
background-color:#fff;
}

/* Dropdown Button */
.dropbtn {
	display: inline-block;
    	background-color: #4CAF50;
    	border-radius:3px;
    	color: white;
    	padding: 16px;
    	font-size: 16px;
    	font-weight:600;
    	border: none;
    	cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}





/* this is the CSS for modal box */
.load_modal{
cursor:pointer;
}
/* The Modal (background) */

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}



/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}
/* Modal Header */
.modal-header {
    padding: 8px 16px;
    background-color: #000;
    color: white;
}

/* Modal Body */
.modal-body {
  padding: 8px 16px;
  max-height:300px;
  overflow:auto;
}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

/*this is for navigaiton/control panel buttons */
.button_panel{
cursor:pointer;
padding:0px;
margin-top:20px;
border:solid 1px #CACACA;
border-radius:3px;
display:inline-block;
clear:right;
background-color:#EDEDED;
font-size:15px;
text-decoration:none;
}

.button_panel li{
display:inline-block;
list-style:none;
}

ul.button_panel li a.first{
border-left:none;
}
ul.button_panel li a.last{
border-right:none;
}

ul.button_panel li a.wide{
padding:5px 22px;
}

ul.button_panel li a.inactive{
  background-color:#CACACA;
  border-right:1px solid #A2A2A2;
  color:#AA0000;
  cursor:default;
}

.button_panel li a{
border-right:solid 1px #CACACA;
padding:5px 10px;
color:#333;
display:block;
-webkit-transition: background-color 1s;

}
.button_panel li a:hover{
background-color:#CACACA;
border-right:1px solid #A2A2A2;
color:#AA0000;
-webkit-transition: background-color 0.5s;


}

.button_panel li a.disabled{
background-color:#CACACA;
border-right:1px solid #A2A2A2;
color:#AA0000;
pointer-events: none;
cursor: default;
}

.stretch{
max-height:100%;
max-width:100%;
}

.toggle_me{
  cursor:pointer;
  color:#5858ea;
  font-weight:bold;
}

.question_set{
  width:250px;
  display:inline-block;
  padding:15px;
  margin-top:15px;
  margin-bottom:15px;
  margin-right:30px;
  background-color:#fff;
  bborder:solid 1px #CACACA;
  border-radius:4px;
  box-shadow: 1px 1px 1px #E0E0E0;
  -webkit-box-shadow: 1px 1px 1px #E0E0E0;
  -moz-box-shadow: 1px 1px 1px #E0E0E0;
  float:left;
  overflow:hidden;
}

.question_set .title{
  font-size: 20px;
}
.question_set .creator{
  font-size: 12px;
  font-style:italic;
}
.row{
  clear:both;
}

.special{
  background-color:#30C23D;
  color:#fff;
}

.top_row{
  margin-top:15px;
}
