/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-size: 16px;
}

ol, ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: "Open Sans", sans-serif;
  color: #002847;
  scroll-behavior: smooth;
}

body:not(.full) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body:not(.full) main {
  margin: 5rem auto 0;
  display: flex;
  flex-grow: 1;
}
@media (max-width: 63rem) {
  body:not(.full) main {
    margin-top: 4rem;
  }
}
@media (max-width: 29rem) {
  body:not(.full) main {
    margin-top: 3.5rem;
  }
}

h1 {
  font-size: 2.25rem;
  font-weight: bold;
  padding-bottom: 1em;
  text-align: center;
}
h1.search {
  padding-bottom: 0;
}
@media (max-width: 63rem) {
  h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}

h2 {
  font-size: 1.75rem;
  font-weight: bold;
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1em 0 0.25em;
}

h4 {
  font-size: 1.25rem;
  font-weight: bold;
}

p {
  line-height: 1.4;
  margin-bottom: 1rem;
}
p a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.i {
  font-style: italic;
}

a {
  color: #002847;
  text-decoration: none;
}

strong {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

main ul {
  list-style: disc;
  padding-left: 1.5em;
  line-height: 1.3;
  margin-top: -0.5em;
}

main ol {
  list-style: decimal;
  padding-left: 1.5em;
  line-height: 1.3;
  margin-top: -0.5em;
}

li {
  margin-bottom: 0.5em;
}

img {
  max-width: 90%;
}

hr {
  width: 99%;
  color: rgba(0, 40, 71, 0.5);
  background: rgba(0, 40, 71, 0.5);
  border: none;
  height: 1px;
  padding: 0;
  margin: 0;
}

input[type=text],
input[type=password] {
  -webkit-appearance: none;
  border-radius: 0;
}

header {
  position: fixed;
  top: 0;
  width: 100vw;
  background: #002847;
  display: flex;
  height: 5rem;
  z-index: 100;
}
@media (max-width: 63rem) {
  header {
    height: 4rem;
  }
}
@media (max-width: 42rem) {
  header {
    justify-content: space-between;
    overflow-x: hidden;
  }
}
@media (max-width: 29rem) {
  header {
    height: 3.5rem;
  }
}
header a.logo {
  display: block;
  width: auto;
  height: 100%;
  flex-grow: 0;
  z-index: 1;
  border-bottom: none;
}
@media (max-width: 63rem) {
  header a.logo {
    max-width: 17rem;
  }
}
@media (max-width: 29rem) {
  header a.logo {
    max-width: 12rem;
    margin: 0;
  }
  header a.logo img {
    display: block;
    width: 100%;
    text-align: left;
  }
}
header a.logo img {
  transition: transform 0.4s;
}
header a.logo:hover img {
  transform: scale(1.05);
}
header img {
  padding: 1rem 1rem 1rem 2rem;
  width: auto;
  height: 100%;
}
@media (max-width: 63rem) {
  header img {
    padding: 0.5rem;
  }
}
header nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 42rem) {
  header nav {
    position: fixed;
    top: 4rem;
    background: #002847;
    z-index: 100;
    height: calc(100% - 4rem);
    right: -15rem;
    transition: transform 0.5s;
    transform: translateX(0);
  }
}
@media (max-width: 42rem) and (max-width: 29rem) {
  header nav {
    top: 3.5rem;
    height: calc(100% - 3.5rem);
  }
}
@media (max-width: 42rem) {
  header nav ul {
    flex-direction: column;
    justify-content: flex-start;
    width: 15rem;
  }
  header nav li {
    height: auto;
    margin-top: 1rem;
  }
  header nav a {
    margin: auto;
  }
}
header ul {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  padding-right: 2rem;
}
@media (max-width: 63rem) {
  header ul {
    padding: 0;
  }
}
header li {
  height: 100%;
  display: flex;
  align-items: center;
}
header li.mobSearchLink {
  display: none;
  text-align: center;
  background: #eec583;
  padding: 1rem;
}
header li.mobSearchLink a {
  border: none;
  color: #002847;
  display: inline-flex;
  align-items: center;
}
header li.mobSearchLink svg {
  height: 1rem;
  margin-right: 0.5rem;
}
@media (max-width: 42rem) {
  header li.mobSearchLink {
    display: block;
  }
}
header a {
  color: white;
  text-decoration: none;
  padding: 0.33rem 0.5rem;
  margin: 0 0.5rem;
  border-bottom: 1px solid #002847;
  transition: border-color 0.5s;
}
header a.here {
  border-color: white;
}
header a.here:hover {
  border-color: rgba(255, 255, 255, 0.5);
}
header a:hover {
  border-color: white;
}
header .searchLink {
  display: flex;
}
@media (max-width: 42rem) {
  header .searchLink {
    display: none;
  }
}
header .searchLink a {
  background: #eec583;
  color: #002847;
  text-decoration: none;
  padding: 1rem 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  border: none;
  margin-right: 0;
  transition: background 0.6s, color 0.6s;
}
@media (max-width: 63rem) {
  header .searchLink a {
    padding: 1rem;
  }
}
header .searchLink a:hover {
  background: #d0666c;
  color: white;
}
header .searchLink svg {
  height: 1rem;
  width: 1rem;
  padding: 0;
  margin-left: 1rem;
  flex-shrink: 0;
}
@media (max-width: 63rem) {
  header .searchLink svg {
    margin-left: 0.5rem;
  }
}
header input[type=checkbox] {
  display: none;
}
@media (max-width: 42rem) {
  header input[type=checkbox]:checked ~ nav {
    transform: translateX(-100%);
  }
  header input[type=checkbox]:checked ~ label {
    width: 8rem;
    opacity: 0.5;
  }
}
@media (max-width: 42rem) and (max-width: 23rem) {
  header input[type=checkbox]:checked ~ label {
    width: 28vw;
  }
}
@media (max-width: 42rem) {
  header input[type=checkbox]:checked ~ label .hamburger-inner:before {
    transform: translate3d(8px, 3px, 0) rotate(45deg) scaleX(0.7);
  }
  header input[type=checkbox]:checked ~ label .hamburger-inner:after {
    transform: translate3d(8px, -3px, 0) rotate(-45deg) scaleX(0.7);
  }
}

body.article header .searchLink a {
  background-color: #fff;
}
body.article header .searchLink a:hover {
  background: #d0666c;
}

.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.3s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 2rem;
  height: 0.25rem;
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: transform;
  border-radius: 2px;
  background-color: #fff;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

label[for=menuToggle] {
  display: none;
  height: 3.5rem;
  width: 3.5rem;
  justify-content: flex-start;
  align-items: flex-end;
  transition: width 0.5s, opacity 0.5s;
}
@media (max-width: 42rem) {
  label[for=menuToggle] {
    display: flex;
  }
}
@media (max-width: 29rem) {
  label[for=menuToggle] {
    height: 3.25rem;
    width: 3rem;
  }
}

.homeDevs {
  display: flex;
  width: 100vw;
  height: 33vw;
  margin-top: 5rem;
}
@media (max-width: 63rem) {
  .homeDevs {
    margin-top: 4rem;
  }
}
@media (max-width: 29rem) {
  .homeDevs {
    height: 60vw;
    margin-top: 3.5rem;
  }
}
.homeDevs img {
  display: block;
  height: 100%;
  width: auto;
}
.homeDevs .device {
  position: relative;
  width: calc(33.3333% - 0.1rem);
}
@media (max-width: 42rem) {
  .homeDevs .device {
    width: calc(50% - 0.05rem);
  }
}
.homeDevs .device img {
  position: absolute;
  right: 0;
  animation-name: mouthRoller;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 16s;
  z-index: 2;
}
.homeDevs .device img.nofade {
  animation: none;
  z-index: 1;
}
.homeDevs .device img:nth-of-type(1) {
  animation-delay: 0s;
}
.homeDevs .device img:nth-of-type(2) {
  animation-delay: 4s;
}
.homeDevs .device img:nth-of-type(3) {
  animation-delay: 8s;
}
.homeDevs .device img:nth-of-type(4) {
  animation-delay: 12s;
}
.homeDevs .gap {
  width: 0.2rem;
  background: white;
}
@media (max-width: 42rem) {
  .homeDevs .gap {
    width: 0.1rem;
  }
}
.homeDevs .straight {
  width: calc(66.6666% - 0.1rem);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 42rem) {
  .homeDevs .straight {
    width: calc(50% - 0.05rem);
  }
  .homeDevs .straight .searchBox {
    display: none;
  }
}
.homeDevs .straight img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.searchBox {
  background: #d0666c;
  z-index: 2;
  padding: 2rem 4rem 2.25rem 3.5rem;
  border-radius: 5rem 0;
}
.searchBox.mobile {
  display: none;
}
@media (max-width: 42rem) {
  .searchBox.mobile {
    display: block;
    border-radius: 0;
  }
  .searchBox.mobile form {
    width: 100%;
    margin: auto;
  }
  .searchBox.mobile input {
    max-width: none;
    width: 100%;
  }
  .searchBox.mobile h1 {
    text-align: center;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 63rem) {
  .searchBox {
    padding: 1.25rem 2.25rem;
    border-radius: 3rem 0;
  }
}
@media (max-width: 23rem) {
  .searchBox {
    padding: 1.75rem 1.25rem;
  }
}
.searchBox h1 {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
@media (max-width: 63rem) {
  .searchBox h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}
.searchBox form {
  display: flex;
  width: 100%;
}
.searchBox input {
  background: transparent;
  border: 1px solid white;
  font-size: 1rem;
  padding: 0.25rem;
  color: white;
  outline: none;
  flex-grow: 0;
  width: 9rem;
}
@media (max-width: 63rem) {
  .searchBox input {
    padding: 0.25rem;
    font-size: 0.9rem;
    width: 7rem;
  }
}
.searchBox button {
  background: white;
  border: 1px solid white;
  color: #d0666c;
  padding: 0 0.5rem;
  margin-left: 1rem;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.6s;
  font-size: 0.95rem;
}
@media (max-width: 63rem) {
  .searchBox button {
    font-size: 0.9rem;
    padding: 0 0.25rem;
    margin-left: 0.5rem;
  }
}
.searchBox button:hover {
  cursor: pointer;
  color: white;
  background: #d0666c;
}
.searchBox ::placeholder {
  color: white;
}
.searchBox a {
  display: block;
  padding: 0.2rem;
  color: #fff;
  white-space: nowrap;
}
.searchBox a:first-of-type {
  margin-top: 0.75rem;
}
.searchBox a:hover {
  text-decoration: underline;
}
.searchBox p {
  color: #fff;
}
.searchBox svg.fa-map-marker-alt,
.searchBox svg.fa-user-alt,
.searchBox svg.fa-store-alt {
  margin-right: 0.33rem;
  width: 1rem !important;
  text-align: center;
}
.searchBox svg.fa-angle-right {
  margin-left: 0.33rem;
}

.stringSearch {
  margin: 1rem 2rem 3rem;
}
@media (max-width: 63rem) {
  .stringSearch {
    margin: 1rem 1rem 3rem;
  }
}
@media (max-width: 23rem) {
  .stringSearch {
    margin: 1rem 0 3rem;
  }
}
.stringSearch a {
  display: flex;
  padding: 0.2rem 0;
}
.stringSearch svg.fa-map-marker-alt,
.stringSearch svg.fa-user-alt,
.stringSearch svg.fa-store-alt {
  margin-right: 0.33rem;
  width: 1rem !important;
  text-align: center;
}
.stringSearch svg.fa-angle-right {
  margin-left: 0.33rem;
}

p.searchTerm {
  text-align: center;
  font-style: italic;
}

p.noSuggestion {
  margin: 0.75rem 0 0;
  width: 100%;
  text-align: center;
  font-style: italic;
}

.tileRow {
  display: flex;
  width: 100%;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: wrap;
}
.tileRow > div {
  width: 50%;
  padding-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
}
@media (max-width: 63rem) {
  .tileRow > div {
    padding-top: 2rem;
  }
}
@media (max-width: 42rem) {
  .tileRow > div {
    width: 100%;
  }
}
@media (max-width: 29rem) {
  .tileRow > div {
    width: 100%;
  }
}
.tileRow .content {
  max-width: 20rem;
  margin: 1rem;
}
.tileRow .icon {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-size: 90%;
}
.tileRow h2 {
  font-size: 2.25rem;
  font-weight: bold;
  padding: 0.5em;
  line-height: 1.1;
}
@media (max-width: 63rem) {
  .tileRow h2 {
    font-size: 1.5rem;
  }
}
.tileRow a.button {
  color: #002847;
  text-decoration: none;
  border: 1px solid #002847;
  padding: 0.33em 1rem;
  margin-top: 1rem;
  display: inline-block;
  border-radius: 1rem 0;
  text-transform: uppercase;
  transition: background 0.5s, color 0.5s, border-color 0.5s;
}
.tileRow a.button:hover {
  background: #002847;
  color: #fff;
}
.tileRow .filler {
  width: 100%;
  align-self: flex-end;
  justify-self: flex-end;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.tileRow .filler img {
  width: auto;
  height: auto;
  max-width: 75%;
  max-height: 25rem;
}
@media (max-width: 42rem) {
  .tileRow .filler img {
    max-height: 15rem;
  }
}

div.whatIs {
  background: #eec583;
}
@media (max-width: 42rem) {
  div.whatIs {
    width: 100%;
  }
}
div.whatIs .icon {
  background: #dceff5 url(/assets/images/Braces.svg) no-repeat center;
  background-size: 75%;
}

div.noReferral {
  background: #dceff5;
}
@media (max-width: 42rem) {
  div.noReferral {
    order: 3;
  }
}
div.noReferral .icon {
  background: #eec583 url(/assets/images/Form.svg) no-repeat 65% center;
  background-size: 67%;
}

div.updates {
  background: #002847;
  color: #fff;
}
@media (max-width: 42rem) {
  div.updates {
    order: 2;
  }
}
div.updates .content {
  max-width: 30rem;
}
div.updates .icon {
  background: #eec583 url(/assets/images/Bullhorn.svg) no-repeat center;
  background-size: 62%;
}
div.updates .card {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: center;
  padding: 0;
  margin-bottom: 1.5rem;
}
div.updates .card img {
  display: block;
  width: 40%;
}
div.updates .card .headline {
  text-align: left;
  padding-left: 1rem;
  font-size: 1.1rem;
  line-height: 1.2;
}
div.updates h2 {
  margin-bottom: 2.75rem;
}
@media (max-width: 29rem) {
  div.updates h2 {
    margin-bottom: 1rem;
  }
}
div.updates a.button {
  color: white;
  border-color: white;
}
div.updates a.button:hover {
  background: #dceff5;
  color: #002847;
  border-color: #dceff5;
}

.frontSearch {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 1rem;
  background: url(/assets/images/mapwatermark.jpg) center;
  background-size: cover;
}
@media (max-width: 63rem) {
  .frontSearch {
    padding: 3rem 1rem;
  }
}

footer {
  min-height: 10rem;
  width: 100%;
  background: #002847;
  color: #fff;
  padding: 2rem 0;
}
footer .constrain {
  max-width: 60rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 63rem) {
  footer .constrain {
    padding: 0 2rem;
  }
}
@media (max-width: 42rem) {
  footer .constrain {
    flex-wrap: wrap;
  }
}
@media (max-width: 29rem) {
  footer .constrain {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 29rem) {
  .sponsor {
    max-width: 20rem;
    order: 2;
    text-align: center;
  }
}
.nav {
  line-height: 1.75;
}
@media (max-width: 42rem) {
  .nav {
    text-align: center;
  }
}
@media (max-width: 29rem) {
  .nav {
    order: 1;
    padding-bottom: 3rem;
  }
}
.nav a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.5s;
  padding: 0 0.5rem;
}
.nav a.here, .nav a:hover {
  border-color: #fff;
}

@media (max-width: 42rem) {
  .members {
    padding-top: 3rem;
    width: 100%;
  }
}
@media (max-width: 29rem) {
  .members {
    order: 3;
  }
}
.members h2 {
  font-size: 1.25rem;
  font-weight: bold;
}
@media (max-width: 42rem) {
  .members h2 {
    text-align: center;
  }
}
.members .loginLoginForm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 42rem) {
  .members .loginLoginForm {
    width: 100%;
    margin: auto;
    min-width: 10rem;
  }
}
.members .loginLoginForm input,
.members .loginFPForm input{
  background: transparent;
  color: white;
  border: 1px solid white;
  margin-top: 0.9rem;
  font-size: 1rem;
  padding: 0.25rem;
  outline-color: white;
  width: 100%;
}
.members .loginLoginForm input[type=submit] {
  transition: color 0.5s, background 0.5s;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.25rem 0.75rem;
  color: #002847;
  background: #fff;
  width: auto;
}
.members .loginLoginForm input[type=submit]:hover {
  background: #002847;
  color: #fff;
}
.members .loginLoginForm ::placeholder {
  color: white;
}
.members input {
  background: transparent;
  color: white;
  border: 1px solid white;
  margin-top: 0.9rem;
  font-size: 1rem;
  padding: 0.25rem;
  outline-color: white;
  width: 100%;
}
.members input[type=submit] {
  transition: color 0.5s, background 0.5s;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.25rem 0.75rem;
  color: #002847;
  background: #fff;
  width: auto;
}
.members input[type=submit]:hover {
  background: #002847;
  color: #fff;
}
.members ::placeholder {
  color: white;
}
.members .searchBox {
  background: rgba(220, 239, 245, 0.15);
}
.members .searchBox h1 {
  padding-bottom: 0;
}
.loginFPForm #shPW { color: white; }
#shPW { font-size: .8rem; display: block; font-weight: normal; margin-top: .5em; }
#shPW:hover { cursor: pointer; }
input[type=password] + #shPW .hide { display: none; }
input[type=text] + #shPW .show { display: none; }

@keyframes mouthRoller {
  0% {
    opacity: 1;
  }
  12.5% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  87.5% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.yellowPopout {
  height: 5rem;
  background: #f2cc8e;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -10;
}
@media (max-width: 29rem) {
  .yellowPopout {
    height: 2rem;
  }
}

div.article {
  margin: 2.5rem auto;
  width: 100vw;
  max-width: 40rem;
  position: relative;
  background-color: white;
}
@media (max-width: 42rem) {
  div.article {
    margin: 2.5rem;
  }
}
@media (max-width: 29rem) {
  div.article {
    margin: 1rem;
  }
}
div.article h1 {
  text-align: left;
  color: #d0666c;
  font-size: 2rem;
  padding-bottom: 0.5em;
}
div.article .noticeboard h1 {
  color: #002847;
}
div.article img {
  max-width: none;
  width: 100%;
}
div.article .artContent {
  padding: 1.5rem 2rem;
  position: relative;
}
@media (max-width: 29rem) {
  div.article .artContent {
    padding: 1rem;
  }
}
div.article .artContent:before {
  z-index: -5;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 50%;
  height: 20rem;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(-0.75deg);
  transform-origin: top left;
}
div.article .artContent:after {
  z-index: -5;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 50%;
  height: 20rem;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(0.75deg);
  transform-origin: top right;
}

.findInline {
  display: flex;
  text-align: center;
  background: #eec583;
  padding: 1rem;
  border: none;
  color: #002847;
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  transition: all 0.6s;
}
.findInline:hover {
  background: #d0666c;
  color: #fff;
}
.findInline svg {
  height: 1rem;
  margin-right: 0.5rem;
}
@media (max-width: 42rem) {
  .findInline {
    display: block;
  }
}

main.search {
  margin: 5rem auto 0;
  display: flex;
  position: relative;
}
@media (max-width: 63rem) {
  main.search {
    margin-top: 4rem;
  }
  main.search h1 {
    font-size: 1.75rem;
  }
  main.search h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 42rem) {
  main.search {
    flex-wrap: wrap;
  }
}
main.search input[type=radio] {
  display: none;
}
main.search input[type=radio]:checked + label {
  background: #002847;
  color: #fff;
}
main.search .spaceBar {
  width: 100%;
  height: 1rem;
  background: #fff;
  position: fixed;
  top: 4rem;
  z-index: 10;
  display: none;
}
@media (max-width: 42rem) {
  main.search .spaceBar {
    display: block;
  }
}
@media (max-width: 29rem) {
  main.search .spaceBar {
    top: 3.5rem;
    height: 0.5rem;
  }
}
main.search label {
  display: none;
  height: auto;
  padding: 0.5rem;
  border-bottom: 3px solid #002847;
  width: 50%;
  text-align: center;
  background: #eec583;
  color: #002847;
  position: fixed;
  top: 5rem;
  z-index: 10;
}
main.search label:nth-of-type(2) {
  left: 50%;
}
@media (max-width: 42rem) {
  main.search label {
    display: block;
  }
}
@media (max-width: 29rem) {
  main.search label {
    top: 4rem;
  }
}
main.search #tab-map:checked ~ #map {
  display: block;
}
main.search #tab-results:checked ~ #results {
  display: block;
}

#map {
  height: calc(100vh - 5rem);
  width: 60%;
  background: #eee;
  position: sticky !important;
  top: 5rem;
}
@media (max-width: 63rem) {
  #map {
    height: calc(100vh - 4rem);
    top: 4rem;
    width: 50%;
  }
}
@media (max-width: 42rem) {
  #map {
    height: calc(100vh - 6rem);
    width: 100%;
    position: absolute !important;
    top: 2rem;
    left: 0;
    display: none;
  }
}

#results {
  width: 40%;
  padding: 1.5rem;
}
@media (max-width: 63rem) {
  #results {
    width: 50%;
  }
}
@media (max-width: 42rem) {
  #results {
    width: 100%;
    position: relative;
    top: 3rem;
    left: 0;
    display: none;
  }
}
@media (max-width: 29rem) {
  #results {
    top: 2rem;
  }
}
@media (max-width: 23rem) {
  #results {
    padding: 1rem;
  }
}

.resultSearch {
  width: calc(100% - 4rem);
  margin: 0 auto 2rem;
  background: #dceff5;
  padding: 1rem 3rem;
  border-radius: 3rem 0;
}
@media (max-width: 63rem) {
  .resultSearch {
    width: 100%;
    padding: 1.5rem;
  }
}
.resultSearch input {
  width: 100%;
  margin: auto;
  border: 1px solid #002847;
  outline: none;
  font-size: 1rem;
  padding: 0.33rem 0.5rem;
  background: transparent;
}
.resultSearch a {
  display: flex;
  padding: 0.2rem 3rem 0.2rem 0.2rem;
}
.resultSearch a:first-of-type {
  margin-top: 0.75rem;
}
.resultSearch a:hover {
  text-decoration: underline;
}
.resultSearch svg.fa-map-marker-alt,
.resultSearch svg.fa-user-alt,
.resultSearch svg.fa-store-alt {
  margin-right: 0.33rem;
  width: 1rem !important;
  text-align: center;
}
.resultSearch svg.fa-angle-right {
  margin-left: 0.33rem;
}

.expander {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.expander svg {
  transform: rotate(90deg);
  transition: transform 0.3s;
  margin-right: 0.5em;
}

.open .expander svg {
  transform: rotate(-90deg);
}

.hideStart {
  display: none;
}

.fullList {
  margin-bottom: 2rem;
}
.fullList h2 {
  color: #fff;
  background: #002847;
  padding: 0.33rem 0.5rem;
  position: sticky;
  top: 6rem;
}
@media (max-width: 63rem) {
  .fullList h2 {
    top: 5rem;
  }
}
@media (max-width: 42rem) {
  .fullList h2 {
    top: 8rem;
  }
}
@media (max-width: 29rem) {
  .fullList h2 {
    top: 7rem;
  }
}
.fullList h3 {
  background: #dceff5;
  padding: 0.25em 0.33em;
  position: sticky;
  top: 9rem;
}
@media (max-width: 63rem) {
  .fullList h3 {
    top: 7.5rem;
  }
}
@media (max-width: 42rem) {
  .fullList h3 {
    top: 10.5rem;
  }
}
@media (max-width: 29rem) {
  .fullList h3 {
    top: 9.5rem;
  }
}
.fullList h4 {
  margin-top: 1.75rem;
}
.fullList h3 + h4 {
  margin-top: 1.25rem;
}
.fullList p {
  line-height: 1.4;
  padding-top: 0.25rem;
}
.fullList a {
  line-break: anywhere;
}

div.practitioner {
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
div.practitioner img {
  width: 7.5rem;
  height: auto;
  margin-right: 1rem;
}
div.practitioner:nth-of-type(odd) {
  background: rgba(238, 197, 131, 0.75);
}
div.practitioner:nth-of-type(even) {
  background: #dceff5;
}
div.practitioner a {
  display: flex;
  font-weight: normal;
  border: 1px solid transparent;
  transition: all 0.5s;
  padding: 0.25rem 1.33rem 0.25rem 0;
  border-radius: 1rem 0;
  margin-top: -0.25em;
  align-items: center;
}
div.practitioner a img {
  height: 2em;
  width: auto;
  margin-right: 0.5rem;
}
div.practitioner a svg {
  margin-left: 0.25rem;
}
div.practitioner a:hover {
  padding: 0.25rem 0.66rem;
  background: #002847;
  color: #fff;
}

div.location {
  overflow: hidden;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 29rem) {
  div.location .information {
    width: 100%;
  }
  div.location .information .i {
    width: 100%;
    text-align: center;
  }
  div.location .locprac img {
    max-height: 15rem;
    width: auto;
  }
}
@media (max-width: 23rem) {
  div.location {
    padding: 1rem 1rem 0.5rem;
  }
}
div.location h2 {
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
div.location h2 img {
  height: 1.5em;
  width: auto;
  margin: 0 0.5em 0 0;
}
div.location h3 {
  margin: 0.5em 0 0.75em;
  text-align: center;
}
@media (max-width: 29rem) {
  div.location h3 {
    margin-top: 2rem;
  }
}
div.location h4.expander {
  margin-top: 1rem;
}
div.location h4 + p {
  margin-bottom: 0;
}
div.location .details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 29rem) {
  div.location .details {
    flex-direction: column-reverse;
  }
}
div.location .images {
  flex-shrink: 0;
  width: 33%;
  padding-top: 0.33rem;
  margin-left: 1.5rem;
  overflow: hidden;
}
@media (max-width: 29rem) {
  div.location .images {
    width: 100%;
    margin: 0;
  }
}
div.location img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
@media (max-width: 29rem) {
  div.location img {
    width: auto;
    max-height: 5rem;
    margin: 0 auto 1rem;
  }
}
div.location img.frontage {
  margin-bottom: 2rem;
}
@media (max-width: 29rem) {
  div.location img.frontage {
    margin: 1rem auto;
    max-height: 15rem;
  }
}
div.location:nth-of-type(odd) {
  background: rgba(238, 197, 131, 0.75);
}
div.location:nth-of-type(even) {
  background: #dceff5;
}
div.location .practitioners {
  width: 100%;
}
div.location p.address {
  display: flex;
  align-items: center;
}
div.location p.address svg {
  height: 1.5rem;
}
div.location svg {
  width: 1em !important;
  margin-right: 0.5rem;
  text-align: center;
}
div.location a {
  transition: text-decoration-color 0.4s;
  text-decoration-thickness: 2px;
  text-decoration: underline;
  text-decoration-color: rgba(0, 40, 71, 0);
  overflow-wrap: anywhere;
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 0.75rem;
}
div.location a:hover {
  text-decoration-color: #002847;
}

div.locprac {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
}
@media (max-width: 29rem) {
  div.locprac {
    flex-direction: column;
  }
}
div.locprac .image {
  width: 33%;
  flex-shrink: 0;
  margin-right: 1.5rem;
}
@media (max-width: 29rem) {
  div.locprac .image {
    width: 100%;
    margin: 0;
  }
}
div.locprac img {
  width: 100%;
  height: auto;
}
div.locprac .blurb {
  padding: 0.75rem 0 2rem;
}
div.locprac h3 {
  margin-top: 0;
}
div.locprac p + h4 {
  margin-top: 0.75em;
}
div.locprac + .locprac {
  margin-top: 0.5rem;
}
div.locprac .alsoAt h4 {
  margin: 1.5em 0 0.5em;
}
div.locprac .alsoAt a {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
div.locprac h4.expander {
  margin-top: 0.5rem;
}
@media (max-width: 42rem) {
  div.locprac {
    margin-bottom: 2rem;
  }
}

a.backSearch {
  display: flex;
  text-decoration: underline;
  text-decoration-color: #fff;
  justify-content: center;
  margin-bottom: 2rem;
  transition: text-decoration-color 0.4s;
}
a.backSearch svg {
  margin-right: 0.5rem;
}
a.backSearch:hover {
  text-decoration-color: #002847;
}

a.area {
  display: block;
  position: relative;
  top: -5rem;
  visibility: hidden;
}

.linkCloud {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  justify-content: center;
}
.linkCloud a {
  background: #002847;
  color: #fff;
  margin: 0 0.5rem 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem 0;
}
.linkCloud svg {
  margin-right: 0.5em;
}

form.internal {
  margin: 3rem 0;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
form.internal > div {
  margin-bottom: 1.5rem;
}
form.internal label {
  display: block;
  padding-bottom: 0.25rem;
  font-weight: bold;
  font-size: 1.25rem;
}
form.internal label .note {
  display: block;
  font-weight: normal;
  font-style: italic;
  padding: 0.5rem 0;
  font-size: 1rem;
}
form.internal label .red {
  color: #cc0000;
}
form.internal label .flexed {
  display: flex;
  border: 1px solid #cc0000;
  padding: 0.5rem;
  margin-top: 1rem;
  background: rgba(204, 0, 0, 0.1);
  font-style: normal;
  flex-wrap: wrap;
}
form.internal label .flexed span {
  display: flex;
}
form.internal label .flexed svg {
  margin-right: 1rem;
  height: 2.5rem;
  width: 2.5rem;
}
form.internal label .flexed button {
  width: 100%;
  background: #cc0000;
  border: none;
  width: 100%;
}
form.internal label .flexed button:disabled {
  opacity: 0.2;
}
form.internal label .flexed button:hover {
  background: #880000;
  color: #fff;
}
form.internal input {
  border: 1px solid #002847;
  font-size: 1rem;
  color: #002847;
  padding: 0.5rem;
  width: 100%;
  outline-color: #d0666c;
}
form.internal input.error {
  border-radius: 0;
  margin: 0;
}
form.internal textarea {
  border: 1px solid #002847;
  font-size: 1rem;
  color: #002847;
  padding: 0.5rem;
  width: 100%;
  outline-color: #d0666c;
  min-height: 5rem;
  font-family: "Open-Sans", sans-serif;
}
form.internal #submit_wrap label,
form.internal #submit-clear {
  display: none;
}
form.internal input[type=submit] {
  transition: all 0.3s;
  cursor: pointer;
}
form.internal input[type=submit]:hover {
  background: #002847;
  color: #fff;
}
form.internal input::-webkit-outer-spin-button,
form.internal input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
form.internal input[type=number] {
  -moz-appearance: textfield;
}
form.internal .boolDiv {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0.5rem;
  line-height: 1;
}
form.internal .boolDiv input {
  width: auto;
  margin-right: 0.5rem;
}
form.internal .boolDiv label {
  padding: 0;
}
form.internal .instructions {
  margin-bottom: 3rem;
  padding: 1rem;
  border: 1px solid #002847;
  background: rgba(0, 40, 71, 0.1);
}
form.internal .instructions ol p {
  margin-bottom: 0.25rem;
}
form.internal .instructions button {
  width: 100%;
  font-size: 1em;
  padding: 0.5em;
}
form.internal .instructions input[type=submit] {
  border-top: none;
}
form.internal .qq-upload-drop-area {
  display: block !important;
  position: relative;
  background: #dceff5;
  border: 1px dashed #002847;
}
form.internal .qq-upload-drop-area.qq-upload-drop-area-active {
  background: #d0666c;
}
form.internal .qq-upload-drop-area span {
  display: none;
}
form.internal .qq-upload-drop-area:before {
  content: "Drag and drop a new profile photo here to replace your existing one. File must be in jpg format and less than 8mb.";
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
form.internal #file-uploader-clinicLogo .qq-upload-drop-area:before {
  content: "Drag and drop a new logo here to replace your existing one. File may be a jpg, png or svg format and must be less than 8mb.";
}
form.internal #file-uploader-clinicPhoto .qq-upload-drop-area:before {
  content: "Drag and drop a new clinic photo here to replace your existing one. File must be in jpg format and less than 8mb.";
}
form.internal #file-uploader-newFile .qq-upload-drop-area:before {
  content: "Drag and drop a new document here to upload to Member Files. File must be of type pdf, doc, docx, xls, xlsx or jpg and less than 8mb.";
}
form.internal .qq-clear-button, form.internal .qq-upload-button {
  width: 100%;
  background: #002847;
  color: #fff;
}
form.internal .qq-clear-button.qq-upload-button-hover, form.internal .qq-upload-button.qq-upload-button-hover {
  cursor: pointer;
}
form.internal .file-uploader-items {
  display: flex;
  justify-content: center;
  margin: 0 auto 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form.internal .file-wrap {
  float: none;
  display: flex;
  flex-direction: column;
}
form.internal .file-wrap .title {
  display: block;
}
form.internal select {
  border: 1px solid #002847;
  font-size: 1rem;
  padding: 0.25rem;
  width: 100%;
  color: #002847;
}
form.internal.tint {
  padding: 1rem;
  background: #dceff5;
}

.loginLoginForm label,
.loginFPForm label {
  display: block;
  padding-bottom: 0.25rem;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.loginFPForm label { margin-bottom: 0; }
.loginLoginForm input,
.loginFPForm input {
  border: 1px solid #002847;
  font-size: 1rem;
  color: #002847;
  padding: 0.5rem;
  width: 100%;
  outline-color: #d0666c;
}
.loginLoginForm input.error,
.loginFPForm input.error {
  border-radius: 0;
  margin: 0;
}
.loginLoginForm legend,
.loginFPForm legend {
  display: none;
}
.loginLoginForm input[type=submit],
.loginFPForm input[type=submit] {
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 1rem;
}
.loginLoginForm input[type=submit]:hover,
.loginFPForm input[type=submit]:hover {
  background: #002847;
  color: #fff;
}
.loginLoginForm .ff,
.loginFPForm .ff {
  margin-bottom: 1.5rem;
}

.loginRegister a {
  display: block;
  width: 100%;
  color: #d0666c;
  border: 2px solid #d0666c;
  border-radius: 1rem 0;
  text-align: center;
  padding: 0.33rem 1rem;
  transition: all 0.5s;
}
.loginRegister a:hover {
  background: #d0666c;
  color: #fff;
}

.intButton {
  color: #fff;
  text-decoration: none;
  border: 2px solid #002847;
  padding: 0.33em 1rem;
  margin-top: 1rem;
  display: inline-block;
  transition: background 0.5s, color 0.5s, border-color 0.5s;
  background: #002847;
  border-radius: 1rem 0;
  display: block;
  text-align: center;
}
.intButton:hover {
  background: #fff;
  color: #002847;
  cursor: pointer;
}
.intButton:disabled {
  background: rgba(0, 40, 71, 0.75);
  color: #fff;
  border: none;
}
.intButton:disabled:hover {
  cursor: default;
}
.intButton.unpublish {
  background: #d0666c;
  border: 1px solid #d0666c;
}
.intButton.unpublish:hover {
  background: #fff;
  color: #d0666c;
}
.intButton.publish {
  background: #eec583;
  border: 1px solid #eec583;
}
.intButton.publish:hover {
  background: #fff;
  color: #eec583;
}
.intButton.center {
  text-align: center;
}
.intButton.light {
  font-weight: normal;
}

.success {
  color: #080;
  border: 2px solid #080;
  background: #cfc;
}

.error {
  color: #800;
  border: 2px solid #800;
  background: #fcc;
}

.success,
.error {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 1rem 0;
  display: block;
}
.success .error,
.success .success,
.error .error,
.error .success {
  border: none;
  padding: 0;
  margin: 0;
}

.noListing {
  text-align: center;
  font-style: italic;
  font-weight: bold;
  font-size: 1.25rem;
  padding-bottom: 2.5rem;
}

.fileGroup {
  border: 1px solid #002847;
  margin-top: 1rem;
}
.fileGroup .header {
  background: #002847;
  color: #fff;
  padding: 0.5rem;
  font-size: 1.2rem;
}
.fileGroup .body {
  padding: 1rem 0.5rem;
}
.fileGroup .uploadForm {
  padding: 0 1rem;
}
.fileGroup .footer {
  color: #002847;
  background: #dceff5;
  padding: 0.25rem 0.5rem;
  font-style: italic;
}

a.memberFile {
  background: #dceff5;
  padding: 1rem 10rem 1rem 1rem;
  margin: 0.5rem 0;
  width: 100%;
  display: block;
  transition: transform 0.2s;
}
a.memberFile h2 {
  font-size: 1.25rem;
}
a.memberFile i {
  font-style: italic;
  font-size: 0.8rem;
}
a.memberFile:hover {
  transform: scale(1.1);
}

a:target {
  display: block;
  position: relative;
  top: -5rem;
  visibility: hidden;
}

.noticeboard {
  background: #dceff5;
  margin-top: 2rem;
  padding: 1rem;
  width: 100%;
  display: block;
  color: #002847;
  border: 1px solid #002847;
}
.noticeboard h1 + h2 {
  margin-top: 0.25rem;
}
.noticeboard h2 {
  font-size: 1.5rem;
}
.noticeboard h2 + p {
  margin-top: 1rem;
}

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