@import url(https://fonts.googleapis.com/css?family=Black+Ops+One|Abel|Open+Sans);/*
 *  Provides an easy interface to import all modules into every scss file.
 *
 *  MAKE SURE ALL CURRENT MODULES ARE IMPORTED BELOW!
 */

/*****  ALL-PURPOSE COLORS  *****/

/*****  TABLE COLORS  *****/

/*****  SECTION COLORS  *****/

/*****  NAVIGATION COLORS  *****/

/*****  FOOTER COLORS  *****/

/*****  SCROLLBAR COLORS  *****/

/*
 *     CSS Document  - Layout
 *
 * Styling for the structural layout of the site that applies to every page.
 * Should include (html, body, header, sidebar, and footer elements).
 *
 */

#topSidebar {
  width: 302px;
  min-height: 200px;
  height: auto;
  padding: 0px;
  margin-right: 40px;
  position: fixed;
  left: 30px;
  top: 110px;
  z-index: 92;
  line-height: 26px;
}

nav {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}

nav ul li:last-of-type a {
  border-bottom: none;
}

nav > ul {
  border-radius: 3px;
  border: 1px solid #D8D8D8;
  border-bottom-width: 2px;
}

nav .listing a {
  display: block;
  color: #333;
  text-align: left;
  width: 260px;
  padding: 12px 20px;
  margin: 0px;
  font-size: 1.33em;
  background-color: #FFF;
  border-bottom: 1px solid #EEE;
  transition-duration: 0.1s;
}

nav .listing a:hover {
  color: #FFF;
  background-color: #555;
  text-decoration: none;
}

nav .listing.specialTop {
  border-bottom: 1px solid #D8D8D8;
}

nav .listing.specialBottom {
  border-top: 1px solid #D8D8D8;
}

nav li.active a {
  color: #FA7300;
  /* Placeholder for value to be set by PHP in Blade */
  background-color: #EEE;
  border-left: 2px solid #FA7300;
  /* Placeholder for value to be set by PHP in Blade */
  border-right: 1px solid #D8D8D8;
  width: 258px;
}

nav .sublisting-title {
  display: block;
  text-align: center;
  padding: 5px 10px;
  background-color: #EEE;
  color: #000;
  border: 1px solid #D8D8D8;
  border-bottom-width: 2px;
  border-top: 1px solid #D8D8D8;
  border-radius: 0px 0px 3px 3px;
}

nav .sublisting-title:hover {
  cursor: pointer;
  background-color: #DDD;
  border-color: #BBB;
}

nav .sublisting a {
  display: block;
  color: #333;
  text-align: center;
  background-color: #FFF;
  width: 240px;
  padding: 5px 10px;
  margin: 0px;
  font-size: 1em;
  border-bottom: 1px solid #EEE;
  transition-duration: 0.1s;
}

nav .sublisting a:hover {
  color: #FFF;
  background-color: #555;
  text-decoration: none;
}

nav .sublisting.active a {
  width: 238px;
}

#sidebarDropdown {
  width: 302px;
  min-height: 20px;
  height: auto;
  padding: 0px;
  margin-top: -2px;
  line-height: 26px;
  overflow: hidden;
}

#sidebarDropdown ul {
  display: none;
  width: 260px;
  margin: 0 auto;
  border-radius: 0px 0px 3px 3px;
  border: 1px solid #D8D8D8;
  border-bottom-width: 2px;
  text-align: center;
}

@media (max-width: 1250px) {
  #topSidebar {
    width: 252px;
    left: 0px;
  }

  nav li.listing a {
    width: 210px;
  }

  nav li.active a {
    width: 208px;
  }

  nav li.sublisting a {
    width: 170px;
  }

  #sidebarDropdown {
    width: 252px;
    padding: 0px;
    line-height: 26px;
  }

  #sidebarDropdown ul {
    width: 190px;
  }
}

@media (max-width: 900px) {
  #topSidebar,
  #bottomSidebar {
    width: 20px;
  }

  #topSidebar nav,
  #bottomSidebar nav {
    overflow-y: hidden;
  }

  #topSidebar:hover,
  #bottomSidebar:hover {
    width: 200px;
  }

  #topSidebar:hover nav,
  #bottomSidebar:hover nav {
    overflow-y: auto;
  }
}

html,
body {
  position: absolute;
  font-size: 18px;
  font-family: "Abel", sans-serif;
  line-height: 24px;
  background-color: #F1F1F1;
  min-width: 700px;
  min-height: 400px;
}

#header {
  background-color: #CF1020;
  background-position: 15px 15px;
  background-repeat: no-repeat;
  border-bottom: 1px solid #AAA;
  box-shadow: rgba(0, 0, 0, 0.3) 0 1px 4px 0;
  text-align: center;
  color: #FFF;
  height: 95px;
  width: 100%;
  min-width: 700px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 90;
}

#header .title {
  font-size: 2em;
  font-family: "Black Ops One", sans-serif;
  margin-top: 40px;
}

#content {
  color: #000;
  display: none;
  width: 100%;
  min-width: 575px;
  position: absolute;
  margin-bottom: 60px;
  box-sizing: border-box;
  /*overflow: auto;*/
  background-color: transparent;
  padding: 0px;
  border: none;
  box-shadow: none;
}

#footer {
  height: 30px;
  width: 100%;
  padding: 0px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 90;
  background-color: #DDD;
  color: #333;
  border-top: 1px solid #AAA;
  font-size: 0.65em;
  line-height: 30px;
  text-align: center;
}

#footer a {
  color: #333;
}

section {
  display: inline-block;
  width: 100%;
  background-color: #FFF;
  border: 1px solid #D8D8D8;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  vertical-align: top;
  padding: 15px;
  padding-bottom: 10px;
}

section .title {
  display: block;
  width: 100%;
  /*box-sizing:border-box;*/
  padding: 10px 15px;
  margin: -15px;
  margin-bottom: 10px;
  border-radius: 3px 3px 0px 0px;
  background-color: #E7E7E7;
  color: #111;
  font-weight: bold;
  border-bottom: 1px solid #CCC;
}

section.single,
section.double,
section.triple,
section.quadruple {
  margin-right: 2%;
  margin-bottom: 2%;
}

section.single {
  width: 18%;
  min-width: 150px;
}

section.double {
  width: 47%;
  min-width: 300px;
}

section.triple {
  width: 70%;
  min-width: 300px;
}

section.quadruple {
  width: 95%;
  min-width: 300px;
}

.paddingTop {
  padding-top: 40px;
}

.paddingBottom {
  padding-bottom: 40px;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #C3C3C3;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1250px) {
  html,
  body {
    font-size: 16px;
  }
}

