﻿body {
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  background-color: white;
}

/* Must add this to center the block */
.center-block {
  float: none;
}

.wrapper {
    min-height: calc(100vh - 60px);
}

.contentArea {
  margin-top: 5.5em;
}

div.form-group {
  margin-bottom: .3em;
}

/***********************************************************/
/* Custom Classes */
/***********************************************************/

.center {
  text-align: left;
}

.container {
  width: 98%;
}

.rowSpacing {
  margin-top: .5em;
}

.button {
    /*adjust the roundness*/
    border-radius: 4px;
    /*adjust height and width*/
    height: 20px;
    width: 20px; 
    /*change border colour*/
    border:1px #245ec6 solid;
}

.messageArea {
  margin-top: 1em;
}

.aboutArea {
  background-color: white;
  margin: 1em;
  padding: 1em;
  box-shadow: 0.5em 0.5em rgba(0,0,0,0.8);
  -webkit-box-shadow: 0.5em 0.5em rgba(0,0,0,0.8);
  -moz-box-shadow: 0.5em 0.5em rgba(0,0,0,0.8);
  border-radius: 1em;
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
}

.aboutFeatures {
  list-style: none;
}
header, footer, hgroup,
nav, section {
    display: block;
}

.gridHeaderAlignRight {
    text-align:right;
}

.nav.navbar-nav li a {
    color: white;
}

.nav.navbar-nav a:default {
    color: white;
}

footer {
    background-color: #696869;
    color: white;
    border-top: 1px solid #E7E7E7;
    text-align: center;
    padding: 5px;
    position: fixed;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
}

.panel-heading .accordion-toggle:after {
    /* symbol for "opening" panels */
    font-family: 'Glyphicons Halflings'; /* essential for enabling glyphicon */
    content: "\e114"; /* adjust as needed, taken from bootstrap.css */
    float: right; /* adjust as needed */
    color: grey; /* adjust as needed */
}

.panel-heading .accordion-toggle.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\e080"; /* adjust as needed, taken from bootstrap.css */
}

