/**
 * online-c.css
 *
 * Consolidated CSS for iframe rendering of provider minisite
 * tiles, filter bar, grid, and provider pages.
 *
 * Derived from online-front SCSS sources with all variables resolved.
 * Image paths (../images/...) are relative to the theme assets directory.
 *
 * Variable reference:
 *   $lightBlue / $darkBlue : #176ECD
 *   $blue                  : #1E97F2
 *   $black                 : #4B4B4B
 *   $grey                  : #FAFAFA
 *   $darkGrey              : #C5C5C5
 *   $bgGrey                : #e6e6e6
 *   $cardShadow            : #E0E0E0
 *   $shadowColour          : #F2F2F2
 *   $disabledButtonColor   : #B6B6B6
 *   $orange                : #de1616e0
 *   $green                 : #4CC76D
 *   $gradientDark          : #5836cb
 *   $gradientLight         : #4120af
 */


/* ==========================================================================
   0. Base reset / normalize (replicates Bootstrap 4 Reboot)
   ========================================================================== */

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: #176ECD;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0d4a8a;
  text-decoration: underline;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0,0,0,.1);
}

img {
  vertical-align: middle;
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 1rem;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}


/* ==========================================================================
   1. Bootstrap 4 Grid — minimal
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px)  { .container { max-width: 540px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6,
.col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6,
.col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col    { flex-basis: 0; flex-grow: 1; max-width: 100%; }
.col-1  { flex: 0 0  8.333333%; max-width:  8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%;        max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%;        max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%;        max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%;       max-width: 100%; }

.col-auto { flex: 0 0 auto; width: auto; max-width: 100%; }

.col-xs     { flex-basis: 0; flex-grow: 1; max-width: 100%; }
.col-xs-1   { flex: 0 0  8.333333%; max-width:  8.333333%; }
.col-xs-2   { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-xs-3   { flex: 0 0 25%;        max-width: 25%; }
.col-xs-4   { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-xs-5   { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-xs-6   { flex: 0 0 50%;        max-width: 50%; }
.col-xs-7   { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-xs-8   { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-xs-9   { flex: 0 0 75%;        max-width: 75%; }
.col-xs-10  { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-xs-11  { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-xs-12  { flex: 0 0 100%;       max-width: 100%; }
.col-xs-auto { flex: 0 0 auto; width: auto; max-width: 100%; }

@media (min-width: 576px) {
  .col-sm    { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-sm-1  { flex: 0 0  8.333333%; max-width:  8.333333%; }
  .col-sm-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-sm-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-sm-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%;       max-width: 100%; }
  .col-sm-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

@media (min-width: 768px) {
  .col-md    { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-md-1  { flex: 0 0  8.333333%; max-width:  8.333333%; }
  .col-md-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-md-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%;       max-width: 100%; }
  .col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

@media (min-width: 992px) {
  .col-lg    { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-lg-1  { flex: 0 0  8.333333%; max-width:  8.333333%; }
  .col-lg-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-lg-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%;       max-width: 100%; }
  .col-lg-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl    { flex-basis: 0; flex-grow: 1; max-width: 100%; }
  .col-xl-1  { flex: 0 0  8.333333%; max-width:  8.333333%; }
  .col-xl-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-xl-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-xl-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-xl-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-xl-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-xl-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-xl-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-xl-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-xl-12 { flex: 0 0 100%;       max-width: 100%; }
  .col-xl-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

.offset-1  { margin-left:  8.333333%; }
.offset-2  { margin-left: 16.666667%; }
.offset-3  { margin-left: 25%; }
.offset-4  { margin-left: 33.333333%; }
.offset-5  { margin-left: 41.666667%; }
.offset-6  { margin-left: 50%; }
.offset-7  { margin-left: 58.333333%; }
.offset-8  { margin-left: 66.666667%; }
.offset-9  { margin-left: 75%; }
.offset-10 { margin-left: 83.333333%; }
.offset-11 { margin-left: 91.666667%; }

.d-none         { display: none !important; }
.d-inline       { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block        { display: block !important; }
.d-flex         { display: flex !important; }
.d-inline-flex  { display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none         { display: none !important; }
  .d-sm-inline       { display: inline !important; }
  .d-sm-inline-block { display: inline-block !important; }
  .d-sm-block        { display: block !important; }
  .d-sm-flex         { display: flex !important; }
}
@media (min-width: 768px) {
  .d-md-none         { display: none !important; }
  .d-md-inline       { display: inline !important; }
  .d-md-inline-block { display: inline-block !important; }
  .d-md-block        { display: block !important; }
  .d-md-flex         { display: flex !important; }
}
@media (min-width: 992px) {
  .d-lg-none         { display: none !important; }
  .d-lg-inline       { display: inline !important; }
  .d-lg-inline-block { display: inline-block !important; }
  .d-lg-block        { display: block !important; }
  .d-lg-flex         { display: flex !important; }
}
@media (min-width: 1200px) {
  .d-xl-none         { display: none !important; }
  .d-xl-inline       { display: inline !important; }
  .d-xl-inline-block { display: inline-block !important; }
  .d-xl-block        { display: block !important; }
  .d-xl-flex         { display: flex !important; }
}

.justify-content-start   { justify-content: flex-start !important; }
.justify-content-end     { justify-content: flex-end !important; }
.justify-content-center  { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around  { justify-content: space-around !important; }

.align-items-start   { align-items: flex-start !important; }
.align-items-end     { align-items: flex-end !important; }
.align-items-center  { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }

.flex-column { flex-direction: column !important; }
.flex-row    { flex-direction: row !important; }
.flex-wrap   { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-grow-1 { flex-grow: 1 !important; }

.text-left   { text-align: left !important; }
.text-right  { text-align: right !important; }
.text-center { text-align: center !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }


/* ==========================================================================
   2. Utility classes
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}


/* ==========================================================================
   3. Helper classes (from helper.css)
   ========================================================================== */

.show-xs { display: none; }
.Page--xs .show-xs { display: inherit; }
.Page--xs .show-xs.show-xs--inlineBlock { display: inline-block; }

.show-sm { display: none; }
.Page--sm .show-sm { display: inherit; }
.Page--sm .show-sm.show-sm--inlineBlock { display: inline-block; }

.show-md { display: none; }
.Page--md .show-md { display: inherit; }
.Page--md .show-md.show-md--inlineBlock { display: inline-block; }

.show-lg { display: none; }
.Page--lg .show-lg { display: inherit; }
.Page--lg .show-lg.show-lg--inlineBlock { display: inline-block; }

.show-xl { display: none; }
.Page--xl .show-xl { display: inherit; }
.Page--xl .show-xl.show-lg--inlineBlock { display: inline-block; }

.Page--xs .hide-xs { display: none; }
.Page--sm .hide-sm { display: none; }
.Page--md .hide-md { display: none; }
.Page--lg .hide-lg { display: none; }
.Page--xl .hide-xl { display: none; }

.m-10  { margin: 10px; }
.mt-10 { margin-top: 10px; }
.ml-10 { margin-left: 10px; }
.mr-10 { margin-right: 10px; }
.mb-10 { margin-bottom: 10px; }

.m-20  { margin: 20px; }
.mt-20 { margin-top: 20px; }
.ml-20 { margin-left: 20px; }
.mr-20 { margin-right: 20px; }
.mb-20 { margin-bottom: 20px; }

.m-5  { margin: 5px; }
.mt-5 { margin-top: 5px; }
.ml-5 { margin-left: 5px; }
.mr-5 { margin-right: 5px; }
.mb-5 { margin-bottom: 5px; }

.p-10  { padding: 10px; }
.pt-10 { padding-top: 10px; }
.pl-10 { padding-left: 10px; }
.pr-10 { padding-right: 10px; }
.pb-10 { padding-bottom: 10px; }

.p-20  { padding: 20px; }
.pt-20 { padding-top: 20px; }
.pl-20 { padding-left: 20px; }
.pr-20 { padding-right: 20px; }
.pb-20 { padding-bottom: 20px; }

.p-5  { padding: 5px; }
.pt-5 { padding-top: 5px; }
.pl-5 { padding-left: 5px; }
.pr-5 { padding-right: 5px; }
.pb-5 { padding-bottom: 5px; }

.float-container { position: relative; overflow: hidden; }
.float-left  { float: left; }
.float-right { float: right; }
.hide { display: none; }


/* ==========================================================================
   4. Page component (cmp-page.scss)
   ========================================================================== */

.Page--mac {
  zoom: 86%;
}

.Page__Spacer {
  min-height: 700px;
  background-color: #efefef;
}


/* ==========================================================================
   5. Belt component (cmp-belt.scss)
   ========================================================================== */

.Belt {
  background-color: #FAFAFA;
  padding-top: 100px;
  padding-bottom: 110px;
}

.Page--xs .Belt,
.Page--sm .Belt,
.Page--md .Belt {
  padding-top: 40px;
  padding-bottom: 40px;
}

.Page--xs .Belt__Heading,
.Page--sm .Belt__Heading,
.Page--md .Belt__Heading {
  font-size: 21px;
}

.Page--xs .Belt__Title,
.Page--sm .Belt__Title,
.Page--md .Belt__Title {
  font-size: 18px;
}

.Belt__Loading {
  text-align: center;
}

.Belt__ButtonContainer {
  text-align: center;
}

.Belt__FilterBarWrapper {
  top: -1px;
  padding-bottom: 10px;
  transition: box-shadow 0.1s ease-in;
}

.Page--lg .Belt__FilterBarWrapper--active,
.Page--xl .Belt__FilterBarWrapper--active,
.Page--md .Belt__FilterBarWrapper--active,
.Page--sm .Belt__FilterBarWrapper--active,
.Page--xs .Belt__FilterBarWrapper--active {
  padding-top: 5px;
  background-color: white;
  box-shadow: 0 0 15px #E0E0E0;
}

.Belt__Container {
  padding: 0;
  position: relative;
}

.Belt__HeadingWrapper {
  position: relative;
  overflow: hidden;
}

.Belt__Heading {
  float: left;
  color: #176ECD;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  font-size: 34px;
  margin-bottom: 20px;
  margin-right: 20px;
  display: inline-block;
}

.Belt__MoreButton {
  font-size: 75%;
  float: left;
}

.Belt__Title {
  color: #176ECD;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.Belt__Teaser {
  font-family: Lato, sans-serif;
  font-size: 17px;
  color: #4B4B4B;
  margin-bottom: 30px;
}

.Belt__Options {
  position: relative;
}

.Belt__Favourite {
  position: absolute;
  right: 0;
  cursor: pointer;
}

.Belt__Link {
  font-family: Lato, sans-serif;
  font-weight: bold;
  font-size: 17px;
  color: #1E97F2;
  margin-bottom: 30px;
  line-height: 20px;
}

.Belt__Link:hover {
  color: #176ECD;
}

.Belt__Card {
  border-radius: 15px;
  border-color: transparent;
  box-shadow: 0 0 30px #E0E0E0;
  cursor: pointer;
  overflow: hidden;
}

.Belt__Image {
  height: 215px;
  margin: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.Belt__NavButton {
  width: 60px;
  height: 60px;
  transition: opacity 0.5s;
  box-shadow: 0 0 30px #E0E0E0;
  border-radius: 50%;
}

.Belt__NavButton::after {
  content: '';
}

.Belt .swiper-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.Belt .swiper-wrapper {
  padding-left: -20px;
  padding-right: -20px;
}

.Belt .swiper-button-prev {
  left: 10px;
  background: url(../images/svg/left-white-arrow.svg) 50% 50% no-repeat;
  background-size: 100%;
}

.Belt .swiper-button-next {
  right: 14px;
  background: url(../images/svg/right-white-arrow.svg) 50% 50% no-repeat;
  background-size: 100%;
}

.Belt .swiper-button-disabled {
  opacity: 0;
}


/* ==========================================================================
   5b. TileGrid (cmp-belt.scss)
   ========================================================================== */

.TileGrid .Belt__Container {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.TileGrid .Belt__Card {
  flex-basis: calc(360px - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
}

.Page--lg .TileGrid .Belt__Card {
  flex-basis: calc(310px - 10px);
}

.Page--xs .TileGrid .Belt__Card {
  flex-basis: calc(495px - 10px);
}


/* ==========================================================================
   6. Button component (cmp-button.scss)
   ========================================================================== */

.Button {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid #4120af;
  color: #4120af;
  text-transform: uppercase;
  font-family: Lato;
  font-weight: bold;
  transition: background-color 0.5s, color 0.2s;
}

.Button:focus {
  outline: none;
}

.Button--compact {
  padding: 8px 30px;
}

.Button--outline {
  background-color: white;
}

.Button--outline:hover {
  background-color: #4120af;
  text-decoration: none;
  color: white;
}

.Button--lightBlue {
  color: white;
  border-color: #176ECD;
  background-color: #176ECD;
}

.Button--lightBlue:hover,
.Button--lightBlue:visited,
.Button--lightBlue:focus {
  color: white;
}

.Button--fullWidth {
  display: block;
  width: 100%;
}

.Button--wide {
  padding-left: 60px;
  padding-right: 60px;
}

.Button--center {
  text-align: center;
}

.Button--white {
  background-color: white;
  border: 2px solid white;
  color: #176ECD;
  transition: border-color 0.5s;
}

.Button--white:hover {
  border: 2px solid #176ECD;
}

.Button--primary {
  background-color: #176ECD;
  color: white;
  border-color: #176ECD;
}

.Button--primary:hover {
  color: white;
}

.Button--orange {
  color: white;
  border-color: #de1616e0;
  background-color: #de1616e0;
}

.Button--orange:hover,
.Button--orange:visited,
.Button--orange:focus {
  color: white;
}

.Button--link {
  border-color: transparent;
  color: #4B4B4B;
  font-weight: bold;
}

.Button--link:hover {
  background-color: #FAFAFA;
  text-decoration: none;
  color: #4B4B4B;
}

.Button--blue-link {
  border-color: transparent;
  color: #176ECD;
  font-weight: normal;
  text-transform: none;
}

.Button--blue-link:hover {
  text-decoration: underline;
  color: #4B4B4B;
}

.Button--busy {
  pointer-events: none;
  cursor: not-allowed;
}

.Button--disabled {
  background-color: #B6B6B6;
  border-color: transparent;
  pointer-events: none;
}

.Page--xs .Button {
  padding: 8px 15px;
  font-size: 14px;
  font-weight: bold;
}


/* ==========================================================================
   7. Form + FormInput (cmp-forms.scss)
   ========================================================================== */

.Form__HelpText {
  color: #4B4B4B;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 15px;
}

.Form__HelpText--center {
  text-align: center;
}

.Form .FormInput {
  position: relative;
  overflow: hidden;
  font-family: Lato, serif;
  font-size: 16px;
}

.Form .FormInput--quarter {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 25%;
}

.Form .FormInput--half {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 45%;
}

.Form .FormInput--allowOverflow {
  overflow: initial;
}

.Form .FormInput--question {
  padding-left: 20px;
}

.Form .FormInput__Question {
  color: #176ECD;
  font-size: 13px;
  background: white;
  padding: 0 5px;
}

.Form .FormInput__Question--signup {
  padding-top: 20px;
}

.Form .FormInput__Question--timezone {
  display: block;
}

.Form .FormInput__Label {
  transition: color 0.4s;
  color: #176ECD;
  font-size: 14px;
  background: white;
  padding: 0 5px;
  position: absolute;
  left: 20px;
}

.Form .FormInput__WrappingLabel {
  cursor: pointer;
}

.Form .FormInput__Input {
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  font-size: 15px;
  transition: border-color 0.4s;
  border: 1px solid #176ECD;
  border-radius: 40px;
  outline: none;
  background: none !important;
}

.Form .FormInput__Input:focus,
.Form .FormInput__Input:hover {
  border: 1px solid #176ECD;
  box-shadow: none;
}

.Form .FormInput__Input::placeholder {
  color: #C5C5C5;
}

.Form .FormInput__Input:disabled {
  color: #aaa;
  border-color: #888;
  background: linear-gradient(to bottom, white, white, white, #eee) !important;
  cursor: not-allowed;
}

.Form .FormInput__Input:focus + .FormInput__Note--fieldActivated {
  height: 20px;
  opacity: 1.0;
}

.Form .FormInput__TextArea {
  min-height: 200px;
  padding: 30px;
}

.Form .FormInput__Choice {
  position: relative;
  overflow: hidden;
  display: block;
}

.Form .FormInput__Choice .FormInput__Indent {
  font-size: 14px;
}

.Form .FormInput__Checkbox,
.Form .FormInput__Radio {
  position: absolute;
  left: -100vw;
}

.Form .FormInput__Checkbox:checked ~ .FormInput__Checkmark,
.Form .FormInput__Radio:checked ~ .FormInput__Checkmark {
  background: 50% 50% url(../images/svg/blue-checkmark.svg) no-repeat;
  background-size: 100%;
}

.Form .FormInput__Checkbox:checked ~ .FormInput__RadioButton,
.Form .FormInput__Radio:checked ~ .FormInput__RadioButton {
  background: 50% 50% url(../images/svg/blue-checkmark.svg) no-repeat;
  background-size: 100%;
}

.Form .FormInput__Checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  cursor: pointer;
  display: inline-block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  text-indent: -999em;
  border-radius: 50%;
  background-color: #E5E5E5;
}

.Form .FormInput__RadioButton {
  position: absolute;
  cursor: pointer;
  background-color: #e6e6e6;
  top: 4px;
  left: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.Form .FormInput__Indent {
  float: left;
  margin-left: 40px;
  margin-top: 3px;
}

.Form .FormInput__Indent--compact {
  margin-left: 35px;
}

.Form .FormInput__Indent--clickable {
  cursor: pointer !important;
}

.Form .FormInput__Select {
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  font-size: 15px;
  transition: border-color 0.4s;
  cursor: pointer;
  border: 1px solid #176ECD;
  border-radius: 40px;
  background: white !important;
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.Form .FormInput__SelectArrow {
  position: absolute;
  color: #176ECD;
  background-color: white;
  right: 20px;
  top: 24px;
  font-size: 12px;
  pointer-events: none;
  z-index: 1;
}

.Form .FormInput__Note {
  display: block;
  color: #4B4B4B;
  font-size: 13px;
  margin-left: 25px;
  margin-top: 5px;
  margin-right: 25px;
  font-style: italic;
}

.Form .FormInput__Note--success {
  color: #88a115;
}

.Form .FormInput__Note--fieldActivated {
  opacity: 0;
  height: 0;
  transition: opacity 0.2s ease-in;
}

.Form .FormInput--invalid .FormInput__Label {
  color: #934E4F;
}

.Form .FormInput--invalid .FormInput__Error {
  color: #934E4F;
  font-size: 13px;
  margin-left: 25px;
  font-style: italic;
}

.Form .FormInput--invalid .FormInput__Input {
  border-color: #934E4F;
  background: linear-gradient(to bottom, white, white, white, #FFEFEF) !important;
}

.Form .FormInput--invalid .FormInput__Indent + .FormInput__Error {
  margin-left: 40px;
}

.AddLearner {
  position: relative;
  margin-top: 10px;
  padding-bottom: 25px;
}

.AddLearner__Icon {
  position: absolute;
  left: 0;
  top: 4px;
  cursor: pointer;
}

.AddLearner__Link {
  color: #176ECD;
  font-family: Lato, sans-serif;
  margin-left: 25px;
}


/* ==========================================================================
   8. Filters + FilterBar (cmp-filterbar.scss)
   ========================================================================== */

.Filters__Expand {
  margin-top: 0.75em;
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #4B4B4B;
}

.Filters__Icon {
  float: left;
}

.Filters__ExpandText {
  display: block;
  margin-left: 2.5em;
}

.FilterBar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.Page--sm .FilterBar--autohide,
.Page--xs .FilterBar--autohide,
.Page--md .FilterBar--autohide {
  margin-bottom: 2em;
  display: none;
}

.Page--xs .FilterBar--expanded,
.Page--sm .FilterBar--expanded,
.Page--md .FilterBar--expanded {
  display: flex;
}

.Page--md .FilterBar,
.Page--sm .FilterBar,
.Page--xs .FilterBar {
  flex-direction: column;
}

.Page--md .FilterBar__Filter,
.Page--sm .FilterBar__Filter,
.Page--xs .FilterBar__Filter {
  max-width: initial;
}

.Page--md .FilterBar__FilterStart,
.Page--sm .FilterBar__FilterStart,
.Page--xs .FilterBar__FilterStart {
  flex-basis: initial;
  margin-top: 0;
}

.Page--md .FilterBar__Search,
.Page--sm .FilterBar__Search,
.Page--xs .FilterBar__Search {
  flex-grow: 1;
  flex-basis: initial;
  text-align: left;
}

.Page--md .FilterBar__SearchInput,
.Page--sm .FilterBar__SearchInput,
.Page--xs .FilterBar__SearchInput {
  width: calc(100% - 33px);
}

.Page--xs .FilterBar__SearchInput {
  width: 100%;
}

.Page--lg .FilterBar__Search {
  text-align: left;
}

.Page--lg .FilterBar__SearchLabel {
  width: 62px;
}

.FilterBar__FilterStart {
  margin-top: 20px;
  margin-right: 10px;
  flex-basis: 95px;
  color: #4B4B4B;
}

.FilterBar__Filter {
  flex-grow: 1;
  margin-right: 10px;
  max-width: 200px;
}

.FilterBar__Select {
  width: 100%;
  position: relative;
  color: #176ECD;
  text-transform: capitalize;
  outline: none;
}

.FilterBar__Label {
  text-transform: none;
}

.FilterBar__Favourites {
  margin-top: 17px;
  margin-right: 20px;
  margin-bottom: 0;
}

.FilterBar__Clear {
  padding-top: 0;
  padding-bottom: 0;
  height: 44px;
  margin-top: 10px;
}

.FilterBar__Search {
  flex-grow: 1;
  flex-basis: 270px;
}

.FilterBar__SearchIcon {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 0px;
  background: url('../images/svg/icon-search.svg') 50% 50% no-repeat;
  background-size: 100%;
}

.Page--providerIframe .FilterBar__SearchIcon {
  filter: grayscale(1);
}

.FilterBar__SearchLabel {
  margin-top: 17px;
  display: inline-block;
  margin-right: 10px;
  color: #4B4B4B;
}

.Page--sm .FilterBar__SearchLabel,
.Page--xs .FilterBar__SearchLabel {
  display: block;
  text-align: center;
}

.FilterBar__SearchInput {
  width: 250px;
}

.Form .FilterBar__SearchInput.FormInput__Input {
  background-color: white !important;
}

.Form .FilterBar__SearchInput.FormInput__Input::placeholder {
  color: #176ECD;
  text-transform: uppercase;
}


/* ==========================================================================
   8b. Selectize overrides (cmp-selectize.scss)
   ========================================================================== */

.selectize-control.single {
  font-family: Lato, sans-serif;
}

.selectize-control.single .selectize-input {
  color: #176ECD;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  font-size: 15px;
  transition: border-color 0.4s;
  cursor: pointer;
  border: 1px solid #176ECD;
  border-radius: 40px;
  background: white !important;
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
}

.selectize-control.single .selectize-input.input-active {
  outline: none !important;
  outline-color: transparent;
}

.selectize-control.single .selectize-input input {
  border: none;
  outline: none;
}

.selectize-control.single .selectize-input input::placeholder {
  color: #176ECD;
}

.selectize-control.single .selectize-input:after {
  border: none;
  top: 16px;
  right: 30px;
  font-size: 12px;
  content: "";
}

.selectize-control.single .selectize-dropdown {
  margin-top: -15px;
  font-family: Lato, sans-serif;
  font-size: 14px;
}

.Page--xs .selectize-control.single .selectize-dropdown,
.Page--sm .selectize-control.single .selectize-dropdown {
  font-size: 18px;
}

.selectize-control.single .selectize-dropdown .option {
  color: #176ECD;
}


/* ==========================================================================
   9. Loading component (cmp-loading.scss)
   ========================================================================== */

.Loading {
  overflow: hidden;
  display: inline-block;
  opacity: 0;
  width: 50px;
  height: 50px;
  transition: height 0.2s, opacity 0.2s, left 0.4s, right 0.4s;
  background: url("../images/svg/white-loading-200px.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Loading--blue {
  background: url("../images/svg/blue-loading-200px.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Loading--right {
  position: absolute;
  overflow: hidden;
  text-indent: -999em;
  right: -30px;
  top: -3px;
}

.Loading--right.Loading--active {
  right: 2px;
}

.Loading--left {
  position: absolute;
  overflow: hidden;
  text-indent: -999em;
  top: -3px;
  left: -30px;
}

.Loading--left.Loading--active {
  left: 2px;
}

.Loading--active {
  opacity: 1.0;
}

.Loading--small {
  width: 40px;
  height: 40px;
}

.Page--providerIframe .Loading {
  filter: grayscale(1);
}

.Page--xs .Loading {
  top: -7px;
}

.Page--xs .Loading--left {
  top: -7px;
}

.Page--xs .Loading--left.Loading--active {
  left: -2px;
}

.Page--xs .Loading--right {
  top: -7px;
}

.Page--xs .Loading--right.Loading--active {
  right: -2px;
}


/* ==========================================================================
   10. Icons (icons.scss)
   ========================================================================== */

.Icon {
  display: inline-block;
  overflow: hidden;
  text-indent: -999em;
  width: 32px;
  height: 32px;
  background: transparent 50% 50% no-repeat;
  background-size: 100%;
}

.Icon--float { float: left; }

.Icon--heart {
  width: 24px;
  height: 20px;
  background-image: url("../images/svg/blue-save-empty.svg");
}

.Icon--heart-light {
  width: 24px;
  height: 20px;
  background-image: url("../images/svg/blue-save-empty.svg");
}

.Icon--heart-white {
  width: 24px;
  height: 20px;
  background-image: url("../images/svg/white-save-empty.svg");
}

.Icon--heart-full {
  width: 24px;
  height: 20px;
  background-image: url("../images/svg/blue-save-full.svg");
}

.Icon--language {
  width: 26px;
  height: 26px;
  background-image: url("../images/svg/white-language.svg");
}

.Icon--share {
  width: 26px;
  height: 25px;
  background-image: url("../images/svg/white-share.svg");
}

.Icon--share-blue {
  width: 26px;
  height: 25px;
  background-image: url("../images/svg/blue-share.svg");
}

.Icon--ageGroup {
  width: 24px;
  height: 30px;
  background-image: url("../images/svg/blue-age.svg");
}

.Icon--duration {
  width: 24px;
  height: 30px;
  background-image: url("../images/svg/blue-time.svg");
}

.Icon--award {
  width: 24px;
  height: 30px;
  background-image: url("../images/svg/blue-certificate.svg");
}

.Icon--arrow-left {
  width: 12px;
  height: 22px;
  background-image: url("../images/svg/left-white-arrow.svg");
}

.Icon--arrow-right {
  width: 12px;
  height: 22px;
  background-image: url("../images/svg/right-white-arrow.svg");
}

.Icon--arrow-left-blue {
  width: 12px;
  height: 22px;
  background-image: url("../images/svg/left-blue-arrow.svg");
}

.Icon--arrow-right-blue {
  width: 12px;
  height: 22px;
  background-image: url("../images/svg/right-blue-arrow.svg");
}

.Icon--facebook {
  width: 44px;
  height: 45px;
  background-image: url("../images/svg/facebook-icon.svg");
}

.Icon--facebook-white {
  width: 20px;
  height: 20px;
  background-image: url("../images/svg/social-facebook-white.svg");
}

.Icon--tiktok {
  width: 44px;
  height: 45px;
  background-image: url("../images/svg/tiktok-icon.svg");
}

.Icon--linkedin {
  width: 44px;
  height: 45px;
  background-image: url("../images/svg/social-linkedin.svg");
}

.Icon--instagram {
  width: 44px;
  height: 45px;
  background-image: url("../images/svg/social-instagram.svg");
}

.Icon--youtube {
  width: 44px;
  height: 45px;
  background-image: url("../images/svg/social-youtube.svg");
}

.Icon--twitter {
  width: 44px;
  height: 45px;
  background-image: url("../images/svg/social-twitter.svg");
}

.Icon--blog {
  width: 44px;
  height: 45px;
  background-image: url("../images/svg/social-blog.svg");
}

.Icon--pinterest {
  width: 44px;
  height: 45px;
  background-image: url("../images/svg/social-pinterest.svg");
}

.Icon--website-share {
  width: 44px;
  height: 45px;
  background: url("../images/svg/social-website.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--google-white {
  width: 20px;
  height: 20px;
  background-image: url("../images/svg/social-google-white.svg");
}

.Icon--close {
  width: 30px;
  height: 30px;
  background-image: url("../images/svg/close-icon.svg");
  background-size: 100%;
}

.Icon--back {
  width: 30px;
  height: 30px;
  background-image: url("../images/svg/back-icon.svg");
  background-size: 100%;
}

.Icon--addBlue {
  width: 20px;
  height: 20px;
  background-image: url("../images/svg/white-plus.svg");
  background-color: #176ECD;
  background-size: 50%;
  border-radius: 50%;
}

.Icon--security {
  width: 15px;
  height: 20px;
  background-image: url("../images/svg/security-icon.svg");
  background-size: 100%;
}

.Icon--checkmark {
  width: 16px;
  height: 13px;
  background: url("../images/svg/black-checkmark.svg") no-repeat 0 50%;
  background-size: 100%;
}

.Icon--checkmark-blue {
  width: 24px;
  height: 18px;
  background: url("../images/svg/blue-checkmark2.svg") no-repeat 0 50%;
  background-size: 100%;
}

.Icon--checkmark-filledBlue {
  width: 40px;
  height: 40px;
  background: url("../images/svg/blue-checkmark.svg") no-repeat 0 50%;
  background-size: 100%;
}

.Icon--checkmark-white {
  width: 40px;
  height: 40px;
  background: url("../images/svg/white-checkmark.svg") no-repeat 0 50%;
  background-size: 100%;
}

.Icon--questionMark {
  width: 40px;
  height: 40px;
  background: url("../images/svg/blue-question-mark.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--included {
  width: 15px;
  height: 15px;
  background: url("../images/svg/green-checkmark.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--excluded {
  width: 15px;
  height: 15px;
  background: url("../images/svg/red-cross.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--plus {
  width: 25px;
  height: 25px;
  background: url("../images/svg/plus-accordion.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--minus {
  width: 25px;
  height: 25px;
  background: url("../images/svg/minus-accordion.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--grid {
  width: 24px;
  height: 24px;
  background: url("../images/classic/grid-icon-grey.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--grid-active {
  background-image: url("../images/classic/grid-icon-blue.svg");
}

.Icon--list {
  width: 24px;
  height: 24px;
  background: url("../images/classic/list-icon-grey.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--list-active {
  background-image: url("../images/classic/list-icon-blue.svg");
}

.Icon--compactList {
  width: 24px;
  height: 24px;
  background: url("../images/classic/compact-list-icon-grey.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--compactList-active {
  background-image: url("../images/classic/compact-list-icon-blue.svg");
}

.Icon--search-white {
  width: 24px;
  height: 24px;
  background: url("../images/classic/search-icon-white.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--email {
  width: 44px;
  height: 45px;
  background: url("../images/classic/email-icon-blue.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--emailOutline {
  width: 24px;
  height: 24px;
  background: url("../images/classic/email-small-icon-blue.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--phone {
  width: 24px;
  height: 24px;
  background: url("../images/classic/phone-icon-blue.svg") no-repeat 50% 50%;
  background-size: 70%;
}

.Icon--website {
  width: 24px;
  height: 24px;
  background: url("../images/classic/website-icon-blue.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--tAndC {
  width: 24px;
  height: 24px;
  background: url("../images/classic/terms-icon-blue.svg") no-repeat 50% 50%;
  background-size: 70%;
}

.Icon--share-outline {
  width: 24px;
  height: 24px;
  background: url("../images/classic/share-icon-blue.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--people {
  width: 24px;
  height: 24px;
  background: url("../images/classic/staff-icon-blue.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--fun {
  width: 24px;
  height: 24px;
  background: url("../images/classic/fun-activities-icon-blue.svg") no-repeat 50% 50%;
  background-size: 100%;
}

.Icon--marker-white {
  width: 16px;
  height: 16px;
  background: url("../images/classic/map-marker-icon-white.svg") no-repeat 50% 50%;
  background-size: 50%;
}

.Icon--marker-black {
  width: 16px;
  height: 16px;
  background: url("../images/classic/map-marker-icon-black.svg") no-repeat 50% 50%;
  background-size: 50%;
}

.Icon--ageRange {
  width: 16px;
  height: 16px;
  background: url("../images/classic/age-icon-black.svg") no-repeat 50% 50%;
  background-size: 80%;
}

.Icon--time {
  width: 16px;
  height: 16px;
  background: url("../images/classic/time-icon-black.svg") no-repeat 50% 50%;
  background-size: 70%;
}

.Icon.FileIcon {
  width: 32px;
  height: 32px;
  background: transparent no-repeat 50% 50%;
  background-size: 100%;
}

.Icon.FileIcon--avi  { background-image: url('../images/filetypes/avi.svg'); }
.Icon.FileIcon--css  { background-image: url('../images/filetypes/css.svg'); }
.Icon.FileIcon--csv  { background-image: url('../images/filetypes/csv.svg'); }
.Icon.FileIcon--doc,
.Icon.FileIcon--docx { background-image: url('../images/filetypes/doc.svg'); }
.Icon.FileIcon--file { background-image: url('../images/filetypes/file.svg'); }
.Icon.FileIcon--html { background-image: url('../images/filetypes/html.svg'); }
.Icon.FileIcon--iso  { background-image: url('../images/filetypes/iso.svg'); }
.Icon.FileIcon--javascript,
.Icon.FileIcon--js   { background-image: url('../images/filetypes/javascript.svg'); }
.Icon.FileIcon--jpg  { background-image: url('../images/filetypes/jpg.svg'); }
.Icon.FileIcon--mp3  { background-image: url('../images/filetypes/mp3.svg'); }
.Icon.FileIcon--mp4  { background-image: url('../images/filetypes/mp4.svg'); }
.Icon.FileIcon--pdf  { background-image: url('../images/filetypes/pdf.svg'); }
.Icon.FileIcon--png  { background-image: url('../images/filetypes/png.svg'); }
.Icon.FileIcon--ppt,
.Icon.FileIcon--pptx { background-image: url('../images/filetypes/ppt.svg'); }
.Icon.FileIcon--psd  { background-image: url('../images/filetypes/psd.svg'); }
.Icon.FileIcon--rtf  { background-image: url('../images/filetypes/rtf.svg'); }
.Icon.FileIcon--txt  { background-image: url('../images/filetypes/txt.svg'); }
.Icon.FileIcon--xls,
.Icon.FileIcon--xlsx { background-image: url('../images/filetypes/xls.svg'); }
.Icon.FileIcon--xml  { background-image: url('../images/filetypes/xml.svg'); }
.Icon.FileIcon--zip  { background-image: url('../images/filetypes/zip.svg'); }

.IconText {
  position: relative;
  display: inline-block;
}

.IconText__Icon {
  position: absolute;
  left: 0;
  top: 1px;
}

.IconText__Text {
  margin-left: 28px;
}


/* ==========================================================================
   11. FindActivity + SearchResults (cmp-findactivity.scss)
   ========================================================================== */

.FindActivity {
  padding-bottom: 40px;
  background-color: #FAFAFA;
}

.FindActivity__Loading {
  text-align: center;
  padding: 20px 0;
}

.SearchBox {
  background: linear-gradient(to right, #5836cb, #4120af);
  padding-top: 120px;
}

.Page--xs .SearchBox,
.Page--sm .SearchBox,
.Page--md .SearchBox {
  padding-top: 50px;
}

.SearchBox__Title {
  text-align: center;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 46px;
}

.Page--xs .SearchBox__Title,
.Page--sm .SearchBox__Title,
.Page--md .SearchBox__Title {
  font-size: 32px;
}

.SearchBox__Tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}

.SearchBox__Tab {
  cursor: pointer;
  display: inline-block;
  padding: 10px 40px;
  margin: 0 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 23px;
  background-color: #2095F2;
  color: white;
}

.SearchBox__Tab--active {
  background-color: white;
  color: #2598F7;
}

.Page--xs .SearchBox__Tab,
.Page--sm .SearchBox__Tab,
.Page--md .SearchBox__Tab {
  font-size: 16px;
  padding: 10px 10px;
}

.SearchBox__TabLabel {
  display: inline-block;
  padding: 20px;
  text-align: center;
}

.SearchFilters {
  background-color: white;
  padding-top: 60px;
  padding-bottom: calc(60px - 16px);
}

.Page--xs .SearchFilters,
.Page--sm .SearchFilters,
.Page--md .SearchFilters {
  padding: 20px 0;
}

.SearchFilters__Options {
  display: flex;
  justify-content: center;
}

.Page--xs .SearchFilters__Options,
.Page--sm .SearchFilters__Options,
.Page--md .SearchFilters__Options {
  flex-direction: column;
}

.SearchFilters__Option {
  flex-grow: 1;
  margin-right: 15px;
}

.SearchFilters__Option--last {
  margin-right: 0;
}

.SearchFilters__Option--wide {
  flex-grow: 1;
}

.SearchFilters__Submit {
  margin-top: 8px;
  padding-right: 60px;
}

.Page--xs .SearchFilters__Submit,
.Page--sm .SearchFilters__Submit,
.Page--md .SearchFilters__Submit {
  display: block;
  text-align: center;
}

.SearchFilters__Submit .Icon {
  position: absolute;
  right: 20px;
}

.SearchFilters__LocationSelection {
  padding: 10px;
  font-size: 13px;
}

.SearchFilters__LocationLabel {
  font-weight: bold;
  color: #176ECD;
}


/* ==========================================================================
   11b. SearchResults
   ========================================================================== */

.SearchResults {
  background-color: #FAFAFA;
  padding-top: 50px;
  padding-bottom: 50px;
}

.SearchResults--white {
  background: white;
}

.SearchResults--thin {
  padding: 0;
  padding-top: 40px;
}

.SearchResults__Title {
  color: #176ECD;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin-bottom: 30px;
}

.Page--xs .SearchResults__Title,
.Page--sm .SearchResults__Title {
  font-size: 24px;
  margin-bottom: 30px;
}

.SearchResults__ListType {
  position: absolute;
  right: 15px;
  top: 15px;
}

.Page--xs .SearchResults__ListType,
.Page--sm .SearchResults__ListType {
  top: 0;
}

.SearchResults__Box {
  background-color: white;
  box-shadow: 0 0 15px #F2F2F2;
}

.SearchResults__VariantButton {
  margin-left: 15px;
}

.Page--xs .SearchResults__VariantButton,
.Page--sm .SearchResults__VariantButton {
  margin-left: 5px;
}

.SearchResults__NoResultsFound {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  margin-top: 30px;
  color: #4B4B4B;
}

@media (max-width: 576px) {
  .SearchResults .row .col-xs-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}


/* ==========================================================================
   11c. GridTile
   ========================================================================== */

.GridTile {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  margin-bottom: 30px;
  background: white;
  font-family: "Lato", sans-serif;
  font-size: 13px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s ease-in, box-shadow 0.2s ease;
}

.GridTile--fading {
  opacity: 0;
}

.GridTile__Header {
  height: 200px;
  position: relative;
  background: center center transparent;
  background-size: cover;
}

.GridTile__Title {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #176ECD;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 50px;
  overflow-y: hidden;
}

.GridTile__IconContainer {
  position: relative;
}

.GridTile__IconText {
  display: inline-block;
  margin-left: 20px;
}

.GridTile__Icon {
  position: absolute;
  left: 0;
  top: 2px;
}

.GridTile__LocationBadge {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #E71B62;
  color: white;
  font-family: Lato, sans-serif;
  font-size: 14px;
  padding: 2px 5px;
  padding-left: 25px;
  border-radius: 4px;
}

.GridTile__LocationBadge--hideIcon {
  padding-left: 10px;
  padding-right: 10px;
}

.GridTile__LocationIcon {
  position: absolute;
  left: 5px;
  top: 5px;
}

.GridTile__ActivityTags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-row-gap: 10px;
  grid-column-gap: 5px;
  align-items: baseline;
  color: #4B4B4B;
}

.GridTile__ActivityTagNameDescTime {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.GridTile__ActivityTagNameDesc {
  display: flex;
  flex-direction: column;
}

.GridTile__ActivityTagName {
  display: inline-block;
  font-weight: bold;
  font-size: medium;
}

.GridTile__ActivityTagButton {
  width: 100%;
  height: fit-content;
  position: inherit;
  padding: 4px 4px;
  text-align: center;
}

.GridTile__Attributes {
  position: absolute;
  right: 10px;
  top: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
}

.GridTile__Attribute {
  padding: 8px 5px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  text-align: center;
}

.GridTile__Attribute--green {
  color: white;
  background-color: #4CC76C;
}

.GridTile__Attribute--blue {
  background-color: #2196F2;
  color: white;
}

.GridTile__Body {
  padding: 10px 20px;
  position: relative;
}

.GridTile__Location {
  color: #4B4B4B;
}

.GridTile__SecondRow {
  position: relative;
  overflow: hidden;
  color: #4B4B4B;
}

.GridTile__Ages {
  display: inline-block;
  float: left;
  padding-right: 10px;
}

.GridTile__Time {
  display: inline-block;
  float: left;
}

.GridTile__Separator--empty {
  border-top: 1px solid transparent;
}

.GridTile__DateRange {
  color: #4B4B4B;
  margin-bottom: 5px;
}

.GridTile__Days {
  display: block;
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.GridTile__Day {
  display: inline-block;
  color: #C5C5C5;
  font-size: 13px;
  text-align: center;
  border: 1px solid #C5C5C5;
  border-radius: 10px;
  width: 32px;
  padding: 2px 0;
}

.GridTile__Day--available {
  border-color: #176ECD;
  color: #176ECD;
}

.GridTile__Button {
  position: absolute;
  right: 10px;
  bottom: 15px;
}


/* GridTile --list variant */

.GridTile--list {
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.GridTile--list .GridTile__Header {
  width: 300px;
  max-height: 200px;
  background-repeat: no-repeat;
  border: 10px solid white;
}

.Page--xs .GridTile--list .GridTile__Header {
  display: none;
}

.Page--sm .GridTile--list .GridTile__Header,
.Page--md .GridTile--list .GridTile__Header {
  width: 600px;
}

.Page--lg .GridTile--list .GridTile__Header {
  width: 400px;
}

.GridTile--list .GridTile__Body {
  flex-grow: 1;
}

.GridTile--list .GridTile__Attributes {
  right: 30px;
}

.GridTile--list .GridTile__Days {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-right: 20px;
}


/* GridTile --compact variant */

.GridTile--compact {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 0;
  border-bottom: 1px solid #C5C5C5;
  box-shadow: none;
}

.GridTile--compact:last-child {
  border-bottom: none;
}

.GridTile--compact .GridTile__Days {
  margin: 0;
}

.GridTile--compact .GridTile__Day {
  border: none;
  width: 15px;
  padding: 0;
}

.GridTile--compact .GridTile__Attribute {
  padding: 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}


/* ==========================================================================
   11d. CompactRow
   ========================================================================== */

.CompactRow {
  display: flex;
  flex-direction: row;
}

.Page--xs .CompactRow--folds,
.Page--sm .CompactRow--folds,
.Page--md .CompactRow--folds,
.Page--lg .CompactRow--folds {
  flex-direction: column;
}

.CompactRow__Large {
  flex-grow: 1;
  display: block;
}

.CompactRow__Large.GridTile__Title {
  margin-right: 0;
}

.CompactRow__Small {
  margin-right: 20px;
  display: block;
}


/* ==========================================================================
   12. Provider page (cmp-providerPage.scss)
   ========================================================================== */

.ProviderContent {
  background-color: #FAFAFA;
}

.ProviderContent__Sidebar {
  margin-top: 100px;
  margin-bottom: 50px;
}

.Page--lg .ProviderContent__Sidebar,
.Page--md .ProviderContent__Sidebar,
.Page--sm .ProviderContent__Sidebar {
  margin-top: 50px;
}

.Page--xs .ProviderContent__Sidebar {
  margin-top: 20px;
}

.ProviderContent__Body {
  margin-top: 45px;
  margin-right: 50px;
  font-family: Lato, sans-serif;
  color: #4B4B4B;
}

.Page--xs .ProviderContent__Body,
.Page--sm .ProviderContent__Body,
.Page--md .ProviderContent__Body {
  margin-right: 0;
}

.ProviderContent__Body h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 36px;
  color: #176ECD;
}

.Page--xs .ProviderContent__Body h2 {
  font-size: 28px;
}

.ProviderContent__Body p {
  font-size: 1.3em;
  font-family: Lato, sans-serif;
  color: #4B4B4B;
}

.Page--md .ProviderContent__Body p,
.Page--sm .ProviderContent__Body p,
.Page--xs .ProviderContent__Body p {
  font-size: 1.2em;
}

.ProviderContent__Body br {
  display: block;
  margin-bottom: 10px;
  content: " ";
}

.ProviderIntro {
  background: linear-gradient(to right, #fafafa, #fafafa);
  position: relative;
  margin-bottom: 150px;
}

.Page--sm .ProviderIntro,
.Page--xs .ProviderIntro {
  margin-bottom: 250px;
}

.Page--md .ProviderIntro,
.Page--lg .ProviderIntro {
  margin-bottom: 100px;
}

.ProviderIntro__Image {
  width: 100%;
  height: 560px;
  background-position: center center;
  background-size: cover;
  border-radius: 10px 10px 0 0;
  position: relative;
}

.Page--lg .ProviderIntro__Image {
  height: 480px;
}

.Page--xs .ProviderIntro__Image,
.Page--sm .ProviderIntro__Image {
  height: 240px;
}

.Page--md .ProviderIntro__Image {
  height: 320px;
}

.ProviderIntro__Avatar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -85px;
  z-index: 10;
  margin-left: 60px;
  pointer-events: none;
}

.Page--xs .ProviderIntro__Avatar {
  margin-left: 10px;
  top: 80px;
  bottom: auto;
}

.Page--sm .ProviderIntro__Avatar,
.Page--md .ProviderIntro__Avatar,
.Page--lg .ProviderIntro__Avatar {
  bottom: 20px;
}

.ProviderIntro__AvatarImage {
  background: white;
  border-radius: 10px;
  border: 1px solid #176ECD;
  box-shadow: 0 0 10px #888;
  width: 250px;
  max-height: 250px;
}

.Page--xs .ProviderIntro__AvatarImage,
.Page--sm .ProviderIntro__AvatarImage {
  width: 100px;
  height: 100px;
}

.Page--md .ProviderIntro__AvatarImage {
  width: 150px;
  height: 150px;
}

.ProviderIntro__BottomImageGradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(31, 144, 236, 0.6));
}

.ProviderIntro__Info {
  position: absolute;
  left: 325px;
  right: 0;
  bottom: 20px;
  z-index: 10;
  color: white;
}

.Page--md .ProviderIntro__Info {
  left: 200px;
}

.Page--xs .ProviderIntro__Info {
  left: 10px;
}

.Page--sm .ProviderIntro__Info {
  left: 150px;
}

.ProviderIntro__Title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
}

.Page--xs .ProviderIntro__Title,
.Page--sm .ProviderIntro__Title {
  font-size: 24px;
}

.Page--md .ProviderIntro__Title {
  font-size: 32px;
}

.Page--lg .ProviderIntro__Title {
  font-size: 36px;
}

.ProviderIntro__Location {
  font-family: "Lato", sans-serif;
}

.ProviderIntro__Footer {
  position: absolute;
  overflow-y: hidden;
  padding-bottom: 20px;
  top: 100%;
  left: 0;
  right: 0;
}

.ProviderIntro__Contact {
  background-color: white;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 15px #F2F2F2;
  list-style: none;
  margin: 0;
  padding: 40px;
  padding-top: 25px;
  padding-left: 320px;
  display: flex;
  flex-direction: row;
  text-align: center;
}

.Page--sm .ProviderIntro__Contact,
.Page--xs .ProviderIntro__Contact {
  padding-left: 20px;
  flex-direction: column;
  text-align: left;
}

.Page--sm .ProviderIntro__Contact,
.Page--md .ProviderIntro__Contact,
.Page--lg .ProviderIntro__Contact {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 25px;
}

.ProviderIntro__Column {
  flex-grow: 1;
  padding-top: 10px;
}

.ProviderIntro__Column--noPadding {
  padding-top: 0;
}

.Page--sm .ProviderIntro__Button,
.Page--xs .ProviderIntro__Button {
  margin-top: 20px;
  display: block;
  text-align: center;
}

.ProviderIntro__Link {
  position: relative;
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  color: #4b4b4b;
  padding-left: 30px;
}

.Page--md .ProviderIntro__Link {
  font-size: 14px;
  padding-top: 25px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 16px;
}

.Page--lg .ProviderIntro__Link {
  font-size: 15px;
  padding-top: 3px;
}

.ProviderIntro__Link:hover {
  text-decoration: underline;
}

.ProviderIntro__Icon {
  position: absolute;
  left: 0;
  top: 0;
}

.Page--md .ProviderIntro__Icon {
  top: -5px;
  left: calc(50% - 12px);
}


/* ProviderBreadcrumb */

.ProviderBreadcrumb {
  margin-top: 30px;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}

.Page--xs .ProviderBreadcrumb {
  margin-bottom: 10px;
}

.ProviderBreadcrumb__Element {
  display: inline-block;
  color: #7BC4FA;
  font-family: "Lato", sans-serif;
}

.ProviderBreadcrumb__Link {
  color: #7BC4FA;
  font-size: 14px;
}

.ProviderBreadcrumb__Link:hover {
  color: #7BC4FA;
  text-decoration: underline;
}


/* ProviderBox */

.ProviderBox {
  background-color: white;
  box-shadow: 0 0 10px #F2F2F2;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
}

.ProviderBox__Header {
  border-bottom: 1px solid #F1F1F1;
  padding-bottom: 10px;
}

.ProviderBox__Title {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  font-weight: bold;
  color: #176ECD;
  padding-left: 30px;
}

.ProviderBox__Title--noIcon {
  padding-left: 0;
}

.ProviderBox__Icon {
  position: absolute;
  left: 0;
  top: 0;
}

.ProviderBox__Social {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-top: 30px;
}

.ProviderBox__SocialElement {
  display: inline-block;
  margin-right: 10px;
}

.Page--sm .ProviderBox__SocialElement,
.Page--md .ProviderBox__SocialElement {
  margin-right: 4px;
}

.ProviderBox__Text {
  margin-top: 10px;
}


/* ProviderActivities */

.ProviderActivities {
  padding: 60px 0;
  background-color: white;
}

.ProviderActivities--nospace {
  padding: 0;
}

.ProviderActivities__Title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 36px;
  color: #176ECD;
}

.ProviderActivities .Belt {
  background-color: white;
  padding: 0;
}


/* ProviderContact */

.ProviderContact {
  padding: 60px 0;
}

.ProviderContact .antispam {
  display: none;
}

.Page--xs .ProviderContact,
.Page--sm .ProviderContact,
.Page--md .ProviderContact {
  padding: 30px 0;
}

.Page--xs .ProviderContact__Title,
.Page--sm .ProviderContact__Title,
.Page--md .ProviderContact__Title {
  font-size: 24px;
}

.ProviderContact .EmyModal__Message,
.ProviderContact .FlashMessage {
  padding: 20px 0 10px 0;
}

.ProviderContact__Title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 36px;
  color: #176ECD;
}

.ProviderContact__Input .FormInput__Label {
  background-color: #FAFAFA;
}

.ProviderContact__Button {
  margin-top: 20px;
}

.Page--xs .ProviderContact__Button,
.Page--sm .ProviderContact__Button {
  display: block;
  text-align: center;
  width: 100%;
}


/* TermsAndConditions */

.TermsAndConditions {
  font-size: 80%;
  max-height: 300px;
  overflow-y: scroll;
}

.TermsAndConditions ol,
.TermsAndConditions ul {
  padding-left: 10px;
}


/* ==========================================================================
   13. FlashMessage / Message (cmp-flashmessage.scss)
   ========================================================================== */

.FlashMessage__Container,
.Message__Container {
  background-color: white;
  padding-top: 15px;
  border: 1px solid transparent;
  box-shadow: 0 0 15px #E1F1ff;
}

.FlashMessage__Title,
.Message__Title {
  color: #176ECD;
  font-family: Montserrat, sans-serif;
  font-weight: bold;
  display: inline;
  margin-right: 10px;
  font-size: 18px;
}

.FlashMessage__Text,
.Message__Text {
  display: inline;
  color: #4B4B4B;
  font-family: Lato, sans-serif;
}

.FlashMessage--error .Message__Title,
.Message--error .Message__Title {
  color: #e8573d;
}

.FlashMessage--error .Message__Container,
.Message--error .Message__Container {
  box-shadow: 0 0 15px #ffe1e1;
}
