@import "normalize.css";
header {
  grid-area: header;
}
header .masthead-background {
  background: #000000;
}
header .masthead-background .masthead {
  text-align: right;
  color: white;
  font-size: 1.2rem;
  padding: 5px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
header .masthead-background .masthead #top-link {
  flex-grow: 1;
}
header .masthead-background .masthead ul {
  list-style: none;
}
header .masthead-background .masthead ul li {
  float: left;
  padding: 0 5px;
  border-right: 1px solid #303030;
  font-size: 0.9rem;
  text-transform: uppercase;
}
header .masthead-background .masthead ul li:last-of-type {
  border: none;
  padding-right: 2rem;
}
header .masthead-background .masthead a {
  display: inline-block;
  color: #bdbdbd;
  text-decoration: none;
  vertical-align: middle;
}
header .masthead-background .masthead a:hover {
  color: #bfe2e8;
}
header .header-background {
  background: linear-gradient(to bottom, #bfe2e8 0%, #bee2e9 100%);
  padding: 1rem;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
header #logo {
  width: 30%;
  min-width: 150px;
}
header #logo img {
  width: 100%;
}
header .show-menu {
  flex-grow: 1;
}
@media (min-width: 34em) {
  header .show-menu {
    display: none;
    flex-shrink: 1;
  }
}
header .drop-button, header .show-menu {
  font-size: 0.8rem;
  border: none;
  outline: none;
  color: #303030;
  padding: 0;
  background-color: inherit;
  font-family: inherit;
  /* Important for vertical align on mobile phones */
  margin: 0;
  /* Important for vertical align on mobile phones */
}
header .drop-button:hover, header .drop-button:focus, header .show-menu:hover, header .show-menu:focus {
  color: #000000;
  background-color: inherit;
  background-image: inherit;
}
header .nav {
  max-width: 70%;
  flex-grow: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 34em) {
  header .nav {
    display: none;
  }
  header .nav.show {
    display: block;
    width: 100%;
    max-width: 100%;
  }
}
header .nav .dropdown {
  position: relative;
  display: inline-block;
}
header .nav .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #01b3c6;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin: 0;
  padding: 0;
}
header .nav .dropdown .dropdown-content.show {
  display: block;
}
header .nav .dropdown .dropdown-content li.dropdown-item {
  padding: 0 0.5rem;
  list-style: none;
  text-wrap: none;
  white-space: nowrap;
}
header .nav .dropdown .dropdown-content li.dropdown-item:hover, header .nav .dropdown .dropdown-content li.dropdown-item.active {
  background-color: #003D43;
}
header .nav .dropdown .dropdown-content li.dropdown-item a {
  color: white;
  display: block;
  border-bottom: solid #bfe2e8 1px;
  padding: 0.5rem 0;
}
header .nav .dropdown .dropdown-content li.dropdown-item:last-of-type {
  padding-bottom: 0.5rem;
}
header .nav .dropdown .dropdown-content li.dropdown-item:last-of-type a {
  border: none;
}
header .nav li.nav-item {
  float: left;
  padding: 0 0.5rem;
  border-right: 1px solid #303030;
  font-size: 0.8rem;
}
@media (max-width: 34em) {
  header .nav li.nav-item {
    float: none;
    display: block;
    width: 100%;
    padding: 0.5rem;
    border-right: none;
    border-bottom: 1px solid #303030;
  }
}
header .nav li.nav-item:last-of-type {
  border: none;
}
header .nav li.nav-item a {
  color: #303030;
  text-decoration: none;
}
header .nav li.nav-item.active a, header .nav li.nav-item a:hover {
  color: #000000;
}

footer {
  grid-area: footer;
  background: #000000;
  color: #c4c4c4;
  padding: 1rem;
}
footer a {
  color: #c4c4c4;
  text-decoration: none;
}
footer a:hover {
  color: #ffffff;
}
footer .container {
  display: flex;
  align-items: center;
}
footer .container .content {
  flex-grow: 1;
}
footer .container nav ul {
  list-style: none;
}
footer .container nav ul li {
  padding: 2px;
  border-bottom: 1px solid #c4c4c4;
}
footer .container nav ul li:last-of-type {
  border: none;
}

.wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  grid-template-areas: "header" "content" "footer";
  grid-gap: 0;
}

.layout {
  grid-area: content;
}

.container {
  max-width: 900px;
  width: 100%;
  margin: 1rem auto -1rem auto;
  padding-bottom: 1rem;
}

.clearfix:after, .container:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
}

.container.silverstripe__elementalbannerblock__block__bannerblock {
  margin-top: 0;
  padding-bottom: 0;
}
.container.silverstripe__elementalbannerblock__block__bannerblock img {
  width: 100%;
}

.IceBlue, .background-IceBlue {
  background-color: #bfe2e8;
}

.PacificBlue, .background-PacificBlue {
  background-color: #01b3c6;
  color: white;
}

.Olivine, .background-Olivine {
  background-color: #a6c082;
  color: white;
}

.App {
  display: grid;
  grid-gap: 1.5em;
  margin-bottom: 2rem;
}
@media (min-width: 34em) {
  .App {
    grid-template-columns: 75% auto;
  }
}

.sidebar img {
  display: none;
}
@media (min-width: 34em) {
  .sidebar img {
    width: 100%;
    display: block;
  }
}

.list-element__container, .two-column {
  display: flex;
}
.list-element__container img, .two-column img {
  width: 100%;
}
.list-element__container > div, .two-column > div {
  flex-grow: 1;
}
.list-element__container div:last-child, .two-column div:last-child {
  max-width: 300px;
  flex-shrink: 0;
  margin-left: 1em;
}

fieldset {
  border: none;
  padding: 0;
}

legend {
  color: #01b3c6;
  font-weight: bold;
  font-size: 1.3rem;
  padding-bottom: 0.5rem;
}

.form-group, .field {
  margin-right: 1rem;
}
.form-group label, .field label {
  font-size: 0.8rem;
  display: inline-block;
}
.form-group label.control--checkbox, .field label.control--checkbox {
  display: inline-block;
  max-width: 100%;
  padding-left: 2rem;
  margin: 10px 0;
}
.form-group label.control--checkbox p, .field label.control--checkbox p {
  margin: 0;
}
.form-group label.control--checkbox input, .field label.control--checkbox input {
  position: absolute;
  top: 10px;
  left: 0;
  width: auto;
  padding: 0;
}
.form-group label.error, .field label.error {
  flex-grow: 0;
  padding: 5px;
  color: #ff0000;
  font-size: 0.9em;
}
.form-group input, .form-group textarea, .form-group select, .field input, .field textarea, .field select {
  border: 1px solid #bfe2e8;
  padding: 5px;
  margin: 5px 0;
  width: 100%;
  flex-shrink: 0;
}
.form-group input.checkbox, .form-group textarea.checkbox, .form-group select.checkbox, .field input.checkbox, .field textarea.checkbox, .field select.checkbox {
  width: auto;
}
.form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select, .field.has-error input, .field.has-error textarea, .field.has-error select {
  box-shadow: red 0 0 1.5px 1px;
}

button, input[type=submit] {
  font-size: 100%;
  padding: 0.5em 1em;
  color: #444;
  color: rgba(0, 0, 0, 0.8);
  border: transparent;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  margin-right: 1rem;
  background-color: #E6E6E6;
}
button:hover, input[type=submit]:hover {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1));
}
button.btn-primary, input[type=submit].btn-primary {
  background-color: #01b3c6;
  border: #01b3c6;
}
button.btn-primary:hover, input[type=submit].btn-primary:hover {
  background-color: #bfe2e8;
}
button:disabled, input[type=submit]:disabled {
  cursor: not-allowed;
  color: white;
  background-color: #c7f9ff;
}

.react-toggle {
  vertical-align: middle;
}

.btn-toolbar {
  padding: 1rem 0;
}

.bad, .required {
  display: block;
  background-color: pink;
  border: 1px solid deeppink;
  border-radius: 5px;
  padding: 5px;
  color: deeppink;
}

label.right {
  flex-grow: 1;
}

.sidebar {
  font-size: 0.9rem;
  line-height: 1rem;
}
.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar li {
  clear: both;
}
.sidebar a {
  text-decoration: none;
  color: #01b3c6;
}
.sidebar a:hover {
  text-decoration: underline;
}

.price {
  float: right;
  color: #01b3c6;
}

.subTotal {
  border-top: 1px solid black;
}

.m-loader {
  position: relative;
  box-sizing: content-box;
  height: 38px;
  width: 38px;
  padding: 8px;
  margin: auto;
}

.m-loader__circle {
  position: absolute;
  width: 38px;
  height: 38px;
  opacity: 0;
  transform: rotate(225deg);
  animation-iteration-count: infinite;
  animation-name: orbit;
  animation-duration: 5.5s;
}
.m-loader__circle:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: black;
}
.m-loader__circle:nth-child(2) {
  animation-delay: 240ms;
}
.m-loader__circle:nth-child(3) {
  animation-delay: 480ms;
}
.m-loader__circle:nth-child(4) {
  animation-delay: 720ms;
}
.m-loader__circle:nth-child(5) {
  animation-delay: 960ms;
}

@keyframes orbit {
  0% {
    transform: rotate(225deg);
    opacity: 1;
    animation-timing-function: ease-out;
  }
  7% {
    transform: rotate(345deg);
    animation-timing-function: linear;
  }
  30% {
    transform: rotate(455deg);
    animation-timing-function: ease-out;
  }
  39% {
    transform: rotate(690deg);
    animation-timing-function: linear;
  }
  70% {
    transform: rotate(815deg);
    animation-timing-function: ease-out;
  }
  75% {
    transform: rotate(945deg);
    opacity: 1;
    animation-timing-function: ease-out;
  }
  76% {
    transform: rotate(945deg);
    opacity: 0;
  }
  100% {
    transform: rotate(945deg);
    opacity: 0;
  }
}
.m-loader__container {
  padding: 3em 0;
}

.m-loader__text {
  color: black;
  padding-top: 1em;
}

.speaker-list {
  display: flex;
  flex-wrap: wrap;
}

.speaker-list-item {
  position: relative;
  width: 180px;
  padding: 0;
}
.speaker-list-item a {
  display: block;
}
.speaker-list-item img {
  width: 100%;
}
.speaker-list-item_overlay {
  display: none;
}
.speaker-list-item:hover .speaker-list-item_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline-flex;
  align-items: center;
}
.speaker-list-item:hover .speaker-list-item_overlay span {
  font-weight: bold;
  text-decoration: none;
  font-size: 20px;
  text-align: center;
  display: block;
  width: 100%;
}
.speaker-list-item .colour-1 {
  background: rgba(0, 61, 67, 0.7);
  color: #ffffff;
}
.speaker-list-item .colour-2 {
  background: rgba(166, 192, 130, 0.7);
  color: #ffffff;
}
.speaker-list-item .colour-3 {
  background: rgba(191, 226, 232, 0.7);
  color: #ffffff;
}
.speaker-list-item .colour-0 {
  background: rgba(0, 61, 67, 0.7);
  color: #ffffff;
}

h2 {
  color: #01b3c6;
  padding-top: 2rem;
  font-size: 1.5rem;
}

h3 {
  color: #01b3c6;
  padding-top: 0;
  font-size: 1.1rem;
}

.PacificBlue h2, .PacificBlue h3 {
  color: white;
}

.sponsor-list-item img {
  border: 1px solid #01b3c6;
  margin: 0.2rem;
  background: white;
}

.big-button-holder {
  display: flex;
}

.big-button {
  text-decoration: none;
  display: block;
  width: 100%;
  max-width: 250px;
  margin-right: 1rem;
  background-color: #bfe2e8;
  padding: 1rem;
  color: #003D43;
  margin-bottom: 1rem;
  border: 2px solid white;
  border-radius: 5px;
  transition: background-color 100ms linear;
}
.big-button a, .big-button .intro, .big-button h3 {
  color: #01b3c6;
  text-decoration: none;
}
.big-button:hover {
  background: #a5d6df;
  cursor: pointer;
}
.big-button.disabled {
  background: #e5f3f5;
}
.big-button.disabled:hover {
  background: #e5f3f5;
  cursor: not-allowed;
}

.sponsor-details {
  border-bottom: 1px solid #c6c6c6;
  margin: 1em 0;
}
.sponsor-details:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}
.sponsor-details span img {
  float: left;
  margin-bottom: 1em;
  margin-right: 10px;
  max-width: 310px;
}

html, body {
  font-family: "Open Sans", sans-serif;
}

.social {
  display: inline-block;
}
.social i {
  color: white;
  font-size: 3rem;
}
.social i:hover {
  color: #bfe2e8;
}

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