/* paths */
/* We can't use absolute paths here, because those are dependent on Django's
STATIC_URL setting. However, django-compressor consistently places the compiled
CSS into ${STATIC_URL}/CACHE/css/ regardless of compilation mode, so we can
reliably use relative paths to get back to STATIC_URL. */
/* grid settings */
/* screen breakpoints */
/* 800px */
/* 900px */
/* 1200px */
/* 1600px */
/* colours */
/* darker to lighter */
/* misc sizing */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .visuallyhidden:active, .visuallyhidden:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

.visuallyvisible {
  clip: none;
  height: auto;
  width: auto;
  margin: auto;
  overflow: visible;
  position: initial; }

/* Utility variable - you should never need to modify this */
/* Ensure grid columns are set to border-boxes. This is essential */
/* Our row container */
/* Our column container */
/* Push adds left padding */
/* Pull adds right padding */
/* only used in places where padding not applied to same elements as row or row-flush
 * most of the time this class should be applied directly to the html elements */
html, body, .content-wrapper {
  background-color: #282828;
  color: #A8A8A8; }

html {
  height: 100%; }

body {
  margin-left: 0px;
  height: 100%; }

.content-wrapper {
  border: 0; }

.wrapper {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 0;
  max-width: none; }

h1 {
  font-weight: 300;
  font-size: 2em;
  line-height: 1em;
  color: white;
  text-transform: none;
  white-space: nowrap; }

form {
  width: 100%; }
  form ul, form ul ul, form ul li {
    list-style-type: none;
    font-style: normal; }
  form ul, form ul ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0; }

label {
  color: white; }

input[type=submit] {
  font-size: 1.5em;
  padding: 1.1em 2.4em; }

input[type=checkbox]:before {
  background-color: #333;
  color: #555;
  border: 1px solid #555; }

.fields {
  max-width: none; }

.fields li {
  padding: 1em 0; }
  .fields li.full {
    position: relative;
    padding: 0; }
    .fields li.full label {
      display: none; }
    .fields li.full input {
      border-top: 1px dashed #BABABA; }
  .fields li:first-child input {
    border: 0; }

.fields .checkbox {
  padding-top: 2em;
  padding-bottom: 2em; }

.field {
  padding: 0; }

.iconfield:before {
  display: none; }

.full label {
  -webkit-border-radius: 2px;
  border-radius: 2px;
  text-transform: uppercase;
  padding: 2px 5px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -1px;
  font-size: 0.7em;
  z-index: 1;
  margin: 0.2em 0;
  line-height: 1.5em;
  font-weight: normal; }

/* Special full-width, one-off fields i.e a single text or textarea input */
.full input {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 300;
  border: 0;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  font-size: 1.6em;
  line-height: 1.6em; }

.help {
  opacity: 1;
  position: absolute;
  font-size: 1.3em;
  top: 50%;
  margin-top: -0.5em;
  right: 5%; }

.messages {
  margin: 1em 0;
  z-index: 5; }
  .messages ul {
    margin: 0; }
    .messages ul:before {
      display: none; }
    .messages ul li {
      -webkit-border-radius: 3px;
      border-radius: 3px; }

@media screen and (min-width: 50em) {
  /* centres login form vertically */
  .content-wrapper {
    float: none;
    height: auto;
    width: 100%;
    display: inline-block;
    vertical-align: middle; }
  .wrapper {
    position: relative;
    height: 100%;
    padding: 0 100px; }
    .wrapper:before {
      content: '';
      width: 0px;
      display: inline-block;
      height: 100%;
      vertical-align: middle;
      margin-left: -0.4em; }
  h1 {
    font-size: 4em; }
  .full {
    margin: 0px -100px; }
    .full .iconfield:before {
      display: inline-block;
      position: absolute;
      color: #BABABA;
      border: 2px solid #BABABA;
      border-radius: 100%;
      width: 1em;
      padding: 0.3em;
      left: 100px;
      margin-top: -1.1rem;
      top: 50%;
      font-size: 1.3rem; }
    .full .iconfield input {
      padding-left: 150px; } }