/**
 * Breakpoints
 * Shared media query values
 */
.container-fluid {
  padding: 0 8px;
}

@media (max-width: 1024px) {
  .container-fluid {
    padding: 0 16px;
  }
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0 -8px;
  padding-left: 0;
}

.grid-col {
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 1440px) {
  .grid-col {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (min-width: 1920px) {
  .grid-col {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.grid-col-1 {
  width: 8.33%;
}

.grid-col-2 {
  width: 16.667%;
}

.grid-col-3 {
  width: 25%;
}

.grid-col-4 {
  width: 33.333%;
}

.grid-col-5 {
  width: 41.667%;
}

.grid-col-6 {
  width: 50%;
}

.grid-col-7 {
  width: 58.333%;
}

.grid-col-8 {
  width: 66.667%;
}

.grid-col-9 {
  width: 75%;
}

.grid-col-10 {
  width: 83.333%;
}

.grid-col-11 {
  width: 91.667%;
}

.grid-col-12 {
  width: 100%;
}

@media only screen and (min-width: 480px) {
  .grid-col-xs-1 {
    width: 8.33%;
  }
  .grid-col-xs-2 {
    width: 16.667%;
  }
  .grid-col-xs-3 {
    width: 25%;
  }
  .grid-col-xs-4 {
    width: 33.333%;
  }
  .grid-col-xs-5 {
    width: 41.667%;
  }
  .grid-col-xs-6 {
    width: 50%;
  }
  .grid-col-xs-7 {
    width: 58.333%;
  }
  .grid-col-xs-8 {
    width: 66.667%;
  }
  .grid-col-xs-9 {
    width: 75%;
  }
  .grid-col-xs-10 {
    width: 83.333%;
  }
  .grid-col-xs-11 {
    width: 91.667%;
  }
  .grid-col-xs-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .grid-col-sm-1 {
    width: 8.33%;
  }
  .grid-col-sm-2 {
    width: 16.667%;
  }
  .grid-col-sm-3 {
    width: 25%;
  }
  .grid-col-sm-4 {
    width: 33.333%;
  }
  .grid-col-sm-5 {
    width: 41.667%;
  }
  .grid-col-sm-6 {
    width: 50%;
  }
  .grid-col-sm-7 {
    width: 58.333%;
  }
  .grid-col-sm-8 {
    width: 66.667%;
  }
  .grid-col-sm-9 {
    width: 75%;
  }
  .grid-col-sm-10 {
    width: 83.333%;
  }
  .grid-col-sm-11 {
    width: 91.667%;
  }
  .grid-col-sm-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .grid-col-md-1 {
    width: 8.33%;
  }
  .grid-col-md-2 {
    width: 16.667%;
  }
  .grid-col-md-3 {
    width: 25%;
  }
  .grid-col-md-4 {
    width: 33.333%;
  }
  .grid-col-md-5 {
    width: 41.667%;
  }
  .grid-col-md-6 {
    width: 50%;
  }
  .grid-col-md-7 {
    width: 58.333%;
  }
  .grid-col-md-8 {
    width: 66.667%;
  }
  .grid-col-md-9 {
    width: 75%;
  }
  .grid-col-md-10 {
    width: 83.333%;
  }
  .grid-col-md-11 {
    width: 91.667%;
  }
  .grid-col-md-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 1280px) {
  .grid-col-lg-1 {
    width: 8.33%;
  }
  .grid-col-lg-2 {
    width: 16.667%;
  }
  .grid-col-lg-3 {
    width: 25%;
  }
  .grid-col-lg-4 {
    width: 33.333%;
  }
  .grid-col-lg-5 {
    width: 41.667%;
  }
  .grid-col-lg-6 {
    width: 50%;
  }
  .grid-col-lg-7 {
    width: 58.333%;
  }
  .grid-col-lg-8 {
    width: 66.667%;
  }
  .grid-col-lg-9 {
    width: 75%;
  }
  .grid-col-lg-10 {
    width: 83.333%;
  }
  .grid-col-lg-11 {
    width: 91.667%;
  }
  .grid-col-lg-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 1440px) {
  .grid-col-xl-1 {
    width: 8.33%;
  }
  .grid-col-xl-2 {
    width: 16.667%;
  }
  .grid-col-xl-3 {
    width: 25%;
  }
  .grid-col-xl-4 {
    width: 33.333%;
  }
  .grid-col-xl-5 {
    width: 41.667%;
  }
  .grid-col-xl-6 {
    width: 50%;
  }
  .grid-col-xl-7 {
    width: 58.333%;
  }
  .grid-col-xl-8 {
    width: 66.667%;
  }
  .grid-col-xl-9 {
    width: 75%;
  }
  .grid-col-xl-10 {
    width: 83.333%;
  }
  .grid-col-xl-11 {
    width: 91.667%;
  }
  .grid-col-xl-12 {
    width: 100%;
  }
}

@supports (display: grid) {
  .grid {
    display: -ms-grid;
    display: grid;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    grid-gap: 8px;
    margin-left: 0;
    margin-right: 0;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: repeat(12, 1fr);
  }
  @media (min-width: 1440px) {
    .grid {
      grid-gap: 12px;
    }
  }
  @media (min-width: 1920px) {
    .grid {
      grid-gap: 16px;
    }
  }
  .grid-col {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
  .grid-row-1 {
    grid-row: span 1;
  }
  .grid-row-2 {
    grid-row: span 2;
  }
  .grid-row-3 {
    grid-row: span 3;
  }
  .grid-col-1 {
    grid-column: span 1;
  }
  .grid-col-2 {
    grid-column: span 2;
  }
  .grid-col-3 {
    grid-column: span 3;
  }
  .grid-col-4 {
    grid-column: span 4;
  }
  .grid-col-5 {
    grid-column: span 5;
  }
  .grid-col-6 {
    grid-column: span 6;
  }
  .grid-col-7 {
    grid-column: span 7;
  }
  .grid-col-8 {
    grid-column: span 8;
  }
  .grid-col-9 {
    grid-column: span 9;
  }
  .grid-col-10 {
    grid-column: span 10;
  }
  .grid-col-11 {
    grid-column: span 11;
  }
  .grid-col-12 {
    grid-column: span 12;
  }
  @media only screen and (min-width: 480px) {
    .grid-col-xs-1 {
      grid-column: span 1;
    }
    .grid-col-xs-2 {
      grid-column: span 2;
    }
    .grid-col-xs-3 {
      grid-column: span 3;
    }
    .grid-col-xs-4 {
      grid-column: span 4;
    }
    .grid-col-xs-5 {
      grid-column: span 5;
    }
    .grid-col-xs-6 {
      grid-column: span 6;
    }
    .grid-col-xs-7 {
      grid-column: span 7;
    }
    .grid-col-xs-8 {
      grid-column: span 8;
    }
    .grid-col-xs-9 {
      grid-column: span 9;
    }
    .grid-col-xs-10 {
      grid-column: span 10;
    }
    .grid-col-xs-11 {
      grid-column: span 11;
    }
    .grid-col-xs-12 {
      grid-column: span 12;
    }
    .grid-row-xs-1 {
      grid-row: span 1;
    }
    .grid-row-xs-2 {
      grid-row: span 2;
    }
    .grid-row-xs-3 {
      grid-row: span 3;
    }
  }
  @media only screen and (min-width: 768px) {
    .grid-col-sm-1 {
      grid-column: span 1;
    }
    .grid-col-sm-2 {
      grid-column: span 2;
    }
    .grid-col-sm-3 {
      grid-column: span 3;
    }
    .grid-col-sm-4 {
      grid-column: span 4;
    }
    .grid-col-sm-5 {
      grid-column: span 5;
    }
    .grid-col-sm-6 {
      grid-column: span 6;
    }
    .grid-col-sm-7 {
      grid-column: span 7;
    }
    .grid-col-sm-8 {
      grid-column: span 8;
    }
    .grid-col-sm-9 {
      grid-column: span 9;
    }
    .grid-col-sm-10 {
      grid-column: span 10;
    }
    .grid-col-sm-11 {
      grid-column: span 11;
    }
    .grid-col-sm-12 {
      grid-column: span 12;
    }
    .grid-row-sm-1 {
      grid-row: span 1;
    }
    .grid-row-sm-2 {
      grid-row: span 2;
    }
    .grid-row-sm-3 {
      grid-row: span 3;
    }
  }
  @media only screen and (min-width: 1024px) {
    .grid-col-md-1 {
      grid-column: span 1;
    }
    .grid-col-md-2 {
      grid-column: span 2;
    }
    .grid-col-md-3 {
      grid-column: span 3;
    }
    .grid-col-md-4 {
      grid-column: span 4;
    }
    .grid-col-md-5 {
      grid-column: span 5;
    }
    .grid-col-md-6 {
      grid-column: span 6;
    }
    .grid-col-md-7 {
      grid-column: span 7;
    }
    .grid-col-md-8 {
      grid-column: span 8;
    }
    .grid-col-md-9 {
      grid-column: span 9;
    }
    .grid-col-md-10 {
      grid-column: span 10;
    }
    .grid-col-md-11 {
      grid-column: span 11;
    }
    .grid-col-md-12 {
      grid-column: span 12;
    }
    .grid-row-md-1 {
      grid-row: span 1;
    }
    .grid-row-md-2 {
      grid-row: span 2;
    }
    .grid-row-md-3 {
      grid-row: span 3;
    }
  }
  @media only screen and (min-width: 1280px) {
    .grid-col-lg-1 {
      grid-column: span 1;
    }
    .grid-col-lg-2 {
      grid-column: span 2;
    }
    .grid-col-lg-3 {
      grid-column: span 3;
    }
    .grid-col-lg-4 {
      grid-column: span 4;
    }
    .grid-col-lg-5 {
      grid-column: span 5;
    }
    .grid-col-lg-6 {
      grid-column: span 6;
    }
    .grid-col-lg-7 {
      grid-column: span 7;
    }
    .grid-col-lg-8 {
      grid-column: span 8;
    }
    .grid-col-lg-9 {
      grid-column: span 9;
    }
    .grid-col-lg-10 {
      grid-column: span 10;
    }
    .grid-col-lg-11 {
      grid-column: span 11;
    }
    .grid-col-lg-12 {
      grid-column: span 12;
    }
    .grid-row-lg-1 {
      grid-row: span 1;
    }
    .grid-row-lg-2 {
      grid-row: span 2;
    }
    .grid-row-lg-3 {
      grid-row: span 3;
    }
  }
  @media only screen and (min-width: 1440px) {
    .grid-col-xl-1 {
      grid-column: span 1;
    }
    .grid-col-xl-2 {
      grid-column: span 2;
    }
    .grid-col-xl-3 {
      grid-column: span 3;
    }
    .grid-col-xl-4 {
      grid-column: span 4;
    }
    .grid-col-xl-5 {
      grid-column: span 5;
    }
    .grid-col-xl-6 {
      grid-column: span 6;
    }
    .grid-col-xl-7 {
      grid-column: span 7;
    }
    .grid-col-xl-8 {
      grid-column: span 8;
    }
    .grid-col-xl-9 {
      grid-column: span 9;
    }
    .grid-col-xl-10 {
      grid-column: span 10;
    }
    .grid-col-xl-11 {
      grid-column: span 11;
    }
    .grid-col-xl-12 {
      grid-column: span 12;
    }
    .grid-row-xl-1 {
      grid-row: span 1;
    }
    .grid-row-xl-2 {
      grid-row: span 2;
    }
    .grid-row-xl-3 {
      grid-row: span 3;
    }
  }
  .grid-col-end {
    grid-column-end: -1;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0 -8px;
  padding-left: 0;
}

.flex-col {
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 1440px) {
  .flex-col {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (min-width: 1920px) {
  .flex-col {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.flex-col-1 {
  width: 8.33%;
}

.flex-col-2 {
  width: 16.667%;
}

.flex-col-3 {
  width: 25%;
}

.flex-col-4 {
  width: 33.333%;
}

.flex-col-5 {
  width: 41.667%;
}

.flex-col-6 {
  width: 50%;
}

.flex-col-7 {
  width: 58.333%;
}

.flex-col-8 {
  width: 66.667%;
}

.flex-col-9 {
  width: 75%;
}

.flex-col-10 {
  width: 83.333%;
}

.flex-col-11 {
  width: 91.667%;
}

.flex-col-12 {
  width: 100%;
}

.flex-mr-auto, .flex-mx-auto {
  margin-right: auto;
}

.flex-ml-auto, .flex-mx-auto {
  margin-left: auto;
}

@media only screen and (min-width: 480px) {
  .flex-col-xs-1 {
    width: 8.33%;
  }
  .flex-col-xs-2 {
    width: 16.667%;
  }
  .flex-col-xs-3 {
    width: 25%;
  }
  .flex-col-xs-4 {
    width: 33.333%;
  }
  .flex-col-xs-5 {
    width: 41.667%;
  }
  .flex-col-xs-6 {
    width: 50%;
  }
  .flex-col-xs-7 {
    width: 58.333%;
  }
  .flex-col-xs-8 {
    width: 66.667%;
  }
  .flex-col-xs-9 {
    width: 75%;
  }
  .flex-col-xs-10 {
    width: 83.333%;
  }
  .flex-col-xs-11 {
    width: 91.667%;
  }
  .flex-col-xs-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .flex-col-sm-1 {
    width: 8.33%;
  }
  .flex-col-sm-2 {
    width: 16.667%;
  }
  .flex-col-sm-3 {
    width: 25%;
  }
  .flex-col-sm-4 {
    width: 33.333%;
  }
  .flex-col-sm-5 {
    width: 41.667%;
  }
  .flex-col-sm-6 {
    width: 50%;
  }
  .flex-col-sm-7 {
    width: 58.333%;
  }
  .flex-col-sm-8 {
    width: 66.667%;
  }
  .flex-col-sm-9 {
    width: 75%;
  }
  .flex-col-sm-10 {
    width: 83.333%;
  }
  .flex-col-sm-11 {
    width: 91.667%;
  }
  .flex-col-sm-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .flex-col-md-1 {
    width: 8.33%;
  }
  .flex-col-md-2 {
    width: 16.667%;
  }
  .flex-col-md-3 {
    width: 25%;
  }
  .flex-col-md-4 {
    width: 33.333%;
  }
  .flex-col-md-5 {
    width: 41.667%;
  }
  .flex-col-md-6 {
    width: 50%;
  }
  .flex-col-md-7 {
    width: 58.333%;
  }
  .flex-col-md-8 {
    width: 66.667%;
  }
  .flex-col-md-9 {
    width: 75%;
  }
  .flex-col-md-10 {
    width: 83.333%;
  }
  .flex-col-md-11 {
    width: 91.667%;
  }
  .flex-col-md-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 1280px) {
  .flex-col-lg-1 {
    width: 8.33%;
  }
  .flex-col-lg-2 {
    width: 16.667%;
  }
  .flex-col-lg-3 {
    width: 25%;
  }
  .flex-col-lg-4 {
    width: 33.333%;
  }
  .flex-col-lg-5 {
    width: 41.667%;
  }
  .flex-col-lg-6 {
    width: 50%;
  }
  .flex-col-lg-7 {
    width: 58.333%;
  }
  .flex-col-lg-8 {
    width: 66.667%;
  }
  .flex-col-lg-9 {
    width: 75%;
  }
  .flex-col-lg-10 {
    width: 83.333%;
  }
  .flex-col-lg-11 {
    width: 91.667%;
  }
  .flex-col-lg-12 {
    width: 100%;
  }
}

@media only screen and (min-width: 1440px) {
  .flex-col-xl-1 {
    width: 8.33%;
  }
  .flex-col-xl-2 {
    width: 16.667%;
  }
  .flex-col-xl-3 {
    width: 25%;
  }
  .flex-col-xl-4 {
    width: 33.333%;
  }
  .flex-col-xl-5 {
    width: 41.667%;
  }
  .flex-col-xl-6 {
    width: 50%;
  }
  .flex-col-xl-7 {
    width: 58.333%;
  }
  .flex-col-xl-8 {
    width: 66.667%;
  }
  .flex-col-xl-9 {
    width: 75%;
  }
  .flex-col-xl-10 {
    width: 83.333%;
  }
  .flex-col-xl-11 {
    width: 91.667%;
  }
  .flex-col-xl-12 {
    width: 100%;
  }
}

/**
 * Colour palette
 *
 */
/**
 * Color and gray scales
 *
 */
/* - Brand Gradient */
/*--------------------------- Heading variations ----------------------*/
.u-p-0 {
  padding: 0px;
}

.u-p-3 {
  padding: 3px;
}

.u-p-5 {
  padding: 5px;
}

.u-p-10 {
  padding: 10px;
}

.u-p-15 {
  padding: 15px;
}

.u-p-20 {
  padding: 20px;
}

.u-p-25 {
  padding: 25px;
}

.u-p-30 {
  padding: 30px;
}

.u-p-32 {
  padding: 32px;
}

.u-p-35 {
  padding: 35px;
}

.u-p-40 {
  padding: 40px;
}

.u-p-45 {
  padding: 45px;
}

.u-p-50 {
  padding: 50px;
}

.u-p-60 {
  padding: 60px;
}

.u-p-70 {
  padding: 70px;
}

.u-p-80 {
  padding: 80px;
}

.u-p-90 {
  padding: 90px;
}

.u-p-100 {
  padding: 100px;
}

.u-pt-0 {
  padding-top: 0px;
}

.u-pt-3 {
  padding-top: 3px;
}

.u-pt-5 {
  padding-top: 5px;
}

.u-pt-10 {
  padding-top: 10px;
}

.u-pt-15 {
  padding-top: 15px;
}

.u-pt-20 {
  padding-top: 20px;
}

.u-pt-25 {
  padding-top: 25px;
}

.u-pt-30 {
  padding-top: 30px;
}

.u-pt-32 {
  padding-top: 32px;
}

.u-pt-35 {
  padding-top: 35px;
}

.u-pt-40 {
  padding-top: 40px;
}

.u-pt-45 {
  padding-top: 45px;
}

.u-pt-50 {
  padding-top: 50px;
}

.u-pt-60 {
  padding-top: 60px;
}

.u-pt-70 {
  padding-top: 70px;
}

.u-pt-80 {
  padding-top: 80px;
}

.u-pt-90 {
  padding-top: 90px;
}

.u-pt-100 {
  padding-top: 100px;
}

.u-pr-0 {
  padding-right: 0px;
}

.u-pr-3 {
  padding-right: 3px;
}

.u-pr-5 {
  padding-right: 5px;
}

.u-pr-10 {
  padding-right: 10px;
}

.u-pr-15 {
  padding-right: 15px;
}

.u-pr-20 {
  padding-right: 20px;
}

.u-pr-25 {
  padding-right: 25px;
}

.u-pr-30 {
  padding-right: 30px;
}

.u-pr-32 {
  padding-right: 32px;
}

.u-pr-35 {
  padding-right: 35px;
}

.u-pr-40 {
  padding-right: 40px;
}

.u-pr-45 {
  padding-right: 45px;
}

.u-pr-50 {
  padding-right: 50px;
}

.u-pr-60 {
  padding-right: 60px;
}

.u-pr-70 {
  padding-right: 70px;
}

.u-pr-80 {
  padding-right: 80px;
}

.u-pr-90 {
  padding-right: 90px;
}

.u-pr-100 {
  padding-right: 100px;
}

.u-pb-0 {
  padding-bottom: 0px;
}

.u-pb-3 {
  padding-bottom: 3px;
}

.u-pb-5 {
  padding-bottom: 5px;
}

.u-pb-10 {
  padding-bottom: 10px;
}

.u-pb-15 {
  padding-bottom: 15px;
}

.u-pb-20 {
  padding-bottom: 20px;
}

.u-pb-25 {
  padding-bottom: 25px;
}

.u-pb-30 {
  padding-bottom: 30px;
}

.u-pb-32 {
  padding-bottom: 32px;
}

.u-pb-35 {
  padding-bottom: 35px;
}

.u-pb-40 {
  padding-bottom: 40px;
}

.u-pb-45 {
  padding-bottom: 45px;
}

.u-pb-50 {
  padding-bottom: 50px;
}

.u-pb-60 {
  padding-bottom: 60px;
}

.u-pb-70 {
  padding-bottom: 70px;
}

.u-pb-80 {
  padding-bottom: 80px;
}

.u-pb-90 {
  padding-bottom: 90px;
}

.u-pb-100 {
  padding-bottom: 100px;
}

.u-pl-0 {
  padding-left: 0px;
}

.u-pl-3 {
  padding-left: 3px;
}

.u-pl-5 {
  padding-left: 5px;
}

.u-pl-10 {
  padding-left: 10px;
}

.u-pl-15 {
  padding-left: 15px;
}

.u-pl-20 {
  padding-left: 20px;
}

.u-pl-25 {
  padding-left: 25px;
}

.u-pl-30 {
  padding-left: 30px;
}

.u-pl-32 {
  padding-left: 32px;
}

.u-pl-35 {
  padding-left: 35px;
}

.u-pl-40 {
  padding-left: 40px;
}

.u-pl-45 {
  padding-left: 45px;
}

.u-pl-50 {
  padding-left: 50px;
}

.u-pl-60 {
  padding-left: 60px;
}

.u-pl-70 {
  padding-left: 70px;
}

.u-pl-80 {
  padding-left: 80px;
}

.u-pl-90 {
  padding-left: 90px;
}

.u-pl-100 {
  padding-left: 100px;
}

.u-m-0 {
  margin: 0px;
}

.u-m-3 {
  margin: 3px;
}

.u-m-5 {
  margin: 5px;
}

.u-m-10 {
  margin: 10px;
}

.u-m-15 {
  margin: 15px;
}

.u-m-20 {
  margin: 20px;
}

.u-m-25 {
  margin: 25px;
}

.u-m-30 {
  margin: 30px;
}

.u-m-32 {
  margin: 32px;
}

.u-m-35 {
  margin: 35px;
}

.u-m-40 {
  margin: 40px;
}

.u-m-45 {
  margin: 45px;
}

.u-m-50 {
  margin: 50px;
}

.u-m-60 {
  margin: 60px;
}

.u-m-70 {
  margin: 70px;
}

.u-m-80 {
  margin: 80px;
}

.u-m-90 {
  margin: 90px;
}

.u-m-100 {
  margin: 100px;
}

.u-m-auto {
  /*add the @if loop*/
  margin: auto;
}

.u-mt-0 {
  margin-top: 0px;
}

.u-mt-3 {
  margin-top: 3px;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-25 {
  margin-top: 25px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-mt-32 {
  margin-top: 32px;
}

.u-mt-35 {
  margin-top: 35px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mt-45 {
  margin-top: 45px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mt-70 {
  margin-top: 70px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-mt-90 {
  margin-top: 90px;
}

.u-mt-100 {
  margin-top: 100px;
}

.u-mt-auto {
  /*add the @if loop*/
  margin-top: auto;
}

.u-mr-0 {
  margin-right: 0px;
}

.u-mr-3 {
  margin-right: 3px;
}

.u-mr-5 {
  margin-right: 5px;
}

.u-mr-10 {
  margin-right: 10px;
}

.u-mr-15 {
  margin-right: 15px;
}

.u-mr-20 {
  margin-right: 20px;
}

.u-mr-25 {
  margin-right: 25px;
}

.u-mr-30 {
  margin-right: 30px;
}

.u-mr-32 {
  margin-right: 32px;
}

.u-mr-35 {
  margin-right: 35px;
}

.u-mr-40 {
  margin-right: 40px;
}

.u-mr-45 {
  margin-right: 45px;
}

.u-mr-50 {
  margin-right: 50px;
}

.u-mr-60 {
  margin-right: 60px;
}

.u-mr-70 {
  margin-right: 70px;
}

.u-mr-80 {
  margin-right: 80px;
}

.u-mr-90 {
  margin-right: 90px;
}

.u-mr-100 {
  margin-right: 100px;
}

.u-mr-auto {
  /*add the @if loop*/
  margin-right: auto;
}

.u-mb-0 {
  margin-bottom: 0px;
}

.u-mb-3 {
  margin-bottom: 3px;
}

.u-mb-5 {
  margin-bottom: 5px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-15 {
  margin-bottom: 15px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-25 {
  margin-bottom: 25px;
}

.u-mb-30 {
  margin-bottom: 30px;
}

.u-mb-32 {
  margin-bottom: 32px;
}

.u-mb-35 {
  margin-bottom: 35px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-mb-45 {
  margin-bottom: 45px;
}

.u-mb-50 {
  margin-bottom: 50px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-mb-70 {
  margin-bottom: 70px;
}

.u-mb-80 {
  margin-bottom: 80px;
}

.u-mb-90 {
  margin-bottom: 90px;
}

.u-mb-100 {
  margin-bottom: 100px;
}

.u-mb-auto {
  /*add the @if loop*/
  margin-bottom: auto;
}

.u-ml-0 {
  margin-left: 0px;
}

.u-ml-3 {
  margin-left: 3px;
}

.u-ml-5 {
  margin-left: 5px;
}

.u-ml-10 {
  margin-left: 10px;
}

.u-ml-15 {
  margin-left: 15px;
}

.u-ml-20 {
  margin-left: 20px;
}

.u-ml-25 {
  margin-left: 25px;
}

.u-ml-30 {
  margin-left: 30px;
}

.u-ml-32 {
  margin-left: 32px;
}

.u-ml-35 {
  margin-left: 35px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-ml-45 {
  margin-left: 45px;
}

.u-ml-50 {
  margin-left: 50px;
}

.u-ml-60 {
  margin-left: 60px;
}

.u-ml-70 {
  margin-left: 70px;
}

.u-ml-80 {
  margin-left: 80px;
}

.u-ml-90 {
  margin-left: 90px;
}

.u-ml-100 {
  margin-left: 100px;
}

.u-ml-auto {
  /*add the @if loop*/
  margin-left: auto;
}

/**
 * Breakpoints
 * Media query helper
 * @group 30-mixins
 */
/* Medium Layout: 2560px */
/* Medium Layout: 1920px */
/* Tablet Layout: 1440px */
/* Mobile Layout: 1200px */
/* Wide Mobile Layout: 0px */
/**
 * Basic
 * Some default CSS styles
 */
body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  min-height: 800px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body {
    height: 800px;
  }
}

@supports (display: grid) {
  body {
    display: -ms-grid;
    display: grid;
  }
}

a {
  text-decoration: none;
  color: #1B60F4;
}

a:hover,
a:focus {
  text-decoration: underline;
}

h1,
.h1 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}

h2,
.h2 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}

h3,
.h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}

h4,
.h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}

h5, .h5 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}

h6, .h6 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}

small, .small {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
}

.tiny {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.5;
}

cite {
  font-style: normal;
}

ins {
  text-decoration: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

article, aside, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

@media (min-width: 2560px) and (max-width: 6000px) {
  .fa, .icon, .icon-svg {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

@media (min-width: 1920px) and (max-width: 2559px) {
  .fa, .icon, .icon-svg {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .fa, .icon, .icon-svg {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .fa, .icon, .icon-svg {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

@media (min-width: 0px) and (max-width: 1199px) {
  .fa, .icon, .icon-svg {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url(https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"), url(https://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UNirkOXOhpKKSTj5PW.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"), url(https://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UNirkOUuhpKKSTjw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN7rgOXOhpKKSTj5PW.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url(https://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN7rgOUuhpKKSTjw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@media (min-width: 1920px) and (max-width: 2560px) {
  :root {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  :root {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  :root {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  :root {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

@media (min-width: 320px) and (max-width: 575px) {
  :root {
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
  }
}

@font-face {
  font-family: "icon-fonts";
  src: url("../fonts/app_icon/icon-fonts.eot");
  src: url("../fonts/app_icon/icon-fonts.eot?#iefix") format("embedded-opentype"), url("../fonts/app_icon/icon-fonts.woff") format("woff"), url("../fonts/app_icon/icon-fonts.ttf") format("truetype"), url("../fonts/app_icon/icon-fonts.svg#icon-fonts") format("svg");
  font-weight: normal;
  font-style: normal;
}

[data-icon]:before {
  font-family: "icon-fonts",sans-serif !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icon-fonts",sans-serif !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-about:before {
  content: "\e900";
}

.icon-add-classes:before {
  content: "\e901";
}

.icon-add-course:before {
  content: "\e902";
}

.icon-add:before {
  content: "\e903";
}

.icon-audio:before {
  content: "\e904";
}

.icon-back:before {
  content: "\e905";
}

.icon-book-full:before {
  content: "\e906";
}

.icon-book-switch-full:before {
  content: "\e907";
}

.icon-book-switch:before {
  content: "\e908";
}

.icon-book-view-full:before {
  content: "\e909";
}

.icon-book-view:before {
  content: "\e90a";
}

.icon-book:before {
  content: "\e90b";
}

.icon-bookmarks-full:before {
  content: "\e90c";
}

.icon-bookmarks:before {
  content: "\e90d";
}

.icon-cancel-full:before {
  content: "\e90e";
}

.icon-cancel:before {
  content: "\e90f";
}

.icon-challenge:before {
  content: "\e910";
}

.icon-chevron-down:before {
  content: "\e911";
}

.icon-chevron-left:before {
  content: "\e912";
}

.icon-chevron-right:before {
  content: "\e913";
}

.icon-chevron-up:before {
  content: "\e914";
}

.icon-chevron:before {
  content: "\e915";
}

.icon-component:before {
  content: "\e916";
}

.icon-confirm-2 .path1:before {
  content: "\e917";
  color: black;
}

.icon-confirm-2 .path2:before {
  content: "\e918";
  margin-left: -1em;
  color: white;
}

.icon-confirm:before {
  content: "\e919";
  color: #00a417;
}

.icon-course-fallback:before {
  content: "\e91a";
}

.icon-course-full:before {
  content: "\e91b";
}

.icon-course-progress:before {
  content: "\e91c";
}

.icon-course:before {
  content: "\e91d";
}

.icon-courses:before {
  content: "\e91e";
}

.icon-cursor:before {
  content: "\e91f";
}

.icon-done:before {
  content: "\e920";
}

.icon-download-full:before {
  content: "\e921";
}

.icon-download-progress:before {
  content: "\e922";
}

.icon-download:before {
  content: "\e923";
}

.icon-easy-reach:before {
  content: "\e924";
}

.icon-edit:before {
  content: "\e925";
}

.icon-email:before {
  content: "\e926";
}

.icon-exit:before {
  content: "\e927";
}

.icon-eye-hide:before {
  content: "\e928";
}

.icon-eye:before {
  content: "\e929";
}

.icon-ffwd:before {
  content: "\e92a";
}

.icon-grid:before {
  content: "\e92b";
}

.icon-hand-full:before {
  content: "\e92c";
}

.icon-hand:before {
  content: "\e92d";
}

.icon-help:before {
  content: "\e92e";
}

.icon-highlight-full:before {
  content: "\e92f";
}

.icon-highlight:before {
  content: "\e930";
}

.icon-home-full:before {
  content: "\e931";
}

.icon-home:before {
  content: "\e932";
}

.icon-homework-full:before {
  content: "\e933";
}

.icon-homework:before {
  content: "\e934";
}

.icon-hot-spot-full:before {
  content: "\e935";
}

.icon-hot-spot:before {
  content: "\e936";
}

.icon-icon .path1:before {
  content: "\e937";
}

.icon-icon .path2:before {
  content: "\e938";
  margin-left: -1em;
}

.icon-icon .path3:before {
  content: "\e939";
  margin-left: -1em;
}

.icon-icon .path4:before {
  content: "\e93a";
  margin-left: -1em;
  color: #1a1919;
}

.icon-icon .path5:before {
  content: "\e93b";
  margin-left: -1em;
  color: black;
}

.icon-info:before {
  content: "\e93c";
}

.icon-lifes-off:before {
  content: "\e93d";
}

.icon-lifes-on:before {
  content: "\e93e";
}

.icon-link:before {
  content: "\e93f";
}

.icon-list:before {
  content: "\e940";
}

.icon-lives-heart-bg .path1:before {
  content: "\e941";
  color: #f6f6f6;
}

.icon-lives-heart-bg .path2:before {
  content: "\e942";
  margin-left: -1em;
  color: black;
}

.icon-lives-heart-full-bg .path1:before {
  content: "\e943";
  color: #f6f6f6;
}

.icon-lives-heart-full-bg .path2:before {
  content: "\e944";
  margin-left: -1em;
  color: #1b60f4;
}

.icon-lives-heart-full:before {
  content: "\e945";
}

.icon-lives-heart:before {
  content: "\e946";
}

.icon-lock:before {
  content: "\e947";
}

.icon-logout-full:before {
  content: "\e948";
}

.icon-logout:before {
  content: "\e949";
}

.icon-max-max:before {
  content: "\e94a";
}

.icon-maximize:before {
  content: "\e94b";
}

.icon-menu:before {
  content: "\e94c";
}

.icon-min-max:before {
  content: "\e94d";
}

.icon-minimize:before {
  content: "\e94e";
}

.icon-minus:before {
  content: "\e94f";
}

.icon-more-full:before {
  content: "\e950";
}

.icon-More:before {
  content: "\e951";
}

.icon-move-full:before {
  content: "\e952";
}

.icon-move:before {
  content: "\e953";
}

.icon-my-classes-full:before {
  content: "\e954";
}

.icon-my-classes:before {
  content: "\e955";
}

.icon-my-lessons-full:before {
  content: "\e956";
}

.icon-navigation:before {
  content: "\e957";
}

.icon-next:before {
  content: "\e958";
}

.icon-notes-full:before {
  content: "\e959";
}

.icon-notes:before {
  content: "\e95a";
}

.icon-options:before {
  content: "\e95b";
}

.icon-page-left-full:before {
  content: "\e95c";
}

.icon-page-left:before {
  content: "\e95d";
}

.icon-page-right-full:before {
  content: "\e95e";
}

.icon-page-right:before {
  content: "\e95f";
}

.icon-page-zoom-full:before {
  content: "\e960";
}

.icon-page-zoom:before {
  content: "\e961";
}

.icon-password:before {
  content: "\e962";
}

.icon-pdf:before {
  content: "\e963";
}

.icon-pen-full:before {
  content: "\e964";
}

.icon-pen:before {
  content: "\e965";
}

.icon-plus:before {
  content: "\e966";
}

.icon-presentation-kit:before {
  content: "\e967";
}

.icon-presentation:before {
  content: "\e968";
}

.icon-print:before {
  content: "\e969";
}

.icon-privacy:before {
  content: "\e96a";
}

.icon-profile:before {
  content: "\e96b";
}

.icon-progress-download .path1:before {
  content: "\e96c";
  color: #e9e9e9;
}

.icon-progress-download .path2:before {
  content: "\e96d";
  margin-left: -1em;
  color: #1b60f4;
}

.icon-progress-download .path3:before {
  content: "\e96e";
  margin-left: -1em;
  color: #1b60f4;
}

.icon-progress-full:before {
  content: "\e96f";
}

.icon-progress:before {
  content: "\e970";
}

.icon-pupil-practice-kit:before {
  content: "\e971";
}

.icon-redo:before {
  content: "\e972";
}

.icon-refresh:before {
  content: "\e973";
}

.icon-remove-round:before {
  content: "\e974";
}

.icon-remove:before {
  content: "\e975";
}

.icon-resource-bank:before {
  content: "\e976";
}

.icon-resources-full:before {
  content: "\e977";
}

.icon-resources:before {
  content: "\e978";
}

.icon-restore:before {
  content: "\e979";
}

.icon-screen-full:before {
  content: "\e97a";
}

.icon-screen:before {
  content: "\e97b";
}

.icon-search:before {
  content: "\e97c";
}

.icon-set-homework-full:before {
  content: "\e97d";
}

.icon-set-homework:before {
  content: "\e97e";
}

.icon-settings-full:before {
  content: "\e97f";
}

.icon-settings:before {
  content: "\e980";
}

.icon-shapes-full:before {
  content: "\e981";
}

.icon-shapes:before {
  content: "\e982";
}

.icon-share:before {
  content: "\e983";
}

.icon-skip:before {
  content: "\e984";
}

.icon-student:before {
  content: "\e985";
}

.icon-table-of-contents-full:before {
  content: "\e986";
}

.icon-table-of-contents:before {
  content: "\e987";
}

.icon-tc:before {
  content: "\e988";
}

.icon-teacher:before {
  content: "\e989";
}

.icon-test-generator-full:before {
  content: "\e98a";
}

.icon-test-generator:before {
  content: "\e98b";
}

.icon-text-full:before {
  content: "\e98c";
}

.icon-text:before {
  content: "\e98d";
}

.icon-timer-full:before {
  content: "\e98e";
}

.icon-timer:before {
  content: "\e98f";
}

.icon-undo:before {
  content: "\e990";
}

.icon-unlock:before {
  content: "\e991";
}

.icon-video:before {
  content: "\e992";
}

.icon-whiteboard-full:before {
  content: "\e993";
}

.icon-whiteboard:before {
  content: "\e994";
}

.icon-Window-restore:before {
  content: "\e995";
}

.icon-zip:before {
  content: "\e996";
}

.icon-zoom-minus:before {
  content: "\e997";
}

.icon-zoom-plus:before {
  content: "\e998";
}

button {
  line-height: inherit;
  cursor: pointer;
}

button,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input::-ms-clear, input::-ms-reveal {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../../images/arrow-down.svg");
  background-position: right 15px center;
  background-repeat: no-repeat;
}

a[href],
area[href],
input:not([disabled]),
select:not([disabled]),
textarea:not([disabled]),
button:not([disabled]),
iframe,
[tabindex],
[contentEditable=true] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a[href]:focus,
area[href]:focus,
input:not([disabled]):focus,
select:not([disabled]):focus,
textarea:not([disabled]):focus,
button:not([disabled]):focus,
iframe:focus,
[tabindex]:focus,
[contentEditable=true]:focus {
  text-decoration: none;
}

/*
 * Layout
 * Universal layout styles
 */
html {
  font-family: "Open Sans", sans-serif;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 16px;
}

html.webfonts-loaded html {
  font-family: "Open Sans", sans-serif;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

figure {
  margin: 0;
}

body,
div,
dl,
dt,
dd,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
th,
td {
  margin: 0;
  padding: 0;
}

abbr[title] {
  text-decoration: none;
}

.icon-svg {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

.icon-svg.icon-svg--16 {
  width: 16px !important;
  height: 16px !important;
}

.icon-svg.icon-svg--20 {
  width: 20px !important;
  height: 20px !important;
}

.icon-svg.icon-svg--24 {
  width: 24px !important;
  height: 24px !important;
}

.icon-svg.icon-svg--64 {
  width: 64px;
  height: 64px;
}

@media (min-width: 2560px) and (max-width: 6000px) {
  .icon-svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1920px) and (max-width: 2559px) {
  .icon-svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .icon-svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .icon-svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 0px) and (max-width: 1199px) {
  .icon-svg {
    width: 16px;
    height: 16px;
  }
}

.icon-svg.icon-svg-eye {
  background-image: url("../../images/eye.svg");
}

.icon-svg.icon-svg-eye-slash {
  background-image: url("../../images/eye-hide.svg");
}

.icon-svg.icon-svg-help {
  background-image: url("../../images/help.svg");
}

.icon-svg.icon-svg-cancel {
  background-image: url("../../images/cancel.svg");
}

.icon-svg.icon-svg-cancel-error {
  background-image: url("../../images/cancel-error.svg");
}

.icon-svg.icon-svg-back {
  background-image: url("../../images/back.svg");
}

.icon-svg.icon-svg-next {
  background-image: url("../../images/next.svg");
}

.icon-svg.icon-svg-sent {
  background-image: url("../../images/sent.svg");
}

.icon-svg.icon-svg-check {
  background-image: url("../../images/check.svg");
}

.icon-svg.icon-svg-add-course {
  background-image: url("../../images/add-course.svg");
}

.icon-svg.icon-svg-book {
  background-image: url("../../images/book.svg");
}

.icon-svg.icon-svg-add-book {
  background-image: url("../../images/add-book.svg");
}

.icon-svg.icon-svg-unit-cover-fb {
  background-image: url("../../images/unit-cover-fb.svg");
}

.icon-svg.icon-svg-more {
  background-image: url("../../images/more.svg");
}

.icon-svg.icon-svg-logout {
  background-image: url("../../images/logout.svg");
}

.icon-svg.icon-svg-menu {
  background-image: url("../../images/menu.svg");
}

.icon-svg.icon-svg-menu-blue {
  background-image: url("../../images/menu-blue.svg");
}

.icon-svg.icon-svg-step-complete {
  background-image: url("../../images/checkbox-check.svg");
}

.icon-svg.icon-svg-close {
  background-image: url("../../images/cancel-black.svg");
}

.icon-svg.icon-svg-language {
  background-image: url("../../images/language.svg");
}

.icon-svg.icon-svg-language-active {
  background-image: url("../../images/language-hover.svg");
}

.icon-svg.icon-svg-profile {
  background-image: url("../../images/profile.svg");
}

.icon-svg.icon-svg-min-max {
  background-image: url("../../images/min-max.svg");
}

.icon-svg.icon-svg-audio {
  background-image: url("../../images/audio.png");
  background-position: 0;
}

.icon-svg.icon-svg-audio-blue {
  background-image: url("../../images/audio-blue.svg");
  background-position: 0;
}

.icon-svg.icon-svg-video {
  background-image: url("../../images/video.png");
  background-image: url("../../images/video-new.svg");
  background-position: 0;
}

.icon-svg.icon-svg-video-blue {
  background-image: url("../../images/video-blue.svg");
  background-position: 0;
}

.icon-svg.icon-svg-pdf {
  background-image: url("../../images/pdf.svg");
}

.icon-svg.icon-svg-read {
  background-image: url("../../images/read.svg");
}

.icon-svg.icon-svg-pdf-white {
  background-image: url("../../images/pdf-white.svg");
}

.icon-svg.icon-svg-zip {
  background-image: url("../../images/zip.svg");
}

.icon-svg.icon-svg-spreadsheet {
  background-image: url("../../images/spreadsheet.svg");
}

.icon-svg.icon-svg-word {
  background-image: url("../../images/word.svg");
}

.icon-svg.icon-svg-slides {
  background-image: url("../../images/slides.svg");
}

.icon-svg.icon-svg-download-white {
  background-image: url("../../images/download-white.svg");
}

.icon-svg.icon-svg-error {
  background-image: url("../../images/error.svg");
}

.icon-svg.icon-svg-about {
  background-image: url("../../images/about.svg");
}

.icon-svg.icon-svg-done {
  background-image: url("../../images/done.svg");
}

.icon-svg.icon-svg-link-white {
  background-image: url("../../images/link-icon-white.svg");
}

.icon-svg.icon-svg-eplanner {
  background-image: url("../../images/book.svg");
}

.icon-svg.icon-svg-eplan {
  background-image: url("../../images/eplanner-icon.svg");
  background-position: 0;
}

.active .icon-svg.icon-svg-language {
  background-image: url("../../images/language-hover.svg");
}

.active .icon-svg.icon-svg-book {
  background-image: url("../../images/book-hover.svg");
}

.active .icon-svg.icon-svg-help {
  background-image: url("../../images/help-hover.svg");
}

.active .icon-svg.icon-svg-profile {
  background-image: url("../../images/profile-hover.svg");
}

.active .icon-svg.icon-svg-logout {
  background-image: url("../../images/logout-hover.svg");
}

.active .icon-svg.icon-svg-eplan {
  background-image: url("../../images/eplanner-icon-hover.svg");
}

.o-page__sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 104px;
  height: 100%;
  max-height: 100%;
  z-index: 2;
  left: 0;
}

.o-page__sidebar .c-sidebar {
  position: relative;
  width: 100%;
  border-right: 1px solid #C7C7C7;
  height: calc(100% - 0px);
}

.o-page.u-open {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.o-page.u-open .o-page__sidebar {
  width: 200px;
}

@media (max-width: 1023px) {
  .o-page.u-open .o-page__sidebar {
    width: 100%;
  }
}

.o-page.u-open .o-page__content {
  left: 200px;
  width: calc(100% - 200px);
}

.c-sidebar ul {
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.c-sidebar ul li {
  list-style: none;
}

.c-sidebar ul li a, .c-sidebar ul li .u-button-label {
  color: black;
  text-decoration: none;
  width: 100%;
  display: block;
  padding: 10px 5px;
  text-align: center;
}

.c-sidebar ul li a .c-sidebar__icon, .c-sidebar ul li .u-button-label .c-sidebar__icon {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

.c-sidebar ul li a.c-sidebar__link:hover, .c-sidebar ul li a.c-sidebar__link:focus, .c-sidebar ul li .u-button-label.c-sidebar__link:hover, .c-sidebar ul li .u-button-label.c-sidebar__link:focus {
  position: relative;
  z-index: 10;
}

.c-sidebar ul li a.c-sidebar__link:hover .icon-svg-book, .c-sidebar ul li a.c-sidebar__link:focus .icon-svg-book, .c-sidebar ul li .u-button-label.c-sidebar__link:hover .icon-svg-book, .c-sidebar ul li .u-button-label.c-sidebar__link:focus .icon-svg-book {
  background-image: url("../../images/book-hover.svg");
}

.c-sidebar ul li a.c-sidebar__link:hover .icon-svg-profile, .c-sidebar ul li a.c-sidebar__link:focus .icon-svg-profile, .c-sidebar ul li .u-button-label.c-sidebar__link:hover .icon-svg-profile, .c-sidebar ul li .u-button-label.c-sidebar__link:focus .icon-svg-profile {
  background-image: url("../../images/profile-hover.svg");
}

.c-sidebar ul li a.c-sidebar__link:hover .icon-svg-help, .c-sidebar ul li a.c-sidebar__link:focus .icon-svg-help, .c-sidebar ul li .u-button-label.c-sidebar__link:hover .icon-svg-help, .c-sidebar ul li .u-button-label.c-sidebar__link:focus .icon-svg-help {
  background-image: url("../../images/help-hover.svg");
}

.c-sidebar ul li a.c-sidebar__link:hover .icon-svg-language, .c-sidebar ul li a.c-sidebar__link:focus .icon-svg-language, .c-sidebar ul li .u-button-label.c-sidebar__link:hover .icon-svg-language, .c-sidebar ul li .u-button-label.c-sidebar__link:focus .icon-svg-language {
  background-image: url("../../images/language-hover.svg");
}

.c-sidebar ul li a.c-sidebar__link:hover .icon-svg-logout, .c-sidebar ul li a.c-sidebar__link:focus .icon-svg-logout, .c-sidebar ul li .u-button-label.c-sidebar__link:hover .icon-svg-logout, .c-sidebar ul li .u-button-label.c-sidebar__link:focus .icon-svg-logout {
  background-image: url("../../images/logout-hover.svg");
}

.c-sidebar ul li a.c-sidebar__link:hover .icon-svg-eplan, .c-sidebar ul li a.c-sidebar__link:focus .icon-svg-eplan, .c-sidebar ul li .u-button-label.c-sidebar__link:hover .icon-svg-eplan, .c-sidebar ul li .u-button-label.c-sidebar__link:focus .icon-svg-eplan {
  background-image: url("../../images/eplanner-icon-hover.svg");
}

.c-sidebar ul li a.c-sidebar__link.active, .c-sidebar ul li .u-button-label.c-sidebar__link.active {
  background-color: #F6F6F6;
  position: relative;
}

.c-sidebar ul li a.c-sidebar__link.active:before, .c-sidebar ul li .u-button-label.c-sidebar__link.active:before {
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #1B60F4;
  content: "";
  left: 0;
  top: 0;
}

@media (max-width: 1023px) {
  .c-sidebar ul li a.c-sidebar__link.active:before, .c-sidebar ul li .u-button-label.c-sidebar__link.active:before {
    width: 100% !important;
    height: 4px !important;
    left: 0;
    bottom: 0 !important;
    border-radius: 8px 8px 0 0;
    top: inherit !important;
  }
}

@media (max-width: 1023px) {
  .c-sidebar ul li .c-sidebar__link-name {
    font-size: 0.7rem !important;
  }
}

.c-sidebar ul li.c-sidebartoggle-label .icon-svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-sidebar ul li.c-sidebartoggle-label a {
  border-top: 1px solid #8B8B8B;
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
  cursor: pointer;
}

.c-sidebar ul .c-sidebar__list-visible-section .c-sidebar__list-visible-section-item .c-sidebar__link-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.c-sidebar ul .c-sidebar__more-options .c-sidebar__link-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1023px) {
  .c-sidebar {
    bottom: 0px;
    right: 0;
  }
  .c-sidebar ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: block;
    white-space: nowrap;
  }
  .c-sidebar ul li {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: inline-block;
    vertical-align: top;
  }
  .c-sidebar ul li a, .c-sidebar ul li .u-button-label {
    height: 59px;
  }
}

.c-main-container .c-sidebar__more-options-items {
  position: relative;
  list-style: none;
  padding: 0;
}

.c-main-container .c-sidebar__more-options-items li a, .c-main-container .c-sidebar__more-options-items .u-button-label {
  color: black;
  text-decoration: none;
  display: block;
  padding: 15px 20px 15px;
}

.u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section li a, .u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section .u-button-label {
  padding: 15px 10px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section li a .c-sidebar__icon, .u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section .u-button-label .c-sidebar__icon {
  margin-right: 0.625rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section li a .c-sidebar__link-name, .u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section .u-button-label .c-sidebar__link-name {
  font-size: initial;
  font-weight: 600;
}

@media all and (-ms-high-contrast: none) {
  .u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section li a .c-sidebar__link-name, .u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section .u-button-label .c-sidebar__link-name {
    font-size: 1rem;
    /* IE11 */
  }
  .u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section li a .c-sidebar__link-name *::-ms-backdrop, .u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section li a .c-sidebar__link-name .foo, .u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section .u-button-label .c-sidebar__link-name *::-ms-backdrop, .u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section .u-button-label .c-sidebar__link-name .foo {
    font-size: 1rem;
  }
}

.u-open .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section .c-sidebartoggle-label .icon-svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.u-open .o-page__sidebar .c-sidebar .c-sidebar__more-options a {
  padding: 15px 10px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  text-align: center;
}

.u-open .o-page__sidebar .c-sidebar .c-sidebar__more-options a .c-sidebar__icon {
  margin-right: 0.625rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.u-open .o-page__sidebar .c-sidebar .c-sidebar__more-options a .c-sidebar__link-name {
  font-size: initial;
  font-weight: 600;
}

#bindAnchorEplanner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-block.c-block--link a {
  color: #1B60F4;
  font-weight: 700;
}

.c-block.c-block--link a i {
  vertical-align: middle;
}

.c-block.c-block--link a:hover {
  text-decoration: none;
}

.c-download__block {
  display: block;
}

.c-blank__next {
  width: 100%;
}

.js .c-block-downloadcta .c-offcanvas--block {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  background: #fff;
  position: relative;
}

@media (max-width: 767px) {
  .js .c-block-downloadcta .c-offcanvas--block {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: calc(100% - 60px);
    margin-bottom: 0 !important;
    border: 0;
    border-radius: 0;
    z-index: 10;
  }
  .js .c-block-downloadcta .c-offcanvas--block:before {
    display: none;
  }
}

.js .c-block-downloadcta .c-blank__next,
.js .c-block-downloadcta .c-tiny-tweak {
  display: block;
}

@media (min-width: 768px) {
  .js .c-block-downloadcta .c-blank__next,
  .js .c-block-downloadcta .c-tiny-tweak {
    display: none;
  }
}

@media (max-width: 768px) {
  .js .offcanvas .c-offcanvas--block {
    display: none;
  }
}

@media (max-width: 768px) {
  .js .offcanvas .c-offcanvas--block {
    display: block;
    right: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
  }
}

@media (max-width: 1024px) {
  .js .offcanvas .c-offcanvas--block .c-blank__next {
    display: none;
  }
}

.js .offcanvas .c-offcanvas--block .c-tiny-tweak {
  display: block;
}

@media (min-width: 1024px) {
  .js .offcanvas .c-offcanvas--block .c-tiny-tweak {
    display: none;
  }
}

@media (max-width: 768px) {
  .js .offcanvas .c-offcanvas--block:before {
    display: none;
  }
}

.js .c-blank__next {
  display: block;
}

.c-tiny-tweak, .c-blank__next {
  display: none;
}

@media (max-width: 1023px) {
  .js nav.c-sidebar {
    overflow: inherit !important;
  }
  .js nav.c-sidebar ul.c-sidebar__list-visible-section, .js nav.c-sidebar ul.c-sidebar__list {
    overflow: inherit;
  }
}

.u-button {
  color: #fff;
  background-color: #fff;
  padding: 7px 12px;
  display: inline-block;
  text-decoration: none !important;
  border-radius: 30px;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color .2s, color .2s, border-color .2s;
  transition: background-color .2s, color .2s, border-color .2s;
}

.u-button i {
  margin-right: 8px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.u-button.is-disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.u-button--outline {
  border: 1px solid #8B8B8B;
  color: #000000;
  background-color: transparent;
}

.u-button-width {
  min-width: 208px;
}

.u-button-login {
  min-width: 122px;
}

.u-button--default:disabled {
  background-color: #8DAFF9;
  border-color: #8DAFF9;
}

.u-button--default:disabled:hover {
  background-color: #8DAFF9;
  border-color: #8DAFF9;
}

.u-button--primary:disabled {
  background-color: #8DAFF9;
  border-color: #8DAFF9;
}

.u-button--primary:disabled:hover {
  background-color: #8DAFF9;
  border-color: #8DAFF9;
}

.u-button--secondary:disabled {
  background-color: #C7C7C7;
  border-color: #C7C7C7;
}

.u-button--secondary:disabled:hover {
  background-color: #C7C7C7;
  border-color: #C7C7C7;
}

.u-button--success:disabled {
  background-color: #73C67E;
  border-color: #73C67E;
}

.u-button--success:disabled:hover {
  background-color: #73C67E;
  border-color: #73C67E;
}

.u-button--danger:disabled {
  background-color: #FE6F70;
  border-color: #FE6F70;
}

.u-button--danger:disabled:hover {
  background-color: #FE6F70;
  border-color: #FE6F70;
}

.u-button--warning:disabled {
  background-color: #FFE783;
  border-color: #FFE783;
}

.u-button--warning:disabled:hover {
  background-color: #FFE783;
  border-color: #FFE783;
}

.u-button--info:disabled {
  background-color: #92B1C0;
  border-color: #92B1C0;
}

.u-button--info:disabled:hover {
  background-color: #92B1C0;
  border-color: #92B1C0;
}

.u-button--light:disabled {
  background-color: #F6F6F6;
  border-color: #F6F6F6;
}

.u-button--light:disabled:hover {
  background-color: #F6F6F6;
  border-color: #F6F6F6;
}

.u-button--dark:disabled {
  background-color: #8B8B8B;
  border-color: #8B8B8B;
}

.u-button--dark:disabled:hover {
  background-color: #8B8B8B;
  border-color: #8B8B8B;
}

.u-button--small {
  font-size: 12px;
}

.u-button--large {
  font-size: 20px;
}

.u-button--default {
  color: #000000 !important;
  background-color: #fff;
  border: 1px solid #fff;
}

.u-button--default:hover {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}

.u-button--primary {
  color: #fff !important;
  background-color: #1B60F4;
  border: 1px solid #1B60F4;
}

.u-button--primary:hover {
  background-color: #0a4ad2;
  border-color: #0a4ad2;
}

.u-button--secondary {
  color: #fff !important;
  background-color: #8b8b8b;
  border: 1px solid #8b8b8b;
}

.u-button--secondary:hover {
  background-color: #727272;
  border-color: #727272;
}

.u-button--success {
  color: #fff !important;
  background-color: #16a225;
  border: 1px solid #16a225;
}

.u-button--success:hover {
  background-color: #10751b;
  border-color: #10751b;
}

.u-button--danger {
  color: #fff !important;
  background-color: #e80b1a;
  border: 1px solid #e80b1a;
}

.u-button--danger:hover {
  background-color: #b70915;
  border-color: #b70915;
}

.u-button--warning {
  color: #fff !important;
  background-color: #fdd037;
  border: 1px solid #fdd037;
}

.u-button--warning:hover {
  background-color: #fcc405;
  border-color: #fcc405;
}

.u-button--info {
  color: #fff !important;
  background-color: #1e749c;
  border: 1px solid #1e749c;
}

.u-button--info:hover {
  background-color: #165471;
  border-color: #165471;
}

.u-button--light {
  color: #000000 !important;
  background-color: #f6f6f6;
  border: 1px solid #f6f6f6;
}

.u-button--light:hover {
  background-color: #dddddd;
  border-color: #dddddd;
}

.u-button--dark {
  color: #fff !important;
  background-color: #000000;
  border: 1px solid #000000;
}

.u-button--dark:hover {
  background-color: black;
  border-color: black;
}

.u-button--bordered-default {
  background: #fff;
  border: 1px solid #fff;
  color: #fff;
}

.u-button--bordered-default:hover {
  background: #fff;
  color: #e6e6e6;
  border-color: #e6e6e6;
}

.u-button--bordered-primary {
  background: #fff;
  border: 1px solid #1B60F4;
  color: #1B60F4;
}

.u-button--bordered-primary:hover {
  background: #fff;
  color: #0a4ad2;
  border-color: #0a4ad2;
}

.u-button--bordered-secondary {
  background: #fff;
  border: 1px solid #8b8b8b;
  color: #8b8b8b;
}

.u-button--bordered-secondary:hover {
  background: #fff;
  color: #727272;
  border-color: #727272;
}

.u-button--bordered-success {
  background: #fff;
  border: 1px solid #16a225;
  color: #16a225;
}

.u-button--bordered-success:hover {
  background: #fff;
  color: #10751b;
  border-color: #10751b;
}

.u-button--bordered-danger {
  background: #fff;
  border: 1px solid #e80b1a;
  color: #e80b1a;
}

.u-button--bordered-danger:hover {
  background: #fff;
  color: #b70915;
  border-color: #b70915;
}

.u-button--bordered-warning {
  background: #fff;
  border: 1px solid #fdd037;
  color: #fdd037;
}

.u-button--bordered-warning:hover {
  background: #fff;
  color: #fcc405;
  border-color: #fcc405;
}

.u-button--bordered-info {
  background: #fff;
  border: 1px solid #1e749c;
  color: #1e749c;
}

.u-button--bordered-info:hover {
  background: #fff;
  color: #165471;
  border-color: #165471;
}

.u-button--bordered-light {
  background: #fff;
  border: 1px solid #f6f6f6;
  color: #f6f6f6;
}

.u-button--bordered-light:hover {
  background: #fff;
  color: #dddddd;
  border-color: #dddddd;
}

.u-button--bordered-dark {
  background: #fff;
  border: 1px solid #000000;
  color: #000000;
}

.u-button--bordered-dark:hover {
  background: #fff;
  color: black;
  border-color: black;
}

.c-block--tabs {
  border-bottom: 1px solid #8B8B8B;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
}

.js .c-block--tabs {
  height: 46px;
  padding: 0 40px;
}

.js .c-tabs {
  padding-top: 2px;
  position: absolute;
  width: calc(100% - 80px);
  height: 100%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .js .c-tabs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
  }
}

.js .c-tabs li {
  margin-top: 0rem;
}

.js .c-tabs li a {
  padding: 8px 10px;
}

.c-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0;
  overflow: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.c-tabs li {
  padding: 0px 3px;
  margin-top: 1rem;
}

.c-tabs li a {
  color: #1A051D;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 10px;
  display: block;
  position: relative;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  border: 1px solid #8B8B8B;
  border-radius: 4px 4px 0 0;
  border-bottom: 0;
}

.c-tabs li a:hover {
  color: #004aa7;
}

.c-tabs li a.active {
  background-color: #F6F6F6;
  color: #1B60F4;
}

.c-tabs li a.active:before {
  content: "";
  position: absolute;
  background-color: #1B60F4;
  height: 4px;
  width: 90%;
  left: 5%;
  bottom: 0;
  border-radius: 4px 4px 0 0;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-tabs li a {
    padding: 8px 6px;
  }
}

.c-tabs li.c-tabs--active a {
  color: black;
}

.c-tabs li.c-tabs--active a::before {
  content: "";
  height: 4px;
  width: 100%;
  background: #1B60F4;
  position: absolute;
  left: 0;
  bottom: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

@media (max-width: 1024px) {
  .c-tabs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.pn-Advancer {
  position: absolute;
  top: 0;
  border: 0;
  background: none;
  height: 100%;
  width: 40px;
  background-color: #fff;
}

.pn-Advancer_Left {
  left: 0;
}

.pn-Advancer_Left .icon {
  left: 16px;
  position: relative;
}

.pn-Advancer_Left .icon:before {
  background-image: url(../images/chevron.svg);
  background-repeat: no-repeat;
  background-position: 0;
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pn-Advancer_Left:after {
  content: "";
  top: 0px;
  display: block;
  position: absolute;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+10,ffffff+100&1+10,0+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, white 10%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
  /* IE6-9 */
  width: 15px;
  right: -15px;
  height: 45px;
}

.pn-Advancer_Right {
  right: 0;
}

.pn-Advancer_Right .icon {
  left: 8px;
  position: relative;
}

.pn-Advancer_Right .icon:before {
  background-image: url(../images/chevron.svg);
  background-repeat: no-repeat;
  background-position: 0;
  content: "";
  width: 16px;
  height: 16px;
  display: block;
}

.pn-Advancer_Right:after {
  content: "";
  top: 0px;
  display: block;
  position: absolute;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+90&0+0,1+90 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(90%, white));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 90%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
  /* IE6-9 */
  width: 15px;
  left: -15px;
  height: 45px;
}

.c-tiny-tweak .c-block .blank-slate {
  background-color: #0F597C;
  color: #fff;
  padding: 0.5rem 2rem 0.5rem 1rem;
  display: block;
  border-radius: 0px;
  position: relative;
}

.c-tiny-tweak .c-block .blank-slate .icon-next {
  position: absolute;
  right: 10px;
}

@media (max-width: 1024px) {
  .c-tiny-tweak .c-block.u-hide {
    display: block;
    visibility: visible;
  }
}

@media (min-width: 1024px) {
  .c-tiny-tweak .c-block.u-hide {
    display: none;
    visibility: visible;
  }
}

@media (max-width: 1024px) {
  .c-block.u-show {
    display: none;
    visibility: visible;
  }
}

@media (min-width: 1024px) {
  .offcanvas .c-tiny-tweak.u-hide {
    display: block;
    visibility: visible;
  }
}

@media (max-width: 1023px) {
  .c-header.c-main-header--scrolled {
    padding: 0 !important;
  }
}

.c-header.c-header--inner {
  border-bottom: 1px solid #8B8B8B;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-header.c-header--inner .c-header__macmillan-logo-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-header.c-header--inner .c-header__macmillan-logo-section p {
  line-height: 18px;
  margin: 0;
}

.c-header.c-header--inner .c-header__macmillan-logo-section p span {
  font-weight: 600;
  display: block;
}

.c-header.c-header--inner .c-header__macmillan-logo-section p span:first-child {
  color: #1A051D;
  font-size: 14px;
}

.c-header.c-header--inner .c-header__macmillan-logo-section p span:last-child {
  color: #8B8B8B;
  font-size: 12px;
}

.c-header.c-header--inner .c-header__macmillan-logo-section:hover {
  text-decoration: none;
}

.c-header.c-header--inner .c-header__macmillan-logo-section .c-header__macmillan-logo {
  background-image: url("../../images/logo.svg");
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-right: 12px;
}

.c-header.c-header--login {
  background-color: transparent;
  height: auto;
}

.c-header.c-header--login .u-form-control {
  width: 240px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .c-header.c-header--login .u-form-control {
    width: 220px;
  }
}

.c-header.c-header--login .c-header__backbtn {
  color: #000;
  font-weight: 600;
  position: relative;
  z-index: 5;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-header.c-header--login .c-header__backbtn i {
  vertical-align: middle;
}

@media (max-width: 767px) {
  .c-header.c-header--login .c-header__backbtn span {
    display: none;
  }
}

.c-header.c-header--login .c-header__backbtn:hover {
  text-decoration: none;
}

.c-header.c-header--login .c-header__help-link {
  color: #000;
}

@media (max-width: 767px) {
  .c-header.c-header--login .c-header__help-link span {
    display: none;
  }
}

.c-header.c-header--login .c-header--top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-header .c-page__title {
  color: #fff;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header .c-page__title a {
  color: #fff;
}

.c-header .c-header--top {
  background-color: #fff;
  padding: 10px;
  height: 60px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.75rem 1rem;
  position: relative;
  border-bottom: 1px solid #8b8b8b;
}

.c-list li .icon-svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 10px;
  margin-top: 3px;
}

.c-list li .u-button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  min-width: 96px;
}

.c-list li:last-child {
  border-bottom: none;
}

.c-list li:hover {
  color: #1B60F4;
}

::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
}

html, body {
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

html .o-page, body .o-page {
  position: relative;
  min-height: 100%;
}

html .o-page .o-page__content, body .o-page .o-page__content {
  position: absolute;
  left: 104px;
  min-height: 100%;
  background-color: #fff;
  z-index: 1;
  width: calc(100% - 104px);
}

html .o-page .o-page__content__inner, body .o-page .o-page__content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html .o-page .o-page__content__inner, body .o-page .o-page__content__inner {
    height: 100%;
  }
}

html .o-page .o-page__content .c-header.c-header--inner.c-banner-scrolled, body .o-page .o-page__content .c-header.c-header--inner.c-banner-scrolled {
  display: none;
}

html.js .o-page__content, body.js .o-page__content {
  left: 104px;
  width: calc(100% - 104px);
}

html.offcanvas .o-page, body.offcanvas .o-page {
  padding-left: 0;
}

html.offcanvas .o-page .o-page__sidebar, body.offcanvas .o-page .o-page__sidebar {
  margin-left: -200px;
}

html.offcanvas .o-page__content, body.offcanvas .o-page__content {
  left: 0;
}

@media (min-width: 1023px) {
  html.offcanvas .o-page, body.offcanvas .o-page {
    padding-left: 0;
  }
  html.offcanvas .o-page .o-page__sidebar, body.offcanvas .o-page .o-page__sidebar {
    margin-left: 0px;
  }
  html.offcanvas .o-page__content, body.offcanvas .o-page__content {
    left: 200px;
  }
  html.offcanvas .c-block-downloadcta .c-offcanvas--block, body.offcanvas .c-block-downloadcta .c-offcanvas--block {
    display: block !important;
  }
  html.offcanvas .c-block-downloadcta .c-offcanvas--block .c-block.u-h-full, body.offcanvas .c-block-downloadcta .c-offcanvas--block .c-block.u-h-full {
    padding: 0px;
  }
}

.c-back--link {
  color: #fff;
}

.c-back--link:hover {
  text-decoration: none;
}

#skiptocontent a {
  padding: 6px;
  position: absolute;
  top: -60px;
  left: 0px;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 8px;
  background: #BF1722;
  -webkit-transition: top 1s ease-out;
  transition: top 1s ease-out;
  z-index: 100;
}

#skiptocontent a:focus {
  left: 0px;
  top: 0px;
  outline-color: transparent;
  -webkit-transition: top .1s ease-in;
  transition: top .1s ease-in;
}

.blank-slate {
  padding: 0.5rem 1rem 0.5rem 2rem;
  border-radius: 0px;
  position: relative;
  text-decoration: none;
  color: #1A051D;
  color: black;
  display: block;
}

.blank-slate span {
  float: left;
  margin-top: 5px;
  margin-right: 5px;
}

.blank-slate:hover, .blank-slate:focus, .blank-slate:active {
  text-decoration: none;
}

@media (max-width: 768px) {
  .blank-slate {
    border-bottom: 1px solid #8B8B8B;
    min-height: 65px;
    padding: 1rem 1rem 1rem 2rem;
  }
}

.offcanvas {
  overflow: hidden;
}

.offcanvas .c-block-downloadcta .c-offcanvas--block .c-block.u-h-full {
  padding: 10px;
  height: calc(100% - 54px);
  overflow-y: auto;
}

.offcanvas .o-page__content {
  overflow: initial;
}

.offcanvas .c-tiny-tweak .blank-slate {
  background-color: #fff;
  padding: 1.2rem 1rem 1.2rem 2rem;
  border-radius: 0px;
  position: relative;
  color: #1A051D;
  min-height: 65px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #8B8B8B;
}

.offcanvas .c-tiny-tweak .blank-slate .icon-back {
  position: absolute;
  right: inherit;
  left: 10px;
}

body[class=""] .c-block-downloadcta .c-offcanvas--block {
  display: block !important;
}

.c-hotbody-corners {
  background: #0F597C;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(91deg, #0F597C 0%, #DA1B2C 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#025474', endColorstr='#cb182d', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  background-attachment: fixed;
  overflow: hidden;
}

.c-hotbody-corners .c-banner {
  background: linear-gradient(91deg, #DA1B2C 0%, #0F597C 100%);
}

.c-hotbody-corners #languageMenu li a {
  text-align: left;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.c-hotbody-corners .o-page {
  border-radius: 0 0 10px 0;
  overflow: hidden;
  position: absolute;
  width: calc(100vw - 200px);
  height: calc(100vh - 124px);
  min-height: calc(100vh - 124px);
  z-index: 2;
}

.c-hotbody-corners.c--top-left {
  padding: 0 200px 124px 0;
  top: 0;
  left: 0;
}

.c-hotbody-corners.c--top-left .o-page {
  border-radius: 0 0 10px 0;
  overflow: hidden;
}

.c-hotbody-corners.c--top-left #languageMenu li a {
  text-align: left;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.c-hotbody-corners.c--top-right {
  top: 0;
  right: 0;
  padding: 0 0 124px 200px;
}

.c-hotbody-corners.c--top-right .o-page {
  border-radius: 0 0px 0 10px;
  overflow: hidden;
  padding-right: 200px;
  padding-left: 0;
}

.c-hotbody-corners.c--top-right .o-page .o-page__content {
  left: 0;
}

.c-hotbody-corners.c--top-right .o-page .o-page__sidebar {
  right: 0;
  left: inherit;
}

.c-hotbody-corners.c--top-right .o-page .o-page__sidebar .c-sidebar {
  border-right: 0;
  border-left: 1px solid #C7C7C7;
}

.c-hotbody-corners.c--top-right .o-page .o-page__sidebar li.c-sidebartoggle-label a {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.c-hotbody-corners.c--top-right .o-page .o-page__sidebar li.c-sidebartoggle-label a .icon-svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.c-hotbody-corners.c--top-right .o-page .o-page__sidebar #languageMenu {
  left: -180px;
}

.c-hotbody-corners.c--top-right .o-page .o-page__sidebar #languageMenu li a {
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-hotbody-corners.c--top-right .o-page.u-open li.c-sidebartoggle-label a .icon-svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-hotbody-corners.c--bottom-right {
  bottom: 0;
  right: 0;
  padding: 124px 0 0 200px;
}

.c-hotbody-corners.c--bottom-right .o-page {
  border-radius: 10px 0 0px 0;
  overflow: hidden;
  padding-right: 200px;
  padding-left: 0;
}

.c-hotbody-corners.c--bottom-right .o-page .o-page__content {
  left: 0;
}

.c-hotbody-corners.c--bottom-right .o-page .o-page__sidebar {
  right: 0;
  left: inherit;
}

.c-hotbody-corners.c--bottom-right .o-page .o-page__sidebar .c-sidebar {
  border-right: 0;
  border-left: 1px solid #C7C7C7;
}

.c-hotbody-corners.c--bottom-right .o-page .o-page__sidebar li.c-sidebartoggle-label a {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.c-hotbody-corners.c--bottom-right .o-page .o-page__sidebar li.c-sidebartoggle-label a .icon-svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.c-hotbody-corners.c--bottom-right .o-page .o-page__sidebar #languageMenu {
  left: -180px;
}

.c-hotbody-corners.c--bottom-right .o-page .o-page__sidebar #languageMenu li a {
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-hotbody-corners.c--bottom-right .o-page.u-open li.c-sidebartoggle-label a .icon-svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-hotbody-corners.c--bottom-left {
  bottom: 0;
  left: 0;
  padding: 124px 200px 0 0;
}

.c-hotbody-corners.c--bottom-left .o-page {
  border-radius: 0px 10px 0px 0;
  overflow: hidden;
}

.c-hotbody-corners.c--bottom-left #languageMenu li a {
  text-align: left;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.c-hotbody-corners .c-hot-corner {
  position: absolute;
  padding: 10px;
  fill: #fff;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  z-index: 1;
}

.c-hotbody-corners .c-hot-corner > * {
  pointer-events: none;
}

.c-hotbody-corners .c-hot-corner.hidden-btn {
  display: none;
}

.c-hotbody-corners .c-hot-corner.hotcorner--top-left {
  top: 0;
  left: 0;
}

.c-hotbody-corners .c-hot-corner.hotcorner--top-right {
  top: 0;
  right: 0;
}

.c-hotbody-corners .c-hot-corner.hotcorner--bottom-right {
  bottom: 0;
  right: 0;
}

.c-hotbody-corners .c-hot-corner.hotcorner--bottom-left {
  bottom: 0;
  left: 0;
  z-index: 1000;
}

@media only screen and (min-width: 2000px) {
  .o-page__sidebar {
    position: absolute;
  }
  html.js .o-page__content,
  body.js .o-page__content {
    height: calc(100% - 0px);
    overflow: auto;
  }
  .c-hot-corner, #hotBtnDivId, body .c-sidebar__link.c-menubutton {
    display: block;
    cursor: pointer;
  }
  .c-hot-corner .c-linkname__open, .c-hot-corner .c-linkname__close, #hotBtnDivId .c-linkname__open, #hotBtnDivId .c-linkname__close, body .c-sidebar__link.c-menubutton .c-linkname__open, body .c-sidebar__link.c-menubutton .c-linkname__close {
    font-size: 8px;
    font-weight: 600;
  }
  .c-menubutton {
    height: 60px;
  }
  .js #hotBtnDivId {
    display: block;
  }
  #hotBtnDivId {
    display: none;
  }
  .c--bottom-left .c-sidebar .c-sidebar__list, .c--bottom-right .c-sidebar .c-sidebar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .c--bottom-left .c-sidebar .c-sidebar__list .c-sidebar__list-visible, .c--bottom-right .c-sidebar .c-sidebar__list .c-sidebar__list-visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .c--bottom-left .c-sidebar .c-sidebar__list .c-sidebar__list-visible-section, .c--bottom-right .c-sidebar .c-sidebar__list .c-sidebar__list-visible-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .c--bottom-left .c-sidebar__list, .c--bottom-right .c-sidebar__list {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .c--bottom-left .c-sidebar__list.c-sidebar__list-opened .c-sidebar__link.c-menubutton, .c--bottom-right .c-sidebar__list.c-sidebar__list-opened .c-sidebar__link.c-menubutton {
    border-bottom: 0;
    border-top: 1px solid #C7C7C7;
  }
  .c--bottom-left .c-sidebar__list.c-sidebar__list-opened .c-sidebar__list-visible-section, .c--bottom-left .c-sidebar__list.c-sidebar__list-opened .c-sidebar__more-options, .c--bottom-right .c-sidebar__list.c-sidebar__list-opened .c-sidebar__list-visible-section, .c--bottom-right .c-sidebar__list.c-sidebar__list-opened .c-sidebar__more-options {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .c--bottom-left .c-sidebar__list-visible-section, .c--bottom-left .c-sidebar__more-options, .c--bottom-right .c-sidebar__list-visible-section, .c--bottom-right .c-sidebar__more-options {
    display: none  !important;
  }
  .c-sidebar__list.c-sidebar__list-opened {
    height: 100%;
  }
  .c-sidebar__list.c-sidebar__list-opened .c-sidebar__link.c-menubutton {
    border-bottom: 1px solid #C7C7C7;
  }
  .c-sidebar__list.c-sidebar__list-opened .c-sidebar__list-visible .c-sidebar__link.c-menubutton .icon.icon-menu:before {
    content: "\e90f";
  }
  .c-sidebar__list.c-sidebar__list-opened .c-sidebar__list-visible .c-sidebar__link.c-menubutton .c-linkname__open {
    display: none;
  }
  .c-sidebar__list.c-sidebar__list-opened .c-sidebar__list-visible .c-sidebar__link.c-menubutton .c-linkname__close {
    display: block;
  }
  .c-sidebar__list.c-sidebar__list-opened .c-sidebar__list-visible-section, .c-sidebar__list.c-sidebar__list-opened .c-sidebar__more-options {
    display: block;
  }
  .c-sidebar__list.c-sidebar__list-opened .icon-svg-menu {
    background-image: url("../../images/cancel-black.svg");
  }
  .c-sidebar__list .c-linkname__open {
    display: block;
  }
  .c-sidebar__list .c-linkname__close {
    display: none;
  }
  .c-sidebar__list .c-sidebar__list-visible-section, .c-sidebar__list .c-sidebar__more-options {
    display: block;
  }
  .js .c-sidebar__list-visible-section, .js .c-sidebar__more-options {
    display: none;
  }
  .js .c-sidebar__list .c-sidebar__more-options.c-more--inactive {
    display: none;
  }
  .js .c-sidebar__list.c-sidebar__list-opened .c-sidebar__more-options.c-more--inactive {
    display: block;
  }
  .c-main-container {
    height: 350px;
    overflow: auto;
  }
}

@media only screen and (max-width: 1999px) {
  .c-sidebar ul {
    height: 100%;
  }
  .c-hot-corner, #hotBtnDivId, body .c-sidebar__link.c-menubutton {
    display: none;
  }
}

.c-sidebar__more-options-items {
  position: absolute;
  bottom: 0;
}

.c-more--inactive .c-sidebar__more-options-items {
  display: none;
}

.c-more--active .c-sidebar__more-options-items {
  display: block;
}

.c-radioandcheckbox--cumtom input[type='radio'] {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
}

input[type='radio']:focus + label:after,
input[type='checkbox']:focus + label:after,
.c-sidebar__list-visible-section-item input[type='radio']:focus + label,
.c-sidebar__list-visible-section-item input[type='checkbox']:focus + label, .c-sidebartoggle-label .c-sidebar__link:focus {
  -webkit-box-shadow: 0 0 0 2px #5f9ff8;
          box-shadow: 0 0 0 2px #5f9ff8;
  outline: 2px solid transparent;
}

.c-sidebar__list-visible-section-item input[type='checkbox']:focus + label .c-sidebar__link-name {
  color: #1B60F4;
}

.popup-window {
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;
}

.popup-window .c-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.popup-window .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

@media (max-width: 768px) {
  .popup-window .content .video {
    width: 90%;
    height: 90%;
  }
}

.popup-window__audio .icon-svg-popup {
  width: 50px;
  height: 50px;
}

.popup-window__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  padding: 10px 10px 30px 10px;
}

@media (max-width: 480px) {
  .popup-window__video {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.popup-window__video .icon-svg-popup {
  margin-right: .7rem;
  width: 35px;
  height: 35px;
}

@media (max-width: 480px) {
  .popup-window__video .icon-svg-popup {
    margin: 0;
  }
}

.popup-window__video-brightcove {
  width: 50%;
  min-height: 440px;
  position: relative;
}

.popup-window__video-brightcove video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.popup-window__video-brightcove .video-js {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
}

@media only screen and (min-width: 1400px) and (max-width: 2400px) {
  .popup-window__video-brightcove {
    width: 80%;
    min-height: 600px;
  }
}

@media (max-width: 1399px) {
  .popup-window__video-brightcove {
    width: 50%;
  }
}

@media (max-width: 1024px) {
  .popup-window__video-brightcove {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .popup-window__video-brightcove {
    width: 90%;
    min-height: 320px;
  }
}

.popup-window .c-header__backbtn {
  margin-left: 2rem;
}

@media (max-width: 1024px) {
  .popup-window .c-header__backbtn {
    margin-left: .5rem;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .popup-window .content {
    height: 100%;
  }
}

@media all and (-ms-high-contrast: none) and (max-width: 420px), all and (-ms-high-contrast: active) and (max-width: 420px) {
  .popup-window .popup-window__video h3 {
    max-width: 300px;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .popup-window .popup-window__video-brightcove {
    height: 440px;
  }
}

@media all and (-ms-high-contrast: none) and (max-width: 768px), (-ms-high-contrast: active) and (max-width: 768px) {
  .popup-window .popup-window__video-brightcove {
    height: 320px;
  }
}

@media only screen and (-ms-high-contrast: active) and (min-width: 1400px) and (max-width: 2200px) {
  .popup-window .popup-window__video-brightcove {
    height: 600px;
  }
}

@media all and (-ms-high-contrast: none) and (max-width: 767px), all and (-ms-high-contrast: active) and (max-width: 767px) {
  .popup-window .content .video {
    width: 90%;
  }
  .popup-window .content .audio {
    width: 80%;
  }
}

@media all and (-ms-high-contrast: none) and (max-width: 420px), all and (-ms-high-contrast: active) and (max-width: 420px) {
  .popup-window .content .audio {
    width: 90%;
  }
}

.c-main-container {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  position: relative;
}

.c-main-container.c-error .c-error__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 30px;
  min-height: 280px;
}

@media all and (max-width: 767px) {
  .c-main-container.c-error .c-error__container {
    padding: 10px 30px 60px 30px;
  }
}

.c-main-container.c-error .c-error__container.logged-in::before {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c-main-container.c-error .c-error__container {
    height: 280px;
  }
}

.c-main-container.c-error .c-error__container .icon-svg {
  width: 50px;
  height: 50px;
}

.c-main-container.c-error .c-error__container .title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.c-main-container.c-error .c-error__container .sub-title {
  font-size: 16px;
  text-align: center;
}

@media only screen and (min-width: 1920px) {
  .c-main-container {
    padding-bottom: 60px;
  }
}

.global-message {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

@media only screen and (min-width: 1920px) {
  .global-message {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.global-message__wrapper {
  padding: 1.5rem;
  background-color: #FED119;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  clear: both;
}

.global-message__wrapper p {
  margin: 0 12px;
  font-size: initial;
  overflow-x: hidden;
  word-wrap: break-word;
}

.global-message__wrapper p a {
  color: #0000FF;
}

.global-message__wrapper .icon-svg-about {
  height: 34px;
  min-width: 30px;
}

.global-message__wrapper .cancel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 30px;
  background-color: #000000;
}

.global-message__wrapper .cancel .icon-svg {
  margin-left: 1px;
}

body.eplan-createplan:before {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  z-index: 4;
}

body.eplan-createplan .o-page__content {
  z-index: inherit;
}

body.eplan-createplan #eplannerContainer {
  position: fixed;
  width: calc(100% - 64px);
  top: 32px;
  left: 32px;
  z-index: 10;
  right: 32px;
  bottom: 32px;
  height: calc(100% - 64px);
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}

@media only screen and (max-width: 1023px) {
  body.eplan-createplan #eplannerContainer {
    position: fixed;
    width: calc(100% - 0px);
    top: 0px;
    left: 0px;
    z-index: 10;
    right: 0px;
    bottom: 0px;
    height: calc(100% - 0px);
    border-radius: 0px;
  }
  body.eplan-createplan #eplannerContainer:before {
    display: none;
  }
}

.c-eplanner .c-main-container {
  padding-bottom: 0;
}

.c-eplanner {
  overflow: hidden;
}

#eplannerContainer {
  width: calc(100% - 304px);
  height: calc(100% - 330px);
  position: fixed;
  z-index: 10;
  padding-bottom: 0;
  top: 61px;
}

#eplannerContainer object {
  width: 100%;
  height: 100%;
  position: relative;
}

#eplannerContainer .demo {
  -webkit-transform: translate(0px, -61px);
          transform: translate(0px, -61px);
  height: calc(100vh - 270px);
}

@media only screen and (max-width: 1999px) {
  #eplannerContainer {
    width: calc(100% - 104px);
    height: calc(100% - 60px);
    position: fixed;
    z-index: 10;
    padding-bottom: 0;
    top: 61px;
  }
  #eplannerContainer .demo {
    -webkit-transform: translate(0px, -61px);
            transform: translate(0px, -61px);
    height: calc(100vh - 0px);
  }
  .eplan-createplan #eplannerContainer .demo {
    -webkit-transform: inherit;
            transform: inherit;
    height: 100% !important;
  }
  .c-eplanner .o-page.u-open #eplannerContainer {
    width: calc(100% - 200px);
  }
  .c-eplanner.eplan-createplan .o-page.u-open #eplannerContainer {
    width: calc(100% - 64px);
  }
}

@media only screen and (max-width: 1023px) {
  .c-eplanner .o-page.u-open #eplannerContainer {
    width: calc(100% - 0px);
    height: calc(100% - 60px);
  }
}

@media only screen and (max-width: 1023px) {
  .c-eplanner .o-page #eplannerContainer {
    width: calc(100% - 0px);
  }
}

.c-eplanner.c-hotbody-corners .o-page.u-open #eplannerContainer {
  width: calc(100% - 400px);
}

.c-eplanner.c-hotbody-corners.c--bottom-right #eplannerContainer,
.c-eplanner.c-hotbody-corners.c--bottom-left #eplannerContainer {
  top: inherit;
}

.c-hotbody-corners.eplan-createplan #eplannerContainer {
  width: calc(100% - 304px);
  height: calc(100% - 330px);
  position: fixed;
  z-index: 10;
  padding-bottom: 0;
  top: 61px;
  right: initial;
  bottom: initial;
  border-radius: 0px;
  left: initial;
}

.c-hotbody-corners.eplan-createplan #eplannerContainer:before {
  display: none;
}

.c-hotbody-corners.eplan-createplan:before {
  z-index: 1;
}

.c-tooltip {
  position: absolute;
  width: 1px;
  height: 1px;
  left: 50%;
  top: 50%;
  margin-left: -0.5px;
  margin-top: -0.5px;
  display: none;
}

.c-tooltip:target {
  display: block;
}

.c-tooltip-inner {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -116px;
  width: 232px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 8px;
  padding: 10px 35px 10px 10px;
  font-size: 14px;
  font-weight: normal;
}

@media (max-width: 479px) {
  .c-tooltip-inner {
    margin-left: -180px;
  }
}

@media (max-width: 374px) {
  .c-tooltip-inner {
    margin-left: -160px;
    width: 220px;
  }
}

.c-tooltip-inner:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(0, 0, 0, 0.8);
  position: absolute;
  content: "";
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
}

@media (max-width: 479px) {
  .c-tooltip-inner:after {
    margin-left: 54px;
  }
}

@media (max-width: 374px) {
  .c-tooltip-inner:after {
    margin-left: 40px;
  }
}

.c-tooltip-inner a.c-tooltip__close {
  color: #fff;
  position: absolute;
  right: 10px;
  top: 10px;
}

.c-tooltip-inner a.c-tooltip__close:hover, .c-tooltip-inner a.c-tooltip__close:focus {
  text-decoration: none;
  background: transparent;
}

.c-tooltip-inner a.c-tooltip__close i {
  width: 16px;
  height: 16px;
}

@media (max-width: 800px) {
  .login-tooltip--password .c-tooltip-inner {
    margin-left: -100px;
  }
}

@media (max-width: 800px) {
  .login-tooltip--password .c-tooltip-inner:after {
    margin-left: -26px;
  }
}

@media (max-width: 479px) {
  .profile-tooltip--help .c-tooltip-inner {
    margin-left: -53px;
  }
}

@media (max-width: 479px) {
  .profile-tooltip--help .c-tooltip-inner:after {
    margin-left: -72px;
  }
}

.c-banner {
  background: #0F597C;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(91deg, #0F597C 0%, #DA1B2C 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#025474', endColorstr='#cb182d', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  background-attachment: fixed;
  text-align: center;
  color: #fff;
}

.c-banner--space {
  padding: 62px 10px;
}

.c-banner h1 {
  font-weight: normal;
}

.c-language-toggle {
  position: relative;
  z-index: 6;
}

.c-language-toggle .c-dropdown__button, .c-language-toggle a {
  -webkit-transition: none;
  transition: none;
}

.c-language-toggle.active #languageMenu {
  display: block;
}

.c-language-toggle #languageMenu {
  display: block;
}

.c-language-toggle #languageMenu li a, .c-language-toggle #languageMenu .u-button-label {
  text-align: left;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  border-radius: 0;
  padding: 10px 10px;
  height: auto;
}

.c-language-toggle a.u-button {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  border-radius: 0;
}

.c-language-toggle ul {
  width: 180px;
  border: 1px solid #8B8B8B;
  border-radius: 8px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  list-style: none;
  position: absolute;
  right: 0;
  top: 30px;
  display: none;
}

.c-language-toggle ul.active {
  display: block;
}

.c-language-toggle ul li a {
  display: block;
  padding: 6px 15px;
  color: #000000;
  position: relative;
  z-index: 99;
}

.c-language-toggle ul li a:visited {
  color: #000000;
}

.c-language-toggle ul li a:hover {
  text-decoration: none;
  background: #F6F6F6;
  color: #1B60F4;
}

@media (max-width: 1023px) {
  .c-language-toggle ul li {
    display: block;
  }
  .c-language-toggle ul li .icon-svg {
    margin: 0;
  }
}

.c-header .c-language-toggle {
  padding-right: 20px;
}

@media (max-width: 768px) {
  .c-header .c-language-toggle {
    padding-right: 0;
  }
}

.c-header .c-language-toggle .icon-svg {
  margin: 0;
}

.c-header .c-language-toggle .u-button-label {
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7px 25px 7px 12px;
}

.c-header .c-language-toggle .u-button-label .icon-svg-close {
  display: none;
}

.c-header .c-language-toggle .u-button-label.active .icon-svg-close {
  display: inline-block;
}

.c-header .c-language-toggle .u-button-label .icon-svg {
  margin: 0 10px 0 0;
}

@media (max-width: 1023px) {
  .c-header.c-header--login .c-language-toggle.active #languageMenu {
    bottom: inherit;
    left: inherit;
    top: 32px;
  }
}

.o-page.u-open .c-language-toggle .icon-svg {
  margin-right: 8px;
}

.c-sidebar__list .c-language-toggle .u-button-label.u-button {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.c-sidebar__list .c-language-toggle .u-button-label.active.u-button {
  background-color: #eee;
  border-radius: 0;
  position: relative;
}

.c-sidebar__list .c-language-toggle .u-button-label.active.u-button:before {
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #1B60F4;
  content: "";
  left: 0;
  top: 0;
}

@media (max-width: 1023px) {
  .c-sidebar__list .c-language-toggle .u-button-label.active:before {
    width: 100% !important;
    height: 4px !important;
    left: 0;
    bottom: 0 !important;
    border-radius: 8px 8px 0 0;
    top: inherit !important;
  }
}

.c-sidebar__list .c-language-toggle ul {
  width: 180px;
  right: -180px;
  z-index: 11;
  height: auto;
  top: 0;
}

.c-sidebar__list .c-language-toggle ul li {
  height: auto;
}

.js .o-page__sidebar .c-sidebar {
  overflow: inherit;
}

.js #languageMenu {
  display: none;
}

@media (max-width: 1023px) {
  .c-sidebar .c-language-toggle #languageMenu {
    bottom: 60px;
    top: inherit;
    left: 50%;
    overflow: auto;
    max-height: 400px;
    margin-left: -90px;
  }
}

.c-mee-logo {
  display: block;
  text-align: center;
}

@media (max-width: 1023px) {
  .c-mee-logo.c-page-scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    border-bottom: 1px solid #8B8B8B;
  }
  .c-mee-logo.c-page-scrolled .c-mee__logotitle {
    height: 60px;
    width: 90px;
  }
}

.c-mee-logo .c-mee__logotitle {
  background-image: url("../../images/Logo_MEE.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 156px;
  height: 68px;
  display: inline-block;
  text-indent: -999em;
  cursor: pointer;
  overflow: hidden;
}

.c-mee-logo .c-mee-logo__top span:first-child {
  background-image: url("../../images/Logo_MEE.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.c-mee-logo .c-mee-logo__top span:last-child {
  font-size: 50px;
}

.c-mee-logo .c-mee-logo__bottom {
  font-size: 10.5px;
  text-align: center;
}

@media (max-width: 1023px) {
  .c-mee-logo {
    margin: 0 !important;
  }
}

.c-login-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.c-login-container form {
  max-width: 390px;
  margin: 20px auto;
}

@media (max-height: 600px) {
  .c-login-container form {
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .c-login-container form {
    max-width: 300px;
  }
}

@media (min-width: 1920px) {
  .c-login-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.c-login-container.c-registration-container {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .c-login-container.c-registration-container {
    padding-bottom: 120px;
  }
}

@media (min-width: 1920px) {
  .c-login-container.c-registration-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.c-login-container .c-login-form {
  border: 1px solid #8B8B8B;
  border-radius: 8px;
  padding: 1rem 1.5625rem;
}

.c-login-container .c-login-form h1 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-login-container .c-login-form .u-button,
.c-login-container .c-login-form input[type='submit'] {
  min-width: 208px;
  display: inline-block;
}

.c-login-container .c-login-form a {
  color: #1B60F4;
  font-weight: 700;
  vertical-align: middle;
}

.c-login-container .c-login-form input[type='checkbox'] {
  position: absolute;
  opacity: 0;
}

.c-login-container .c-login-form input[type='checkbox'] + label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}

.c-login-container .c-login-form input[type='checkbox'] + label:after {
  content: '';
  border: 2px solid #1B60F4;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  color: #fff;
  top: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  line-height: 20px;
}

.c-login-container .c-login-form input[type='checkbox'] + label.u-form-control__error:after {
  border-color: #EB0104;
}

.c-login-container .c-login-form input[type='checkbox'] + label:before {
  content: '';
  background-image: url("../../images/checkbox-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 3px;
  z-index: 2;
}

.c-login-container .c-login-form input[type='checkbox'].u-form-control__error + label:after {
  border-color: #EB0104;
}

.c-login-container .c-login-form input[type='checkbox']:checked + label:before {
  display: block;
}

.c-login-container .c-login-form input[type='checkbox']:checked + label:after {
  background-color: #1B60F4;
}

.c-login-container .c-login-form input[type='radio'] + label {
  cursor: pointer;
  position: relative;
}

.c-login-container .c-login-form input[type='radio'] + label:after {
  content: '';
  border: 2px solid #1B60F4;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: -36px;
  color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  line-height: 20px;
}

.c-login-container .c-login-form input[type='radio'] + label:before {
  width: 12px;
  height: 12px;
  content: '';
  border-radius: 50%;
  background: #1b60f4;
  position: absolute;
  left: -32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

.c-login-container .c-login-form input[type='radio'].u-form-control__error + label:after {
  border-color: #EB0104;
}

.c-login-container .c-login-form input[type='radio']:checked + label::before {
  display: block;
}

.c-login-container .c-login-form .c-form-group__passview {
  position: relative;
}

.c-login-container .c-login-form .c-form-group__passview .c-form-group__icon {
  position: absolute;
  min-width: auto !important;
  right: 0;
  height: 100%;
  padding: 0 14px 0 10px;
  background-color: transparent;
  border: none;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.c-login-container .c-login-form .c-form-group__passview .c-form-group__icon i {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.c-login-container .c-login-form .c-form-group__passview .c-form-group__icon .icon-svg-cancel-error {
  width: 16px;
  height: 16px;
}

.c-login-container .c-login-form .c-form-group__passview input, .c-login-container .c-login-form .c-form-group__passview #destinationSelect {
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
}

.c-login-container .c-login-form .c-form-group__passview input:focus, .c-login-container .c-login-form .c-form-group__passview #destinationSelect:focus {
  -webkit-box-shadow: 0px 0px 0px 2px #1B60F4;
          box-shadow: 0px 0px 0px 2px #1B60F4;
  outline: none;
  border-color: #1B60F4;
}

.c-login-container .c-login-form .u-form__controlerror, .c-login-container .c-login-form .account_type_error {
  display: block;
}

.c-login-container .c-login-form .u-form-group__acctext {
  position: relative;
}

.c-login-container .c-login-form .u-form-group__acctext span {
  display: inline-block;
  background: #fff;
  padding: 0 5px;
  position: relative;
}

.c-login-container .c-login-form .u-form-group__acctext::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #8B8B8B;
  position: absolute;
  top: 50%;
  bottom: 0;
  margin-left: -0%;
  left: 0;
  margin-right: -0%;
  margin-top: -0.5px;
}

.c-login-container .c-login-form .c-login-form__sent {
  margin: 20px auto;
  width: 64px;
  height: 64px;
  display: block;
}

.u-button.u-button--bordered-dark {
  color: #000000 !important;
}

.u-button.u-button--bordered-dark:hover {
  background-color: #E9E9E9;
}

.c-header input[type="checkbox"]:checked ~ .u-button:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-header .c-language-toggle .u-button:after {
  position: absolute;
  content: "";
  background-image: url("../../images/chevron-small.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 8px;
  margin-top: -8px;
}

.c-header .c-language-toggle.active .u-button:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.forgot-username-disable {
  pointer-events: none;
  opacity: 0.4;
}

.forgot-username-enable {
  cursor: pointer;
  opacity: 1;
}

.c-page {
  padding: 1.5625rem 2.5rem;
}

@media (max-width: 1023px) {
  .c-page.c-page-scrolled {
    border-bottom: 1px solid #8B8B8B;
    height: 65px;
  }
}

.c-page .c-page__title {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-page .u-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
}

@media (max-width: 768px) {
  .c-page {
    padding: 1.5625rem 1rem;
  }
}

.c-book-tile-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width: 965px) {
  .c-book-tile-container {
    max-width: 100%;
  }
}

@media (min-width: 1440px) {
  .c-book-tile-container {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (min-width: 1920px) {
  .c-book-tile-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.c-book-tile {
  border-radius: 8px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #8B8B8B;
  display: block;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.c-book-tile::after {
  border: 2px solid #1B60F4;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 8px;
  display: none;
}

.c-book-tile.active {
  border-color: transparent;
}

.c-book-tile.active::after {
  display: block;
}

.c-book-tile .c-book-tile__body {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 164px;
}

.c-book-tile .c-book-tile__body i {
  height: 48px;
  width: 48px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.c-book-tile .c-book-tile__body img {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 8px;
  max-height: 167px;
}

.c-book-tile .c-book-tile__body p {
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-book-tile .c-book-tile__body .new-label {
  display: inline-block;
  padding: 10px 16px;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background-color: #1B60F4;
  border-bottom-right-radius: 7px;
  font-size: initial;
}

@media all and (-ms-high-contrast: none) {
  .c-book-tile _:ms-lang(x), .c-book-tile .c-book-tile__body {
    padding-top: 60px;
  }
  .c-book-tile _:ms-lang(x) .c-book-tile__body, .c-book-tile .c-book-tile__body .c-book-tile__body {
    height: 164px;
  }
}

.c-book-tile .c-book-tile__footer {
  height: 100%;
  background: transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 12px 15px;
  color: #000000;
  border-top: 1px solid #8B8B8B;
}

.c-book-tile:hover, .c-book-tile:active {
  color: #000000;
  text-decoration: none;
}

.c-book-tile:hover .c-book-tile__footer, .c-book-tile:active .c-book-tile__footer {
  background: #1B60F4;
  color: #fff;
}

.c-book-tile:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  text-decoration: none !important;
  border-color: transparent;
}

.c-book-tile:focus::after {
  display: block;
}

.c-book-tile.c-book-tile--empty {
  padding: 4.75rem 1rem 5rem;
}

.c-book-tile.c-book-tile--empty p span {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

.c-book-tile.c-book-tile--empty i {
  height: 45px;
  width: 45px;
  margin: 12px auto;
}

.c-book-tile.c-book-tile--empty:hover {
  background: #F6F6F6;
}

.c-book-tile.c-book-tile--last .c-book-tile__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 215px;
}

.c-book-tile.c-book-tile--last .c-book-tile__body:hover {
  background: #F6F6F6;
}

.c-book-tile.c-book-tile--last .c-book-tile__body .icon-svg-add-book {
  height: 48px;
  width: 48px;
}

.c-pagination {
  display: none;
}

.c-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-pagination ul li {
  display: inline-block;
  font-weight: 600;
}

.c-pagination ul li a {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  color: #000000;
  margin: 0 5px;
  border-radius: 8px;
  text-align: center;
  line-height: 32px;
}

.c-pagination ul li a.active, .c-pagination ul li a:hover, .c-pagination ul li a:focus, .c-pagination ul li a:active {
  background: #1B60F4;
  color: #fff;
  text-decoration: none;
}

.add-book-btn {
  background-image: url(../images/add.svg);
  background-repeat: no-repeat;
  background-position: 20px 8px;
  line-height: 21px;
  min-width: 180px;
  padding: 0.375rem 0rem 0.375rem 1rem;
}

.card-container {
  padding: 30px 50px;
}

.empty-book-img {
  background: url(../images/add-book.svg) no-repeat center;
  min-height: 70px;
  margin-bottom: 0;
}

.empty-book-section {
  text-decoration: none;
}

.backbtn {
  background-image: url(../images/back.svg);
  background-repeat: no-repeat;
  display: inline-block;
  padding-left: 25px;
  background-position: 0px 3px;
  color: #000;
  font-weight: 600;
}

.backbtn:hover {
  text-decoration: none;
  color: #000;
}

.card-img {
  background: url(../images/add-book.svg) no-repeat center;
  min-height: 150px;
  margin-bottom: 0;
}

.card {
  height: 100%;
  border: 1px solid #8b8b8b;
  border-radius: 8px;
  overflow: hidden;
  color: #000;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}

a.card,
a.card:hover {
  color: #000;
}

.card-container .col-xl-3 {
  padding: 15px;
}

.card-body {
  padding: 7px;
}

.card-footer {
  height: 100%;
  border-color: #8b8b8b;
  background: transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.card:hover {
  text-decoration: none;
}

.card:hover .card-footer {
  background: #1b60f4;
  color: #fff;
}

.card.active {
  border: 2px solid #1b60f4;
}

.sub-header {
  padding: 20px;
}

.book {
  background: url(../images/course-fb.svg) no-repeat center;
  min-height: 306px;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.5);
  max-width: 220px;
  margin: 0 auto;
  border: 1px solid #c7c7c7;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .book {
    margin-bottom: 2.3rem;
  }
}

@media (max-width: 1023px) {
  .book {
    margin-bottom: 2.3rem;
  }
}

.c-level-list {
  border: 1px solid #8b8b8b;
  border-radius: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-level-list li {
  border-bottom: 1px solid #8b8b8b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}

.c-level-list li:last-child {
  border: none;
}

.c-level-list li .icon-svg {
  font-size: 20px;
  padding-right: 20px;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .c-level-list li .icon-svg {
    display: none;
  }
}

.c-level-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  min-width: auto;
  padding: 0.375rem 1.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .c-level-list li a {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .c-level-list li a.arrow-next {
    background-color: #fff;
    border: 0;
    text-indent: -9999em;
    content: "";
    color: transparent;
    background-image: url("../../images/chevron.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    min-width: auto !important;
    padding: 0.375rem 1rem;
  }
  .c-level-list li a.arrow-next:hover {
    background-color: #fff;
  }
}

.c-level-list li a .c-level-target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 20px 115px 20px 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  color: #000000;
  text-decoration: none;
}

@media (max-width: 767px) {
  .c-level-list li .c-level-bookinfo {
    padding-bottom: 10px;
  }
}

.c-level-list li.c-level--listcourse {
  padding: 0;
}

.c-level-list li.c-level--listcourse .c-level-target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 20px 115px 20px 20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  color: #000000;
  text-decoration: none;
  width: 100%;
}

.c-level-list li.c-level--listcourse .c-level-target:hover {
  color: #1B60F4;
}

.c-level-list li.c-level--listcourse .c-level-target:hover .icon-svg {
  color: #1B60F4;
}

@media (max-width: 767px) {
  .c-level-list li.c-level--listcourse .c-level-target .c-level-bookinfo {
    padding-bottom: 0px;
  }
}

.c-level-list li .u-button--primary.arrow-next {
  position: absolute;
  top: 50%;
  right: 15px;
}

@media only screen and (max-width: 2550px) and (min-width: 1920px) {
  .c-level-list li .u-button--primary.arrow-next {
    height: 38px;
    margin-top: -19px;
  }
}

@media only screen and (max-width: 1919px) and (min-width: 1440px) {
  .c-level-list li .u-button--primary.arrow-next {
    height: 47px;
    margin-top: -23.5px;
  }
}

@media only screen and (max-width: 1439px) and (min-width: 768px) {
  .c-level-list li .u-button--primary.arrow-next {
    height: 42px;
    margin-top: -21px;
  }
}

@media only screen and (max-width: 767px) {
  .c-level-list li .u-button--primary.arrow-next {
    height: 36px;
    margin-top: -18px;
  }
}

.c-level-list li .u-button.hrefButtonStyle {
  margin-left: 15px;
}

.c-level-list.c-level-list--nowrap li {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.c-level-list__utility .icon-svg {
  display: none !important;
}

.c-level-list__utility a.u-button {
  margin-right: 10px;
}

.c-level-list__utility a.u-button:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .c-level-list__utility {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0 !important;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .c-level-list__utility .icon-svg {
    display: block !important;
    margin-top: 0 !important;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    margin-right: 5px !important;
  }
}

@media (max-width: 500px) {
  .c-level-list__utility {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
  }
}

@media (max-width: 325px) {
  .c-level-list__utility a:last-child {
    margin-left: 0 !important;
  }
}

.c-level--listcourse a.c-level-target:focus {
  text-decoration: none !important;
}

.c-level--listcourse a.c-level-target:focus .icon-svg {
  text-decoration: none !important;
}

.c-level--listcourse a.c-level-target:focus .c-level-bookinfo {
  text-decoration: underline;
}

.icon-generic::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/course-fallback.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-student-book::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/book-view.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-resource-centre::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/resource-bank.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-resource-pack::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/resource-bank.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-workbook::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/presentation-kit.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-test-generator::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/test-generator.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-presentation-kit::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/whiteboard.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-pupil-book::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/book-view.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-student-practice-kit::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/practice-kit.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-presentation::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/presentation.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-activity-pack::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/resources.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-eplanner::before {
  content: '\49';
  color: transparent;
  background-image: url(../images/eplanner-icon.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.c-level-target:hover .icon-generic::before {
  background-image: url(../images/course-fallback-h.svg);
}

.c-level-target:hover .icon-student-book::before {
  background-image: url(../images/book-view-h.svg);
}

.c-level-target:hover .icon-resource-centre::before {
  background-image: url(../images/resource-bank-h.svg);
}

.c-level-target:hover .icon-resource-pack::before {
  background-image: url(../images/resource-bank-h.svg);
}

.c-level-target:hover .icon-workbook::before {
  background-image: url(../images/presentation-kit-h.svg);
}

.c-level-target:hover .icon-test-generator::before {
  background-image: url(../images/test-generator-h.svg);
  background-position: center;
}

.c-level-target:hover .icon-presentation-kit::before {
  background-image: url(../images/whiteboard-h.svg);
}

.c-level-target:hover .icon-pupil-book::before {
  background-image: url(../images/book-view-h.svg);
}

.c-level-target:hover .icon-student-practice-kit::before {
  background-image: url(../images/practice-kit-h.svg);
}

.c-level-target:hover .icon-presentation::before {
  background-image: url(../images/presentation-h.svg);
}

.c-level-target:hover .icon-activity-pack::before {
  background-image: url(../images/resources-h.svg);
}

.c-level-target:hover .icon-eplanner::before {
  background-image: url(../images/eplanner-icon-hover.svg);
}

.c-level .c-level-title, .c-level .c-level-bookinfo__title, .c-level-bookinfo .c-level-title, .c-level-bookinfo .c-level-bookinfo__title {
  font-size: 20px;
  font-weight: 600;
}

.c-level .c-sub__title, .c-level .c-level-bookinfo__description, .c-level-bookinfo .c-sub__title, .c-level-bookinfo .c-level-bookinfo__description {
  font-size: 14px;
  font-weight: 600;
}

.c-level .c-level-bookinfo__description, .c-level-bookinfo .c-level-bookinfo__description {
  color: #4A4A4A;
}

@media (max-width: 1919px) {
  .c-level .c-level-bookinfo__title, .c-level-bookinfo .c-level-bookinfo__title {
    max-width: 500px;
  }
}

@media (min-width: 1920px) {
  .c-level .c-level-bookinfo__title, .c-level-bookinfo .c-level-bookinfo__title {
    max-width: 2000px;
  }
}

.c-page--inner {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .c-page--inner {
    padding: 20px 10px;
  }
  .c-page--inner .c-page__title {
    margin: 0 40px;
    overflow: hidden;
  }
}

.c-page--inner .c-page__title {
  margin: 0 75px;
}

@media (max-width: 767px) {
  .c-page--inner .c-page__title {
    margin: 0 25px;
  }
}

.c-page--inner.c-more-content.c-page-scrolled {
  border-bottom: 1px solid #8B8B8B;
}

.c-back-link {
  color: #1A051D;
  text-decoration: none;
  font-weight: 600;
  float: left;
  width: 90px;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-back-link:hover {
  text-decoration: none;
}

.c-back-link .icon-svg {
  top: 2px;
  position: relative;
}

@media (max-width: 767px) {
  .c-back-link {
    width: 40px;
  }
  .c-back-link .icon-svg {
    top: 0;
  }
  .c-back-link .c-desktop-text {
    display: none;
  }
}

.c-app-download .c-app-download__title {
  font-size: 24px;
}

.c-app-download .c-download-app-block {
  position: relative;
  border: 1px solid #8B8B8B;
  border-radius: 8px;
}

.c-app-download .c-download-app-block:before {
  content: "";
  height: 7px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #0F597C;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(91deg, #0F597C 0%, #DA1B2C 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#025474', endColorstr='#cb182d', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  background-attachment: fixed;
  border-radius: 8px 8px 0 0;
  z-index: 1;
}

.c-app-download .flex .flex-col {
  padding: 45px 40px 40px;
}

.c-app-download .flex .flex-col .c-download-centername {
  font-size: 20px;
}

.c-app-download .flex .flex-col .c-downloadapp-list {
  font-size: 14px;
  padding: 0 0 0 20px;
}

.c-app-download .flex .flex-col .c-downloadapp-description {
  font-size: 14px;
}

.c-app-download .flex .flex-col .icon-svg-download-progress {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  top: 4px;
}

.icon-svg-download-progress {
  content: '\49';
  background-image: url(../images/download-white.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: #DA1B2C;
}

.c-app-creditblock .c-app-creditbloc__title {
  font-size: 18px;
  border-bottom: 1px solid #8B8B8B;
}

.c-app-creditblock .c-app-creditbloc__title .c-app-creditbloc__link {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .c-app-creditblock .c-app-creditbloc__title {
    margin-bottom: 2.5rem;
  }
}

.flex-col-sm-6.c-flex--leftcol .c-flex--subleftcol, .flex-col-sm-6.c-flex--leftcol .c-flex--subrightcol {
  width: 100%;
}

.flex-col-sm-6.c-flex--leftcol .c-flex--subleftcol.c-logo-block {
  padding: 0px 40px 0px;
}

.flex-col-sm-6.c-flex--leftcol .c-flex--subrightcol {
  padding: 0px 40px 0px;
}

.c-flex--leftcol {
  position: relative;
}

.c-flex--leftcol:first-child:before {
  position: absolute;
  content: "";
  background-color: #8B8B8B;
  height: 100%;
  width: 1px;
  right: 0;
  top: 0;
}

.flex-col.flex-col-sm-12.c-flex--leftcol:first-child::before {
  display: none;
}

@media (max-width: 767px) {
  .c-app-download .flex-col.flex-col-12.flex-col-sm-12 .flex .flex-col .c-downloadapp-list {
    padding: 0 0 0 50px;
  }
  .flex-col.c-flex--leftcol:first-child::before {
    display: none;
  }
}

.c-coursesuccess--activation .u-smal-text-fixed {
  font-size: 16px;
  text-align: center;
}

.c-progress-container {
  max-width: 610px;
  margin: 0 auto;
  position: relative;
}

.c-progress-container .c-progress-tracker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  list-style: none;
}

.c-progress-container .c-progress-tracker li {
  position: relative;
  padding: 0rem 7rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  width: 40px;
  height: 40px;
  counter-increment: stepno;
  list-style: none;
}

@media (max-width: 767px) {
  .c-progress-container .c-progress-tracker li {
    width: 32px;
    height: 32px;
    padding: 0rem 3rem;
  }
}

.c-progress-container .c-progress-tracker li:after {
  position: absolute;
  content: '';
  height: 8px;
  background: #C6D7FC;
  margin: 0;
  width: calc(100% + 0px);
  left: 50%;
  bottom: 16px;
}

@media (max-width: 767px) {
  .c-progress-container .c-progress-tracker li:after {
    bottom: 12px;
  }
}

.c-progress-container .c-progress-tracker li:last-child {
  margin-right: 0;
}

.c-progress-container .c-progress-tracker li:last-child:after {
  display: none;
}

.c-progress-container .c-progress-tracker li a {
  display: inline-block;
  color: #000;
  cursor: default;
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  width: 100%;
}

@media (max-width: 767px) {
  .c-progress-container .c-progress-tracker li a {
    height: 32px;
  }
}

.c-progress-container .c-progress-tracker li a:hover, .c-progress-container .c-progress-tracker li a:visited, .c-progress-container .c-progress-tracker li a:active, .c-progress-container .c-progress-tracker li a:focus {
  text-decoration: none;
  color: #000;
}

.c-progress-container .c-progress-tracker li a:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  height: 40px;
  margin-left: -20px;
  width: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 4px solid #C6D7FC;
}

@media (max-width: 767px) {
  .c-progress-container .c-progress-tracker li a:before {
    height: 32px;
    width: 32px;
    margin-left: -16px;
  }
}

.c-progress-container .c-progress-tracker li a .progress-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  top: -40px;
  margin-left: 9px;
  display: inline-block;
}

@media (max-width: 767px) {
  .c-progress-container .c-progress-tracker li a .progress-text {
    display: none;
  }
}

.c-progress-container .c-progress-tracker li a .progress-text:before {
  content: counter(stepno) ". ";
  font-weight: bold;
  position: absolute;
  left: -18px;
}

.c-progress-container .c-progress-tracker li.is-active a::before {
  border-color: #1B60F4;
}

.c-progress-container .c-progress-tracker li.is-complete::after {
  background: #1B60F4;
}

.c-progress-container .c-progress-tracker li.is-complete a:before {
  background-image: url("../../images/progress-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #1B60F4;
  border-color: #1B60F4;
}

.c-progress-container .mob-progress-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {
  .c-progress-container .mob-progress-text {
    display: block;
    position: absolute;
    width: 100%;
    top: -8px;
  }
}

.c-avatar-welcome {
  width: 150px;
  height: 150px;
  display: inline-block;
  background-color: #eee;
  border-radius: 50%;
}

.c-success-content p {
  font-size: 14px;
  font-weight: 600;
}

.c-success-registration-content p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

.c-success-registration-content .u-button {
  min-width: 208px;
}

.c-landing-container {
  position: relative;
}

.c-landing-container .c-landing__body {
  padding-top: 5rem;
  padding-bottom: 6rem;
  position: relative;
}

@media (max-width: 767px) {
  .c-landing-container .c-landing__body {
    padding-bottom: 4rem;
  }
}

@media (min-width: 1920px) {
  .c-landing-container .c-landing__body {
    padding-bottom: 9rem;
  }
}

.c-landing-container .c-landing__body:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
}

.c-landing-container .c-landing__body:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../../images/landing_image.png");
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (min-width: 1920px) {
  .c-landing-container .c-landing__body:after {
    background-position: 0 40%;
  }
}

.c-landing-container .c-landing__body h1 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-landing-container .c-login-form {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.c-landing-container .c-login-form p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

.c-landing-container .c-landing__footer {
  position: relative;
  color: #fff;
}

.c-landing-container .c-landing__footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 200px;
  background-color: #DA1B2C;
  left: 0;
  top: -80px;
  z-index: 0;
  border-radius: 100% 100% 0% 0% / 40% 40% 0 0%;
}

@media (max-width: 767px) {
  .c-landing-container .c-landing__footer:before {
    height: 120px;
    top: -50px;
  }
}

.c-landing-container .c-landing__footer h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-landing-container .c-landing__footer h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-landing-container .c-landing__footer ul {
  display: inline-block;
  margin-bottom: 3.75rem;
}

.c-landing-container .c-landing__footer ul li {
  font-size: 1rem;
  text-align: left;
}

@media (max-width: 767px) {
  .c-landing-container .c-landing__footer ul {
    padding-right: 20px;
  }
}

.c-landing-container .c-landing__footerinner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.c-landing-container .c-landing__footerinner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../../images/Backoground.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -40px 80px;
  left: 0;
  bottom: 0px;
  z-index: 0;
}

@media (max-width: 1023px) {
  .c-landing-container .c-landing__footerinner:after {
    bottom: -35%;
    background-position: 0;
    background-size: cover;
  }
}

.c-landing-container .c-landing__footerinner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-landing-container .c-landing__footercontent {
  z-index: 1;
}

.c-landing-container.c-login-container {
  background-color: #DA1B2C;
}

@media (min-width: 1920px) {
  .c-landing-container.c-login-container {
    padding-right: 0;
    padding-left: 0;
  }
}

.c-apps--logo__wrapper {
  display: inline-block;
  width: 50px;
  height: 46px;
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 5px 8px;
}

@media (max-width: 767px) {
  .c-apps--logo {
    max-width: 260px;
    margin: 0 auto;
  }
}

.c-footer {
  padding-top: 1rem;
  position: relative;
  z-index: 2;
  font-size: 13px;
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-footer::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #8B8B8B;
}

@media only screen and (max-width: 1023px) {
  .c-footer-logo {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media only screen and (min-width: 1023px) {
  .c-footer-content {
    padding-top: 10px;
  }
}

.c-footer-content ul li {
  list-style-type: none;
  display: inline-block;
}

@media only screen and (max-width: 1023px) {
  .c-footer-content ul li {
    text-align: center;
  }
}

.c-footer-content ul li a {
  color: #000000;
  line-height: 24px;
}

.c-footer-copyright p {
  font-size: 12px;
  line-height: 24px;
  font-weight: 600;
}

@media only screen and (max-width: 1023px) {
  .c-footer-copyright p {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .c-footer-copyright p {
    text-align: left;
  }
}

@media only screen and (min-width: 2000px) {
  .c-footer-landing {
    position: relative;
    bottom: 0;
    width: 100%;
  }
}

@media only screen and (min-width: 2800px) {
  .c-footer-landing {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .c-footer .c-footer-copyright {
    padding-top: 1rem !important;
  }
}

.c-code--page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-code-header {
  padding: 30px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.c-code-link {
  padding-left: 20px;
  position: absolute !important;
  left: 30px;
  top: 30px;
}

.c-code-activation {
  position: relative;
}

@media (max-width: 1023px) {
  .c-code-activation {
    height: auto !important;
  }
}

.c-code-activation:before {
  background: #0F597C;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(91deg, #0F597C 0%, #DA1B2C 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#025474', endColorstr='#cb182d', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  background-attachment: fixed;
  position: absolute;
  content: '';
  width: 100%;
  height: 20px;
  top: 0;
}

.c-code-activation form.c-login-form {
  background-color: #fff;
  padding: 20px 40px 40px 40px;
}

@media (max-width: 480px) {
  .c-code-activation form.c-login-form {
    padding: 15px;
  }
}

.c-code-activation form.c-login-form .c-code-form-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  padding-top: 30px;
}

.c-code-activation form.c-login-form .c-activationCode {
  width: 91%;
}

@media (max-width: 480px) {
  .c-code-activation form.c-login-form .c-activationCode {
    width: 100%;
  }
}

.c-code-label {
  font-size: 16px;
}

.c-code-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 auto;
  text-align: center;
}

.scroll-down .c-code-header {
  padding: 15px;
}

@media (min-width: 1920px) {
  .c-login-container.c-code-activation {
    padding-left: 0;
    padding-right: 0;
  }
}

.c-code-error a {
  font-weight: 600 !important;
  top: -1px;
  position: relative;
}

.c-terms-condtions-sections {
  color: #000000;
}

.c-terms-condtions-sections h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-terms-condtions-sections p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}

.c-terms-condtions-sections h2 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-terms-condtions-sections.c-sysreq-section h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-terms-condtions-sections.c-sysreq-section h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-terms-condtions-sections.c-sysreq-section strong {
  font-weight: 600;
}

.c-terms-condtions-sections.c-sysreq-section .u-pb-0 {
  padding-bottom: 0 !important;
}

.c-terms-condtions-sections ul {
  list-style: disc;
}

.c-terms-condtions-sections.c-credit-info {
  font-family: "Open Sans", sans-serif;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

.c-terms-condtions-sections.c-credit-info strong {
  font-weight: 600;
}

.c-terms-links span {
  width: 30px;
  display: inline-block;
}

.c-terms-main {
  color: #000000;
  overflow-x: hidden;
  word-break: break-word;
}

.c-terms-main h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-terms-main p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  padding-bottom: 20px;
  word-break: break-word;
}

.c-terms-main ul {
  list-style: disc;
}

.c-terms-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-terms-block {
  display: block;
}

.c-section--target {
  display: block;
}

.c-login--page .c-section--target {
  margin-top: -220px;
  padding-bottom: 220px;
}

.c-login--page.scroll-down .c-section--target, .c-login--page.scroll-up .c-section--target {
  margin-top: -70px;
  padding-bottom: 70px;
}

.o-page__content__inner .c-section--target {
  margin-top: -160px;
  padding-bottom: 160px;
}

.scroll-down .o-page__content__inner .c-section--target, .scroll-up .o-page__content__inner .c-section--target {
  margin-top: -85px;
  padding-bottom: 85px;
}

.c-terms-container {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.c-terms-container .c-level-list.c-level-list--nowrap li {
  padding: 0.75rem 1rem;
}

.c-terms-container .c-level-list.c-level-list--nowrap li div.u-text-bold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-help-centre {
  word-break: break-word;
}

.c-help-centre__list {
  padding-left: 25px;
}

.c-help-centre__list li {
  padding-bottom: 10px;
}

@media only screen and (min-width: 1024px) {
  .c-help-centre__cr-padding {
    padding-right: 10px;
  }
}

.c-help-centre h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  padding-bottom: 20px;
}

.c-help-centre p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  padding-bottom: 20px;
}

.c-help-centre__block span {
  display: block;
}

.c-help-centre .fontsmall {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
}

.c-help-centre__left .unbold {
  font-weight: normal;
}

@media only screen and (max-width: 1024px) {
  .c-help-centre__right {
    padding-top: 20px;
  }
}

.c-help-centre__right-border {
  border: 1px solid #8B8B8B;
  border-radius: 8px;
}

.c-help-order-list {
  padding-left: 30px;
}

.c-help-unorder-list {
  list-style-type: disc;
  padding-left: 30px;
}

.c-page--resource .c-page--resource__menu {
  position: relative;
}

@media (max-width: 1023px) {
  .c-page--resource .c-page--resource__menu {
    display: block;
    height: 0;
    right: calc(100% + 2.5rem);
    -webkit-transition: all .8s ease;
    transition: all .8s ease;
    overflow: hidden;
  }
}

.c-page--resource .c-page--resource__menu .c-resource ul {
  margin: 0;
  padding: 0;
}

.c-page--resource .c-page--resource__menu .c-resource ul li {
  list-style: none;
}

.c-page--resource .c-page--resource__menu .c-resource ul li:not(:last-child) {
  border-bottom: 1px solid #8B8B8B;
}

.c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links {
  font-size: initial;
  font-weight: 600;
  color: #4A4A4A;
  position: relative;
  text-decoration: none;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  cursor: pointer;
}

.c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links .icon-svg {
  margin-left: auto;
}

.c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links::before {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 60%;
  background-color: #1B60F4;
  border-radius: 0 4px 4px 0;
  display: none;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links:active, .c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links:hover, .c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links.active {
  background: #F6F6F6;
  color: #1B60F4;
}

.c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links:active .icon-svg-next, .c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links:hover .icon-svg-next, .c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links.active .icon-svg-next {
  background-image: url("../../images/next-hover.svg");
}

.c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links:active::before, .c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links:hover::before, .c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links.active::before {
  display: block;
}

.c-page--resource .c-page--resource__menu .c-resource ul li .c-resource__links span {
  max-width: 90%;
}

.c-page--resource .c-page--resource__menu .c-resource .c-resource__category-inner {
  padding-left: 1rem;
}

.c-page--resource .c-page--resource__menu .c-resource .c-resource__category-inner li {
  border-bottom: none !important;
}

.c-page--resource .c-page--resource__menu .c-resource .c-resource__category-title {
  font-size: initial;
  padding: 10px 18px;
  padding-top: 15px;
  color: black;
  font-weight: 700;
  display: inline-block;
}

@media (max-width: 768px) {
  .c-page--resource .c-page--resource__menu .c-resource .c-resource__category-title {
    padding: 10px 15px;
  }
}

@media (min-width: 1024px) {
  .c-page--resource .c-page--resource__content {
    padding-left: 20px;
  }
}

.c-page--resource .c-page--resource__content__initial {
  padding-top: 5rem;
  text-align: center;
}

.c-page--resource .c-page--resource__content__initial h4 {
  padding-bottom: 20px;
}

.c-page--resource .c-page--resource__content__initial img {
  max-width: 300px;
}

.c-page--resource #checkbox-menu-toggle {
  display: none;
}

.c-page--resource input[type="checkbox"]:checked ~ .c-page--resource__menu {
  right: 0;
  height: 100%;
}

@media (max-width: 1023px) {
  .c-page--resource input[type="checkbox"]:checked ~ .c-page--resource__content, .c-page--resource input[type="checkbox"]:checked ~ .offcanvas--menu {
    display: none;
  }
}

.c-page--resource .offcanvas--menu {
  display: none;
  text-align: center;
  width: 100%;
}

@media (max-width: 1023px) {
  .c-page--resource .offcanvas--menu {
    display: block;
  }
}

.c-page--resource .offcanvas--menu .u-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 7px 20px;
  color: #1B60F4;
  border: 1px solid #1B60F4;
  cursor: pointer;
}

@media (max-width: 480px) {
  .c-profile-tabs {
    left: 30px;
  }
}

.c-profile-minor {
  border-top: 1px solid #4A4A4A;
}

.c-profile-tab {
  border-bottom: 1px solid #C7C7C7;
}

.c-profile-tab li a {
  border: 1px solid #C7C7C7;
  border-bottom: 0;
}

@media only screen and (min-width: 1024px) and (max-width: 1300px) {
  .c-profile-page {
    min-height: 100% !important;
  }
}

.c-profile-page .userprofile_h1_textalign {
  max-width: 390px;
  margin: 0 auto;
  text-align: left;
  font-weight: 600 !important;
  padding-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
}

.c-profile-page label {
  font-size: 16px;
  font-weight: 600;
}

.c-profile-page input {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-profile-page .u-small-text.changepasscolor.changepasserrclass label {
  font-size: 14px;
  font-weight: normal;
  color: #EB0104;
}

.c-profile-page .u-small-text.changepasscolor label {
  font-size: 14px;
  font-weight: normal;
  color: #000;
}

.c-profile-page .u-small-text label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
}

.c-profile-page .wrapper-help {
  display: inline-block;
}

.c-profile-page .c-tooltip-inner .u-text-error label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
}

.c-profile-page .c-tooltip-inner .success-text {
  font-weight: normal;
}

.c-profile-page .c-form-group__passview .c-form-group__icon {
  height: auto !important;
  top: 15px !important;
}

.c-profile-page .c-success-content label[for=msg2] {
  font-weight: normal;
}

@media (max-width: 480px) {
  .c-profile-page form {
    max-width: 390px;
  }
}

.c-profile-success {
  display: block;
  font-weight: normal !important;
}

#optanon {
  position: fixed !important;
  z-index: 9 !important;
  width: 100% !important;
}

@media (max-width: 751px) {
  #optanon #optanon-popup-wrapper {
    height: 80vh;
    overflow-y: auto;
    top: 20px !important;
  }
}

.view-options {
  padding-bottom: 50px;
}

.view-options__logo {
  max-width: 82px;
}

.view-options span {
  margin-left: auto;
}

@media (max-width: 500px) {
  .view-options span {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

.view-options__detail .view-level {
  border-bottom: 1px solid #8B8B8B;
  padding: 30px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.view-options__detail .view-level h5.app-title {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (max-width: 500px) {
  .view-options__detail .view-level h5 {
    margin-bottom: 30px;
  }
}

.view-options__detail .view-level a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  min-width: 96px;
  padding: 0.375rem 2rem;
}

.view-options__detail .view-level a img.download-icon {
  width: 22px;
  margin-bottom: 4px;
  display: inline-block;
}

.view-options__detail .view-level p {
  max-width: 600px;
  font-size: 16px;
  margin-left: auto;
  text-align: right;
}

.view-options__detail .view-level p .view-options__detaillink {
  min-width: auto;
  padding: 0;
}

@media (max-width: 500px) {
  .view-options__detail .view-level p {
    text-align: left;
  }
}

@media only screen and (max-width: 1180px) and (min-width: 1024px) {
  .view-options {
    padding-left: 10px;
  }
}

.download-icon {
  display: none;
}

@media (max-width: 480px) {
  .download-icon {
    width: 24px;
    display: inline-block;
  }
}

.only-view--optinspage.flex {
  margin: 0;
}

.view-optionsresource-title, .resource-Selectfolder--title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}

.view-level-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}

.popup-window--title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0;
}

.view-options__detail .view-link--button {
  font-size: 16px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.view-options__detail .view-level .view-link--button .icon-svg {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .view-options__detail .view-level .view-link--button {
    margin: 40px 0 10px;
  }
}

.c-services--integrate {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 10px;
}

.c-services--integrate p {
  font-size: 14px;
  font-weight: 600;
}

.c-services--heading {
  font-size: 32px;
  font-weight: 600;
}

.c-services--registration .c-radioandcheckbox--cumtom .u-form-label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}

.c-services--registration .c-radioandcheckbox--cumtom .u-form-label em {
  font-style: normal;
}

.c-services--registration .u-text-error {
  font-size: 14px;
}

.c-services--registration .u-form-label {
  font-size: 16px;
}

.c-services--registration .u-form-control {
  font-size: 16px;
  font-weight: 600;
}

.c-services--registration .c-radioandcheckbox--cumtom label {
  font-size: 14px;
}

.c-services--registration .c-radioandcheckbox--cumtom label a {
  font-weight: 600;
  font-size: 14px;
}

.c-services--registration .c-login-form h1 {
  font-size: 20px;
}

.c-services--registration .c-login-form .u-button {
  font-size: 16px;
}

.c-services--registration .c-login-form a {
  font-size: 16px;
}

.c-services--registration #tool-tip-text em {
  font-style: normal;
}

.c-services--registration .c-login-form {
  padding: 1rem 1.3rem;
}

.c-progress-container.c-under--ageuser {
  padding-top: 0;
}

.c-progress-container.c-under--ageuser .c-success-registration-content {
  padding-top: 0;
}

.c-progress-container.c-under--ageuser .c-under--ageusertitle {
  font-size: 32px;
  font-weight: 600;
}

.c-progress-container.c-under--ageuser .c-success-content p {
  font-size: 14px;
  font-weight: 600;
}

.u-clearfix::before, .u-clearfix::after {
  content: "";
  display: table;
}

.u-clearfix::after {
  clear: both;
}

.u-row {
  margin-right: -8px;
  margin-left: -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1440px) {
  .u-row {
    margin-right: -12px;
    margin-left: -12px;
  }
}

@media (min-width: 1920px) {
  .u-row {
    margin-right: -16px;
    margin-left: -16px;
  }
}

.u-container {
  margin: auto;
  max-width: 1220px;
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 1440px) {
  .u-container {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (min-width: 1920px) {
  .u-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.u-container-fluid {
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 1440px) {
  .u-container-fluid {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (min-width: 1920px) {
  .u-container-fluid {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.u-fixed-container {
  max-width: 960px;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width: 965px) {
  .u-fixed-container {
    min-width: 100%;
  }
}

@media (min-width: 1440px) {
  .u-fixed-container {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (min-width: 1920px) {
  .u-fixed-container {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-flex-align-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.u-flex-justify-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-flex-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-flex-justify-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.u-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.u-flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.u-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 480px) {
  .u-flex-at-xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-flex-at-xs-align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-flex-at-xs-align-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .u-flex-at-xs-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-flex-at-xs-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-flex-at-xs-justify-left {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .u-flex-at-xs-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-flex-at-xs-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .u-flex-at-xs-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 768px) {
  .u-flex-at-sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-flex-at-sm-align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-flex-at-sm-align-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .u-flex-at-sm-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-flex-at-sm-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-flex-at-sm-justify-left {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .u-flex-at-sm-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-flex-at-sm-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .u-flex-at-sm-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 767px) {
  .u-flex-at-sm1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-flex-at-sm1-align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-flex-at-sm1-align-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .u-flex-at-sm1-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-flex-at-sm1-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-flex-at-sm1-justify-left {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .u-flex-at-sm1-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-flex-at-sm1-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .u-flex-at-sm1-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 1024px) {
  .u-flex-at-md {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-flex-at-md-align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-flex-at-md-align-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .u-flex-at-md-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-flex-at-md-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-flex-at-md-justify-left {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .u-flex-at-md-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-flex-at-md-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .u-flex-at-md-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 1280px) {
  .u-flex-at-lg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-flex-at-lg-align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-flex-at-lg-align-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .u-flex-at-lg-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-flex-at-lg-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-flex-at-lg-justify-left {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .u-flex-at-lg-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-flex-at-lg-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .u-flex-at-lg-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 1440px) {
  .u-flex-at-xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-flex-at-xl-align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-flex-at-xl-align-baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .u-flex-at-xl-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .u-flex-at-xl-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .u-flex-at-xl-justify-left {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .u-flex-at-xl-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .u-flex-at-xl-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .u-flex-at-xl-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.u-item-align-self-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media only screen and (min-width: 480px) {
  .u-item-at-xs-align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media only screen and (min-width: 768px) {
  .u-item-at-sm-align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media only screen and (min-width: 767px) {
  .u-item-at-sm1-align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media only screen and (min-width: 1024px) {
  .u-item-at-md-align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media only screen and (min-width: 1280px) {
  .u-item-at-lg-align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media only screen and (min-width: 1440px) {
  .u-item-at-xl-align-self-center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.u-table {
  display: table;
}

@media only screen and (min-width: 480px) {
  .u-table-at-xs {
    display: table;
  }
}

@media only screen and (min-width: 768px) {
  .u-table-at-sm {
    display: table;
  }
}

@media only screen and (min-width: 767px) {
  .u-table-at-sm1 {
    display: table;
  }
}

@media only screen and (min-width: 1024px) {
  .u-table-at-md {
    display: table;
  }
}

@media only screen and (min-width: 1280px) {
  .u-table-at-lg {
    display: table;
  }
}

@media only screen and (min-width: 1440px) {
  .u-table-at-xl {
    display: table;
  }
}

.u-table-cell {
  display: table-cell;
}

.u-table-cell-align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-table-cell-vertical-align-middle {
  vertical-align: middle;
}

@media only screen and (min-width: 480px) {
  .u-table-cell-at-xs {
    display: table-cell;
  }
  .u-table-cell-at-xs-align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-table-cell-at-xs-vertical-align-middle {
    vertical-align: middle;
  }
}

@media only screen and (min-width: 768px) {
  .u-table-cell-at-sm {
    display: table-cell;
  }
  .u-table-cell-at-sm-align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-table-cell-at-sm-vertical-align-middle {
    vertical-align: middle;
  }
}

@media only screen and (min-width: 767px) {
  .u-table-cell-at-sm1 {
    display: table-cell;
  }
  .u-table-cell-at-sm1-align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-table-cell-at-sm1-vertical-align-middle {
    vertical-align: middle;
  }
}

@media only screen and (min-width: 1024px) {
  .u-table-cell-at-md {
    display: table-cell;
  }
  .u-table-cell-at-md-align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-table-cell-at-md-vertical-align-middle {
    vertical-align: middle;
  }
}

@media only screen and (min-width: 1280px) {
  .u-table-cell-at-lg {
    display: table-cell;
  }
  .u-table-cell-at-lg-align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-table-cell-at-lg-vertical-align-middle {
    vertical-align: middle;
  }
}

@media only screen and (min-width: 1440px) {
  .u-table-cell-at-xl {
    display: table-cell;
  }
  .u-table-cell-at-xl-align-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .u-table-cell-at-xl-vertical-align-middle {
    vertical-align: middle;
  }
}

.u-vh-full {
  min-height: 100vh;
}

.u-form-group {
  margin-bottom: 20px;
}

.u-form-group.u-form-group--error .u-form-control {
  border: 2px solid #EB0104;
}

.u-form-control {
  height: 48px;
  width: 100%;
  border: 1px solid #8B8B8B;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.75rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  /* Medium Layout: 1920px */
  /* Medium Layout: 1440px */
  /* Tablet Layout: 768px */
  /* Mobile Layout: 576px */
}

@media (min-width: 1920px) and (max-width: 2560px) {
  .u-form-control {
    font-size: 22px;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .u-form-control {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  .u-form-control {
    font-size: 18px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .u-form-control {
    font-size: 16px;
  }
}

.u-form-control.u-form-control__error {
  border: 2px solid #EB0104;
}

p.u-form-control__error {
  color: #EB0104;
}

.u-form-label {
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}

.u-form-label a {
  color: #000;
}

.u-form-label a:hover {
  text-decoration: none;
}

.u-h-full {
  height: 100%;
}

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

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

.u-text-right {
  text-align: right;
}

.u-border-bottom {
  border-bottom: 1px solid #8b8b8b;
}

.u-text-bold {
  font-weight: 600 !important;
}

.u-relative {
  position: relative;
}

p {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  /* Medium Layout: 1920px */
  /* Medium Layout: 1440px */
  /* Tablet Layout: 768px */
  /* Mobile Layout: 576px */
}

@media (min-width: 1920px) and (max-width: 2560px) {
  p {
    font-size: 22px;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  p {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1439px) {
  p {
    font-size: 18px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

.u-small-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
}

.u-smal-text-fixed {
  font-size: 14px;
}

.u-v-middle {
  vertical-align: middle;
}

.u-text-error {
  color: #EB0104;
}

/*Colors*/
.u-text-black {
  color: #000000 !important;
}

/*Visibility*/
.u-hidden {
  display: none !important;
}

.u-visible {
  display: block;
}

.u-visible-inline {
  display: inline;
}

.u-visibile-inline-block {
  display: inline-block;
}

.u-visible-table {
  display: table;
}

.u-visible-table-cell {
  display: table-cell;
}

.u-visible-table-row {
  display: table-row;
}

.u-visible-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-visible-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

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

.u-top-border {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 7px;
  padding: 0;
  background: #0f597c;
  background: linear-gradient(109deg, #0f597c 0%, #da1b2c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#025474', endColorstr='#cb182d', GradientType=1);
}

.u-body-border {
  border-top: solid black 0.5px;
}

.o-page {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media only screen and (max-width: 1023px) {
  .o-page {
    padding-left: 0;
  }
  .o-page .o-page__content {
    left: 0 !important;
    width: calc(100% - 0px) !important;
  }
  .o-page .o-page__sidebar {
    width: 100%;
    bottom: 0;
    height: 60px;
    top: inherit;
    z-index: 2;
    margin-left: 0px !important;
    position: fixed !important;
  }
  .o-page .o-page__sidebar .c-sidebar {
    border-top: 1px solid #333;
  }
  .o-page .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section-item,
  .o-page .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .o-page .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section-item .c-sidebartoggle-label,
  .o-page .o-page__sidebar .c-sidebar .c-sidebar__list-visible-section .c-sidebartoggle-label {
    display: none;
  }
  .o-page .o-page__sidebar .c-sidebar .c-sidebar__list-visible,
  .o-page .o-page__sidebar .c-sidebar .c-language-toggle {
    width: 100%;
    height: 100%;
  }
}

.o-page__content {
  height: calc(100% - 0px);
}

.c-sidebar .c-sidebar__link:hover, .c-sidebar .c-sidebar__link:focus {
  color: #1B60F4;
}

.c-sidebar .c-sidebar__link:hover .c-sidebar__link-name, .c-sidebar .c-sidebar__link:focus .c-sidebar__link-name {
  color: #1B60F4;
}

.c-sidebar input[type="checkbox"]:checked ~ ul#languageMenu {
  display: block;
}

@media only screen and (max-width: 1023px) {
  .c-sidebar input[type="checkbox"]:checked ~ ul#languageMenu {
    bottom: 60px;
    top: inherit;
    left: 50%;
    overflow: auto;
    max-height: 400px;
    margin-left: -90px;
  }
}

.c-sidebar input[type="checkbox"]:checked + .u-button-label:before {
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #1b60f4;
  content: "";
  left: 0;
  top: 0;
}

@media only screen and (max-width: 1023px) {
  .c-sidebar input[type="checkbox"]:checked + .u-button-label:before {
    width: 100% !important;
    height: 4px !important;
    left: 0;
    bottom: 0 !important;
    border-radius: 8px 8px 0 0;
    top: inherit !important;
  }
}

.c-header input[type="checkbox"]:checked ~ ul#languageMenu {
  display: block;
  right: 10px;
}

.c-loginlanguage-toggle label i,
.c-loginlanguage-toggle label span {
  vertical-align: middle;
}

.u-minwidth-150 {
  min-width: 150px;
}

@media (min-width: 1024px) {
  .c-login--page {
    min-height: auto;
  }
  .c-page.c-page-scrolled {
    border-bottom: 1px solid #8B8B8B;
  }
}

.c-login--page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.c-login--page.scroll-in .c-header {
  position: fixed;
  top: 0;
  z-index: 5;
  background-color: #fff;
  height: 60px;
  width: 100%;
}

.c-login--page.scroll-in .c-header::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #8B8B8B;
}

.c-login--page.scroll-in .c-header .c-mee-logo {
  position: absolute;
  width: 40px;
  height: 47px;
  overflow: hidden;
  top: 0;
  left: 50%;
  margin-left: -20px !important;
}

.c-login--page .separator-line {
  position: relative;
}

.c-login--page .separator-line:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #8B8B8B;
}

.c-login--page.c-eplanner.scroll-in .c-header {
  width: calc(100% - 104px);
}

@media only screen and (max-width: 1023px) {
  .c-login--page.c-eplanner.scroll-in .c-header {
    width: 100%;
  }
}

.c-login--page.c-eplanner.scroll-in .u-open .c-header {
  width: calc(100% - 200px);
}

.scroll-in.inside .separator-line {
  display: none;
}

.scroll-in.inside .o-page .c-page.c-more-content {
  position: fixed;
  top: 0;
  z-index: 5;
  background-color: #fff;
  height: 85px;
  width: calc(100% - 104px);
}

@media (max-width: 768px) {
  .scroll-in.inside .o-page .c-page.c-more-content {
    height: 60px;
  }
}

.scroll-in.inside .o-page .c-page.c-more-content::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #8B8B8B;
}

@media only screen and (max-width: 1023px) {
  .scroll-in.inside .o-page .c-page.c-more-content {
    width: calc(100% - 0px);
  }
}

.scroll-in.inside .u-open .c-page.c-more-content {
  width: calc(100% - 200px);
}

@media only screen and (max-width: 1023px) {
  .scroll-in.inside .o-page__content .c-footer {
    padding: 0 0 60px 0;
  }
}

.scroll-in.inside #skiptocontent a {
  position: fixed;
}

@media only screen and (max-width: 1023px) {
  html.js .c-footer {
    padding: 0 0 3.5rem 0 !important;
  }
  html .c-footer {
    padding: 0 !important;
  }
}

body:after {
  display: none;
  content: url("../../images/language-hover.svg") url("../../images/book-hover.svg") url("../../images/profile-hover.svg") url("../../images/logout-hover.svg") url("../../images/course-fallback-h.svg") url("../../images/book-view-h.svg") url("../../images/resource-bank-h.svg") url("../../images/presentation-kit-h.svg") url("../../images/test-generator-h.svg") url("../../images/whiteboard-h.svg") url("../../images/book-view-h.svg") url("../../images/practice-kit-h.svg") url("../../images/presentation-h.svg") url("../../images/resources-h.svg");
}

.u-button, a, a:focus, a:focus img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-sidebar__list-visible a, .c-sidebar__list-visible .u-button {
  -webkit-transition: none;
  transition: none;
}

.login-tooltip--password a:focus > i, .global-message__wrapper > a:focus,
#reg-tooltip a:focus > i, #email-profile-tooltip:focus > i {
  -webkit-box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.5);
  opacity: 0.9;
  border-radius: 20px;
  line-height: initial;
}

#c-sidebartoggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#c-sidebartoggle:focus > i {
  -webkit-box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.1rem rgba(0, 123, 255, 0.5);
  opacity: 0.9;
}

.u-button:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  outline: none;
  text-decoration: none;
  opacity: 0.9;
}

.o-page #checkbox-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.o-page #checkbox-toggle:focus > span {
  text-decoration: underline;
}

a:focus {
  outline: none;
  text-decoration: underline !important;
}

a.u-button:focus {
  text-decoration: none !important;
}

a:focus > img {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  outline: none;
}

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

@media only screen and (min-width: 1400px) and (max-width: 1800px) {
  .c-profile-page {
    min-height: 100%;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1800px) and (-ms-high-contrast: active) {
  .c-profile-page {
    height: 100%;
  }
}

.c-login-container.c-csbanner .c-login-form {
  border: 0;
  padding: 0;
  max-width: 600px;
}

.c-csbanner .message-successfully {
  background-color: #e4f7dc;
  padding: 5px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #6cc04a;
  font-size: 14px;
  color: #1b5d01;
}

.c-csbanner .message-error {
  background-color: #ffecec;
  padding: 5px;
  margin: 10px 0;
  border-radius: 4px;
  border: 1px solid #dc9090;
  font-size: 14px;
  color: #750202;
}

.c-csbanner--wrapper {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  word-break: break-all;
}

.c-csbanner--tools {
  position: absolute;
  width: 100%;
  height: 40px;
}

.c-csbanner--toolsbox {
  border: 0;
  padding: 0 5px;
  border-bottom: 1px solid #ddd;
  height: 41px;
  background-color: #efefef;
}

.c-csbanner--toolsbox .fontStyle {
  padding: 5px;
  border: 0;
  border-right: 1px solid #ddd;
  min-width: 40px;
  min-height: 40px;
  background-color: #efefef;
}

.c-csbanner--toolsbox .fontStyle.editor-bold {
  background-image: url("../../images/bold.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
  height: 40px;
}

.c-csbanner--toolsbox .fontStyle.editor-italic {
  background-image: url("../../images/italic.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
  height: 40px;
}

.c-csbanner--toolsbox .fontStyle.editor-underline {
  background-image: url("../../images/underline.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
  height: 40px;
}

.c-csbanner--toolsbox .fontStyle.editor-link {
  background-image: url("../../images/link.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  height: 40px;
}

.c-csbanner--textarea {
  min-height: 200px;
  padding: 50px 10px 10px 10px;
}

.c-login-container .c-login-form .c-code-error {
  font-size: 14px;
  word-break: break-word;
}

.c-login-container .c-login-form .c-code-error a {
  vertical-align: inherit;
  top: inherit;
}

.c-banner.c-banner--pnone {
  padding: 0;
}

.section-text {
  text-align: center;
  padding: 20px;
}
/*# sourceMappingURL=enhanced.css.map */