@charset "UTF-8";
/*---MASTER STYLES---*/
/* This file is overwritten by style.css and colours.css */
/********** layout Base **********/
html, body {
  height: 100%;
}

body {
  margin: 0px;
  overflow-y: scroll;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  background: #f5f5f5;
}

#Wrapper {
  width: 960px;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0px auto;
  padding: 0px 0px 0px;
  margin: -41px auto -20px;
  border-left: none;
  border-right: none;
  background: #FFFFFF;
  box-shadow: 0px 2px 7px -3px rgba(0, 0, 0, 0.75);
}

#Wrapper.auth {
  margin: -41px auto -20px;
}

#Head {
  position: relative;
  z-index: 5;
  padding: 40px 0px 0px;
}

#Wrapper.auth #Head {
  padding: 40px 0px 0px;
}

#Body {
  z-index: 1;
  padding: 20px 20px 130px;
  background-color: #FFFFFF;
}

#Footer {
  z-index: 5;
  position: relative;
  margin: 0px auto 0px;
  width: 960px;
  height: 16px;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  background-color: #FFFFFF;
}

#FooterCopyright,
#FooterCopyright p {
  height: 20px;
  line-height: 20px;
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

/********** Fixes **********/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input,
select,
textarea {
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  /*     border: 1px solid #ff943b; */
  /*     box-shadow: 0px 0px 8px 0px #ff943b; */
}

input.button:focus {
  box-shadow: none;
}

.right {
  float: right;
}

.left {
  float: left;
}

.bold {
  font-weight: bold;
}

table {
  border-collapse: collapse;
}

/*---MATERIAL DESIGN---*/
/***** FORMS*****/
input[type=text], textarea, input[type=password], input[type=email], input[type=number] {
  border: none;
  border-bottom: 2px solid #DFDFDF;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  padding-left: 4px;
  transition: all 0.15s ease-in-out;
  font-family: Calibri, Arial, Candara, Segoe, "Segoe UI", Optima, sans-serif;
}

input.noTransition {
  transition: none !important;
}

input[disabled], textarea[disabled], input.disabled {
  border-bottom: 2px solid #DFDFDF;
  background: #EFEFEF !important;
}

input[type=text]:focus, textarea:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus {
  -webkit-appearance: none;
}

input.error {
  -webkit-appearance: none;
  border-bottom: 2px solid #D80200;
}

input.success {
  -webkit-appearance: none;
  border-bottom: 2px solid #078D08;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label {
  position: relative;
  margin-top: -3px;
  margin-right: 5px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #6F6F6F;
  border-radius: 3px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

input[type=checkbox].gap + label:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 2px solid white;
  border-radius: 2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

input[type=checkbox]:checked + label {
  /*     border: 2px solid #00AED6; */
  /*     background: #00AED6; */
}

input[type=checkbox].gap:checked + label {
  border: 2px solid #6F6F6F;
  background: #00AED6;
}

input[type=radio] {
  display: none;
}

input[type=radio] + label {
  position: relative;
  margin-top: 5px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #4C4D4F;
  border-radius: 50%;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

input[type=radio].gap + label:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 2px solid white;
  border-radius: 50%;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

input[type=radio]:checked + label {
  border: 2px solid #4C4D4F;
  background: #4C4D4F;
}

input[type=radio].noLabel + label {
  border: none;
}

input[type=radio].noLabel:checked + label {
  border: none;
  background: none;
}

.card {
  z-index: 4;
  box-sizing: border-box;
  margin: 15px;
  float: left;
  cursor: default;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  background-color: #ffffff;
  box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.75);
  transition: box-shadow 0.2s ease-in-out;
}

.card.clickUp:active {
  box-shadow: 0px 5px 15px 0px rgba(166, 158, 176, 0.83) !important;
}

.card.clickDown:active {
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.75) !important;
}

.card.hoverUp:hover {
  box-shadow: 0px 4px 13px -2px rgba(0, 0, 0, 0.75);
}

.card .full-image {
  width: inherit;
  height: 60%;
}

.card-text, .card-text-title, .card-text-subtext {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  margin: 5px 10px 0px 10px;
}

.card-text {
  margin-bottom: 50px;
}

.card-text-title {
  color: #6694b8;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}

.card-text-subtext {
  font-weight: bold;
  display: block;
  color: #fd5a43;
  text-align: center;
}

.float-bottom {
  position: absolute;
  bottom: -1px;
  width: inherit;
}

.card .float-bottom a {
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  position: relative;
  bottom: 15px;
  left: 10px;
  border-radius: 2px;
}

.card .float-bottom a:hover {
  background: #DFDFDF;
}

button.raised, input[type=submit].raised, input[type=button].raised, input[type=file].raised {
  border: none;
  background: #929598;
  padding: 8px 16px;
  border-radius: 2px;
  box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.75);
  color: white;
  transition: all 0.1s ease-in-out;
  text-align: center;
  margin: 3px;
  font-family: Calibri, Arial, Candara, Segoe, "Segoe UI", Optima, sans-serif;
  cursor: pointer;
}

button.raised:hover, input[type=submit].raised:hover, input[type=button].raised:hover, input[type=file].raised:hover {
  background: #B2B5BB;
  box-shadow: 0px 2px 7px -2px rgba(0, 0, 0, 0.75);
}

button.raised:active, input[type=submit].raised:active, input[type=button].raised:active {
  box-shadow: 0px 2px 5px -3px rgba(0, 0, 0, 0.75);
  background: #606060;
}

button.raised.submit, input[type=submit].raised.submit {
  font-size: 15px;
}

button.raised.disabled, input[type=submit].raised.disabled, input[type=button].raised.disabled, input[type=file].raised.disabled {
  background: #929598;
}

button.raised.disabled:hover, input[type=submit].raised[disabled]:hover, input[type=button].raised.disabled:hover, input[type=file].raised.disabled:hover {
  background: #929598;
}

button.flat, input[type=submit].flat, input[type=button].flat, input[type=file].flat {
  border: none;
  background: none;
  padding: 8px 16px;
  border-radius: 2px;
  color: #4C4D4F;
  transition: all 0.1s ease-in-out;
  text-align: center;
  margin: 3px;
  font-family: Calibri, Arial, Candara, Segoe, "Segoe UI", Optima, sans-serif;
  cursor: pointer;
}

button.flat:hover, input[type=submit].flat:hover, input[type=button].flat:hover, input[type=file].flat:hover {
  background: #DFDFDF;
}

button.flat[disabled]:hover, input[type=submit].flat[disabled]:hover, input[type=button].flat[disabled]:hover, input[type=file].flat[disabled]:hover {
  background: none;
}

.snackbar {
  position: absolute;
  top: -100px;
  right: 10px;
  z-index: 3;
  float: right;
  background: white;
  border: 1px solid #4C4D4F;
  height: 50px;
  min-width: 250px;
  line-height: 50px;
  vertical-align: middle;
  box-shadow: 0px 2px 10px -3px rgba(0, 0, 0, 0.75);
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  font-size: 14px;
}

.snackbar .snackText {
  width: 100%;
  height: 100%;
  margin-left: -40px;
  padding-left: 55px;
  padding-right: 15px;
  box-sizing: border-box;
  display: block;
  float: left;
}

.snackbar .snackColourBlock {
  width: 40px;
  height: 100%;
  background: #4C4D4F;
  text-align: center;
  line-height: 48px;
  vertical-align: middle;
  color: white;
  font-family: "Arial Unicode MS";
  font-size: 20px;
  font-weight: bold;
  float: left;
}

.snackbar .snackColourBlock:after {
  content: "!";
}

.snackbar.success {
  border: 1px solid #078D08;
}

.snackbar.success .snackColourBlock {
  background: #078D08;
}

.snackbar.success .snackColourBlock:after {
  content: "✓";
}

.snackbar.error {
  border: 1px solid #ff943b;
}

.snackbar.error .snackColourBlock {
  background: #ff943b;
}

.snackbar.error .snackColourBlock:after {
  content: "✕";
}

.dialog {
  width: 300px;
  padding: 8px 4px;
  background: white;
}

.dialog.dCard {
  box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.75);
}

.dialog.error {
  margin: 0px auto;
  box-sizing: border-box;
  text-align: center;
  padding: 8px 0px;
  margin-bottom: 16px;
  background-color: #ffffff;
  font-size: 14px;
  color: #D80200;
}

.dialog.error::before {
  content: "Error";
  border-bottom: 2px solid #D80200;
  display: block;
  position: relative;
  margin-top: -8px;
  margin-bottom: 6px;
  padding-top: 4px;
  width: 100%;
  height: 20px;
  font-weight: bold;
  color: black;
}

.dialog.success {
  margin: 0px auto;
  box-sizing: border-box;
  text-align: center;
  padding: 8px 0px;
  margin-bottom: 16px;
  background: #FFFFFF;
  font-size: 14px;
  color: #6eb16f;
}

.dialog.success::before {
  content: "Success";
  border-bottom: 2px solid #6eb16f;
  display: block;
  position: relative;
  margin-top: -8px;
  margin-bottom: 6px;
  padding-top: 3px;
  width: 100%;
  height: 20px;
  font-weight: bold;
  color: black;
}

.dialog.success.small {
  border-bottom: 2px solid #6eb16f;
  padding-top: 0px !important;
  padding-bottom: 4px !important;
}

.dialog.success.small::before {
  content: none;
}

.dialog.error span, .dialog.success span {
  display: block;
  padding: 0px 3px;
}

.selectBox {
  border-radius: 0px;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  display: block;
  margin: 0px 0px 0px;
  border-bottom: 2px solid #DFDFDF;
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
  background-color: #FFFFFF;
  cursor: pointer;
  -webkit-user-select: none;
}

.selectBox.error {
  border-bottom: 2px solid #D80200;
}

.selectBox.success {
  border-bottom: 2px solid #078D08;
}

.selectBox.disabled, .selectBox[disabled=disabled] {
  pointer-events: none;
  opacity: 1;
  background: #E9E9E9;
}

.selectBox.disabled .selectValue::after, .selectBox[disabled=disabled] .selectValue::after {
  content: "";
}

.selectBox .selectValue {
  margin: 0px auto;
  width: 90%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
}

.selectBox.disabled .selectValue, .selectBox[disabled=disabled] .selectValue {
  color: #4C4D4F;
}

.selectBox .selectValue::after {
  content: " ▾";
}

.selectBox ul {
  margin-top: 0px;
  margin-bottom: -300px;
  background: white;
  position: relative;
  z-index: 5;
  overflow-y: auto;
  list-style-type: none;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
  max-height: 0px;
  border-radius: 2px;
  font-size: 14px;
}

.selectBox.active, .selectBox:focus {
  outline: none;
  /*     border-bottom: 2px solid #FFA05B */
}

.selectBox.active ul {
  max-height: 285px;
}

.selectBox ul li {
  margin-left: -40px;
  padding: 0px;
}

.selectBox ul li.selected {
  background: #DFDFDF;
}

.selectBox ul li:hover {
  background: #DFDFDF;
}

hr {
  border-left: none;
}

div.guide-box {
  display: inline-block;
  width: auto;
  padding: 5px 10px;
  border-radius: 5px;
  font-style: italic;
  background-color: #dfdfdf;
  font-size: 13px;
}

div.guide-box.centre {
  /*     display: block; */
  width: 50%;
  text-align: center;
  margin: 10px 25%;
}

div.guide-box.micro {
  color: #AcAdAe;
  font-size: 11px;
  background: none;
  padding: 0px;
}

.ui-menu {
  position: fixed;
  background: white;
}

.ui-menu, .ui-menu-item a {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  font-weight: normal;
  font-size: 16px;
  border: 1px solid #DFDFDF;
  box-shadow: 0px 2px 7px -3px rgba(0, 0, 0, 0.75);
}

.ui-menu {
  max-height: 255px !important;
  overflow-y: scroll;
  overflow-x: hidden;
}

.ui-menu .ui-state-focus {
  background: #DFDFDF;
  font-weight: normal;
  color: black;
}

.dragWrapper {
  position: relative;
  background: red;
}

.dragFill {
  transition: background 0.15s ease-in-out !important;
}

.dragHandle {
  margin: 0px -5px;
  z-index: 4;
  position: relative;
  top: 28px;
  left: -3px;
  /* bottom: 0px; */
  line-height: 100%;
  font-size: 0;
  opacity: 0;
  width: 10px;
  height: 10px;
  background: #00AED6;
  float: left;
  visibility: collapse;
  cursor: cell;
}

input:focus + .dragHandle, .dragHandle:active {
  opacity: 1;
  visibility: visible;
}

input.origSelect {
  background: rgba(0, 174, 214, 0.25) !important;
}

input.selectedInput {
  background: rgba(0, 174, 214, 0.1);
}

/*# sourceMappingURL=global.css.map */
