@charset "UTF-8";
/*                                                                                                                                         
                                                ,,            ,,                          ,,                                             
 .M"""bgd mm                                    db          `7MM        mm         mm   `7MM                                    OO OO OO 
,MI    "Y MM                                                  MM        MM         MM     MM                                    88 88 88 
`MMb.   mmMMmm ,pW"Wq.`7MMpdMAo.     `7Mb,od8 `7MM  .P"Ybmmm  MMpMMMb.mmMMmm     mmMMmm   MMpMMMb.  .gP"Ya `7Mb,od8 .gP"Ya      || || || 
  `YMMNq. MM  6W'   `Wb MM   `Wb       MM' "'   MM :MI  I8    MM    MM  MM         MM     MM    MM ,M'   Yb  MM' "',M'   Yb     || || || 
.     `MM MM  8M     M8 MM    M8       MM       MM  WmmmP"    MM    MM  MM         MM     MM    MM 8M""""""  MM    8M""""""     `' `' `' 
Mb     dM MM  YA.   ,A9 MM   ,AP       MM       MM 8M         MM    MM  MM         MM     MM    MM YM.    ,  MM    YM.    ,     ,, ,, ,, 
P"Ybmmd"  `Mbmo`Ybmd9'  MMbmmd'      .JMML.   .JMML.YMMMMMb .JMML  JMML.`Mbmo      `Mbmo.JMML  JMML.`Mbmmd'.JMML.   `Mbmmd'     db db db 
                        MM                         6'     dP                                                                             
                      .JMML.                       Ybmmmd'                                                                               

Pattern Lab doesn't have any CSS requirements, which means you can write your styles however you want. Hooray!
You can use Sass, Less, vanilla CSS, or some other crazy thing I haven't heard of yet.
So please don't use these styles. They're just here to put together the demo, and nothing more.
They're intentionally gray, boring, and crappy because you're supposed to do this stuff yourself.

Atomic design is philosophically complimentary with these CSS approaches:

* SMACSS by Jonathan Snook http://smacss.com/
* OOCSS by Nicole Sullivan http://oocss.org/
* BEM CSS Methology : http://bem.info/method/
* CSS Guidelines by Harry Roberts : https://github.com/csswizardry/CSS-Guidelines

So feel free to use any of these approaches. Or don't. It's totally up to you.

*/
/*------------------------------------*\
    $TABLE OF CONTENTS 
    based generally on Harry Roberts excellent CSS Guidelines https://github.com/csswizardry/CSS-Guidelines
\*------------------------------------*/
/**
 * VARIABLES..............................Declarations of Sass variables 
 * .....Colors
 * .....Typography
 * .....Layout
 * .....Defaults
 * .....Breakpoints
 * MIXINS.................................Sass mixins 
 * RESET..................................Set reset defaults
 * GLOBAL CLASSES.........................Set reset defaults
 * GLOBAL ELEMENTS........................Establish global styles
 * .....Main
 * .....Headings
 * .....Text-related elements (p, blockquote, lists)
 * .....Defaults
 * .....Breakpoints
 * TYPOGRAPHY------------------------------
 * MEDIA------------------------------
 * LAYOUT------------------------------
 * NAVIGATION------------------------------
 * TOC To Be Continued
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/* CSS Transition
	Usage: @include transition(width,0.3s,ease-out);
 */
/*------------------------------------*\
    $RESET
\*------------------------------------*/
/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0;
}

header, footer, nav, section, article, hgroup, figure {
  display: block;
}

/*------------------------------------*\
    $GLOBAL ELEMENTS
\*------------------------------------*/
/*------------------------------------*\
    $GLOBAL CLASSES
\*------------------------------------*/
/* Clearfix */
.cf, [role=main], .l-two-col {
  *zoom: 1;
}

.cf:before, [role=main]:before, .l-two-col:before, .cf:after, [role=main]:after, .l-two-col:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.cf:after, [role=main]:after, .l-two-col:after {
  clear: both;
}

/* Completely remove from the flow and screen readers. */
.is-hidden {
  display: none !important;
  visibility: hidden !important;
}

/* Completely remove from the flow but leave available to screen readers. */
.is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Floats */
.right {
  float: right;
  padding: 0 0 1em 1em;
}

.right-search {
  float: right;
  padding: 0 0 1em 0;
}

.left {
  float: left;
  padding: 0 1em 1em 0;
}

/* Text-Align */
.align-right {
  text-align: right;
}

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

.align-left {
  text-align: left;
}

/* Display Classes */
@media all and (max-width: 46.8em) {
  .hide-small {
    display: none;
  }
}

@media all and (min-width: 46.8em) and (max-width: 50em) {
  .hide-med {
    display: none;
  }
}

@media all and (min-width: 50em) {
  .hide-large {
    display: none;
  }
}

.valid {
  color: #089e00;
}

.error {
  color: #f00;
}

.warning {
  color: #fff664;
}

.information {
  color: #000db5;
}

.sc-c-registration-content {
  display: flex;
  flex-direction: column;
  margin: 2.5rem 0;
  align-items: center;
}

.sc-c-registration-title {
  margin: 3rem 0;
}

.sc-c-confirm-message {
  text-align: center;
  margin-top: 30px;
}

* {
  -webkit-font-smoothing: antialiased;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #000000;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "SourceSansPro";
  font-weight: 400;
  font-size: 15px;
  overflow-x: hidden;
}

.sc-horisontal-padding-4 {
  padding: 0 4px;
}

.sc-c-page {
  min-width: 320px;
  margin: 0 auto;
  overflow: hidden;
}

.sc-c-container {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
@media only screen and (min-width: 992px) {
  .sc-c-container {
    padding-left: 67px !important;
    padding-right: 67px !important;
  }
}

.sc-c-container__section-title-wrapper {
  margin: 1.5625rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-container__section-title-wrapper {
    margin: 2.5rem 0 1.5625rem 0;
  }
}

.sc-c-container__section-title {
  font-family: "SourceSansPro";
  font-weight: 400;
  color: #475677;
}

.sc-c-app-layout {
  min-width: 320px !important;
  background: #f7f7f7;
  position: relative;
  margin-top: 60px !important;
}
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .sc-c-app-layout {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-app-layout {
    margin-top: 100px !important;
  }
}

.sc-c-email-page {
  min-width: 320px !important;
  background: #f7f7f7;
  position: relative;
}

.sc-c-email-content {
  padding: 18px 25px 20px;
  background-color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .sc-c-email-content {
    padding: 28px 50px 40px;
  }
}

.pl-js-pattern-example {
  display: flex;
  flex-direction: column;
}

.sc-c-pattern-lab-wrapper {
  display: flex;
  flex-flow: column nowrap;
}
@media only screen and (min-width: 992px) {
  .sc-c-pattern-lab-wrapper {
    flex-flow: row nowrap;
  }
}

.sc-c-pattern-lab {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-basis: 30%;
  justify-content: flex-end;
  margin: 10px 10px 10px 0;
}

.bg-inverted {
  background: #ddd;
}

.sc-u-dispay-none {
  display: none;
}

.sc-u-margin-280 {
  margin-top: -280px;
}

.sc-u-no-top-margin {
  margin-top: 0 !important;
}

.sc-u-margin-top-half {
  margin-top: 0.5rem;
}

.sc-u-margin-top-1 {
  margin-top: 1rem;
}

.sc-u-margin-bottom-2 {
  margin-bottom: 2rem;
}

.sc-u-overflow {
  overflow: auto;
}
.sc-u-overflow--hidden {
  overflow: hidden;
}

.sc-u-pad-top-2 {
  padding-top: 2rem;
}

.sc-u-pad-bottom-2 {
  padding-bottom: 2rem;
}

.sc-u-pad-top-3 {
  padding-top: 3rem;
}

.sc-c-registration-email {
  text-align: center;
  margin: 3rem 0;
}

.sc-u-cursor-pointer {
  cursor: pointer;
}

.sc-c-contact a {
  color: #009dd2;
}
.sc-c-contact a:active, .sc-c-contact a:hover {
  color: #007197;
}

.sc-u-full-width {
  width: 100%;
}

/* Links */
a {
  color: #333;
  text-decoration: none;
  outline: 0;
}
a:hover, a:focus {
  color: #808080;
}
.sc-c-content-page a:hover, .sc-c-content-page a:focus {
  color: #007197;
}
.sc-c-content-page a {
  color: #009dd2;
  cursor: pointer;
}
.sc-c-contact a, .sc-c-sorted-by a {
  color: #009dd2;
}
.sc-c-contact a:active, .sc-c-contact a:hover, .sc-c-sorted-by a:active, .sc-c-sorted-by a:hover {
  color: #007197;
}

.sc-c-primary-link {
  color: #009dd2;
  text-decoration: underline;
}
.sc-c-primary-link:active, .sc-c-primary-link:hover {
  color: #007197;
}
.sc-c-primary-link--red {
  color: #ff5359;
}
.sc-c-primary-link--red.sc-c-primary-link:hover {
  color: #ff2028;
}

/* Headings */
/*Further Reading: http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ */
h1 {
  font-family: "SourceSansProBold";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.39;
}

h2 {
  font-family: "SourceSansProBold";
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.17;
}

h3 {
  font-family: "SourceSansProBold";
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.17;
}

/* Subheadings */
.sc-c-subheading {
  font-family: "SourceSansPro";
  font-weight: 400;
}

/* Text-Related Elements */
p {
  margin-bottom: 1.33em;
  font-size: 18px;
  font-size: 1.125rem;
  color: #000000;
}

/* Blockquote */
blockquote {
  border-left: 2px solid #555555;
  padding-left: 1em;
  margin-bottom: 1em;
}
blockquote p {
  font-style: italic;
  color: #555555;
}

/* Horizontal Rule */
hr {
  border: 0;
  height: 2px;
  background: #555555;
  margin: 2em;
}
.sc-c-footer-email hr {
  margin: 20px 0 23px;
}

abbr {
  border-bottom: 1px dotted #555555;
  cursor: help;
}

pre,
code,
samp,
time {
  font-size: 18px;
  font-size: 1.125rem;
}

strong,
b {
  font-family: "SourceSansProBold";
  font-weight: bold;
}

.sc-u-semi-bold {
  font-family: "SourceSansProSemiBold";
  font-weight: bold;
}

/* Text with image */
.sc-c-text-image {
  display: flex;
  justify-content: space-between;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sc-c-content-page ol,
.sc-c-content-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #000000;
}

.sc-c-content-page ul {
  list-style: disc;
}

.sc-c-content-page ol {
  list-style: decimal;
}

.sc-c-content-page li {
  padding-left: 15px;
  line-height: 1.5;
}

/* Definition Lists */
dl {
  overflow: hidden;
  margin: 0 0 1em;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/*------------------------------------*\
    $MEDIA ELEMENTS
\*------------------------------------*/
/* Flexible Media */
img,
video,
object {
  max-width: 100%;
}

iframe {
  margin-bottom: 1em;
}

figure {
  margin-bottom: 1em;
}
figure img {
  margin-bottom: 0.5em;
}

figcaption {
  color: #555555;
  font-size: 16px;
}

.sc-c-image-avatar {
  border-radius: 50%;
  box-shadow: 0 6px 40px 0 rgba(0, 0, 0, 0.16);
  object-fit: cover;
}

.pl-js-pattern-example .sc-c-image-company-logo {
  max-width: 50%;
}

.sc-c-aspect-ratio-box {
  position: relative;
  width: 100%;
}
.sc-c-aspect-ratio-box::after {
  display: block;
  content: "";
}
.sc-c-aspect-ratio-box--home-banner {
  height: 320px;
}
.sc-c-aspect-ratio-box--home-banner::after {
  padding-bottom: 90.6%;
}
@media only screen and (min-width: 992px) {
  .sc-c-aspect-ratio-box--home-banner::after {
    padding-bottom: 62.5%;
  }
}
.sc-c-aspect-ratio-box--home-banner img {
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .sc-c-aspect-ratio-box--home-banner {
    height: auto;
  }
}
.sc-c-aspect-ratio-box--company-description::after {
  padding-bottom: 50.24%;
}
.sc-c-aspect-ratio-box--company-description img {
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .sc-c-aspect-ratio-box--company-description {
    max-width: 400px;
  }
}
.sc-c-aspect-ratio-box--company-logo {
  display: flex;
  justify-content: flex-end;
}
.sc-c-aspect-ratio-box--company-logo::after {
  padding-bottom: 50.24%;
}
.sc-c-aspect-ratio-box--company-logo img {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  right: 0;
  left: auto;
}
.sc-c-aspect-ratio-box--home-banner-pen {
  width: 100px;
  max-height: 140px;
}
.sc-c-aspect-ratio-box--home-banner-pen .sc-c-aspect-ratio-box__img {
  min-width: 100px;
}
@media only screen and (min-width: 992px) {
  .sc-c-aspect-ratio-box--home-banner-pen {
    width: 40%;
    height: 50%;
    max-height: none;
  }
  .sc-c-aspect-ratio-box--home-banner-pen .sc-c-aspect-ratio-box__img {
    min-width: auto;
  }
}
.sc-c-aspect-ratio-box--home-banner-pen::after {
  padding-bottom: 59%;
}
.sc-c-aspect-ratio-box--company-banner::after, .sc-c-aspect-ratio-box--category-banner::after {
  padding-bottom: 90.6%;
}
@media only screen and (min-width: 992px) {
  .sc-c-aspect-ratio-box--company-banner::after, .sc-c-aspect-ratio-box--category-banner::after {
    padding-bottom: 300px;
  }
}
.sc-c-aspect-ratio-box--category-item::after {
  padding-bottom: 66.6%;
}
.sc-c-aspect-ratio-box--category-item img {
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .sc-c-aspect-ratio-box--category-item {
    max-width: 294px;
  }
}
.sc-c-aspect-ratio-box--avatar {
  max-width: 200px;
}
.sc-c-aspect-ratio-box--avatar::after {
  padding-bottom: 100%;
}
.sc-c-aspect-ratio-box--video::after {
  padding-bottom: 0%;
}
.sc-c-aspect-ratio-box--email-banner::after {
  padding-bottom: 300px;
}
.sc-c-aspect-ratio-box--email-banner img {
  object-fit: cover;
  max-height: 300px;
  object-position: 0 -190px;
}

.sc-c-video-playpause {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.sc-c-aspect-ratio-box__video,
.sc-c-aspect-ratio-box__img {
  /* Image should match parent box size */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sc-c-video-wrapper {
  margin-bottom: 2.2rem;
}

.sc-c-video {
  width: 100%;
  object-fit: contain;
}

.sc-c-video__text {
  background-color: #ffffff;
  padding: 0.5em;
}

.sc-c-category-item-img {
  max-width: 100%;
  height: 205px;
}
@media only screen and (min-width: 992px) {
  .sc-c-category-item-img {
    max-width: 294px;
  }
}

.hidden {
  display: none;
}

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
form ol,
form ul {
  list-style: none;
  margin-left: 0;
}

.sc-c-login form {
  text-align: center;
}
form .prefix__cls-1 {
  fill: #555555;
}

label {
  display: block;
  text-align: left;
  font-size: 20px;
  color: #000;
}

input {
  font-size: 20px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #000;
  outline: none;
}
.sc-c-banner__content input {
  border: none;
}

::placeholder {
  color: #555555;
  opacity: 0.6;
}

:-ms-input-placeholder {
  color: #555555;
}

::-ms-input-placeholder {
  color: #555555;
}

button {
  cursor: pointer;
}

.sc-c-form {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}

.sc-c-form-fields-wrapper {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.sc-c-form-fields-wrapper button {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.sc-c-form-fields-wrapper textarea {
  font-size: 20px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #000;
  outline: none;
}
@media only screen and (min-width: 992px) {
  .sc-c-form-fields-wrapper {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.sc-c-multi__group {
  display: flex;
  margin: 0 18px 18px 0;
}
.sc-c-multi__group:first-child {
  margin-right: 18px;
}
.sc-c-accordion__form .sc-c-multi__group {
  margin: 18px 0;
}

.sc-c-multi__group-wrapper {
  display: flex;
  width: auto;
  margin-right: 18px;
}

.sc-c-multi__group-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-c-multi__group-item:first-child {
  margin-right: 18px;
}

.sc-c-multi-step__page-group .sc-c-checkbox__container {
  width: 100%;
  margin: 18px 0;
}

.sc-c-form__selected-option {
  max-width: 100%;
  width: 100%;
}
.sc-c-form__selected-option a {
  max-width: 100%;
  box-shadow: none;
  border: 1px solid #ddd;
  cursor: default;
  background-color: #fff;
}
.sc-c-form__selected-option a:hover {
  background-color: #fff;
  color: #7d848e;
}

.sc-c-form__group {
  display: flex;
  position: relative;
  width: 100%;
}

.sc-c-form__group-input {
  text-align: center;
  cursor: pointer;
}

.c-c-form__group-image {
  position: absolute;
  top: 13px;
  left: 20px;
}

.sc-c-form__input-image {
  padding-left: 60px;
}

.sc-c-form__content-wrapper {
  margin-bottom: 1.875rem;
}

.sc-c-login__form-main {
  padding-left: 24px;
  padding-right: 24px;
}
.sc-c-login__form-main button {
  margin-bottom: 10px;
}

/* Search input */
.sc-c-input-search {
  margin-top: 10px;
  position: relative;
  width: 100%;
}

.sc-c-input-search__input {
  height: 70px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  font-size: 18px;
  padding-left: 16px;
  font-size: 22px;
  font-family: "SourceSansProSemiBold";
}
@media only screen and (min-width: 992px) {
  .sc-c-input-search__input {
    height: 80px;
    padding-left: 35px;
  }
}

.sc-c-input-search__button {
  position: absolute;
  top: 0;
  right: -1px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 1rem;
}
@media only screen and (min-width: 992px) {
  input,
textarea {
    padding: 1rem 1.5rem;
  }
}

input {
  border: 1px solid #ddd;
}

input[type=text],
input[type=search],
input[type=url],
input[type=number],
textarea {
  -webkit-appearance: none;
}

/* Custom select */
.sc-c-select-selected {
  padding: 16px 24px;
  cursor: pointer;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #ddd;
  font-size: 20px;
}
.sc-c-select-selected:after {
  position: absolute;
  content: url("../../../images/icons/arrow_down.svg");
  top: 15px;
  right: 25px;
  width: auto;
  height: auto;
}

.sc-c-select-items {
  position: relative;
  background: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  cursor: pointer;
  padding: 1rem;
  border-radius: 12px;
  color: #555555;
  border: 1px solid #ddd;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0 0 1rem 0;
  font-size: 20px;
}
.sc-c-select-items div {
  padding: 1rem;
  background: #fff;
  color: black;
  border-bottom: 1px solid #ddd;
}
.sc-c-select-items div:last-child {
  border-bottom: 0;
}
.sc-c-select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.sc-c-select-hide {
  display: none;
}

/* Radio button */
.sc-c-radio__group {
  display: flex;
}

.sc-c-radio {
  display: inline-block;
  position: relative;
  user-select: none;
  padding-left: 30px;
  margin-bottom: 20px;
}
.sc-c-multi__group .sc-c-radio {
  margin-bottom: 0;
}

.sc-c-radio__circle:hover {
  background-color: #009dd2;
  border-color: #009dd2;
}

.sc-c-radio__input {
  display: none;
}

.sc-c-radio__input:checked + .sc-c-radio__circle {
  background-color: #ffffff;
}
.sc-c-radio__input:checked + .sc-c-radio__circle:after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #009dd2;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sc-c-radio__input:checked:disabled + .sc-c-radio__circle {
  background-color: #ffffff;
}
.sc-c-radio__input:checked:disabled + .sc-c-radio__circle:after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #7d848e;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sc-c-radio__input:disabled + .sc-c-radio__circle {
  cursor: not-allowed;
}
.sc-c-radio__input:disabled + .sc-c-radio__circle:hover {
  border-color: #7d848e;
  background-color: #ffffff;
}

.sc-c-radio__circle {
  display: inline-block;
  border: 1px solid #7d848e;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Checkbox */
.sc-c-checkbox-container {
  width: 100%;
  margin: 15px auto;
  position: relative;
  display: block;
}

.sc-c-checkbox__label {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 30px;
  padding-left: 35px;
  margin-right: 10px;
  margin-bottom: 0;
  cursor: pointer;
}
.sc-c-checkbox__label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 20px;
  height: 20px;
  transition: transform 0.28s ease;
  border: 1px solid #7d848e;
  border-radius: 50%;
}
.sc-c-checkbox__label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg) scale(0);
  transition: transform ease 0.25s;
  position: absolute;
  top: 10px;
  left: 9px;
}

input[type=checkbox] {
  width: auto;
  opacity: 0;
  position: absolute;
  left: 0;
  margin-left: -20px;
}
input[type=checkbox]:checked ~ label:before {
  border: 1px solid #009dd2;
  background: #009dd2;
}
input[type=checkbox]:checked ~ label:after {
  transform: rotate(-45deg) scale(1);
}
.sc-c-application-required__doc input[type=checkbox] ~ label {
  cursor: auto;
  justify-content: center;
  width: 30px;
  padding-left: 0;
}
.sc-c-application-required__doc input[type=checkbox] ~ label:before {
  left: auto;
  top: auto;
  margin: 0;
}
.sc-c-application-required__doc input[type=checkbox]:not(:checked) ~ label {
  cursor: pointer;
}
.sc-c-application-required__doc input[type=checkbox]:not(:checked) ~ label:before {
  border: 1px solid #7d848e;
  background: #7d848e;
}
.sc-c-application-required__doc input[type=checkbox]:not(:checked) ~ label:after {
  content: "＋";
  height: 20px;
  width: 20px;
  font-size: 20px;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  position: absolute;
  top: auto;
  left: auto;
  border: none;
  transform: none;
}
input[type=checkbox]:focus ~ label:before {
  border-color: #007197;
}
input[type=checkbox]:focus ~ label:after {
  background: #007197;
}

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

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.field-container {
  margin-bottom: 1em;
}

.inline-form fieldset,
.inline-form .inline-container {
  position: relative;
}
.inline-form input[type=submit],
.inline-form button,
.inline-form .btn {
  font-size: 0.875em;
  padding: 0.65rem 1.3rem;
  background: #333;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: auto;
}
.inline-form input[type=submit]:hover, .inline-form input[type=submit]:focus,
.inline-form button:hover,
.inline-form button:focus,
.inline-form .btn:hover,
.inline-form .btn:focus {
  background: #808080;
  color: #fff;
}

/* Validation */
.has-error {
  border-color: #f00;
}

.is-valid {
  border-color: #089e00;
}

.sc-c-form-error {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin: 1rem 0;
}

.sc-c-form-error__icon {
  margin-top: 4px;
  align-self: flex-start;
}

.sc-c-form-error__message {
  margin-bottom: 0;
  margin-left: 10px;
  color: #f00 !important;
  font-family: "SourceSansProSemiBold";
}

/*------------------------------------*\
    $SPECIFIC FORMS
\*------------------------------------*/
/* Search Form */
.search-field {
  padding-right: 3em;
}

.inline-form .search-submit {
  background: none;
  padding: 0.78em 1em;
  border: 0;
  border-left: 1px solid #808080;
  color: #808080;
}

.sc-c-autocomplete {
  position: relative;
}
.sc-c-modal .sc-c-autocomplete {
  padding: 0 24px;
}
@media only screen and (min-width: 992px) {
  .sc-c-modal .sc-c-autocomplete {
    padding: 0;
  }
}
.sc-c-autocomplete .sc-c-icon {
  display: none;
  position: absolute;
  height: 100%;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete .sc-c-icon {
    display: flex;
    left: 30px;
  }
}

.sc-c-autocomplete__input {
  padding: 10px;
  padding-left: 26px;
  height: 55px;
  border-radius: 12px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  border: none;
  color: #000000;
  font-size: 22px;
  font-family: "SourceSansProSemiBold";
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete__input--with-icon {
    padding-left: 80px;
  }
}
.sc-c-autocomplete__input:focus {
  outline: none;
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete__input {
    height: 80px;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
    border-radius: 12px 12px 0 0;
  }
}

.sc-c-autocomplete-street__list,
.sc-c-autocomplete__list {
  overflow: auto;
  max-height: calc(100vh - 5rem - 70px);
  width: 100%;
  margin-top: 4px;
}
.sc-c-modal .sc-c-autocomplete-street__list,
.sc-c-modal .sc-c-autocomplete__list {
  padding: 0 24px;
}
@media only screen and (min-width: 992px) {
  .sc-c-modal .sc-c-autocomplete-street__list,
.sc-c-modal .sc-c-autocomplete__list {
    padding: 0;
  }
}
.sc-c-modal .sc-c-autocomplete-street__list--is-grouped,
.sc-c-modal .sc-c-autocomplete__list--is-grouped {
  padding: 0;
}
.sc-c-autocomplete-street__list--is-grouped,
.sc-c-autocomplete__list--is-grouped {
  margin-top: 12px;
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete-street__list--is-grouped,
.sc-c-autocomplete__list--is-grouped {
    margin-top: 4px;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete-street__list,
.sc-c-autocomplete__list {
    max-height: calc(100% - 84px);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
    background-color: #fefefe;
    border-radius: 0 0 12px 12px;
  }
}

.sc-c-autocomplete__list {
  overflow: auto;
}
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .sc-c-autocomplete__list {
    overflow: visible;
  }
}

.sc-c-autocomplete__item {
  padding: 0 6px;
  border-top: solid 1px #707070;
}
.sc-c-autocomplete__item:first-child {
  margin-top: 12px;
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete__item:first-child {
    margin-top: 10px;
  }
}
.sc-c-autocomplete__item:last-child {
  border-bottom: solid 1px #707070;
  margin-bottom: 26px;
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete__item:last-child {
    border-bottom: 0;
    margin-bottom: 10px;
  }
}
.sc-c-autocomplete__item--is-active {
  background-color: #dedede;
}
.sc-c-modal__location--no-rediraction .sc-c-autocomplete__item {
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete__item {
    border-top: 0;
    padding: 0 30px;
  }
}

.sc-c-autocomplete__link {
  display: block;
  color: #000000;
  font-size: 18px;
  font-family: "SourceSansProSemiBold";
  line-height: 2.83;
  white-space: pre-wrap;
  cursor: pointer;
}
.sc-c-autocomplete__link:hover {
  color: #000000;
}
.sc-c-autocomplete__link--is-disabled {
  color: #7d848e;
}
.sc-c-autocomplete__link--is-disabled:hover {
  color: #7d848e;
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete__link {
    line-height: 3;
    letter-spacing: 1.1px;
  }
}

.sc-c-autocomplete__group-title {
  display: block;
  position: relative;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  background-color: #7d848e;
  color: #ffffff;
  font-size: 22px;
  font-family: "SourceSansProSemiBold";
  line-height: 1.27;
}
.sc-c-modal .sc-c-autocomplete__group-title {
  padding: 11px 24px;
}
.sc-c-autocomplete__group-title:hover, .sc-c-autocomplete__group-title:focus {
  color: #ffffff;
  cursor: pointer;
}
.sc-c-autocomplete__group-title::after {
  content: "";
  display: block;
  position: absolute;
  height: 17px;
  width: 10px;
  top: 16px;
  right: 24px;
  background: url("../../../images/icons/left-and-right-arrows.svg") no-repeat;
}

.sc-c-modal .sc-c-autocomplete__group-list {
  padding: 0 24px;
}

.sc-c-autocomplete__group-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sc-c-autocomplete__group-item--is-active {
  background-color: #f7f7f7;
}
@media only screen and (min-width: 992px) {
  .sc-c-autocomplete__group-item:first-child {
    margin-top: 14px;
  }
  .sc-c-autocomplete__group-item:last-child {
    margin-bottom: 14px;
  }
}

.sc-c-autocomplete__group-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #000000;
  font-size: 18px;
  font-family: "SourceSansPro";
  line-height: 1.28;
  letter-spacing: 0.9px;
  padding: 12px 0;
  white-space: pre-wrap;
}

.sc-c-autocomplete__available {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 12px;
  background-color: #009dd2;
  color: #ffffff;
  font-size: 18px;
  font-family: "SourceSansProBold";
}

/* Registration Form */
.sc-c-login {
  border-radius: 12px;
  overflow: hidden;
}
.sc-c-modal__content .sc-c-login {
  background: #ffffff;
}

.sc-c-login__title {
  background: #7d848e;
  color: #ffffff;
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.sc-c-login__reset-pass {
  text-align: center;
  width: 100%;
  display: inline-block;
  color: #009dd2;
  font-size: 15px;
  font-size: 0.9375rem;
}

.sc-c-login__new-user {
  font-size: 15px;
  text-align: center;
}
.sc-c-login__new-user-link {
  color: #009dd2;
}

.form-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sc-c-login--reset-password {
  right: -100%;
  animation: check 0.4s linear forwards;
}

@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}
.sc-c-form-error__wrapper {
  display: none;
}
.sc-c-form-error__wrapper.is-visible {
  display: block;
}

.sc-c-error {
  color: #ff5359;
  display: flex;
  align-items: center;
}

.sc-c-error-group {
  margin-bottom: 18px;
  font-size: 18px;
  font-size: 1.125rem;
}
.sc-c-error-group--invalid {
  display: none;
}

.sc-c-error__link {
  margin-left: 40px;
  color: #009dd2;
}
.sc-c-error__link .sc-c-icon--error {
  align-self: flex-start;
}

.sc-c-error__message {
  margin-left: 18px;
}

.sc-c-warning {
  display: none;
  color: #ffc57c;
  margin: 0 0 18px 0;
  align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
}
.sc-c-warning .prefix__cls-1 {
  fill: #ffc57c;
}

.sc-c-icon--warning {
  margin-right: 18px;
}

.sc-c-place-input {
  position: relative;
}
.sc-c-place-input::before {
  content: "";
  display: block;
  position: absolute;
  height: 30px;
  width: 20px;
  top: 15px;
  left: 20px;
  background: url("../../../images/icons/pin.svg") no-repeat;
  background-size: 20px;
}
.sc-c-place-input input {
  padding-left: 50px;
}

.sc-c-form-submit-buttons__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/*------------------------------------*\
    $Table
\*------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #808080;
  width: 100%;
}

th {
  text-align: left;
  border: 1px solid #808080;
  padding: 0.2em;
}

td {
  border: 1px solid #808080;
  padding: 0.2em;
}

.animate-fade {
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.animate-fade:hover {
  opacity: 0;
}

.animate-move > .demo-shape {
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

@font-face {
  font-family: "SourceSansPro";
  src: url("../../fonts/SourceSansPro-Regular.woff2") format("woff2"), url("../../fonts/SourceSansPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SourceSansProBold";
  src: url("../../fonts/SourceSansPro-Bold.woff2") format("woff2"), url("../../fonts/SourceSansPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "SourceSansProSemiBold";
  src: url("../../fonts/SourceSansPro-SemiBold.woff2") format("woff2"), url("../../fonts/SourceSansPro-SemiBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
.sc-c-banner__student-dashboard-content,
.sc-c-menu__list,
.sc-c-banner__content-wrapper,
.sc-c-footer__content,
.sc-c-main-content {
  max-width: 1370px;
  margin: 0 auto;
}

.sc-c-email-page {
  max-width: 800px;
  margin: 0 auto;
}

/* Layout Container */
.lc, [role=main], .sc-c-header {
  max-width: 100%;
  margin: 0 auto;
  padding: 2em;
}

/*------------------------------------*\
    $TEMPLATES
\*------------------------------------*/
/* Two Column Layout */
@media all and (min-width: 50em) {
  .l-two-col .l-main {
    float: left;
    width: 70%;
    padding-right: 1em;
  }
}
@media all and (max-width: 50em) {
  .l-two-col .l-sidebar {
    clear: both;
  }
}
@media all and (min-width: 50em) {
  .l-two-col .l-sidebar {
    float: left;
    width: 30%;
    padding: 0 0 0 1em;
  }
}

/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
.sc-c-grid {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .sc-c-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.sc-c-grid__item {
  padding: 0.6%;
}
.sc-c-grid__item img {
  display: block;
}
.sc-c-grid-4-items.sc-c-cards-overview .sc-c-grid__item {
  margin-bottom: 37px;
}

.sc-c-grid-1-items .sc-c-grid__item {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .sc-c-grid-2-items .sc-c-grid__item {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .sc-c-grid-3-items .sc-c-grid__item {
    width: 33.3333333%;
  }
}

@media only screen and (min-width: 992px) {
  .sc-c-grid-4-items .sc-c-grid__item {
    width: 25%;
  }
}

@media only screen and (min-width: 992px) {
  .sc-c-grid-5-items .sc-c-grid__item {
    width: 20%;
  }
}

/*------------------------------------*\
    $PAGE STRUCTURE
\*------------------------------------*/
.sc-c-header {
  display: flex;
  height: 60px;
  background: #ffffff;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-header {
    height: 100px;
  }
}

.sc-c-sticky-header {
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.25s ease-out;
}
.sc-c-sticky-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 1px 5px 0px #d6d6d6;
  height: 60px;
}
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .sc-c-sticky-header {
    position: static !important;
  }
}

.sc-c-logo {
  display: flex;
  flex-grow: 1;
}
.sc-c-logo img {
  width: 120px;
  object-fit: contain;
}
@media only screen and (min-width: 992px) {
  .sc-c-logo img {
    width: 170px;
    height: auto;
  }
  .sc-c-footer-email .sc-c-logo img {
    width: 120px;
  }
}
.sc-c-footer-email .sc-c-logo {
  flex-grow: 0;
}

.sc-c-header__search-icon {
  margin: 0 1.25em;
}
.sc-c-header__search-icon svg {
  width: 26px;
  height: 26px;
}
@media only screen and (min-width: 992px) {
  .sc-c-header__search-icon svg {
    width: 30px;
    height: 30px;
  }
}

/*------------------------------------*\
    $NAVIGATION
\*------------------------------------*/
.sc-c-menu {
  box-shadow: 5px -2px 15px 0 rgba(0, 0, 0, 0.4);
  position: relative;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu {
    border-bottom: none;
    position: relative;
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
    height: 70px;
    z-index: auto;
  }
}

.sc-c-menu__mobile-title {
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  font-family: "SourceSansProSemiBold";
  font-size: 24px;
  color: #009dd2;
  padding: 0.5em 24px;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu__mobile-title {
    display: none;
  }
}

.sc-c-icon.sc-c-menu__mobile-icon {
  margin-left: 15px;
  margin-top: 3px;
}
.sc-c-icon.sc-c-menu__mobile-icon svg {
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
}
.sc-c-icon.sc-c-menu__mobile-icon svg * {
  fill: #009dd2 !important;
}

.sc-c-menu__list {
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  height: 0;
  z-index: 10;
}
.sc-c-menu__list--absolute-position {
  position: absolute;
  width: 100%;
  overflow: auto;
  transition: 0.3s ease;
  height: auto;
  background: #f7f7f7;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.16);
  top: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu__list--absolute-position {
    overflow: auto;
  }
}
.sc-c-menu--mobile-active .sc-c-menu__list {
  flex-flow: column nowrap;
  visibility: visible;
  height: auto;
  transform: scaleY(1);
  transition: 0.1s ease;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu__list {
    transform: none;
    height: 100%;
    display: flex;
    position: static;
    height: 100%;
    background: none;
    box-shadow: none;
    visibility: visible;
    padding-left: 67px !important;
    padding-right: 67px !important;
  }
  .sc-c-menu__list--level-0 {
    flex-flow: row nowrap;
    align-items: center;
  }
}

.sc-c-menu__link {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.sc-c-menu__list--level-0 .sc-c-menu__link {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "SourceSansProSemiBold";
  font-size: 22px;
  color: #009dd2;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu__link {
    text-align: left;
    font-size: 24px;
    color: #009dd2;
  }
  .sc-c-menu__link:hover {
    color: #007197;
  }
}

.sc-c-menu__item {
  height: 100%;
  border-top: 1px solid #eee;
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu__item {
    border-top: none;
    padding-left: 0;
    padding-right: 0;
    margin-right: 25px;
  }
  .sc-c-menu__item--active {
    position: relative;
  }
  .sc-c-menu__item--active::after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 7px;
    background-color: #009dd2;
  }
  .sc-c-menu--mobile-active .sc-c-menu__item--active::after {
    display: none;
  }
  .sc-c-menu__item:last-child {
    margin-right: 0;
  }
}

.sc-c-menu__item--active .sc-c-menu__link-text {
  position: relative;
}
.sc-c-menu__item--active .sc-c-menu__link-text::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -6px;
  width: 100%;
  height: 7px;
  background-color: #009dd2;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu__item--active .sc-c-menu__link-text::after {
    display: none;
  }
}

.pagination {
  overflow: hidden;
}
.pagination li {
  float: left;
  border-right: 1px solid #eee;
}
.pagination li:last-child {
  border: 0;
}
.pagination a {
  padding: 1em;
}

/*------------------------------------*\
    $MAIN CONTENT AREA
\*------------------------------------*/
[role=main] {
  padding: 0;
}

.sc-u-center-align {
  text-align: center;
}

.sc-c-colored-divider {
  width: 100%;
  height: 6px;
}
.sc-c-colored-divider--blue {
  background: #009dd2;
}
.sc-c-colored-divider--purple {
  background: #bf76bf;
}
.sc-c-colored-divider--orange {
  background: #ffc57c;
}

.sc-u-divider {
  height: 20px;
}

.l-one-col {
  max-width: 768px;
  margin: auto;
}
@media only screen and (min-width: 992px) {
  .l-one-col {
    max-width: 100%;
  }
}

/*------------------------------------*\
    $FOOTER
\*------------------------------------*/
.sc-c-footer {
  clear: both;
  overflow: hidden;
  background-color: #1b1543;
  padding: 2em 0 1em;
}
.sc-c-footer.sc-c-footer-email {
  padding: 2em 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-footer {
    padding: 3em 0 4em;
  }
}

.sc-c-footer__bottom,
.sc-c-footer__top {
  display: flex;
  flex-flow: column nowrap;
}
.sc-c-footer-email .sc-c-footer__bottom,
.sc-c-footer-email .sc-c-footer__top {
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-footer__bottom,
.sc-c-footer__top {
    flex-flow: row nowrap;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 992px) {
  .sc-c-footer__branding {
    flex-basis: 20%;
  }
}

.sc-c-footer__branding div {
  color: #7d848e;
  margin: 2em 0 0.5em;
  line-height: 1.73;
}

.sc-c-footer-email_top {
  display: flex;
  justify-content: center;
}
.sc-c-footer-email_top div {
  color: #7d848e;
  line-height: 1.73;
  letter-spacing: 1.1px;
}

.sc-c-footer-horizontal-rule {
  display: none;
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-footer-horizontal-rule {
    display: block;
  }
}

.sc-c-footer__copyright {
  color: #7d848e;
  line-height: 1.27;
  margin-top: 1em;
}
.sc-c-footer-email .sc-c-footer__copyright {
  margin-top: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-footer__copyright {
    margin: 0;
  }
}

.sc-c-footer .sc-c-footer-menu-wrapper {
  padding: 0;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media only screen and (min-width: 992px) {
  .sc-c-footer .sc-c-footer-menu-wrapper {
    flex-basis: 75%;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 0 1.5em;
  }
}

.sc-c-footer-menu {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-footer-menu {
    flex-flow: row nowrap;
    justify-content: space-around;
  }
}

@media only screen and (min-width: 992px) {
  .sc-c-footer-menu__group {
    padding: 0 0.5em;
    margin-right: 1em;
  }
  .sc-c-footer-menu__group:last-child {
    margin-right: 0;
  }
}

.sc-c-footer-menu__group-title {
  font-family: "SourceSansProBold";
  font-weight: bold;
  color: #7d848e;
  padding: 1.5em 0 1em;
}
@media only screen and (min-width: 992px) {
  .sc-c-footer-menu__group-title {
    padding: 0 0 1em;
  }
}

.sc-c-footer-menu__item {
  padding: 14px 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-footer-menu__item {
    padding: 0.5em 0;
  }
}

.sc-c-footer-menu__link {
  display: block;
  width: 100%;
  line-height: 1.6;
}
.sc-c-footer .sc-c-footer-menu__link {
  color: #ffffff;
}

.sc-c-footer-bottom-menu {
  display: flex;
  flex-wrap: wrap;
}

.sc-c-footer-bottom-menu__item {
  margin: 1em 1em 0.5em 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-footer-bottom-menu__item {
    margin: 0 1em 0 0;
  }
  .sc-c-footer-bottom-menu__item:last-child {
    margin: 0;
  }
}

.sc-c-footer-bottom-menu__link {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.36;
}
.sc-c-footer .sc-c-footer-bottom-menu__link {
  color: #ffffff;
}

@media only screen and (min-width: 992px) {
  .sc-c-info-footer-menu {
    min-width: 20%;
  }
}

/*------------------------------------*\
    $TEXT Styles
\*------------------------------------*/
.intro {
  font-size: 1.0625em;
  font-weight: bold;
}

.pullquote {
  font-size: 1.4375em;
}

.caption {
  font-style: italic;
}

.text a {
  text-decoration: underline;
}
.text ul {
  list-style: disc;
  margin: 0 0 1em 1.2em;
}
.text ul ul {
  margin-bottom: 0;
}
.text ol {
  list-style: decimal;
  margin: 0 0 1em 1.5em;
}
.text ol ol {
  margin-bottom: 0;
}

/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/
/* Icon */
.sc-c-icon-wrapper {
  display: flex;
  flex-flow: row wrap;
}

.sc-c-icon {
  display: flex;
  align-items: center;
}

.sc-c-icon__label {
  margin-left: 9px;
  line-height: 0.89;
  font-family: "SourceSansProSemiBold";
  font-size: 18px;
  color: #7d848e;
}

.sc-c-icon-pl {
  margin: 1em;
}
.sc-c-icon-pl svg {
  height: 30px;
  width: 30px;
}

.sc-c-icon--cancel.sc-c-icon-pl *,
.sc-c-icon--info.sc-c-icon-pl * {
  fill: #555555 !important;
}

.sc-c-icon-legend {
  cursor: pointer;
  margin-left: 4px;
}
.sc-c-icon-legend * {
  fill: #7d848e !important;
}

#prefix__ic_mail * {
  fill: #5fcf8d !important;
}

.sc-c-menu__close .sc-c-icon, .sc-c-modal__close .sc-c-icon {
  display: flex;
  margin-left: 13px;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu__close .sc-c-icon path, .sc-c-modal__close .sc-c-icon path {
    fill: #ffffff !important;
  }
}

.sc-c-btn {
  display: inline-block;
  line-height: 1.44;
  font-family: "SourceSansProBold";
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  border: 0;
  padding: 0.9375rem 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  border-radius: 12px;
  margin: 0 0 1.25rem 0;
  color: #ffffff;
}
.sc-c-btn--small {
  max-width: fit-content;
  padding: 6px;
  font-size: 15px;
  font-size: 0.9375rem;
}
.sc-c-btn--large {
  padding: 1.5625rem 0;
}
.sc-c-btn:focus, .sc-c-btn:active {
  outline: none;
}
@media only screen and (min-width: 992px) {
  .sc-c-btn {
    max-width: 296px;
  }
  .sc-c-button-search .sc-c-btn {
    max-width: none;
  }
}

.sc-c-btn__text {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 40px;
}

.sc-c-btn__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 2.125rem;
  margin: 0 1.5rem 0 1.125rem;
  position: relative;
  top: 0;
}
.sc-c-btn-search .sc-c-btn__icon {
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-btn__icon {
    margin: 0 2rem 0 1.5rem;
  }
  .sc-c-btn-search .sc-c-btn__icon {
    margin: 0;
  }
}

/* Primary button */
.sc-c-btn-primary {
  background: #009dd2;
  transition: all 0.2s;
}
.sc-c-btn-primary--active, .sc-c-btn-primary:hover, .sc-c-btn-primary:active {
  background: #007197;
  color: #ffffff;
}
.sc-c-btn-primary--red {
  background: #ff5359;
}
.sc-c-btn-primary--red.sc-c-btn-primary:disabled {
  background: #eaa3a5;
  color: #ffffff;
}
.sc-c-btn-primary--red.sc-c-btn-primary:not([disabled]):hover {
  background: #ff2028;
}
.sc-c-btn-primary:hover.sc-c-btn-primary.sc-c-timeline-list__today-button:hover {
  background: #009dd2;
}
.sc-c-btn-primary:disabled {
  background: #ddd;
  color: #7d848e;
  cursor: not-allowed;
}
.sc-c-btn-primary--secondary-style {
  background: #ffffff;
  color: #7d848e;
  border: 1px solid #7d848e;
}
.sc-c-btn-primary--secondary-style.sc-c-btn-primary:hover, .sc-c-btn-primary--secondary-style.sc-c-btn-primary:active {
  background: #f7f7f7;
  color: #555555;
}

/* Secondary button */
.sc-c-btn-secondary {
  background: #ffffff;
  color: #7d848e;
  border: 1px solid #7d848e;
}
.sc-c-btn-secondary--with-icon {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.sc-c-btn-secondary--active, .sc-c-btn-secondary:hover, .sc-c-btn-secondary:active {
  background: #f7f7f7;
  color: #555555;
}
.sc-c-btn-secondary:disabled {
  background: #f7f7f7;
  color: #7d848e;
  cursor: not-allowed;
}
.sc-c-btn-secondary--primary-style {
  background: #009dd2;
  color: #ffffff;
  border: none;
}
.sc-c-btn-secondary--primary-style.sc-c-btn-secondary:hover, .sc-c-btn-secondary--primary-style.sc-c-btn-secondary:active {
  background: #007197;
  color: #ffffff;
}

.sc-c-btn-card,
.sc-c-btn-search {
  display: flex;
  justify-content: center;
  background: #ffc57c;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 2.4px;
  padding: 1.5625rem 0;
  color: #ffffff;
}
.sc-c-btn-card--active, .sc-c-btn-card:hover, .sc-c-btn-card:focus, .sc-c-btn-card:active,
.sc-c-btn-search--active,
.sc-c-btn-search:hover,
.sc-c-btn-search:focus,
.sc-c-btn-search:active {
  background: #EBAA57;
  color: #ffffff;
}
.sc-c-btn-card:disabled,
.sc-c-btn-search:disabled {
  background: #f7f7f7;
  color: #7d848e;
  cursor: not-allowed;
}

.sc-c-btn-search {
  width: 4.375rem;
  height: 4.375rem;
}
@media only screen and (min-width: 992px) {
  .sc-c-btn-search {
    width: 100%;
    max-width: 220px;
    height: 80px;
  }
}

.sc-c-btn-card {
  padding: 0;
  width: 100%;
  height: 70px;
  align-items: center;
  font-family: "SourceSansPro";
  font-size: 26px;
  letter-spacing: normal;
  font-weight: normal;
  white-space: pre-wrap;
  flex-wrap: wrap;
  align-content: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-btn-card {
    height: 100px;
    max-width: 100%;
  }
}

.sc-c-btn-search__text {
  display: none;
}
@media only screen and (min-width: 992px) {
  .sc-c-btn-search__text {
    display: block;
  }
}

.sc-c-btn-search__icon {
  top: -4px;
}
@media only screen and (min-width: 992px) {
  .sc-c-btn-search__icon {
    display: none;
  }
}

/* Search button with image */
.sc-c-btn-image {
  padding: 1.5625rem 0;
  display: flex;
  position: relative;
  border: 1px solid #7d848e;
  color: #7d848e;
  height: 70px;
  background: #ffffff;
  border: none;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  align-items: center;
}
.sc-c-btn-image--active, .sc-c-btn-image:hover, .sc-c-btn-image:active {
  background: #f7f7f7;
  color: #555555;
}
.sc-c-btn-image:disabled {
  background: #f7f7f7;
  color: #7d848e;
}
@media only screen and (min-width: 992px) {
  .sc-c-btn-image {
    font-size: 22px;
    font-size: 1.375rem;
    height: 80px;
  }
}

.sc-c-btn-image__right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  margin: 0;
}

.sc-c-icon__left {
  top: -5px;
}

/* Round button */
.sc-c-btn-round {
  border-radius: 25px;
}
.sc-c-btn-round--active, .sc-c-btn-round:hover, .sc-c-btn-round:active {
  background: #007197;
  color: #ffffff;
}
.sc-c-btn-round:disabled {
  background: #f7f7f7;
  color: #7d848e;
}
.sc-c-btn-round--transparent {
  background: rgba(255, 255, 255, 0.5);
  color: #555555;
}
.sc-c-btn-round--transparent.sc-c-btn-round:hover, .sc-c-btn-round--transparent.sc-c-btn-round:focus {
  background: rgba(255, 255, 255, 0.8);
  color: #555555;
}
.sc-c-btn-round--transparent.sc-c-btn-round:disabled.sc-c-btn-round {
  background: #f7f7f7;
  color: #7d848e;
}

/* Generic Placeholder Brick: REMOVE FOR PRODUCTION */
.brick {
  background: #dcdddc;
  padding: 2em;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}

/* Block */
.block {
  overflow: hidden;
}
.block p:last-child {
  margin-bottom: 0;
}

.headline {
  line-height: 1.2;
}

/* Hero Block */
.block-hero {
  margin-bottom: 0.5em;
}
.block-hero .b-thumb img {
  display: block;
  width: 100%;
}
@media all and (min-width: 50em) {
  .block-hero {
    position: relative;
  }
  .block-hero .b-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 1.5em;
  }
}

/* Block Thumbnail with Headline */
.block-thumb {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.block-thumb .b-inner {
  display: table-row;
  vertical-align: top;
  overflow: hidden;
}
@media all and (min-width: 29.75em) {
  .block-thumb .b-thumb {
    display: table-cell;
    vertical-align: top;
    width: 30%;
    max-width: 10em;
  }
  .block-thumb .b-thumb img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media all and (min-width: 29.75em) {
  .block-thumb .b-text {
    display: table-cell;
    width: 70%;
    padding: 0 1em;
  }
}

/* Block Headline Summary */
.block-headline-summary a {
  display: block;
  padding: 0.5em;
}

/* Block Inset */
.block-inset {
  position: relative;
}
.block-inset .b-thumb {
  position: relative;
  z-index: 0;
}
.block-inset .b-thumb img {
  display: block;
}

/* Hero Block */
.block-inset {
  margin-bottom: 0.5em;
  position: relative;
}
.block-inset .headline {
  font-size: 1.1em;
}
.block-inset .b-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.5em;
}

/* Block Thumb with Summary */
.block-thumb-summary .b-thumb {
  float: left;
  width: 50%;
}
.block-thumb-summary .b-text {
  margin-left: 50%;
  padding: 0.5em;
}

.inline-list li {
  display: inline-block;
}

/* Post List */
.post-list li {
  margin-bottom: 1em;
}

.sc-c-list-ordered__list-group,
.sc-c-list-unordered__list-group {
  padding-left: 20px;
  margin-bottom: 20px;
}

.sc-c-list-unordered__list-group {
  list-style: disc;
}

.sc-c-list-ordered__list-group {
  list-style: decimal;
}

.sc-c-list-ordered-list__item,
.sc-c-list-unordered-list__item {
  padding-left: 15px;
  line-height: 1.5;
}

.sc-c-links-list__title {
  font-size: 1.25em;
  margin-bottom: 1.75em;
}

.sc-c-links-list__list-group {
  display: flex;
  flex-flow: column nowrap;
}

.sc-c-links-list__item {
  margin-bottom: 0.5rem;
  font-size: 1em;
}

.sc-c-select {
  position: relative;
}

.sc-c-select__list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 1rem;
  margin-top: 10px;
  border: 1px solid #ebebeb;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  max-width: 420px;
}
.sc-c-app-layout .sc-c-select__list {
  max-width: none;
}
.sc-c-sorted-by .sc-c-select__list {
  left: auto;
  padding: 0;
  background-color: #f7f7f7;
  min-width: 210px;
}
@media only screen and (min-width: 992px) {
  .sc-c-sorted-by .sc-c-select__list {
    min-width: 230px;
  }
}
.sc-c-select__list--is-visible {
  display: block;
}

.sc-c-select-list__item {
  padding: 0 6px;
  border-top: solid 1px #707070;
  cursor: pointer;
}
.sc-c-select-list__item--is-active {
  background-color: #f7f7f7;
}
.sc-c-sorted-by .sc-c-select-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}
.sc-c-sorted-by .sc-c-select-list__item:last-child {
  border-bottom: none;
}
@media only screen and (min-width: 992px) {
  .sc-c-sorted-by .sc-c-select-list__item {
    border-top: 0;
    padding: 0;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-select-list__item {
    border-top: 0;
    padding: 0 30px;
  }
}

.sc-c-sorted-by .sc-c-select-list__item-link {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  padding: 6px 1rem;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-sorted-by .sc-c-select-list__item-link {
    padding: 6px 1.5rem;
  }
}

.sc-c-select__check-mark {
  margin-left: 10px;
  display: none;
}
.sc-c-select-list__item--selected .sc-c-select__check-mark {
  display: block;
}
.sc-c-select__check-mark svg {
  width: 15px;
  height: 15px;
}
.sc-c-select__check-mark svg * {
  fill: #009dd2 !important;
}

.sc-c-select__selected {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.sc-c-select__icon {
  margin-top: 2px;
  margin-left: 10px;
}
.sc-c-select__icon svg {
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
}
.sc-c-select__icon svg * {
  fill: #009dd2 !important;
}

.sc-c-select-list__link {
  display: block;
  color: #000000;
  font-size: 18px;
  font-family: "SourceSansProSemiBold";
  line-height: 2;
  white-space: pre-wrap;
}
.sc-c-select-list__link:hover {
  color: #000000;
}
.sc-c-select-list__link--is-disabled {
  color: #7d848e;
}
.sc-c-select-list__link--is-disabled:hover {
  color: #7d848e;
}
@media only screen and (min-width: 992px) {
  .sc-c-select-list__link {
    line-height: 3;
    letter-spacing: 1.1px;
  }
}

.tooltip-container {
  display: inline-block;
  position: relative;
}
.tooltip-container:hover .tooltip {
  display: block;
}

.tooltip-link {
  background: #f9f9f9;
}

.tooltip {
  display: none;
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 18em;
  padding: 1em;
  background: #fff;
  border: 1px solid #808080;
  box-shadow: 0.3em 0.3em 1em 0 rgba(0, 0, 0, 0.2);
}
.tooltip h2 {
  margin-top: 0;
}
@media all and (min-width: 24em) {
  .tooltip {
    width: 22em;
  }
}
@media all and (min-width: 29.75em) {
  .tooltip {
    width: 27em;
  }
}
@media all and (min-width: 39.8em) {
  .tooltip {
    width: 30em;
  }
}

.sc-c-dropdown {
  position: relative;
  margin-bottom: 18px;
}

.sc-c-dropdown__input-wrapper {
  position: relative;
}

.sc-c-dropdown__input {
  cursor: pointer;
  transition: all 0.3s ease-out;
  margin-bottom: 0;
}
.sc-c-dropdown__input:after {
  position: absolute;
  content: url("../../../images/icons/arrow_down.svg");
  top: 15px;
  right: 15px;
  width: auto;
  height: auto;
  transition: 0.2s ease-out;
}
.active .sc-c-dropdown__input:after {
  transform: rotate(180deg);
}
.active .sc-c-dropdown__input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-dropdown__input {
    padding: 1rem 1.5rem;
  }
}

.sc-c-dropdown__list {
  position: absolute;
  width: 100%;
  max-height: 0;
  overflow: auto;
  transition: max-height 0.3s ease-out;
  z-index: 99;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.active .sc-c-dropdown__list {
  border: 1px solid #ddd;
  border-top: none;
}
.sc-c-dropdown__list hr {
  margin: 0;
  background-color: #ddd;
}

.sc-c-dropdown__list-item, .sc-c-dropdown__list-items_group {
  font-size: 20px;
  color: #000;
  outline: none;
  padding: 1rem;
  cursor: pointer;
  transition: 0.4s;
  background: #fff;
  width: 100%;
}
.sc-c-dropdown__list-item.is-grouped, .is-grouped.sc-c-dropdown__list-items_group {
  padding-left: 2.5rem;
}
@media only screen and (min-width: 992px) {
  .sc-c-dropdown__list-item, .sc-c-dropdown__list-items_group {
    padding: 1rem 1.5rem;
  }
}

.sc-c-dropdown__list-items_group {
  font-weight: bold;
  cursor: default;
}

.sc-c-dropdown__add-new-form {
  display: none;
  margin-top: 20px;
}
.sc-c-dropdown__add-new-form.is-visible {
  display: block;
}

.sc-c-accordion__btn.active .sc-c-accordion__btn-item {
  display: none;
}
.sc-c-accordion__btn.active .sc-c-accordion__btn-item-default {
  display: block;
}
.sc-c-accordion__btn.active:after {
  transform: rotate(180deg);
  transition: 0.2s ease-out;
}

.sc-c-accordion__btn-content {
  margin-bottom: 0;
  font-size: 20px;
}

.tabs {
  overflow: hidden;
}
.tabs ul {
  display: table;
  width: 100%;
}
.tabs li {
  display: table-cell;
  text-align: center;
  border-right: 1px solid #ddd;
}
.tabs li:last-child {
  border-right: 0;
}
.tabs a {
  display: block;
  padding: 0.5em;
  background: #808080;
}
.tabs a:hover, .tabs a:focus {
  background: #ddd;
}
.tabs a.active {
  background: #333;
  color: #fff;
}

.section {
  margin: 0 0 1em;
}

.section-title {
  margin-bottom: 0.5em;
}

.article-header h1 {
  font-size: 2.5em;
}

.byline {
  font-size: 0.875em;
  font-style: italic;
  margin-bottom: 0.5em;
}

.social-share {
  overflow: hidden;
  margin-bottom: 1em;
}
.social-share li {
  float: left;
  margin-right: 0.5em;
}
.social-share a {
  background: #333;
  color: #fff;
  display: block;
  padding: 0.5em;
}
.social-share a:hover {
  background: #808080;
}

.comments li {
  margin-bottom: 1em;
}

.comment-container {
  overflow: hidden;
  margin-bottom: 1em;
  list-style: none;
}

.comment-meta {
  float: left;
  width: 6.5em;
}
.comment-meta img {
  display: block;
  border: 1px solid #eee;
  margin-bottom: 0.5em;
}

.comment-name {
  font-size: 1.25rem;
}

.comment-text {
  margin-left: 9em;
}

/*------------------------------------*\
    $MESSAGING
\*------------------------------------*/
.sc-c-alert {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 4em 0 24px;
  width: 100%;
  min-height: 60px;
  flex-flow: row nowrap;
  align-items: center;
  background: #f9f9f9;
  font-family: "SourceSansProSemiBold";
  font-weight: bold;
  opacity: 0.9;
}
.sc-c-alert--is-visible {
  display: flex;
}
.sc-c-alert--error {
  color: #ffffff;
  background: #ff5359;
}
.sc-c-alert--error:focus, .sc-c-alert--error:hover {
  color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .sc-c-alert {
    min-height: 44px;
    justify-content: center;
  }
}
.sc-c-alert--reminder {
  position: relative;
  margin-top: 1px;
}
.sc-c-alert__cancel-icon {
  cursor: pointer;
}

.sc-c-alert__cancel-icon,
.sc-c-alert__icon {
  width: 24px;
  height: 24px;
}

.sc-c-alert__icon {
  margin-right: 1em;
}
@media only screen and (min-width: 992px) {
  .sc-c-alert__icon {
    margin-right: 0.5em;
  }
}

.sc-c-alert__cancel-icon {
  position: absolute;
  right: 24px;
}
@media only screen and (min-width: 992px) {
  .sc-c-alert__cancel-icon {
    right: 67px;
  }
}

.sc-c-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sc-c-success__title {
  margin: 18px;
}

.sc-c-toastr {
  display: flex;
  position: static;
  top: 20px;
  right: 10px;
  z-index: 115;
  padding: 1rem;
  border-radius: 10px;
  color: #ffffff;
  justify-content: space-between;
  align-items: center;
  font-family: "SourceSansProSemiBold";
  font-weight: bold;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.26);
  max-width: 300px;
}
.sc-c-app-layout .sc-c-toastr {
  display: none;
  position: fixed;
}
.sc-c-app-layout .sc-c-toastr--is-visible {
  display: flex;
}
.sc-c-toastr--success {
  background: #5fcf8d;
}

.sc-c-toastr__icon {
  margin-right: 0.3rem;
}

.sc-c-toastr__icon,
.sc-c-toastr__cancel-icon {
  width: 30px;
  height: 30px;
}

.sc-c-toastr__cancel-icon {
  margin-left: 0.5rem;
  cursor: pointer;
}

.sc-c-notification-bar {
  position: relative;
  margin-left: 1em;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.sc-c-notification-bar__icon {
  display: flex;
  align-items: center;
}
.sc-c-notification-bar__icon svg {
  width: 26px;
  height: 26px;
}
.sc-c-notification-bar__icon svg * {
  fill: #555555 !important;
}
@media only screen and (min-width: 992px) {
  .sc-c-notification-bar__icon svg {
    width: 30px;
    height: 30px;
  }
}

.sc-c-messages {
  height: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .sc-c-messages {
    border-radius: 12px;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
    background-color: #fefefe;
  }
}

.sc-c-messages__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  background-color: #7d848e;
  color: #ffffff;
  font-size: 22px;
  font-family: "SourceSansProSemiBold";
  padding: 0 24px;
}

.sc-c-messages__trash-icon {
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.sc-c-messages__trash-icon * {
  fill: #ffffff !important;
}

.sc-c-message__header {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.sc-c-message__not-read {
  width: 10px;
  height: 10px;
  display: flex;
  border-radius: 50%;
  background: #009dd2;
  margin-right: 4px;
}

.sc-c-messages__list {
  padding: 0 24px;
  display: flex;
  flex-flow: column nowrap;
  height: 100%;
  overflow: auto;
  max-height: calc(100% - 90px);
}
.sc-c-messages-block .sc-c-messages__list {
  padding: 0;
  overflow: visible;
  max-height: none;
}

.sc-c-message__item {
  margin-top: 1em;
}
.sc-c-messages-block .sc-c-message__item {
  width: 90%;
}
.sc-c-message__item.sc-c-message__item--sent {
  align-self: flex-end;
}

.sc-c-message__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sc-c-messages-block .sc-c-message__body {
  flex-flow: column nowrap;
  align-items: flex-start;
}
.sc-c-message__item--sent .sc-c-message__body {
  background: rgba(0, 157, 210, 0.5);
  color: #ffffff;
}

.sc-c-message__content {
  padding: 0.5em;
  background: #e5e6e8;
  color: #555555;
  position: relative;
  border-radius: 6px;
  flex-grow: 1;
}

.sc-c-messages__right-arrow {
  width: 12px;
  height: 12px;
  margin-left: 15px;
}

.sc-c-message__item--sent .sc-c-message__time {
  text-align: end;
}

.sc-c-message__title {
  font-size: 18px;
  font-family: "SourceSansProBold";
  margin-bottom: 0.5em;
}

.sc-c-message__text {
  width: 100%;
  word-wrap: break-word;
}

.sc-c-message__remove-icon {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 20px;
  height: 20px;
}
.sc-c-message__remove-icon * {
  fill: #000000 !important;
}

.sc-c-message__from {
  margin-top: 4px;
  font-size: 18px;
}

.sc-c-messages-block__info-message {
  width: 100%;
  color: #333;
}

.sc-c-messages-block {
  margin-top: 2em;
}
@media only screen and (min-width: 992px) {
  .sc-c-messages-block {
    margin-top: 0;
  }
}

.sc-c-messages-block__textarea {
  font-size: 18px;
  font-family: "SourceSansPro";
  margin-bottom: 1em;
}

/* CARDS */
.sc-c-card {
  border-radius: 12px;
}
.sc-c-card--blue {
  background: #009dd2;
}
.sc-c-card--purple {
  background: #bf76bf;
}
.sc-c-card--orange {
  background: #ffc57c;
}

/* Colored cards */
.sc-c-cards-coloured {
  margin-left: auto;
  margin-right: auto;
  flex-wrap: nowrap;
  padding: 1.5rem;
  align-items: center;
  position: relative;
}
.sc-c-cards-coloured--negative-ele {
  margin-top: -65px;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-coloured--negative-ele {
    margin-top: -22%;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-coloured {
    position: relative;
    align-items: initial;
    padding: 2.2rem 4.1875rem;
    justify-content: center;
  }
}

.sc-c-cards-coloured__item {
  display: flex;
  border: none;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.16);
  min-height: 314px;
  width: 100%;
}
.sc-c-cards-coloured__item:nth-child(even) {
  margin: 1.5rem 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-coloured__item:nth-child(even) {
    margin: 0 1rem;
  }
}
.sc-c-cards-coloured__item.sc-c-cards-coloured__item-buttons {
  box-shadow: none;
  min-height: 270px;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-coloured__item {
    width: 33.3%;
    min-height: 350px;
  }
}

.sc-c-cards-coloured__item-content {
  display: flex;
  flex-direction: column;
  padding: 1.3rem 1.7rem;
  width: 100%;
  align-items: center;
}
.sc-c-cards-coloured__item-content .sc-c-btn--round {
  margin: 0;
  border: 0;
  font-size: 15px;
  font-size: 0.9375rem;
}
.sc-c-cards-coloured__item-buttons .sc-c-cards-coloured__item-content {
  padding: 0;
  justify-content: space-between;
}
.sc-c-cards-coloured__item-buttons .sc-c-cards-coloured__item-content .sc-c-btn-card:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-coloured__item-content {
    padding: 2.3rem 1.7rem 1.7rem;
  }
  .sc-c-cards-coloured__item-buttons .sc-c-cards-coloured__item-content {
    padding: 0;
  }
}

.sc-c-cards-coloured__item-title {
  font-size: 26px;
  margin-bottom: 1.875rem;
  color: #ffffff;
}
.sc-c-cards-coloured__item-title--light {
  font-weight: 400;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-coloured__item-title {
    margin-bottom: 50px;
  }
}

.sc-c-cards-coloured__item-desc {
  flex: 1 0 auto;
  color: #ffffff;
  font-size: 20px;
  width: 100%;
}

/* Testimonials cards */
.sc-c-cards-testimonials {
  margin: 0 auto 2rem;
  flex-wrap: nowrap;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-testimonials {
    align-items: initial;
    margin: 0 auto 2.8rem;
  }
}

.sc-c-cards-testimonial__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.1875rem 1.3125rem 1.6875rem 1.3125rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1.5rem;
  background: #ffffff;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-testimonial__item:nth-child(even) {
    margin-left: 1rem;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-testimonial__item {
    text-align: left;
    max-width: 608px;
  }
}

.sc-c-cards-testimonial__title {
  margin-bottom: 1.5625rem;
  padding: 0 5%;
  font-size: 22px;
  font-size: 1.375rem;
}

.sc-c-cards-testimonial__content-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-testimonial__content-text {
    flex-basis: 50%;
  }
}

.sc-c-cards-testimonial__content-title {
  margin: 1.5rem 1rem;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-testimonial__content-title {
    margin: 0 0 1rem 0;
  }
}

.sc-c-cards-testimonial__avatar {
  width: 170px;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-testimonial__avatar {
    width: 100%;
    flex-basis: 30%;
  }
}

.sc-c-cards-testimonial__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-testimonial__content {
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
  }
}

.sc-c-cards-overview {
  margin: 0 auto;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

/* Overview cards */
.sc-c-cards-overview__item {
  border: 1px solid #ebebeb;
  max-height: 260px;
  width: 296px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  color: #555555;
  background: #ffffff;
  display: block;
}
.sc-c-cards-overview__item:hover .sc-c-badge {
  background: #007197;
}
.sc-c-cards-overview__item--disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.sc-c-cards-overview__item--disabled img {
  filter: grayscale(100%);
}
.sc-c-cards-overview__item--disabled .sc-c-badge {
  background: #ddd;
  color: #7d848e;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-overview__item {
    max-width: 296px;
    width: 100%;
    margin: 0 auto;
  }
}

.sc-c-cards-overview__item-default {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 240px;
  padding: 0.875rem 0.5625rem 0.875rem 1rem;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-overview__item-default {
    min-height: 100%;
  }
}

.sc-c-cards-overview__content {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0.5625rem 0.875rem 1rem;
}

.sc-c-cards-overview__available {
  margin-top: 1.125rem;
}

.sc-c-cards-applications {
  display: flex;
  flex-flow: column nowrap;
  color: #000000;
  margin: 1em 0;
  width: 100%;
}
.sc-c-cards-applications h2 {
  padding: 0.5em 24px;
  color: #009dd2;
}
.sc-c-cards-applications h3 {
  padding: 0 24px;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-applications {
    flex-flow: row nowrap;
    padding-left: 67px !important;
    padding-right: 67px !important;
    justify-content: space-between;
    margin: 2em 0;
  }
  .sc-c-cards-applications h2 {
    padding: 0.5em 0;
    color: #009dd2;
  }
  .sc-c-cards-applications h3 {
    padding: 0.5em 0;
  }
}

@media only screen and (min-width: 992px) {
  .sc-c-cards-application {
    width: 32%;
    margin-right: 15px;
  }
  .sc-c-cards-application:last-child {
    margin-right: 0px;
  }
}

.sc-c-cards-applications__colored-status {
  width: 12px;
  height: 12px;
  display: inline-flex;
  border-radius: 50%;
  background: #009dd2;
  margin-right: 8px;
}
.sc-c-cards-applications__colored-status--red {
  background-color: #ff5359;
}
.sc-c-cards-applications__colored-status--yellow {
  background-color: #ffc57c;
}
.sc-c-cards-applications__colored-status--blue {
  background-color: #009dd2;
}
.sc-c-cards-applications__colored-status--lightblue {
  background-color: rgba(0, 157, 210, 0.5);
}
.sc-c-cards-applications__colored-status--gray {
  background-color: #7d848e;
}

.sc-c-cards-applications__profession,
.sc-c-cards-application__title,
.sc-c-cards-applications__time {
  font-size: 18px;
  font-family: "SourceSansProBold";
}

.sc-c-cards-application__title,
.sc-c-cards-applications__time {
  display: inline-flex;
}

.sc-c-cards-applications__last-update {
  font-size: 13px;
}

.sc-c-cards-applications__button {
  padding: 0 24px;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-applications__button {
    padding: 0;
  }
}

.sc-c-card-applications__item,
.sc-c-card-trial-apprenticeships__item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  width: 100%;
  background-color: #ebebeb;
  padding: 0.5em 24px;
  margin-bottom: 5px;
  min-height: 120px;
}
@media only screen and (min-width: 992px) {
  .sc-c-card-applications__item,
.sc-c-card-trial-apprenticeships__item {
    min-height: 120px;
    margin-bottom: 10px;
  }
}

.sc-c-all-cards-applications {
  margin: 1em 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-all-cards-applications {
    padding-left: 67px !important;
    padding-right: 67px !important;
  }
}

.sc-c-cards-applications__link:focus, .sc-c-cards-applications__link:hover {
  color: unset;
}

.sc-c-all-applications__card {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 0.5em 24px 1em;
}
@media only screen and (min-width: 992px) {
  .sc-c-all-applications__card {
    flex-flow: row nowrap;
    justify-content: space-between;
    min-height: 60px;
    padding: 1em 24px;
  }
  .sc-c-all-applications__card > * {
    flex-basis: 20%;
    margin-right: 10px;
  }
  .sc-c-all-applications__card > *:last-child {
    margin-right: 0;
  }
  .sc-c-all-applications__card > *:last-child, .sc-c-all-applications__card > *:first-child {
    flex-basis: 10%;
  }
}

.sc-c-all-applications__card .sc-c-cards-applications__profession,
.sc-c-all-applications__card .sc-c-cards-applications__company,
.sc-c-all-applications__card .sc-c-cards-applications__last-update {
  order: 4;
}

.sc-c-cards-applications__profession,
.sc-c-cards-applications__company {
  flex-basis: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-applications__profession,
.sc-c-cards-applications__company {
    flex-basis: 20%;
    flex-grow: 0;
  }
}

.sc-c-cards-applications__profession {
  margin-bottom: 6px;
  flex-grow: 1;
}
.sc-c-all-applications__card .sc-c-cards-applications__profession {
  margin-bottom: 0;
}

.sc-c-card-trial-apprenticeships__item .sc-c-cards-applications__profession {
  flex-grow: 0;
}

.sc-c-cards-applications__company {
  font-size: 18px;
}

.sc-c-cards-applications__status-bar {
  padding: 1em 24px 0;
  display: flex;
  align-items: center;
  background-color: #ebebeb;
}
.sc-c-all-applications__card .sc-c-cards-applications__status-bar {
  padding: 0;
}
.sc-c-cards-applications__status-bar--blue {
  background-color: #009dd2;
  color: #ffffff;
  padding: 1em 24px;
}
.sc-c-cards-applications__status-bar--lightblue {
  background-color: rgba(0, 157, 210, 0.5);
  padding: 1em 24px;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-applications__status-bar {
    padding: 1em 24px;
  }
}

.sc-c-cards-applications__last-update {
  flex-basis: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-cards-applications__last-update {
    flex-basis: 10%;
  }
}

.sc-c-all-applications__card .sc-c-cards-applications__time {
  order: 3;
  font-family: "SourceSansPro";
}
@media only screen and (min-width: 992px) {
  .sc-c-all-applications__card .sc-c-cards-applications__time {
    order: 0;
  }
}

.sc-c-all-applications__card .sc-c-cards-application__title {
  flex-grow: 1;
  margin: 8px 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-all-applications__card .sc-c-cards-application__title {
    margin: 0;
  }
}

.sc-c-all-applications__card .sc-c-cards-applications__last-update {
  margin-top: 10px;
}
@media only screen and (min-width: 992px) {
  .sc-c-all-applications__card .sc-c-cards-applications__last-update {
    margin-top: 0;
  }
}

.sc-c-cards-trial-apprenticeships__type {
  margin-top: -20px;
  color: #555555;
}
.sc-c-cards-trial-apprenticeships__type:first-child {
  margin-top: inherit;
}

.sc-c-menu-account {
  display: flex;
  align-items: center;
}

.sc-c-menu-account__icon-wrapper {
  display: flex;
  align-items: center;
  margin-left: 1em;
  cursor: pointer;
}
.sc-c-menu-account__icon-wrapper svg {
  width: 26px;
  height: 26px;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu-account__icon-wrapper svg {
    width: 30px;
    height: 30px;
  }
}

.sc-c-menu-account__icon-label {
  font-size: 18px;
  color: #555555;
  margin-right: 8px;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu-account__icon-label {
    display: none;
  }
}

.sc-c-menu-links {
  display: none;
  margin: 0 1em;
}
@media only screen and (min-width: 992px) {
  .sc-c-menu-links {
    display: flex;
    align-items: center;
  }
}

.sc-c-menu-account__profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sc-c-menu-account__link {
  font-size: 15px;
  color: #555555;
}
.sc-c-menu-account__link:hover, .sc-c-menu-account__link:focus {
  color: #3c3c3c;
}

.sc-c-menu-account__login {
  display: flex;
  align-items: center;
}

.sc-c-badge {
  background: #009dd2;
  border-radius: 12px;
  color: #ffffff;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "SourceSansProBold";
  width: auto;
}
.pl-js-pattern-example .sc-c-badge {
  width: 35px;
}
.sc-c-badge--notification {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2px;
  right: -2px;
  width: 15px;
  height: 15px;
  padding: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  background-color: #ff5359;
}

/* BANNERS */
.sc-c-banner--small {
  height: 300px;
}
.sc-c-banner--small .sc-c-banner__content-wrapper {
  top: 5%;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner--small .sc-c-banner__content-wrapper {
    top: 2.875rem;
  }
}
.sc-c-banner--small.sc-c-banner__custom-page .sc-c-banner__content-wrapper {
  top: 35px;
}

.sc-c-banner__sub-title {
  color: #ffffff;
}

.sc-c-banner-container {
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  margin: 0 auto;
}
.sc-c-banner-container--only-desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner-container--only-desktop {
    display: flex;
  }
}
.sc-c-banner-container--mobile {
  max-height: 400px;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner-container--mobile {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-banner-container {
    display: flex;
    max-height: 800px;
  }
}

.sc-c-banner__content-wrapper {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 10vw;
  width: 100%;
}
.sc-c-banner-container--mobile .sc-c-banner__content-wrapper {
  max-width: 768px;
  flex-direction: column;
  top: 35px;
}
.sc-c-banner-cms .sc-c-banner__content-wrapper {
  position: static;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__content-wrapper {
    top: 65px;
    justify-content: space-between;
    height: 100%;
  }
}

.sc-c-banner__button-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 10px;
  align-items: flex-start;
}
.sc-c-banner__button-wrapper .sc-c-banner__button {
  position: relative;
  min-width: 260px;
  max-width: 100%;
  width: auto;
}
.sc-c-banner__button-wrapper .sc-c-banner__button:first-child {
  margin-bottom: 2.5%;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__button-wrapper .sc-c-banner__button:first-child {
    margin-right: 1.25rem;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__button-wrapper .sc-c-banner__button {
    min-width: 320px;
  }
}
.sc-c-banner__button-wrapper .sc-c-btn-image {
  margin: 0;
  padding: 1.375rem 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__button-wrapper .sc-c-btn-image {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__button-wrapper {
    flex-direction: row;
    width: 100%;
  }
  .sc-c-multi-step__page-group .sc-c-banner__button-wrapper {
    margin-bottom: 18px;
  }
}

.sc-c-banner__content {
  width: 90%;
}
.sc-c-banner-container--mobile .sc-c-banner__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: auto;
  margin-bottom: 2%;
}
.sc-c-banner-email .sc-c-banner__content, .sc-c-banner-company .sc-c-banner__content {
  display: flex;
  height: 100%;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.sc-c-banner-email .sc-c-banner__content {
  align-items: center;
  justify-content: space-around;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner-email .sc-c-banner__content {
    justify-content: space-between;
  }
}
.sc-c-banner-cms .sc-c-banner__content {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0;
  width: 100%;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__content {
    width: 100%;
    top: 120px;
  }
}

.sc-c-banner__image {
  display: none;
  margin-right: 6%;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__image {
    display: block;
  }
}

.sc-c-banner__image-mobile-container {
  width: 20%;
  height: 124px;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__image-mobile-container {
    display: none;
  }
}

.sc-c-banner__image-mobile {
  height: 100%;
}

.sc-c-banner__title {
  font-size: 26px;
  color: #ffffff;
  max-width: 90%;
  width: 100%;
  height: 124px;
  line-height: 1.27;
  margin-bottom: 5%;
}
.sc-c-banner--small .sc-c-banner__title {
  max-width: 680px;
  height: auto;
}
.sc-c-banner-container--mobile .sc-c-banner__title {
  margin-bottom: 0;
  height: auto;
  min-height: 124px;
}
.sc-c-banner-email .sc-c-banner__title {
  width: auto;
  max-width: none;
  font-size: 26px;
  height: auto;
  line-height: 1.17;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner-email .sc-c-banner__title {
    font-size: 36px;
  }
}
.sc-c-banner__student-dashboard .sc-c-banner__title {
  font-size: 38px;
}
.sc-c-banner__title--small {
  font-size: 24px;
  color: #ffffff;
}
.sc-c-banner-cms .sc-c-banner__title {
  margin: 0;
  font-size: 44px;
  height: auto;
  width: auto;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__title {
    font-size: 36px;
    height: auto;
    line-height: 1.17;
  }
}

.sc-c-banner__text {
  display: none;
  color: #ffffff;
  font-size: 22px;
  font-size: 1.375rem;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__text {
    display: block;
    margin-top: 5%;
  }
}

.sc-c-banner-cms,
.sc-c-banner__custom-page,
.sc-c-banner-overview,
.sc-c-banner-category {
  background: url("../../images/bgd-category.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* OVerview banner */
.sc-c-banner__custom-page,
.sc-c-banner-category {
  height: 340px;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__custom-page,
.sc-c-banner-category {
    height: 300px;
  }
}

.sc-c-banner__custom-page {
  height: 150px;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__custom-page {
    height: 200px;
  }
}

.sc-c-banner-overview {
  height: 240px;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner-overview {
    height: 300px;
  }
}

/* Registration banner */
.sc-c-banner-registration {
  background: url("../../images/bgd-category.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 180px;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner-registration {
    height: 300px;
  }
}

/* Student dashboard banner */
.sc-c-banner__student-dashboard {
  background: url("../../images/bgd-category.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 180px;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__student-dashboard {
    height: 200px;
  }
}

.sc-c-banner__student-dashboard-content {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  color: #ffffff;
}

.sc-c-student__avatar {
  min-width: 100px;
  max-width: 100px;
  max-height: 100px;
  margin-right: 20px;
}
.sc-c-student__avatar--only-desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  .sc-c-student__avatar--only-desktop {
    display: block;
  }
}

.sc-c-student__teacher {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "SourceSansProSemiBold";
  color: #555555;
}

/* Company banner */
.sc-c-banner-company {
  background: url("../../images/bgd-company.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 180px;
}
.sc-c-banner-company .sc-c-banner__content-wrapper {
  position: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner-company {
    height: 300px;
  }
}

.sc-c-banner__company-content {
  width: 100%;
  color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__company-content {
    width: 70%;
  }
}

.sc-c-banner__company-apply {
  color: #009dd2;
  font-size: 36px;
  font-size: 2.25rem;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__company-apply {
    font-size: 56px;
    font-size: 3.5rem;
  }
}

.sc-c-banner__company-name {
  color: #7d848e;
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 12px;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__company-name {
    font-size: 26px;
    font-size: 1.625rem;
    margin-top: 1rem;
  }
}

.sc-c-banner__company-role {
  font-size: 26px;
  font-size: 1.625rem;
}
.sc-c-banner__company-role a {
  color: #ffffff;
  text-decoration: underline;
}
.sc-c-banner__company-role a:hover {
  color: #f2f2f2 !important;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__company-role {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.sc-c-banner__company-logo {
  max-width: 30%;
  width: 100%;
  display: none;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__company-logo {
    display: block;
  }
}

/* Details banner */
.sc-c-details-banner {
  z-index: 3;
}

/* Email banner */
.sc-c-banner-email {
  background: url("../../images/bgr-long-blue.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 150px;
}
.sc-c-banner-email .sc-c-banner__content-wrapper {
  top: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner-email {
    height: 200px;
  }
}

.sc-c-banner__pen-img {
  height: 100px;
}
@media only screen and (min-width: 992px) {
  .sc-c-banner__pen-img {
    height: 150px;
  }
}

/* CMS banner */
.sc-c-banner-cms {
  height: 120px;
  background-position: unset;
}

.sc-c-modal {
  display: none;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-modal {
    display: flex;
    top: -100%;
    opacity: 0;
    z-index: -1;
  }
}
.sc-c-modal--is-visible {
  display: flex;
  z-index: 99990;
  top: 0;
  opacity: 1;
  transition: top 0.4s, opacity 0.4s;
}

.sc-c-modal__title {
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 70px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  background-color: #7d848e;
  color: #ffffff;
  font-size: 22px;
  font-family: "SourceSansProSemiBold";
}
@media only screen and (min-width: 992px) {
  .sc-c-modal__title {
    justify-content: center;
    padding: 0 22px;
  }
}

.sc-c-app-layout .sc-c-modal__open-button {
  display: none;
}

.sc-c-modal__colored-content {
  background: #f7f7f7;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}
.sc-c-confirm-content .sc-c-modal__colored-content {
  border-radius: 0;
}

@media only screen and (min-width: 992px) {
  .sc-c-modal__backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.8;
    background-color: #000000;
  }
}

.sc-c-modal__dialog {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 3.5rem 0 1rem;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  background-color: rgba(247, 247, 247, 0.97);
  z-index: 99991;
  overflow: hidden;
}
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .sc-c-modal__dialog {
    overflow: auto;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-modal__dialog {
    max-height: 620px;
    max-width: 660px;
    margin: 0 auto;
    box-shadow: none;
    background-color: transparent;
    border-radius: 12px;
    padding: 5rem 24px 1rem;
  }
}

.sc-c-modal__content {
  overflow: auto;
  height: 100%;
}
@media only screen and (max-width: 992px) and (orientation: landscape) {
  .sc-c-modal__content {
    overflow: visible;
  }
}
.sc-c-modal__content .sc-c-loading-icon {
  position: relative;
  left: 50%;
  top: 10%;
  transform: translate(-50%);
}

.sc-c-modal__close {
  display: flex;
  align-items: center;
  position: absolute;
  top: 12px;
  right: 24px;
  color: #555555;
  font-size: 18px;
  line-height: 1.25;
  z-index: 99992;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .sc-c-modal__close {
    top: 24px;
    color: #ffffff;
    font-size: 20px;
  }
}

.sc-c-confirm-content {
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .sc-c-confirm-content {
    border-radius: 12px;
  }
}

.sc-c-confirm-content__buttons {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
}
@media only screen and (min-width: 992px) {
  .sc-c-confirm-content__buttons {
    flex-flow: row nowrap;
  }
  .sc-c-confirm-content__buttons .sc-c-btn {
    width: 45%;
  }
}

@media only screen and (min-width: 992px) {
  .sc-c-timeline-list {
    padding: 0 67px;
  }
}

.sc-c-timeline-list__wrapper {
  position: relative;
}

.sc-c-timeline {
  margin-bottom: 36px;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline {
    margin-bottom: 26px;
  }
}

.sc-c-timeline-list__today-line {
  display: none;
  position: absolute;
  top: -32px;
  bottom: 0;
  width: 1px;
  background-color: #009dd2;
  z-index: 2;
}
.sc-c-timeline-list__today-line .sc-c-btn {
  position: absolute;
  width: 66px;
  max-width: 66px;
  left: -33px;
  padding: 3px;
  border-radius: 5px;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline-list__today-line {
    display: block;
  }
}

.sc-c-timeline__header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background-color: #e5e6e8;
  border-radius: 0;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__header {
    border-radius: 12px 12px 0 0;
    border-bottom: 6px solid #7d848e;
    min-height: 86px;
  }
}

.sc-c-timeline__header-left,
.sc-c-timeline__company-info {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__header-left,
.sc-c-timeline__company-info {
    width: 25%;
  }
}

.sc-c-timeline__header-left {
  padding: 12px 3rem 12px 24px;
  font-family: "SourceSansProBold";
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #009dd2;
}

.sc-c-timeline__content-right,
.sc-c-timeline__header-right {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__content-right,
.sc-c-timeline__header-right {
    width: 75%;
  }
}

.sc-c-timeline__header-right {
  display: none;
  flex-flow: column nowrap;
  justify-content: space-between;
  padding: 12px 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__header-right {
    display: flex;
  }
}

.sc-c-timeline__years {
  position: relative;
}

.sc-c-timeline__year {
  position: absolute;
  font-family: "SourceSansProBold";
  font-size: 18px;
  font-weight: bold;
  line-height: 1.56;
  color: #009dd2;
}

.sc-c-timeline__months {
  display: flex;
  flex-flow: row nowrap;
}
.sc-c-timeline__content-right--mobile .sc-c-timeline__months {
  height: 60px;
}

.sc-c-timeline__month {
  display: flex;
  justify-content: center;
  line-height: 1.63;
  color: #555555;
  border-left: 1px solid #e8e8e8;
}
.sc-c-timeline__content-right--mobile .sc-c-timeline__month:last-child {
  border-right: 1px solid #e8e8e8;
}

.sc-c-timeline__companies {
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.sc-c-timeline__company-sites {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  border-bottom: 6px solid #e8e8e8;
  padding-bottom: 13px;
}
.sc-c-timeline__company-sites:last-child {
  border-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__company-sites {
    flex-flow: row nowrap;
    padding-bottom: 0;
  }
}

.sc-c-timeline__company-info {
  padding: 9px 24px 18px;
  font-size: 15px;
  line-height: 1.38;
  color: #31345e;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__company-info {
    padding: 20px 24px;
  }
}

.sc-c-timeline__company-name {
  font-family: "SourceSansProBold";
}

.sc-c-timeline__month-tiles {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  height: 100%;
}

.sc-c-timeline__content-right {
  position: relative;
  display: none;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__content-right {
    display: block;
  }
}
.sc-c-timeline__content-right--mobile {
  display: block;
  padding: 0 24px;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__content-right--mobile {
    display: none;
  }
}

.sc-c-timeline__vacancy {
  display: none;
  position: absolute;
  height: 40px;
  border-radius: 16px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.sc-c-timeline__vacancy--in-range {
  display: block;
}
.sc-c-timeline__vacancy--red {
  background-color: #ff5359;
}
.sc-c-timeline__vacancy--yellow {
  background-color: #ffc57c;
}
.sc-c-timeline__vacancy--green {
  background-color: #5fcf8d;
}
.sc-c-timeline__vacancy--purple {
  background-color: #bf76bf;
}
.sc-c-timeline__vacancy--blue {
  background-color: #009dd2;
}
.sc-c-timeline__vacancy--lightblue {
  background-color: rgba(0, 157, 210, 0.5);
}
.sc-c-timeline__vacancy--red.sc-c-timeline__vacancy--is-past-days {
  background-color: #eaa3a5;
}
.sc-c-timeline__vacancy--yellow.sc-c-timeline__vacancy--is-past-days {
  background-color: #f3dec5;
}
.sc-c-timeline__vacancy--green.sc-c-timeline__vacancy--is-past-days {
  background-color: #b0eac8;
}
.sc-c-timeline__vacancy--blue.sc-c-timeline__vacancy--is-past-days {
  background-color: #89c9de;
}
.sc-c-timeline__vacancy--no-right-radius {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 4px 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.sc-c-timeline__vacancy--no-left-radius {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 4px 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.sc-c-timeline__vacancy--no-right-radius.sc-c-timeline__vacancy--no-left-radius, .sc-c-timeline__vacancy--is-past-days {
  box-shadow: none;
}
.sc-c-timeline__content-right--mobile .sc-c-timeline__vacancy {
  height: 20px;
}

.sc-c-timeline__vacancies,
.sc-c-timeline__holidays {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: flex;
  align-items: center;
}

.sc-c-timeline__vacancies {
  z-index: 1;
}
.sc-c-timeline__content-right--mobile .sc-c-timeline__vacancies {
  left: 24px;
  right: 24px;
  bottom: 5px;
  align-items: flex-end;
  overflow: hidden;
}

.sc-c-timeline__holiday {
  position: absolute;
  height: 100%;
  opacity: 0.3;
  background-color: #7d848e;
}

.sc-c-timeline__show-more-wrapper {
  margin: 1rem 0;
  text-align: center;
}
.sc-c-timeline__show-more-wrapper .sc-c-timeline__show-more-button {
  margin: 0 24px;
  max-width: 200px;
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__show-more-wrapper .sc-c-timeline__show-more-button {
    max-width: 220px;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-timeline__show-more-wrapper {
    text-align: left;
  }
}

.sc-c-legend {
  height: 100%;
  padding: 2rem 0;
  background-color: #f7f7f7;
  border-radius: 16px;
}
#apprenticeshipAvailabilityLegend .sc-c-legend, .sc-c-legend--trial-apprenticeship {
  height: auto;
}

.sc-c-legend_list {
  overflow: auto;
  height: 100%;
}

.sc-c-legend-list__item {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 32px;
}
#apprenticeshipAvailabilityLegend .sc-c-legend-list__item {
  align-items: center;
}

.sc-c-legend-list__colored-block {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 12px;
  margin-right: 2rem;
}
.sc-c-legend-list__colored-block--red {
  background-color: #ff5359;
}
.sc-c-legend-list__colored-block--yellow {
  background-color: #ffc57c;
}
.sc-c-legend-list__colored-block--green {
  background-color: #5fcf8d;
}
.sc-c-legend-list__colored-block--purple {
  background-color: #bf76bf;
}
.sc-c-legend-list__colored-block--blue {
  background-color: #009dd2;
}
.sc-c-legend-list__colored-block--lightblue {
  background-color: rgba(0, 157, 210, 0.5);
}
.sc-c-legend-list__colored-block--none {
  background-color: transparent;
}
.sc-c-legend-list__colored-block--white {
  background-color: #ffffff;
}

.sc-c-legend-list__title {
  margin-bottom: 24px;
  font-size: 24px;
  font-size: 1.5rem;
}
#apprenticeshipAvailabilityLegend .sc-c-legend-list__title {
  margin-bottom: 0;
}

.sc-c-legend-list__description {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44;
}

.sc-c-calendar {
  position: relative;
}

.calendar {
  position: relative;
  display: inline-block;
  padding: 4px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  color: #000;
  line-height: 1.125em;
}

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

.calendar__months {
  display: grid;
  background-color: #eee;
  grid-template-columns: auto;
  grid-gap: 1px;
}

.calendar--3-columns .calendar__months {
  grid-template-columns: auto auto auto;
}

.calendar__month {
  padding: 4px;
  width: 288px;
  background-color: #fff;
}

.calendar__toolbar {
  display: flex;
  text-align: right;
  justify-content: flex-end;
}

.calendar__previous-action,
.calendar__next-action {
  display: flex;
  margin-left: 6px;
  width: 32px;
  height: 32px;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #ddd;
  justify-content: center;
  align-items: center;
}

.calendar__previous-action,
.calendar__next-action {
  font-size: 12px;
}

.calendar__previous-action:active,
.calendar__next-action:active {
  color: inherit;
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar__day.is-today {
  background-image: url("../../../images/icons/circle-red.svg");
  background-size: 18.8% auto;
  background-position: center bottom;
  color: #ff5359;
}

.calendar__day.is-disabled {
  opacity: 0.38;
  pointer-events: none;
}

.calendar__day.disabled-tooltip {
  pointer-events: auto;
}

.calendar__day.is-disabled.in-min-range {
  opacity: 1;
}

.calendar__day.is-disabled.is-forward-selected:not(.is-start-date) {
  background-color: rgba(38, 139, 210, 0.1);
  background-image: none;
}

.calendar__day.calendar__day.is-in-range:not(.is-disabled) {
  opacity: 1;
}

.calendar__day.is-previous-month,
.calendar__day.is-next-month {
  opacity: 0 !important;
}

.calendar__day.is-in-range {
  border-radius: 0;
  background-color: rgba(38, 139, 210, 0.1);
  background-image: none;
}

.calendar__day.is-start-date.is-in-range,
.calendar__day.is-end-date.is-in-range.is-flipped {
  border-top-left-radius: 50%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 50%;
  background-color: #268bd2;
  background-image: none;
}

.calendar__day.is-end-date.is-in-range,
.calendar__day.is-start-date.is-in-range.is-flipped {
  border-top-left-radius: 0;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 0;
  background-color: #268bd2;
  background-image: none;
}

.sc-c-calendar__tooltip {
  display: none;
  position: absolute;
  margin-top: -4px;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: "SourceSansProBold";
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 2;
  max-width: 150px;
  text-align: center;
}
.sc-c-calendar__tooltip--is-visible {
  display: block;
}
@media only screen and (min-width: 992px) {
  .sc-c-calendar__tooltip {
    max-width: 200px;
  }
}

.sc-c-calendar__tooltip::before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
  border-top: 10px solid rgba(0, 0, 0, 0.6);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  content: "";
  opacity: 0.5;
}

.sc-c-calendar__tooltip::after {
  position: absolute;
  bottom: -8px;
  left: calc(50% - 8px);
  border-top: 8px solid rgba(0, 0, 0, 0.6);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  content: "";
  opacity: 0.4;
}

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

.calendar__reset-action,
.calendar__apply-action {
  border-radius: 5px;
  font-size: 12px;
  border: none;
}

.calendar__reset-action {
  color: #fff;
  background-color: #aeacad;
}

.calendar__apply-action {
  color: #fff;
  background-color: #2495f3;
}

#calendar_input {
  display: none;
}

.sc-c-calendar__legend {
  padding: 0 24px;
  float: right;
  cursor: pointer;
}
.sc-c-calendar__legend .sc-c-icon-legend {
  pointer-events: none;
  justify-content: flex-end;
}
.sc-c-calendar__legend--inline {
  display: none;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-calendar__legend {
    display: none;
  }
  .sc-c-calendar__legend--inline {
    display: block;
  }
}

#calendar {
  margin: 40px 0;
}
@media only screen and (min-width: 992px) {
  #calendar {
    display: block;
  }
}

.calendar__inner > .calendar__toolbar {
  display: none;
}
@media only screen and (min-width: 992px) {
  .calendar__inner > .calendar__toolbar {
    display: block;
  }
}

.calendar {
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  z-index: 0;
}

.calendar__months {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  background-color: transparent;
  width: 100%;
}
.calendar__months .calendar__month:nth-child(2) {
  margin: 0 10px;
}

.calendar__month {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px 0 rgba(196, 200, 208, 0.4);
  padding: 26px 30px;
}
@media only screen and (min-width: 992px) {
  .calendar__month {
    width: 32%;
  }
}

.calendar__previous-action {
  background: url("/../../images/icons/left_arrow.svg") no-repeat center center;
  position: absolute;
  left: -20px;
  top: 0;
}
@media only screen and (min-width: 992px) {
  .calendar__previous-action {
    padding: 5% 0;
    left: -40px;
    top: 35%;
  }
}

.calendar__next-action {
  background: url("/../../images/icons/right_arrow.svg") no-repeat center center;
  position: absolute;
  right: -15px;
  top: 0;
}
@media only screen and (min-width: 992px) {
  .calendar__next-action {
    padding: 5% 0;
    right: -40px;
    top: 35%;
  }
}

.calendar__month-title {
  display: flex;
  flex-flow: nowrap;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "SourceSansProBold";
  font-weight: bold;
  line-height: 0.92;
  letter-spacing: 0.75px;
}
@media only screen and (min-width: 992px) {
  .calendar__month-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.calendar__month-title-bar {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  min-height: 40px;
  position: relative;
  justify-content: center;
  align-items: center;
}
.calendar__month-title-bar > div {
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .calendar__month-title-bar {
    position: static;
    justify-content: space-between;
  }
  .calendar__month-title-bar > .calendar__toolbar {
    display: none;
  }
}

.calendar__header-month {
  margin-right: 10px;
}

.sc-c-calendar__legend--inline {
  flex-grow: 1;
}

.calendar__days-of-the-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 2.1px solid #f7f7f7;
}

.calendar__day-of-the-week {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "SourceSansProBold";
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  color: #555555;
  padding: 15px 0 15px;
}

.calendar__day-weekend {
  position: relative;
  background-color: #f5f5f6;
}

.calendar__day {
  display: flex;
  position: relative;
  border-radius: 8px !important;
  margin: 6px;
  font-family: "SourceSansProSemiBold";
  color: #555555;
  height: 34px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.calendar__day.is-today {
  background-size: 6px auto;
}
.calendar__day.is-disabled {
  cursor: auto;
}
.calendar__day::before, .calendar__day::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  width: 6px;
  height: 70%;
}
.calendar__day::before {
  left: -6px;
}
.calendar__day::after {
  right: -6px;
}
.calendar__day.calendar__day--start::before {
  display: none;
}
.calendar__day.calendar__day--end::after {
  display: none;
}
.calendar__day--red {
  background-color: #ff5359;
  color: #ffffff;
}
.calendar__day--red::before, .calendar__day--red::after {
  background-color: #ffb9bb;
}
.calendar__day--red.is-disabled {
  pointer-events: visible;
}
.calendar__day--red.is-disabled:not(.is-next-month):not(.is-past-day) {
  opacity: 1;
}
.calendar__day--red.is-today {
  background-image: url("../../../images/icons/circle-white.svg");
  color: #ffffff;
}
.calendar__day--yellow {
  background-color: #ffc57c;
  color: #555555;
}
.calendar__day--yellow::before, .calendar__day--yellow::after {
  background-color: #ffdcaf;
}
.calendar__day--yellow.is-disabled {
  pointer-events: visible;
}
.calendar__day--yellow.is-start-date, .calendar__day--yellow.is-end-date, .calendar__day--yellow.is-in-range {
  background-color: #e27e00 !important;
  color: #555555 !important;
}
.calendar__day--green {
  background-color: #5fcf8d;
  color: #ffffff;
}
.calendar__day--green::before, .calendar__day--green::after {
  background-color: #ade7c5;
}
.calendar__day--green.is-disabled {
  pointer-events: visible;
}
.calendar__day--green.is-start-date, .calendar__day--green.is-end-date, .calendar__day--green.is-in-range {
  background-color: #227343 !important;
  color: #ffffff !important;
}
.calendar__day--blue {
  background-color: #009dd2;
  color: #ffffff;
}
.calendar__day--blue::before, .calendar__day--blue::after {
  background-color: #39cdff;
}
.calendar__day--blue.is-disabled {
  pointer-events: visible;
}
.calendar__day--blue.is-start-date, .calendar__day--blue.is-end-date, .calendar__day--blue.is-in-range {
  background-color: #00779f !important;
  color: #ffffff !important;
}
.calendar__day--lightblue {
  background-color: rgba(0, 157, 210, 0.5);
  color: #555555;
}
.calendar__day--lightblue::before, .calendar__day--lightblue::after {
  background-color: rgba(57, 205, 255, 0.5);
}
.calendar__day--lightblue.is-disabled {
  pointer-events: visible;
}
.calendar__day--lightblue.is-start-date, .calendar__day--lightblue.is-end-date, .calendar__day--lightblue.is-in-range {
  background-color: rgba(0, 81, 108, 0.5) !important;
  color: #555555 !important;
}
.calendar__day--purple {
  background-color: #bf76bf;
  color: #ffffff !important;
}
.calendar__day--purple::before, .calendar__day--purple::after {
  background-color: #dfbcdf;
}
.calendar__day--purple.is-start-date, .calendar__day--purple.is-end-date, .calendar__day--purple.is-in-range {
  background-color: #8d428d !important;
}
.calendar__day.just-disabled-style {
  opacity: 0.38;
}
@media only screen and (min-width: 992px) {
  .calendar__day {
    height: 41px;
    font-size: 0.9vw;
  }
}

.calendar__already-applied-day {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.calendar__already-applied-day::before, .calendar__already-applied-day::after {
  position: absolute;
  content: " ";
  height: 22px;
  width: 2px;
  background-color: #ff5359;
}
.calendar__already-applied-day::before {
  transform: rotate(45deg);
}
.calendar__already-applied-day::after {
  transform: rotate(-45deg);
}

.month-item-year,
.month-item-name {
  border: none;
}

.month-item-weekdays-row div {
  color: #555555;
  font-weight: 700;
}

.month-item-year {
  font-weight: 700 !important;
}

.sc-c-bottom-information-block,
.sc-c-company-information {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  padding: 32px 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-bottom-information-block,
.sc-c-company-information {
    background-color: #ffffff;
    flex-flow: row nowrap;
  }
  .sc-c-bottom-information-block > *,
.sc-c-company-information > * {
    width: 32%;
  }
}

.sc-c-apply-block {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 4px;
}
.sc-c-apply-block .sc-c-radio {
  font-family: "SourceSansProSemiBold";
  max-width: max-content;
}
.sc-c-apply-block .sc-c-btn__filled-icon,
.sc-c-apply-block .sc-c-btn__icon {
  margin: 0 28px 0 15px;
  height: auto;
}
.sc-c-apply-block .sc-c-btn-secondary--with-icon {
  padding: 12px 0;
}
.sc-c-apply-block .sc-c-btn__text {
  font-family: "SourceSansProSemiBold";
  font-size: 18px;
  font-size: 1.125rem;
  max-width: none;
}
.sc-c-apply-block .sc-c-btn__icon {
  display: flex;
}
.sc-c-apply-block .sc-c-btn.is-favorited .sc-c-btn__icon {
  display: none !important;
}

.sc-c-btn__filled-icon {
  display: none;
}
.is-favorited .sc-c-btn__filled-icon {
  display: flex;
}

.sc-c-apply-block .sc-c-icon--signs_filled {
  width: 1.5rem;
}

.sc-c-apply-block .sc-c-form-error {
  display: none;
}
.sc-c-apply-block .sc-c-form-error.is-visible {
  display: flex;
}

.sc-c-additional-information {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44;
  margin-bottom: 12px;
}
.sc-c-additional-information ul li {
  list-style: disc;
  margin-left: 32px;
}
.sc-c-additional-information ol li {
  list-style: decimal;
  margin-left: 17px;
  padding-left: 15px;
}
.sc-c-additional-information a {
  color: #009dd2;
}

.sc-c-address {
  display: flex;
  flex-flow: column wrap;
}
.sc-c-address__directions-link {
  margin-top: 5px;
}

.sc-c-further-information__title-block,
.sc-c-contact__title,
.sc-c-address__title,
.sc-c-additional-information__title {
  font-family: "SourceSansProSemiBold";
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.sc-c-apply-block__title-block .sc-c-list-ordered__list-group {
  font-size: 18px;
  font-size: 1.125rem;
}

.sc-c-apply-block__title {
  font-family: "SourceSansProSemiBold";
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.sc-c-address__geolocation {
  height: 230px;
  margin-bottom: 25px;
}

.sc-c-address a {
  font-size: 18px;
  font-size: 1.125rem;
  color: #009dd2;
}

.sc-c-address__info {
  display: flex;
  flex-flow: column nowrap;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7;
}
.sc-c-address__info h3 {
  line-height: 1.7;
}

.sc-c-bottom-information-block {
  background-color: transparent;
}

.sc-c-apprenticeship-availability__title {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.sc-c-company-description__title {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.sc-c-apprenticeship-availability__header {
  display: flex;
  flex-flow: row nowrap;
}

.sc-c-apprenticeship-availability__info-icon {
  margin: 4px 20px;
  flex-grow: 1;
}
.sc-c-apprenticeship-availability__info-icon svg {
  width: 23px;
  height: 23px;
}

.sc-c-apprenticeship-availability__description {
  margin-top: 8px;
  line-height: 1.8;
  font-size: 18px;
}

.sc-c-company-description {
  margin: 21px 0 0;
}
.sc-c-company-description a {
  color: #009dd2;
}

.sc-c-company-description__website {
  font-size: 18px;
  font-size: 1.125rem;
}

.sc-c-further-information {
  margin-bottom: 36px;
}
@media only screen and (min-width: 992px) {
  .sc-c-further-information {
    margin-bottom: 0;
  }
}

.sc-c-further-information__title-block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  .sc-c-further-information__title-block {
    justify-content: flex-start;
  }
}

.sc-c-further-information__title {
  margin-right: 12px;
}

.sc-c-trial-apprenticeship {
  display: flex;
}

.sc-c-further-information__info-icon {
  margin-left: 20px;
}
.sc-c-further-information__info-icon svg {
  width: 23px;
  height: 23px;
}

.sc-c-further-information__types {
  display: flex;
  flex-flow: column nowrap;
  font-size: 18px;
  font-size: 1.125rem;
}

.sc-c-further-information__type {
  margin: 4px 0;
}
.sc-c-further-information__type:first-child {
  margin: 0 0 4px;
}

.sc-c-apprenticeship-availability {
  display: flex;
  flex-flow: column nowrap;
}

.sc-c-required-attachments-block p {
  padding-left: 35px;
}

.sc-c-job-details-info__title {
  margin: 36px 0 24px;
  font-size: 1.5rem;
}
.sc-c-bottom-information-block .sc-c-job-details-info__title {
  margin: 26px 0 24px;
}

.sc-c-apprenticeship-availability__list {
  margin-top: 12px;
  display: flex;
  flex-flow: row wrap;
}

.sc-c-apprenticeship-availability__item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-right: 24px;
  margin-bottom: 10px;
}

.sc-c-apprenticeship-availability__colored-block {
  width: 35px;
  height: 35px;
  border-radius: 12px;
  margin-right: 14px;
}
.sc-c-apprenticeship-availability__colored-block--red {
  background-color: #ff5359;
}
.sc-c-apprenticeship-availability__colored-block--yellow {
  background-color: #ffc57c;
}
.sc-c-apprenticeship-availability__colored-block--green {
  background-color: #5fcf8d;
}
.sc-c-apprenticeship-availability__colored-block--white {
  background-color: #ffffff;
}

.sc-c-apprenticeship-availability__year {
  font-size: 18px;
  font-size: 1.125rem;
}

.sc-c-job-details-info {
  font-size: 18px;
  font-size: 1.125rem;
}

.sc-c-non-supported-location {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin: 32px 0;
}
.sc-c-non-supported-location .sc-c-btn-secondary {
  margin-top: 12px;
}

.sc-c-non-supported-location__info {
  width: 100%;
  text-align: center;
}

.sc-c-doc-edit,
.sc-c-doc-upload,
.sc-c-doc-chooser {
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-edit,
.sc-c-doc-upload,
.sc-c-doc-chooser {
    border-radius: 12px;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
    background-color: #fefefe;
  }
}

.sc-c-doc-chooser__item-title {
  overflow-wrap: break-word;
  width: 100%;
}
.sc-c-doc-page .sc-c-doc-chooser__item-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-right: 0.5em;
}

.sc-c-doc-chooser__list {
  flex-grow: 1;
  max-height: calc(100vh - 5rem - 180px);
  overflow: auto;
}
.sc-c-doc-chooser__list--full-visible {
  max-height: none;
  overflow: auto;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-chooser__list--full-visible {
    padding: 24px 67px;
    max-width: 1370px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-chooser__list {
    max-height: calc(100% - 150px);
  }
}

.sc-c-doc-chooser__item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #707070;
}
.sc-c-doc-page .sc-c-doc-chooser__item {
  align-items: center;
  padding: 24px 24px;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-page .sc-c-doc-chooser__item {
    padding: 24px 0;
  }
}

.sc-c-doc-chooser__title-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.28;
  display: flex;
  flex-flow: column nowrap;
  padding: 24px 24px;
  flex-grow: 1;
  cursor: pointer;
  max-width: calc(100% - 84px);
}
.sc-c-doc-page .sc-c-doc-chooser__title-subtitle {
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-chooser__title-subtitle {
    max-width: calc(100% - 86px);
    padding: 12px 22px;
  }
}

.sc-c-doc-chooser__item-subtitle {
  color: #7d848e;
}

.sc-c-doc-edit__file-search-icon,
.sc-c-doc-chooser__preview {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background-color: #7d848e;
  margin: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-edit__file-search-icon,
.sc-c-doc-chooser__preview {
    margin: 12px 22px;
    width: 42px;
    height: 42px;
  }
}

.sc-c-doc-chooser__search-icon svg {
  width: 20px;
  height: 20px;
}
.sc-c-doc-chooser__search-icon svg * {
  fill: #ffffff !important;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-chooser__search-icon svg {
    width: 24px;
    height: 24px;
  }
}

.sc-c-doc-chooser__date {
  font-size: 18px;
  font-size: 1.125rem;
}

.sc-c-doc-chooser__edit,
.sc-c-doc-chooser__preview-link {
  width: 42px;
  height: 42px;
  margin-left: 12px;
  border-radius: 12px;
  background-color: #009dd2;
  display: none;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-chooser__edit,
.sc-c-doc-chooser__preview-link {
    display: flex;
  }
}

.sc-c-doc-edit__button,
.sc-c-doc-upload__button,
.sc-c-doc-chooser__button {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 24px 24px;
  border-top: solid 1px #707070;
  justify-content: center;
}
.sc-c-doc-edit__button .sc-c-btn-primary,
.sc-c-doc-upload__button .sc-c-btn-primary,
.sc-c-doc-chooser__button .sc-c-btn-primary {
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-edit__button,
.sc-c-doc-upload__button,
.sc-c-doc-chooser__button {
    height: 80px;
    width: 100%;
    padding: 12px 22px;
  }
}

.sc-c-doc-page .sc-c-doc-chooser__button {
  border-top: none;
}

.sc-c-doc-edit,
.sc-c-doc-upload {
  height: auto;
}

.sc-c-doc-edit__form,
.sc-c-doc-upload__form {
  padding: 24px 24px;
}
.sc-c-doc-edit__form .sc-c-select-selected,
.sc-c-doc-upload__form .sc-c-select-selected {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-edit__form,
.sc-c-doc-upload__form {
    padding: 12px 22px;
  }
}

.sc-c-doc-upload__list {
  width: 100%;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  color: #7d848e;
  font-size: 22px;
  font-family: "SourceSansProSemiBold";
  line-height: 1.27;
  outline: none;
}

.sc-c-doc-upload__block {
  margin: 22px 0;
  display: flex;
  flex-flow: column nowrap;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-upload__block {
    flex-flow: row nowrap;
  }
  .sc-c-doc-upload__block button {
    margin: 0;
  }
}

.sc-c-doc-upload__item:disabled {
  display: none;
}

.sc-c-doc-upload__doc-name {
  display: flex;
  align-items: center;
  color: #7d848e;
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-upload__doc-name {
    margin-left: 12px;
  }
}

.sc-c-doc-edit__file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow-wrap: break-word;
  width: 100%;
}

.sc-c-doc-edit__file-name {
  max-width: calc(100% - 60px);
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-edit__file-name {
    max-width: calc(100% - 64px);
  }
}

.sc-c-doc-edit__file-search-icon {
  margin-right: 0;
}

.sc-c-doc-edit__button {
  flex-direction: column;
  height: auto;
}
.sc-c-doc-edit__button .sc-c-btn {
  margin-bottom: 0.5em;
}

.sc-c-doc-edit__info-text-message {
  width: 100%;
  color: #333;
}
@media only screen and (min-width: 992px) {
  .sc-c-doc-edit__info-text-message {
    max-width: 296px;
  }
}

.sc-c-application {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  padding: 43px 0 32px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44;
}
.sc-c-application h2 {
  font-family: "SourceSansProSemiBold";
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
@media only screen and (min-width: 992px) {
  .sc-c-application {
    flex-flow: row nowrap;
  }
}

.sc-c-application-form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  .sc-c-application-form {
    flex-flow: row nowrap;
    width: 67%;
  }
  .sc-c-application-form > * {
    width: 48%;
  }
}

.sc-c-selected-dates-block {
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .sc-c-selected-dates-block {
    width: 31%;
  }
}

.sc-c-selected-dates__vacancy-type {
  margin-bottom: 24px;
}

.sc-c-selected-dates__date {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.sc-c-selected-dates__date::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #7d848e;
  margin: 0 10px;
}
@media only screen and (min-width: 992px) {
  .sc-c-selected-dates__date::before {
    margin: 0 10px 0 0;
  }
}

.sc-c-selected-dates__message {
  margin-top: 24px;
}

.sc-c-application__comment-block .sc-c-btn-primary {
  font-size: 18px;
  font-size: 1.125rem;
  max-width: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-application__comment-block .sc-c-btn-primary {
    max-width: 240px;
  }
}

@media only screen and (min-width: 992px) {
  .sc-c-application-requirements {
    padding: 0 48px 0 20px;
  }
}

.sc-c-application-required__doc {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  font-family: "SourceSansProSemiBold";
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .sc-c-application-required__doc {
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: nowrap;
  }
}

.sc-c-application-required__doc-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 12px;
  border: solid 1px #009dd2;
  background-color: rgba(0, 157, 210, 0.1);
  color: #009dd2;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .sc-c-application-required__doc-button {
    max-width: 100px;
    margin-top: 0;
    height: 32px;
    background-color: #009dd2;
    color: #ffffff;
  }
}
.sc-c-application-required__doc-button.is-selected {
  border: solid 1px #ff5359;
  background-color: rgba(255, 83, 89, 0.1);
  color: #ff5359;
}
@media only screen and (min-width: 992px) {
  .sc-c-application-required__doc-button.is-selected {
    background-color: #ff5359;
    color: #ffffff;
  }
}

.sc-c-application-required__doc-type-name {
  display: flex;
  flex-flow: column nowrap;
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 22px;
  font-size: 1.375rem;
}
@media only screen and (min-width: 992px) {
  .sc-c-application-required__doc-type-name {
    flex-basis: auto;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.sc-c-application-required__doc-name {
  white-space: normal;
  color: #7d848e;
  font-size: 15px;
  font-size: 0.9375rem;
}

.sc-c-application-required__type-name {
  white-space: normal;
}

.sc-c-application .sc-c-form-error {
  display: none;
}
.sc-c-application .sc-c-form-error.is-visible {
  display: flex;
}

#addText,
#removeText {
  display: none;
}

.sc-c-confirmation-block {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  flex-grow: 1;
}

.sc-c-confirmation__icon {
  margin-bottom: 10px;
}
.sc-c-confirmation__icon svg {
  width: 50px;
  height: 50px;
}

.sc-c-confirmation-block__text {
  text-align: center;
  padding: 0 1rem;
}

.sc-c-form-with-buttons,
.sc-c-multi-step {
  width: 100%;
}
.sc-c-form-with-buttons button,
.sc-c-multi-step button {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.s-c-step-title {
  font-family: "SourceSansPro";
  color: #475677;
  margin-bottom: 30px;
}

.sc-c-multi-step__two {
  width: 200%;
  display: flex;
  padding: 0;
}

.sc-c-multi-step__three {
  width: 400%;
  display: flex;
  padding: 0;
}

.sc-c-multi-step__page {
  padding-left: 24px !important;
  padding-right: 24px !important;
  transition: margin-left 0.3s ease-in-out;
}
.sc-c-multi-step__two .sc-c-multi-step__page {
  width: 50%;
}
.sc-c-multi-step__three .sc-c-multi-step__page {
  width: 25%;
}
@media only screen and (min-width: 992px) {
  .sc-c-multi-step__page {
    padding-left: 67px !important;
    padding-right: 67px !important;
    margin-bottom: 40px;
  }
}

.sc-c-multi-step__page-group {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}

.sc-c-multi-step__page-group-link {
  display: inline-block;
}
.sc-c-multi-step__page-group-link path {
  fill: #009dd2 !important;
}

.sc-c-sponsors {
  margin-bottom: 2.2rem;
}

.sc-c-sponsors__title {
  margin-bottom: 1rem;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .sc-c-sponsors__title {
    text-align: justify;
  }
}

.sc-c-sponsors__img-block {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 40px 0;
}
@media only screen and (min-width: 992px) {
  .sc-c-sponsors__img-block {
    justify-content: flex-start;
  }
}

.sc-c-sponsors__img {
  margin: 0 20px 40px;
}
.sc-c-sponsors__img svg, .sc-c-sponsors__img img {
  max-height: 70px;
  max-width: 200px;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .sc-c-sponsors__img {
    margin: 0 80px 40px 0;
  }
}

.sc-c-content-page {
  padding: 2em 0 3em 0;
}

.sc-c-page-title {
  font-family: "SourceSansProSemiBold";
  font-size: 32px;
  font-size: 2rem;
  margin-bottom: 1em;
}

.sc-c-page-subtitle {
  font-family: "SourceSansProSemiBold";
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 24px;
  margin-top: 1em;
}

.sc-c-colored-page-title {
  width: 100%;
  padding: 0.5em;
  text-align: center;
  font-family: "SourceSansProSemiBold";
  font-size: 32px;
  font-size: 2rem;
}
.sc-c-colored-page-title--blue {
  background-color: #009dd2;
  color: #ffffff;
}
.sc-c-colored-page-title--lightblue {
  background-color: rgba(0, 157, 210, 0.5);
  color: #ffffff;
}
.sc-c-colored-page-title--red {
  background-color: #ff5359;
  color: #ffffff;
}
.sc-c-colored-page-title--gray {
  background-color: #7d848e;
  color: #ffffff;
}

.sc-c-colored-page-title-link-with-icon {
  display: inline-block;
  margin-left: 10px;
}

.sc-c-sorted-by {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 18px;
  font-family: "SourceSansProSemiBold";
  color: #009dd2;
}

.sc-c-sorted-by__label {
  margin-right: 10px;
}

.sc-c-rejected-application,
.sc-c-incomplete-application,
.sc-c-successful-application {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  margin-bottom: 2em;
  font-size: 18px;
}
@media only screen and (min-width: 992px) {
  .sc-c-rejected-application,
.sc-c-incomplete-application,
.sc-c-successful-application {
    flex-flow: row nowrap;
  }
  .sc-c-rejected-application > *,
.sc-c-incomplete-application > *,
.sc-c-successful-application > * {
    width: 31%;
  }
}

.sc-c-accordion__list {
  display: flex;
  flex-flow: column nowrap;
}

.sc-c-accordion__item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: height 0.3s ease-out;
  height: auto;
}
.sc-c-accordion__item--active {
  height: 100%;
}

.sc-c-accordion__icon {
  padding: 12px;
  cursor: pointer;
}
.sc-c-accordion__item--active .sc-c-accordion__icon {
  align-self: flex-start;
  margin-top: 4px;
}
.sc-c-accordion__icon svg {
  width: 15px;
  height: 15px;
}
.sc-c-accordion__item--active .sc-c-accordion__icon svg {
  transform: rotate(90deg);
}
.sc-c-accordion__icon svg * {
  fill: #009dd2 !important;
}

.sc-c-accordion__text__title {
  color: #009dd2;
  font-size: 18px;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 12px 12px 12px 0;
}

.sc-c-accordion__text__text {
  margin: 0;
  height: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
}
.sc-c-accordion__item--active .sc-c-accordion__text__text {
  height: auto;
  margin-top: 5px;
  margin-bottom: 12px;
  visibility: visible;
  transform: scaleY(1);
  transition: 0.2s ease;
}

.sc-c-pie-chart {
  display: flex;
  flex-flow: row nowrap;
}
.sc-c-cards-application .sc-c-pie-chart {
  padding-left: 24px;
  padding-right: 24px;
}

.sc-c-pie-chart__canvas {
  width: 150px;
  height: 150px;
}

.sc-c-pie-chart__legend {
  margin-left: 20px;
}

.sc-c-pie-chart__legend-item {
  display: flex;
  margin-bottom: 5px;
}

.sc-c-pie-chart__legend-color-tile {
  width: 15px;
  min-width: 15px;
  height: 20px;
  margin-right: 10px;
}
.sc-c-pie-chart__legend-color-tile--gray {
  background-color: gray;
}
.sc-c-pie-chart__legend-color-tile--lightGray {
  background-color: lightgrey;
}
.sc-c-pie-chart__legend-color-tile--gainsboro {
  background-color: gainsboro;
}
.sc-c-pie-chart__legend-color-tile--silver {
  background-color: silver;
}
.sc-c-pie-chart__legend-color-tile--darkGray {
  background-color: darkgray;
}
.sc-c-pie-chart__legend-color-tile--dimGray {
  background-color: dimgray;
}
.sc-c-pie-chart__legend-color-tile--lightSlateGray {
  background-color: lightslategray;
}
.sc-c-pie-chart__legend-color-tile--slategray {
  background-color: slategray;
}
.sc-c-pie-chart__legend-color-tile--darkSlateGray {
  background-color: darkslategray;
}
.sc-c-pie-chart__legend-color-tile--black {
  background-color: black;
}
.sc-c-pie-chart__legend-color-tile--lavenderIndigo {
  background-color: #9b5fe0;
}
.sc-c-pie-chart__legend-color-tile--batteryChargedBlue {
  background-color: #16a4d8;
}
.sc-c-pie-chart__legend-color-tile--skyBlue {
  background-color: #60dbe8;
}
.sc-c-pie-chart__legend-color-tile--kiwi {
  background-color: #8bd346;
}
.sc-c-pie-chart__legend-color-tile--minionYellow {
  background-color: #efdf48;
}
.sc-c-pie-chart__legend-color-tile--sinopia {
  background-color: #d64e12;
}
.sc-c-pie-chart__legend-color-tile--deepSaffron {
  background-color: #f9a52c;
}

.sc-c-contact {
  margin-bottom: 36px;
}
@media only screen and (min-width: 992px) {
  .sc-c-contact {
    margin-bottom: 0;
  }
}

.sc-c-contact__title {
  margin-bottom: 30px;
}

.sc-c-contact__avatar {
  min-width: 88px;
  max-width: 88px;
  margin-right: 16px;
}

.sc-c-contact__content {
  display: flex;
  flex-flow: row wrap;
}

.sc-c-contact__info {
  display: flex;
  flex-flow: column nowrap;
  font-size: 18px;
  font-size: 1.125rem;
  width: 100%;
}
.sc-c-contact__info > div {
  display: flex;
  flex-flow: row wrap;
}
.sc-c-contact__info span {
  white-space: nowrap;
}

.sc-c-contact__info-email {
  overflow-wrap: break-word;
  width: 100%;
}

.sc-c-contact__label {
  display: none;
  margin-right: 4px;
}
@media only screen and (min-width: 992px) {
  .sc-c-contact__label {
    display: inline;
  }
}

.sc-c-contact__link {
  width: 100%;
}

.sc-c-contact__info {
  margin-top: 0.5em;
}

.sc-c-student-profile-page {
  display: flex;
  flex-flow: column nowrap;
}
@media only screen and (min-width: 992px) {
  .sc-c-student-profile-page {
    flex-flow: row nowrap;
    justify-content: space-between;
    padding-left: 67px !important;
    padding-right: 67px !important;
  }
  .sc-c-student-profile-page > div {
    margin-right: 1em;
    width: calc(100% / 3);
  }
  .sc-c-student-profile-page > div.sc-c-student-profile-page:last-child {
    margin-right: 0;
  }
}

.sc-c-student-profile-block {
  font-size: 18px;
  font-size: 1.125rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  width: 100%;
  background-color: #ebebeb;
  padding: 1em 24px;
}

@media only screen and (min-width: 992px) {
  .sc-c-student-school {
    margin-bottom: 2em;
  }
}

.sc-c-student-dashboard-title {
  padding: 0.5em 24px;
  color: #009dd2;
}
@media only screen and (min-width: 992px) {
  .sc-c-student-dashboard-title {
    padding: 0.5em 0;
  }
}

.sc-c-student-school__teacher-email,
.sc-c-student-guardian__email {
  overflow-wrap: break-word;
  width: 100%;
}

.student-trial-apprenticeship-picker .container__days .day-item.is-highlighted {
  background-color: #009dd2;
  color: #ffffff;
}

.sc-c-trial-apprenticeship__trash-icon {
  width: 26px;
  height: 26px;
  cursor: pointer;
  flex-direction: column;
}
.sc-c-trial-apprenticeship__trash-icon * {
  fill: #ffffff !important;
}

@media only screen and (min-width: 992px) {
  .sc-c-student-dashboard-logout-button {
    display: none;
  }
}

.sc-c-loader-screen__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.8;
  background-color: #000000;
}

.sc-c-loader-screen {
  display: none;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  z-index: 99990;
  opacity: 1;
}

.sc-c-loader-screen--is-visible {
  display: flex;
  transition: top 0.4s, opacity 0.4s;
}

.sc-c-loader-screen .sc-c-loader-screen__icon {
  z-index: 99991;
}
