@charset "UTF-8";

/* Chaning the colours? Look in custom-properties.scss */

.underline {
  --bottom-spacer: 1.5;
  --bottom-push: 3;
  position: relative;
  display: inline-block;
  margin-bottom: calc(1.618rem * var(--bottom-push));
}

.underline::before {
  content: "";
  background-color: var(--brand-color-c);
  height: 5px;
  width: 36%;
  min-width: 3rem;
  position: absolute;
  bottom: calc(-1.618rem * var(--bottom-spacer));
}

.underline--third-left::before {
  left: 0;
}

.underline--third-right::before {
  right: 0;
}

.underline-fancy {
  position: relative;
}

.underline-fancy::after {
  content: "";
  background-color: var(--brand-color-c);
  height: 3px;
  position: absolute;
  bottom: -0.618rem;
  left: 2%;
  right: 20%;
  -webkit-animation: slidein 1.2s;
          animation: slidein 1.2s;
}

@-webkit-keyframes slidein {
  0% {
    right: 100%;
    opacity: 0.75;
    height: 1px;
  }

  50% {
    right: 60%;
  }

  65% {
    right: 16%;
    opacity: 0.9;
  }

  80% {
    right: 20%;
  }

  85% {
    right: 17%;
  }

  80% {
    right: 20%;
  }

  90% {
    right: 17%;
  }

  100% {
    right: 19%;
    opacity: 1;
    height: 2px;
  }
}

@keyframes slidein {
  0% {
    right: 100%;
    opacity: 0.75;
    height: 1px;
  }

  50% {
    right: 60%;
  }

  65% {
    right: 16%;
    opacity: 0.9;
  }

  80% {
    right: 20%;
  }

  85% {
    right: 17%;
  }

  80% {
    right: 20%;
  }

  90% {
    right: 17%;
  }

  100% {
    right: 19%;
    opacity: 1;
    height: 2px;
  }
}

:hover.underline--none,
:hover.underline--0 {
  text-decoration: none;
}

.accreditation {
  max-width: 100%;
}

.accreditation a {
  display: block;
  width: 100%;
  max-width: 300px;
}

.accreditation--center {
  margin-left: auto;
  margin-right: auto;
}

.accreditation a:hover,
.accreditation a:focus {
  outline: var(--brand-color-a) 3px solid;
}

.testimonial p {
  margin-bottom: 0.618rem;
}

.testimonial blockquote p:first-of-type {
  font-size: 0.8rem;
}

.testimonial blockquote p:first-of-type::before {
  content: open-quote;
  font-weight: 800;
}

.testimonial blockquote p:last-of-type::after {
  content: close-quote;
  font-weight: 800;
}

/*
    Shape A: Is a bottom right corner cutoff.
*/

.shape-a {
  --peel-bg-colour: var(--rgb-brand-color-d);
  background: linear-gradient(135deg, rgba(var(--peel-bg-colour), 1) calc(100% - 1rem), rgba(var(--peel-bg-colour), 0) calc(100% - 1rem));
  transition: all 200ms;
}

.shape-a.brand-color-a {
  --peel-bg-colour: var(--rgb-brand-color-a);
}

.shape-a.brand-color-b {
  --peel-bg-colour: var(--rgb-brand-color-b);
}

.shape-a.brand-color-c {
  --peel-bg-colour: var(--rgb-brand-color-c);
}

.shape-a.brand-color-d {
  --peel-bg-colour: var(--rgb-brand-color-d);
}

.shape-a.brand-shade-a {
  --peel-bg-colour: var(--rgb-brand-shade-a);
}

.shape-a.brand-shade-b {
  --peel-bg-colour: var(--rgb-brand-shade-b);
}

.shape-a.brand-shade-c {
  --peel-bg-colour: var(--rgb-brand-shade-c);
}

a.shape-a:hover {
  filter: drop-shadow(2px 4px 6px var(--drop-shadow-color));
}

.lottie {
  width: 100%;
  height: auto;
  height: 56.25vw;
}

.table__row:nth-child(1) .group {
  background-color: #6d6bb9;
}

.table__row:nth-child(2) .group {
  background-color: #a06bb9;
}

.table__row:nth-child(3) .group {
  background-color: #b96b8c;
}

.table__row:nth-child(4) .group {
  background-color: #b96b6b;
}

.table__row:nth-child(5) .group {
  background-color: #b9906b;
}

.table--border {
  border: 1px solid;
  border-radius: 1rem;
}

.table-header-shape {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
          clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  line-height: 1.2;
}

.no-l2-1 {
  margin-top: 1rem !important;
}

.no-l2plus-1 {
  margin-top: 1rem !important;
}

.table--why-us-competitor {
  min-width: 400px;
  overflow-x: auto;
}

.table--why-us-competitor th,
.table--why-us-competitor td {
  padding: 0.8rem 0.5rem 0.618rem 0.5rem;
  vertical-align: middle;
  border: none;
}

.table--why-us-competitor thead th {
  border: none;
}

.table--why-us-competitor tr {
  border-top: solid #45454520 1px;
}

.form .form-control {
  border: rgba(var(--rgb-brand-shade-c), 0.5) 1px solid;
}

.form .form-control:-moz-read-only {
  border-color: #00800044;
  background-color: #fff4;
}

.form .form-control:read-only {
  border-color: #00800044;
  background-color: #fff4;
}

.form label {
  margin-bottom: 0.2rem;
}

.map {
  width: auto;
  height: 800px;
}

.icon {
  position: relative;
}

.icon--light .svg {
  fill: white;
}

.icon--dark .svg {
  fill: black;
}

.panelOrTile .icon--aspect-ratio {
  aspect-ratio: 250/250;
  min-height: 60px;
  height: auto;
  max-width: 250px;
}

.ccfs-scale {
  font-size: calc( var(--baseFontSize) * var(--charCountOffsetPercent, 1));
}

.no-scale {
  --baseFontSize: calc(2rem);
  font-size: calc( var(--baseFontSize) * var(--charCountOffsetPercent, 1));
}

.fs-heading {
  --baseFontSize: calc(3rem);
}

.svg--silhouette {
  width: 100%;
  max-width: 526px;
}

.fill-a {
  fill: var(--brand-color-a);
}

.fill-b {
  fill: var(--brand-color-b);
}

.fill-c {
  fill: var(--brand-color-c);
}

.fill-d {
  fill: var(--brand-color-d);
}

.faq__question {
  cursor: pointer;
}

.faq__question .rotate-icon {
  transform: rotate(90deg);
  transition: 200ms all;
}

.faq__question.collapsed {
  opacity: 0.7;
}

.faq__question.collapsed .rotate-icon {
  transform: rotate(0deg);
  transition: 200ms all;
}

.faq__question:hover {
  color: var(--brand-color-c);
}

.faq__question:hover .rotate-icon {
  transform: rotate(-90deg);
  transition: 200ms all;
}

.faq__question:hover.collapsed .rotate-icon {
  transform: rotate(135deg);
}

.faqs .faqs__expand {
  width: 2rem;
  height: 2rem;
  position: relative;
  transition: 200ms all;
}

.faqs .faqs__expand .icon {
  border: solid 3px var(--font-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  bottom: -1px;
  opacity: 0.4;
  padding-left: 0.05rem;
  padding-top: 0.05rem;
  overflow: hidden;
}

.faqs .faqs__expand:hover .icon {
  border: solid 3px var(--brand-color-c);
  color: var(--brand-color-c);
  opacity: 1;
}

.faqs .markdown {
  margin-left: 0;
}

.background--dark .faq__question,
.background--dark .faq-heading {
  --heading-color: white;
}

.background--dark .markdown,
.background--dark .icon {
  color: white;
}

.faq__answer img {
  max-width: 100%;
  height: auto;
}

.markdown blockquote {
  font-size: large;
  font-style: italic;
  opacity: 0.8;
  border-left: solid 0.2rem #9999;
  padding-left: 1rem;
  padding-top: 0.5rem;
}

.markdown:not(.text-light) a:not(.btn) {
  border-bottom: 1px dashed;
  color: #063c60;
}

.markdown:not(.text-light) a:not(.btn):hover {
  text-decoration: none;
  border-bottom: 1px double;
  color: #538c23;
}

.markdown table {
  margin-bottom: 1.618rem;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.markdown table th,
.markdown table td {
  padding-right: 1rem;
}

.markdown table thead {
  border-bottom: 2px solid rgb(var(--rgb-brand-shade-a), 0.5);
  text-wrap: nowrap;
}

.markdown table tbody tr {
  border-bottom: 1px solid rgb(var(--rgb-brand-shade-a), 0.2);
}

.markdown ul,
.markdown ol {
  padding-bottom: 0.618rem;
}

.markdown ol > li > p,
.markdown ul > li > p {
  margin-bottom: 0.618rem;
}

.markdown li > ul,
.markdown li > ol {
  margin-bottom: calc(0.618rem * 1);
}

.post .position-sticky {
  top: 8rem;
}

.post .position-sticky.border-left {
  border-left: solid 1px #0001;
  padding-left: 1rem;
}

.post .markdown > h2 + p {
  font-size: 1.25rem;
  line-height: 1.4;
}

.post .markdown > p:nth-child(1) {
  font-size: 1.25rem;
}

.post .testimonial blockquote p:first-of-type {
  font-size: 0.8rem;
}

.line-list {
  margin: auto;
}

.line-list ul {
  position: relative;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin-left: 1rem;
}

.line-list ul li {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' width='16'%3E%3Ccircle cx='8' cy='8' r='6' stroke='%23b5b5b5' stroke-width='2' fill='%23f6f6f6' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0rem 0.618rem;
  list-style: none;
  margin-left: -47px;
  padding: 0.4rem 1.5rem;
  font-size: 1rem;
  min-width: 30ch;
  z-index: 0;
  position: relative;
}

.line-list ul::before {
  content: "";
  position: absolute;
  z-index: 0;
  /* background-color: #b5b5b5; */
  border-left: 1px dashed #b5b5b5;
  --size: 1px;
  width: var(--size);
  left: 0;
  top: 1.2rem;
  height: calc(100% - 2.7rem);
}

.list-nay ul ::marker {
  content: "\F057";
  font-size: 1rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: red;
}

.list-nay ul li {
  padding-left: 0.618rem;
}

.list-yay ul ::marker {
  content: "\F058";
  font-size: 1rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: green;
}

.list-yay ul li {
  padding-left: 0.618rem;
}

.list-yay.icon-b ul ::marker {
  color: var(--brand-color-b);
}

.list-hey ::marker {
  content: "\F071";
  content: "\F06A";
  font-size: 1rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: var(--brand-color-c);
}

.list-hey li {
  padding-left: 0.618rem;
}

.list-plus ::marker {
  content: "\F055";
  font-size: 1rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: var(--brand-color-a);
}

.list-plus li {
  padding-left: 0.618rem;
}

ol li {
  padding-left: 0.4rem;
  margin-bottom: 0.2rem;
}

ol li::marker {
  color: var(--brand-color-c);
  font-weight: bold;
  margin-right: 1rem;
  font-size: 1.1rem;
}

.flex-list {
  display: flex;
}

.flex-list li {
  margin-right: 2rem;
  max-width: 35ch;
}

.results-content {
  min-height: 80vh;
  padding: 5rem 0;
  background-color: white;
  display: flex;
}

.results-content .text {
  background-color: #fffc;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding-right: 1rem;
}

@media screen and (min-width: 0px) {
  .results-content {
    background-repeat: no-repeat;
    background-position: top right;
    background-image: url("/images/create--mobile.svg");
    background-size: 100%;
    padding-top: 90vw;
  }

  .results-content .text {
    max-width: 40ch !important;
  }
}

@media screen and (min-width: 768px) {
  .results-content {
    background-size: auto;
    padding-top: 5rem;
    background-image: url("/images/create--tablet.svg");
  }
}

@media screen and (min-width: 1200px) {
  .results-content {
    background-image: url("/images/create--desktop.svg");
  }

  .results-content .text {
    max-width: 52ch !important;
  }
}

::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: #454554;
}

::selection {
  color: white;
  background: #454554;
}

b,
strong {
  font-weight: bold;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.lios.cover {
  background-size: cover;
  background-repeat: repeat;
  background-position: 0 0;
  position: relative;
  background-image: none;
}

.flip-x {
  transform: scaleX(-1);
}

.drop-shadow {
  filter: drop-shadow(0px 0px 0.5rem #0002);
}

.section-heading a {
  color: inherit;
}

.section-heading h2 {
  color: inherit;
}

.review-star {
  max-width: 1.7rem;
  width: 1.3rem;
}

.small-star {
  max-width: 0.7rem;
  width: 0.7rem;
}

.iframe {
  max-width: 100%;
}

.sd-form {
  display: inline-flex;
  background-color: #9992;
  padding: 3rem 0.5rem 0.5rem 0.5rem;
  border-radius: 0.3rem;
}

.sd-form iframe {
  max-width: 100%;
}

.contributors .contributors__avatar {
  height: 46px;
  width: 46px;
  display: flex;
  margin-left: 1px;
  margin-right: 1px;
}

.contributors .contributors__initials {
  height: 40px;
  width: 40px;
  padding-top: 4px;
  background-color: var(--brand-color-b);
}

.badge {
  padding: 0.6em 0.6em 0.25em 0.6em;
}

.markdown-left .markdown {
  margin-left: 0;
}

.toc {
  opacity: 0.8;
}

.toc:hover {
  opacity: 1;
}

.toc a {
  color: var(--brand-shade-a);
  opacity: 0.6;
}

.toc .active a {
  opacity: 0.99;
  font-weight: 700;
  position: relative;
}

.toc .active::before {
  content: "\F0C1";
  position: absolute;
  left: -0.618rem;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.toc li {
  position: relative;
}

.toggle-switch input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}

.toggle-switch label {
  cursor: pointer;
  text-indent: -9999px;
  width: 60px;
  height: 30px;
  background: grey;
  display: block;
  border-radius: 100px;
  position: relative;
}

.toggle-switch label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

.toggle-switch input:checked + label {
  background: var(--brand-color-b);
}

.toggle-switch input:checked + label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

.toggle-switch label:active:after {
  width: 30px;
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
  animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow.slow {
  -webkit-animation: spinner-grow 8s linear infinite;
          animation: spinner-grow 8s linear infinite;
}

.spinner-grow-sm {
  width: 0.618rem;
  height: 0.618rem;
}

.gradient-focus-form {
  background: radial-gradient(circle, rgba(255, 250, 250, 0.5) 10%, rgba(55, 61, 55, 0.15) 100%);
}

@media screen and (min-width: 992px) {
  .awards-condense {
    margin-top: -5rem;
  }
}

.text-strike-through {
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
  color: #4449;
}

