/**
 * 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;
    -ms-grid-columns: (1fr)[12];
        grid-template-columns: repeat(12, 1fr);
    margin-left: 0;
    margin-right: 0;
  }
  @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 -10px;
}

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

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

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

.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-button-minimum150 {
  width: 150px;
}

.u-button-minimum210 {
  min-width: 210px;
}

.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
 */
html {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-overflow-scrolling: auto;
  overflow-y: auto;
}

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

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;
  background-color: #fff;
  max-width: 100%;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.tiny {
  font-size: 10px;
  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;
}

/* accessible focus styles */
article, aside, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

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
 */
*,
*: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;
}

.mee-from-eplanner {
  overflow: hidden;
}

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

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

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

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

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

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

.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-chevron {
  background-image: url("../../images/chevron.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-spinnerIntactive {
  background-image: url("../../images/SpinnerIntactive.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-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-error-danger {
  background-image: url("../../images/error-red.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-resource-bank {
  background-image: url("../../images/resource-bank.svg");
  background-position: 0;
}

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

.icon-svg.icon-svg-edit-outline {
  background-image: url("../../images/edit-outline-icons.svg");
  background-position: 0;
}

.icon-svg.icon-svg-edit-filled {
  background-image: url("../../images/edit-filled-icons.svg");
  background-position: 0;
}

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

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

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

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

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

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

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

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

.icon-svg.icon-svg-celebration-white {
  background-image: url("../../images/celebration-white.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");
}

.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%;
}

.u-button {
  color: #fff;
  background-color: #fff;
  padding: 5px 12px;
  display: inline-block;
  text-decoration: none;
  border-radius: 30px;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  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:hover {
  text-decoration: none;
}

.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--default:hover {
  background-color: #fff;
}

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

.u-button--secondary:hover {
  background-color: #4a4a4a;
}

.u-button--success:hover {
  background-color: #0f7b1b;
}

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

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

.u-button--info:hover {
  background-color: #2e4c5a;
}

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

.u-button--dark:hover {
  background-color: #4a4a4a;
}

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

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

.u-button--default {
  background-color: #fff;
  color: #000000;
}

.u-button--primary {
  background-color: #1B60F4;
  color: #fff;
}

.u-button--secondary {
  background-color: #8b8b8b;
  color: #fff;
}

.u-button--success {
  background-color: #16a225;
  color: #fff;
}

.u-button--danger {
  background-color: #e80b1a;
  color: #fff;
}

.u-button--warning {
  background-color: #fdd037;
  color: #fff;
}

.u-button--info {
  background-color: #1e749c;
  color: #fff;
}

.u-button--light {
  background-color: #f6f6f6;
  color: #000000;
}

.u-button--dark {
  background-color: #000000;
  color: #fff;
}

.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-default.disabled {
  border-color: #8B8B8B;
  color: #8B8B8B;
  background-color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}

.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-primary.disabled {
  border-color: #8B8B8B;
  color: #8B8B8B;
  background-color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}

.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-secondary.disabled {
  border-color: #8B8B8B;
  color: #8B8B8B;
  background-color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}

.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-success.disabled {
  border-color: #8B8B8B;
  color: #8B8B8B;
  background-color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}

.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-danger.disabled {
  border-color: #8B8B8B;
  color: #8B8B8B;
  background-color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}

.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-warning.disabled {
  border-color: #8B8B8B;
  color: #8B8B8B;
  background-color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}

.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-info.disabled {
  border-color: #8B8B8B;
  color: #8B8B8B;
  background-color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}

.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-light.disabled {
  border-color: #8B8B8B;
  color: #8B8B8B;
  background-color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}

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

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

.u-button--bordered-dark.disabled {
  border-color: #8B8B8B;
  color: #8B8B8B;
  background-color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}

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

.u-button--primary .u-button--primary:hover {
  background-color: #1B60F4;
}

.u-button--secondary .u-button--secondary:hover {
  background-color: #8b8b8b;
}

.u-button--success .u-button--success:hover {
  background-color: #16a225;
}

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

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

.u-button--info .u-button--info:hover {
  background-color: #1e749c;
}

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

.u-button--dark .u-button--dark:hover {
  background-color: #8b8b8b;
}

.c-block--tabs {
  padding: 3px 12px 3px;
  position: relative;
  overflow: hidden;
}

.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: 3px 3px;
  overflow: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.c-tabs .c-tabslists {
  padding: 3px 3px;
  cursor: pointer;
}

.c-tabs .c-tabslists .tabs-button {
  text-decoration: none;
  white-space: nowrap;
  padding: 2px 10px;
  display: block;
  position: relative;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  line-height: 2;
  border-radius: 4px 4px;
  background-color: #f6f6f6;
  color: #4A4A4A;
}

.c-tabs .c-tabslists .tabs-button:hover {
  color: #004aa7;
}

.c-tabs .c-tabslists .tabs-button:focus {
  text-decoration: none;
}

.c-tabs .c-tabslists .tabs-button.active {
  background-color: #1B60F4;
  color: #fff;
}

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

.c-tabs .c-tabslists.c-tabs--active .tabs-button {
  color: black;
}

.c-tabs .c-tabslists.c-tabs--active .tabs-button::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;
  }
}

.js .c-tabs {
  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;
  }
}

.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;
  /* 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: 100%;
}

.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;
  /* 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: 100%;
}

.c-view--optinswrapper .c-buildplain--view a[href]:focus {
  outline: initial;
}

.c-buildplain--tabsdata {
  position: relative;
}

.c-buildplain--tabsdata::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 15px;
  height: 100%;
  background-color: #C6D7FC;
}

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

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

.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;
  max-width: 175px;
  height: 32px;
}

.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-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: #000000;
  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: #000000;
}

@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-header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.c-header-title .c-back-link, .c-header-title .c-close-link, .c-header-title .c-page__title {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
          flex-grow: 1;
  max-width: 100%;
}

.c-header-title .c-back-link, .c-header-title .c-close-link {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.c-header-title a: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;
}

#fixed-main--header {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 3;
  background-color: #fff;
  border-bottom: 1px solid #8B8B8B;
  padding: 10px 115px;
}

#fixed-main--header .c-back-link {
  left: 24px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
}

#fixed-main--header .c-close-link.c-both-link {
  right: 24px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
}

#fixed-main--header .c-close-link.step1-page {
  left: 24px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
}

@media (min-width: 1024px) {
  #fixed-main--header .c-back-link {
    left: 40px;
  }
  #fixed-main--header .c-close-link.c-both-link {
    right: 40px;
  }
  #fixed-main--header .c-close-link.step1-page {
    left: 40px;
  }
}

@media (max-width: 767px) {
  #fixed-main--header a .icon-svg {
    margin: 0;
  }
  #fixed-main--header .c-back-link {
    left: 15px;
  }
  #fixed-main--header .c-close-link.c-both-link {
    right: 15px;
  }
  #fixed-main--header .c-close-link.step1-page {
    left: 15px;
  }
}

#header-fix-space {
  height: 88px;
}

.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: 15px;
  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: relative;
  min-height: 100%;
  background-color: #fff;
  z-index: 1;
}

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;
}

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

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

#skiptocontent a {
  padding: 6px;
  position: absolute;
  top: -60px;
  left: 0px;
  color: #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  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;
}

.skiplink {
  left: 0px;
  top: 0px;
  outline-color: transparent;
  -webkit-transition: top .1s ease-in;
  transition: top .1s ease-in;
}

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

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

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

@media all and (max-width: 1024px) {
  .c-main-container {
    padding-top: 140px;
  }
}

@media all and (max-width: 767px) {
  .c-main-container {
    padding-top: 130px;
  }
}

.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;
  }
}

.u-minwidth-150 {
  min-width: 150px;
}

.u-button, a, a:focus, a:focus img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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;
}

.changepasscolor {
  color: #000000;
}

.changepasserrclass {
  color: #EB0104;
}

.custom-radio--checkbox input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  top: 0px;
  z-index: 3;
}

.custom-radio--checkbox input[type='checkbox'] + .custom-label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 24px;
  margin: 0;
}

.custom-radio--checkbox input[type='checkbox'] + .custom-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;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  padding: 0;
}

.custom-radio--checkbox input[type='checkbox'] + .custom-label.u-form-control__error:after {
  border-color: #EB0104;
}

.custom-radio--checkbox input[type='checkbox'] + .custom-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;
}

.custom-radio--checkbox input[type='checkbox'].u-form-control__error + .custom-label:after {
  border-color: #EB0104;
}

.custom-radio--checkbox input[type='checkbox']:checked + .custom-label:before {
  display: block;
}

.custom-radio--checkbox input[type='checkbox']:checked + .custom-label:after {
  background-color: #1B60F4;
}

.custom-radio--checkbox input[type='checkbox'] + .checkboxvalidate:after {
  border: 2px solid #EB0104;
}

.custom-radio--checkbox input[type='radio'] + .custom-label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 24px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.custom-radio--checkbox input[type='radio'] + .custom-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;
}

.custom-radio--checkbox input[type='radio'] + .custom-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;
}

.custom-radio--checkbox input[type='radio'].u-form-control__error + .custom-label:after {
  border-color: #EB0104;
}

.custom-radio--checkbox input[type='radio']:checked + .custom-label::before {
  display: block;
}

.o-page__content {
  height: calc(100% - 0px);
}

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");
}

.opacity-0 {
  opacity: 0 !important;
}

.cursor {
  cursor: pointer;
}

.main-container {
  max-width: 1220px;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .main-container {
    padding: 0 24px;
  }
}

@media only screen and (min-width: 1024px) {
  .main-container {
    padding: 0 40px;
  }
}

@media only screen and (max-width: 767px) {
  .main-container {
    padding: 0 15px;
  }
}

.custom-radio--checkbox input[type='radio']:focus + .custom-label:after,
.custom-radio--checkbox input[type='checkbox']:focus + .custom-label:after {
  -webkit-box-shadow: 0 0 0 2px #5f9ff8;
  box-shadow: 0 0 0 2px #5f9ff8;
  outline: 2px solid transparent;
}

.success {
  position: relative;
}

.success-block {
  background-color: #006100;
  padding: 16px 45px 16px 60px;
  position: relative;
  border-radius: 8px;
  margin-bottom: 75px;
  margin-top: -30px;
}

.success-icon {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -12px;
}

.success-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.success-close {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: transparent;
  border: 0;
}

.success-totalteaching span {
  background-color: #002800;
  padding: 0 5px;
  border-radius: 4px;
}

body .c-main-container .success-block .success-close {
  position: absolute;
}

body .c-main-container .success-block .success-close:focus:after {
  left: -7px;
  right: -5px;
}

.card-input-element + .c-book-tile:hover {
  cursor: pointer;
}

.card-input-element:checked + .c-book-tile::before {
  content: "";
  position: absolute;
  border: 2px solid #1B60F4;
  right: -1px;
  top: -1px;
  bottom: -1px;
  left: -1px;
  border-radius: 8px;
}

body.using-mouse [role=button]:focus,
body.using-mouse [role=tabpanel][tabindex="0"]:focus,
body.using-mouse a:focus,
body.using-mouse button:focus,
body.using-mouse summary:focus,
body.using-mouse li:focus,
body.using-mouse input[type="radio"].card-input-element:focus,
body.using-mouse button[type="submit"]:focus,
body.using-mouse .col-section--form .custom-radio--checkbox input[type="checkbox"]:focus,
body.using-mouse .c-buildtable--data .custom-radio--checkbox input[type="checkbox"]:focus,
body.using-mouse .table-navigator .advancer:focus,
body.using-mouse .c-viewplan-wrapper .c-bookshelf-block .c-book-tile:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
}

body.using-mouse [role=button]:focus:after,
body.using-mouse [role=tabpanel][tabindex="0"]:focus:after,
body.using-mouse a:focus:after,
body.using-mouse button:focus:after,
body.using-mouse summary:focus:after,
body.using-mouse li:focus:after,
body.using-mouse input[type="radio"].card-input-element:focus:after,
body.using-mouse button[type="submit"]:focus:after,
body.using-mouse .col-section--form .custom-radio--checkbox input[type="checkbox"]:focus:after,
body.using-mouse .c-buildtable--data .custom-radio--checkbox input[type="checkbox"]:focus:after,
body.using-mouse .table-navigator .advancer:focus:after,
body.using-mouse .c-viewplan-wrapper .c-bookshelf-block .c-book-tile:focus:after {
  display: none;
}

body.using-mouse [type="submit"]:focus,
body.using-mouse [type=submit]:focus,
body.using-mouse input[type="radio"]:focus,
body.using-mouse input[type="checkbox"]:focus,
body.using-mouse input[type="checkbox"],
body.using-mouse .custom-radio--checkbox:focus,
body.using-mouse .col-section--form .custom-radio--checkbox input[type="checkbox"]:focus,
body.using-mouse .c-buildtable--data .custom-radio--checkbox input[type="checkbox"]:focus,
body.using-mouse .table-navigator .advancer:focus,
body.using-mouse .c-viewplan-wrapper .c-bookshelf-block .c-book-tile:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  text-decoration: none;
}

body [role=button]:active:focus,
body [role=tabpanel][tabindex="0"]:active:focus,
body a:active:focus,
body button:active:focus,
body summary:active:focus,
body li:active:focus,
body [role=button]:visited:focus,
body [role=tabpanel][tabindex="0"]:visited:focus,
body a:visited:focus,
body button:visited:focus,
body summary:visited:focus,
body li:visited:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
}

body [role=button]:active:focus:after,
body [role=tabpanel][tabindex="0"]:active:focus:after,
body a:active:focus:after,
body button:active:focus:after,
body summary:active:focus:after,
body li:active:focus:after,
body [role=button]:visited:focus:after,
body [role=tabpanel][tabindex="0"]:visited:focus:after,
body a:visited:focus:after,
body button:visited:focus:after,
body summary:visited:focus:after,
body li:visited:focus:after {
  display: none;
}

body [role=button]:focus,
body [role=tabpanel][tabindex="0"]:focus,
body a:focus,
body button:focus,
body summary:focus,
body li:focus,
body button[type="submit"]:focus,
body input[type="radio"].card-input-element:focus,
body .custom-radio--checkbox:focus,
body .table-navigator .advancer:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
}

body [role=button]:focus:after,
body [role=tabpanel][tabindex="0"]:focus:after,
body a:focus:after,
body button:focus:after,
body summary:focus:after,
body li:focus:after,
body button[type="submit"]:focus:after,
body input[type="radio"].card-input-element:focus:after,
body .custom-radio--checkbox:focus:after,
body .table-navigator .advancer:focus:after {
  content: "";
  position: absolute;
  left: -6px;
  border-radius: 30px;
  display: block;
  border: 4px solid #C6D7FC;
  right: -6px;
  top: -6px;
  bottom: -6px;
}

body .table-navigator .advancer.advancer--right:focus:after {
  border-radius: 0 13px 13px 0;
}

body .table-navigator .advancer.advancer--left:focus:after {
  border-radius: 13px 0 0 13px;
}

body .c-bookshelf-block input[type="radio"].card-input-element:focus:after,
body .c-pagination ul li button:focus:after {
  border-radius: 14px;
}

body .plan-title .c-code-label a.icon-edit--button:focus:after {
  border-radius: 8px;
  top: -14px;
}

body button.tabs-button:focus:after {
  border-radius: 9px;
}

body .c-bookshelf-block .c-book-tile--empty:focus {
  border-color: #8B8B8B;
}

body .c-bookshelf-block .c-book-tile--empty:focus:after {
  border-radius: 14px;
  height: calc(100% + 12px);
  width: calc(100% + 12px);
}

body .c-viewplan-wrapper .c-bookshelf-block .c-book-tile:focus {
  border-color: #8B8B8B;
}

body .c-viewplan-wrapper .c-bookshelf-block .c-book-tile:focus:after {
  border-radius: 14px;
  height: calc(100% + 12px);
  width: calc(100% + 12px);
}

body [type="submit"]:focus,
body [type=submit]:focus {
  -webkit-box-shadow: 0 0 0 0.2rem #C6D7FC;
  box-shadow: 0 0 0 0.2rem #C6D7FC;
  outline: none;
  text-decoration: none;
}

body button[type="submit"]:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
}

body .c-eplancreate--block label.c-bookshelf-block input[type="radio"].input-d-none {
  width: calc(100% - 20px);
  height: 100%;
  border: 0;
  outline: none;
  position: absolute;
  left: 10px;
  top: 0;
  -webkit-appearance: none;
}

body .c-eplancreate--block label.c-bookshelf-block input[type="radio"].input-d-none:focus:after {
  background-color: #fff;
}

body #skiptocontent a:focus:after {
  content: "";
  position: absolute;
  left: -4px;
  border-radius: 0 0 12px 0;
  display: block;
  border: 4px solid #C6D7FC;
  right: -5px;
  bottom: -5px;
  top: -5px;
}

.col-section--form .custom-radio--checkbox input[type="checkbox"],
.c-buildtable--data .custom-radio--checkbox input[type="checkbox"] {
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 1;
  outline: none;
}

.col-section--form .custom-radio--checkbox input[type="checkbox"]:focus:after,
.c-buildtable--data .custom-radio--checkbox input[type="checkbox"]:focus:after {
  content: "";
  position: absolute;
  left: -5px;
  border-radius: 9px;
  display: block;
  border: 4px solid #C6D7FC;
  right: -5px;
  top: -4px;
  bottom: -6px;
}

body .col-section--form .custom-radio--checkbox input[type='checkbox'],
.c-buildtable--data .custom-radio--checkbox input[type='checkbox'] {
  position: absolute !important;
}

#onetrust-banner-sdk {
  opacity: 0;
  display: none;
}

.yourPlanPage, .yourplanClass, .yourplanClass767 {
  padding-top: 85px;
}

.yourPlanPage #fixed-main--header, .yourplanClass #fixed-main--header, .yourplanClass767 #fixed-main--header {
  position: fixed;
}

.yourPlanPage .c-main-container.c-plannerblock-container.main-maincontent, .yourplanClass .c-main-container.c-plannerblock-container.main-maincontent, .yourplanClass767 .c-main-container.c-plannerblock-container.main-maincontent {
  padding: 0;
}

.yourPlanPage .c-main-container.c-plannerblock-container.main-maincontent .main-container, .yourplanClass .c-main-container.c-plannerblock-container.main-maincontent .main-container, .yourplanClass767 .c-main-container.c-plannerblock-container.main-maincontent .main-container {
  padding-top: 80px;
}

.yourplanClass767.checkedlist .c-plannerblock-container .c-sessions--selected {
  position: fixed;
  width: 100%;
  left: 0;
}

.yourplanClass767.checkedlist .c-plannerblock-container .c-sessions--button {
  position: fixed;
  width: 100%;
}

.yourplanClass767.checkedlist .c-plannerblock-container .c-data--table {
  padding-bottom: 200px;
}

@media only screen and (max-width: 767px) {
  .yourplanClass767.checkedlist .c-plannerblock-container .c-data--table {
    padding-bottom: 150px;
  }
}

.yourplanClass767.checkedlist.mee-with--plan .c-plannerblock-container .c-sessions--selected {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  left: 0;
}

.yourplanClass767.checkedlist.mee-with--plan .c-plannerblock-container .c-sessions--button {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
}

.yourplanClass767.checkedlist.mee-with--plan .c-plannerblock-container .c-data--table {
  padding-bottom: 40px;
}

@media only screen and (max-width: 1023px) {
  .yourplanClass767.checkedlist.mee-with--plan .c-plannerblock-container .c-data--table {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .yourPlanPage, .yourplanClass, .yourplanClass767 {
    padding-top: 50px;
  }
  .yourPlanPage .c-main-container.c-plannerblock-container.main-maincontent .main-container, .yourplanClass .c-main-container.c-plannerblock-container.main-maincontent .main-container, .yourplanClass767 .c-main-container.c-plannerblock-container.main-maincontent .main-container {
    padding-top: 40px;
  }
}

.mee-hotbody-corners {
  border-radius: 10px;
  background-color: transparent;
}

.mee-hotbody-corners header.c-page, .mee-hotbody-corners .c-header-title {
  border-radius: 10px;
  border-bottom: 1px solid #fff;
}

@media only screen and (max-width: 1023px) {
  .mee-with--plan.yourplanClass767 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 1023px) {
  .mee-with--plan.checkedlist .c-sessions--selected {
    bottom: 113px;
    padding: 5px;
  }
  .mee-with--plan.checkedlist .c-sessions--button.c-yourplan--button {
    padding: 5px;
    bottom: 57px;
  }
}

.eplan-width1024to1127.mee-with--plan.checkedlist .c-sessions--selected {
  bottom: 66px;
  padding: 10px 5px;
}

.eplan-width1024to1127.mee-with--plan.checkedlist .c-sessions--button.c-yourplan--button {
  padding: 10px 5px;
  bottom: 0;
}

.c-createplan--stepthree .c-plannerblock-wrapper.c-createplanner-laststep {
  padding-bottom: 130px;
}

.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;
  position: absolute;
  bottom: -21px;
  z-index: 2;
  height: 20px;
  width: 100%;
  left: 0;
}

.c-banner h1 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}

.c-banner h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}

@media only screen and (max-width: 1023px) {
  .c-banner {
    bottom: -11px;
    height: 10px;
  }
}

@media only screen and (max-width: 1023px) {
  .c-banner {
    bottom: -6px;
    height: 5px;
  }
}

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

select.u-form-control, input.u-form-control, input:not([disabled]) {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

select.u-form-control:focus, input.u-form-control:focus, input:not([disabled]):focus {
  text-decoration: none;
}

.mep-modal--plan.c-createplan--stepbody {
  display: block;
  padding: 0px;
  background-color: white;
  min-height: 100%;
}

@media (max-width: 767px) {
  .mep-modal--plan.c-createplan--stepbody {
    min-height: inherit;
  }
}

.mep-modal--plan.c-createplan--stepbody .c-header-title#fixed-main--header {
  position: -webkit-sticky;
  position: sticky;
  border-radius: 10px 10px 0px 0px;
}

@media (max-width: 1023px) {
  .mep-modal--plan.c-createplan--stepbody .c-header-title#fixed-main--header {
    border-radius: 0px 0px;
    min-height: initial;
  }
}

@media (max-width: 767px) {
  .mep-modal--plan.c-createplan--stepbody .c-header-title#fixed-main--header {
    min-height: initial;
  }
}

.mep-modal--plan.c-createplan--stepbody .c-plannerblock-container {
  background-color: #fff;
  border-radius: 0px 0px 10px 10px;
  height: calc(100% - 85px);
  padding-top: 100px;
}

@media (max-width: 767px) {
  .mep-modal--plan.c-createplan--stepbody .c-plannerblock-container {
    padding-top: 40px;
  }
}

.mep-modal--plan.c-createplan--stepbody .c-plannerblock-container .c-plannerblock-wrapper.c-view--optinswrapper.c-createplanner-laststep {
  padding-top: 0;
}

.mep-modal--plan.c-createplan--stepbody .c-plannerblock-container .c-plannerblock-wrapper.c-view--optinswrapper.c-createplanner-laststep .only-view--optinspage {
  padding-top: 0;
}

.mep-modal--plan.c-createplan--stepbody .c-plannerblock-container.c-plannerblock-container--pt .c-plannerblock-wrapper.c-view--optinswrapper.c-createplanner-laststep {
  padding-top: 40px;
}

.mep-modal--plan.c-createplan--stepbody .c-plannerblock-container.c-plannerblock-container--pt .c-plannerblock-wrapper.c-view--optinswrapper.c-createplanner-laststep .only-view--optinspage {
  padding-top: 40px;
}

.mep-modal--plan.c-createplan--stepbody .c-plannerblock-container .load-container:before {
  width: calc(100% - 64px);
  height: calc(100% - 221px);
  position: fixed;
  left: 32px;
  top: 163px;
  content: "";
  background-color: white;
  border-radius: 0 0 10px 10px;
}

@media (max-width: 1023px) {
  .mep-modal--plan.c-createplan--stepbody .c-plannerblock-container {
    border-radius: 0px 0px;
    height: calc(100% - 45px);
  }
}

@media (max-width: 1023px) {
  .mep-modal--plan.c-createplan--stepbody {
    padding: 0px;
  }
}

.mep-modal--plan.c-createplan--stepbody.c-createplan--stepthree {
  display: inline-table;
}

.mep-modal--plan.c-createplan--stepbody.c-createplan--stepthree .c-plannerblock-container .c-planstep--footer {
  position: fixed;
}

@media (max-width: 1023px) {
  .mep-modal--plan.c-createplan--stepbody.c-createplan--stepthree .c-plannerblock-container .c-planstep--footer {
    width: calc(100% - 0px);
    bottom: 0px;
    left: 0px;
    border-radius: 0;
  }
}

.mep-modal--plan.c-createplan--stepbody.c-createplan--stepthree .c-createplanner-laststep .c-planstep--footer .c-planstep--buttonblock {
  -webkit-box-shadow: 0px -43px 30px -10px #fff;
          box-shadow: 0px -43px 30px -10px #fff;
}

@media (max-width: 1023px) {
  .mep-modal--plan.c-createplan--stepbody.c-createplan--stepthree .c-createplanner-laststep .c-buildplain--tablecontainer {
    margin-bottom: 0px;
  }
}

.mep-modal--plan.c-createplan--stepbody.c-createplan--stepthree .c-createplanner-laststep .c-buildplain--right .c-selection--block {
  bottom: 46px;
  left: 0px;
  width: calc(100% - 0px);
}

.mep-modal--plan #skiptocontent {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.mep-modal--plan #skiptocontent a {
  opacity: 0;
}

.mep-modal--plan #skiptocontent a:focus {
  opacity: 1;
}

.mep-modal--plan .c-plannerblock-container .c-stepplan--button, .mep-modal--plan .c-plannerblock-container .c-planstep--footer {
  position: -webkit-sticky;
  position: sticky;
}

.mep-modal--plan .c-plannerblock-container .c-plannerblock-wrapper.c-createplanner-laststep .c-stepplan--button, .mep-modal--plan .c-plannerblock-container .c-plannerblock-wrapper.c-createplanner-laststep .c-planstep--footer {
  background-color: #fff;
}

.mep-modal--plan .c-buildplain--right .c-selection--block {
  top: 130px;
}

@media (max-width: 1023px) {
  .mep-modal--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--right .c-selection--block {
    bottom: 45px;
    left: 0px;
    width: calc(100% - 0px);
    top: inherit;
  }
}

@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .mep-modal--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--right .c-selection--block .c-selection--list {
    padding: 5px 0 45px;
  }
  .mep-modal--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock .c-selection--name {
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .mep-modal--plan .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 68px;
    right: 25px;
  }
}

@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .mep-modal--plan .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 50px;
    right: 0;
  }
}

@media (max-width: 1023px) {
  .mep-modal--plan .c-plannerblock-container .c-createplanner-laststep .c-planstep--footer {
    width: calc(100% - 0px);
    position: fixed;
    bottom: 0px;
    background-color: #fff;
    left: 0px;
    z-index: 2;
    overflow: hidden;
    border-radius: 0 0;
  }
  .mep-modal--plan .c-plannerblock-container .c-createplanner-laststep .c-planstep--footer .c-planstep--buttonblock.c-editbtns {
    padding: 6px 20px;
  }
  .mep-modal--plan .c-plannerblock-container .c-createplanner-laststep .c-planstep--footer .c-planstep--buttonblock.c-editbtns .u-button {
    margin: 0;
  }
}

.mep-modal--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--tablecontainer {
  margin-bottom: 0px;
}

@media only screen and (max-width: 1023px) {
  .mep-modal--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--tablecontainer {
    margin-bottom: 175px;
  }
}

@media only screen and (max-width: 767px) {
  .mep-modal--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--tablecontainer {
    margin-bottom: 175px;
  }
}

@media only screen and (max-width: 767px) {
  .mep-modal--plan .c-plannerblock-container .c-stepplan--button {
    padding: 5px 20px;
  }
}

@media only screen and (max-width: 1023px) {
  .mep-modal--plan .c-banner {
    bottom: -11px;
    height: 10px;
  }
}

.mee-with--plan.mee-modal--plan {
  border-radius: 10px 10px;
  background-color: transparent;
}

.mee-with--plan.mee-modal--plan .c-header-title#fixed-main--header {
  border-radius: 10px 10px 0px 0px;
}

.mee-with--plan.mee-modal--plan .c-plannerblock-container {
  position: relative;
  height: calc(100vh - 161px);
}

.mee-with--plan.mee-modal--plan .c-plannerblock-container .c-planstep--footer {
  border-radius: 0 0 10px 10px;
}

.mee-with--plan.mee-modal--plan .c-sessions--button, .mee-with--plan.mee-modal--plan .c-plannerblock-container {
  border-radius: 0px 0px 10px 10px;
  background-color: #fff;
}

.mee-with--plan.mee-modal--plan:before {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: white;
  content: "";
  border-radius: 10px;
}

.mee-with--plan.mee-modal--plan.c-createplan--stepthree .c-plannerblock-container {
  height: calc(100vh - 160px);
  border-radius: 0;
}

@media (max-width: 1023px) {
  .mee-with--plan.mee-modal--plan.c-createplan--stepthree .c-plannerblock-container {
    height: calc(100vh - 127px);
  }
}

@media (max-width: 767px) {
  .mee-with--plan.mee-modal--plan.c-createplan--stepthree .c-plannerblock-container {
    height: calc(100vh - 145px);
  }
}

.mee-with--plan.mee-modal--plan.c-createplan--stepthree .c-plannerblock-container .c-buildplain--tablecontainer {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .mee-with--plan.c-createplan--stepbody .c-header-title#fixed-main--header {
    border-radius: 0px 0px;
    min-height: initial;
  }
}

@media (max-width: 767px) {
  .mee-with--plan.c-createplan--stepbody .c-plannerblock-container {
    padding-top: 50px;
  }
}

@media (max-width: 1023px) {
  .mee-with--plan.c-createplan--stepbody .c-plannerblock-container {
    border-radius: 0px 0px;
    height: calc(100% - 55px);
  }
}

@media (max-width: 767px) {
  .mee-with--plan.c-createplan--stepbody .c-plannerblock-container .c-edit--planname {
    margin-top: 25px;
  }
  .mee-with--plan.c-createplan--stepbody .c-plannerblock-container .c-edit--planname .colblock-mobiles--view .c-form-group__errorfield {
    margin-bottom: 0px;
    padding-bottom: 10px;
  }
}

@media (max-width: 1023px) {
  .mee-with--plan.c-createplan--stepbody {
    padding: 0px;
  }
}

@media (max-width: 1023px) {
  .mee-with--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--right .c-selection--block {
    bottom: 45px;
    left: 0px;
    width: calc(100% - 0px);
    top: inherit;
  }
}

@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .mee-with--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--right .c-selection--block .c-selection--list {
    padding: 5px 0 45px;
  }
  .mee-with--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock .c-selection--name {
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .mee-with--plan .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 68px;
    right: 25px;
  }
}

@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .mee-with--plan .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 50px;
    right: 0;
  }
}

@media (max-width: 1023px) {
  .mee-with--plan .c-plannerblock-container .c-createplanner-laststep .c-planstep--footer {
    width: calc(100% - 0px);
    position: fixed;
    bottom: 0px;
    background-color: #fff;
    left: 0px;
    z-index: 2;
    overflow: hidden;
    border-radius: 0 0;
  }
  .mee-with--plan .c-plannerblock-container .c-createplanner-laststep .c-planstep--footer .c-planstep--buttonblock.c-editbtns {
    padding: 6px 20px;
  }
  .mee-with--plan .c-plannerblock-container .c-createplanner-laststep .c-planstep--footer .c-planstep--buttonblock.c-editbtns .u-button {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .mee-with--plan .c-plannerblock-container .c-createplanner-laststep .c-buildplain--tablecontainer {
    margin-bottom: 175px;
  }
}

@media only screen and (max-width: 767px) {
  .mee-with--plan .c-plannerblock-container .c-stepplan--button {
    padding: 5px 20px;
  }
}

@media only screen and (max-width: 1023px) {
  .mee-with--plan .c-banner {
    bottom: -11px;
    height: 10px;
  }
}

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-regular.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("../fonts/open-sans-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-regular.woff2") format("woff2"), url("../fonts/open-sans-regular.woff") format("woff"), url("../fonts/open-sans-regular.ttf") format("truetype"), url("../fonts/open-sans-regular.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/open-sans-italic.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url("../fonts/open-sans-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-italic.woff2") format("woff2"), url("../fonts/open-sans-italic.woff") format("woff"), url("../fonts/open-sans-italic.ttf") format("truetype"), url("../fonts/open-sans-italic.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-600.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"), url("../fonts/open-sans-600.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-600.woff2") format("woff2"), url("../fonts/open-sans-600.woff") format("woff"), url("../fonts/open-sans-600.ttf") format("truetype"), url("../fonts/open-sans-600.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-600italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/open-sans-600italic.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans SemiBold Italic"), local("OpenSans-SemiBoldItalic"), url("../fonts/open-sans-600italic.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-600italic.woff2") format("woff2"), url("../fonts/open-sans-600italic.woff") format("woff"), url("../fonts/open-sans-600italic.ttf") format("truetype"), url("../fonts/open-sans-600italic.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-700italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/open-sans-700italic.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url("../fonts/open-sans-700italic.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-700italic.woff2") format("woff2"), url("../fonts/open-sans-700italic.woff") format("woff"), url("../fonts/open-sans-700italic.ttf") format("truetype"), url("../fonts/open-sans-700italic.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-700.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("../fonts/open-sans-700.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-700.woff2") format("woff2"), url("../fonts/open-sans-700.woff") format("woff"), url("../fonts/open-sans-700.ttf") format("truetype"), url("../fonts/open-sans-700.svg#OpenSans") format("svg");
  /* Legacy iOS */
}

.c-page {
  padding: 10px 40px;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 2;
  background-color: #fff;
  border-bottom: 1px solid #8B8B8B;
  min-height: 85px;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
}

@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-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: 1439px) {
  .c-page {
    padding: 10px 40px;
  }
}

@media (max-width: 1023px) {
  .c-page {
    padding: 10px 24px;
  }
}

.c-book-tile-container {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.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;
  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;
  background: url(../images/SpinnerIntactive.svg) no-repeat center;
}

.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-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;
}

.c-book-tile .c-book-tile__footer {
  border-radius: 0 0 7px 7px;
  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 .c-book-tile__footer .c-eplanbook--name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.c-book-tile .c-book-tile__footer .c-eplanbook--lavel {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .c-book-tile .c-book-tile__footer {
    border-radius: 0 7px 7px 0px;
  }
}

.c-book-tile:hover, .c-book-tile:active, .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, .c-book-tile .active .c-book-tile__footer {
  background: #1B60F4;
  color: #fff;
}

.c-book-tile:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
  border-color: transparent;
}

.c-book-tile:focus::after {
  display: block;
}

.c-book-tile.c-book-tile--empty {
  padding: 4rem 1rem 4rem;
}

.c-book-tile.c-book-tile--empty p span {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
}

.c-book-tile.c-book-tile--empty .icon-svg-add-book {
  height: 45px;
  width: 45px;
  margin: 20px auto 12px;
}

.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: 40px;
}

.c-bookshelf-block .c-book-tile[href]:focus {
  text-decoration: none;
}

.c-title--createplan {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.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, .c-pagination ul li button {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  color: #000000;
  margin: 0 5px;
  border-radius: 8px;
  text-align: center;
  line-height: 32px;
  border: 0;
  font-size: 16px;
  font-weight: 600;
}

.c-pagination ul li a.active, .c-pagination ul li a:hover, .c-pagination ul li a:focus, .c-pagination ul li a:active, .c-pagination ul li button.active, .c-pagination ul li button:hover, .c-pagination ul li button:focus, .c-pagination ul li button:active {
  background: #1B60F4;
  color: #fff;
  text-decoration: none;
}

.c-eplanselect--block {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.c-createplanname {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}

.c-title--32 {
  font-size: 32px;
}

@media (max-width: 767px) {
  .c-viewplan-wrapper.c-eplancreate--block .c-book-tile__footer .c-eplanbook--lavel {
    color: #4A4A4A;
  }
}

.c-createplan--viewplan .c-book-tile--empty {
  padding: 73px 80px;
}

@media (max-width: 1023px) {
  .c-createplan--viewplan .c-book-tile--empty {
    padding: 40px 18px;
  }
}

@media (max-width: 767px) {
  .c-createplan--viewplan .c-book-tile--empty {
    padding: 35px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-createplan--viewplan .c-book-tile--empty .c-blankadd--text {
    display: none;
  }
  .c-createplan--viewplan .c-book-tile--empty .c-blankadd--icon {
    margin-right: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-createplan--viewplan .c-book-tile--empty .c-blankadd--icon .icon-svg-add-book {
    height: 24px;
    width: 24px;
    margin: 0;
  }
  .c-createplan--viewplan .c-book-tile--empty .c-title--createplan {
    font-size: 16px;
  }
}

.active .c-book-tile__footer {
  background: #1B60F4;
  color: #fff;
  border-top-color: #1B60F4;
}

.choosecourselevel .c-bookshelf-block .c-book-tile::after {
  display: none;
}

@media only screen and (max-width: 767px) {
  .choosecourselevel .c-book-tile-container.c-eplancreate--block.c-eplanstep--block {
    padding-bottom: 25px;
  }
}

.c-bookshelf-block .c-blankadd--text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.c-bookshelf-block .c-book-tile .c-eplanbook--name {
  word-break: break-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-container {
  padding: 30px 50px;
}

.backbtn {
  background-image: url(../images/back.svg);
  background-repeat: no-repeat;
  display: inline-block;
  padding-left: 25px;
  background-position: 0px 3px;
  color: #000000;
  font-weight: 600;
}

.backbtn:hover {
  text-decoration: none;
  color: #000000;
}

.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: #000000;
  -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: #000000;
}

.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;
}

.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;
}

.empty-book-img {
  background: url(../images/add-book.svg) no-repeat center;
  min-height: 70px;
  margin-bottom: 0;
}

.empty-book-section {
  text-decoration: none;
}

.book {
  background: url(../images/SpinnerIntactive.svg) no-repeat center;
  max-width: 220px;
  margin: 0 auto;
  border: 1px solid #8B8B8B;
  border-radius: 8px;
  overflow: hidden;
  background-color: #F0F0F0;
}

.book img {
  width: 100%;
}

@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: 24px;
  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;
  -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;
  }
  .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%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.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;
  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;
}

@media (max-width: 767px) {
  .c-level-list__utility {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
    -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;
    margin-top: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    margin-right: 5px;
  }
}

@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;
  }
}

.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;
}

.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 .c-level-title, .c-level-bookinfo .c-level-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.c-level .c-level-bookinfo__title, .c-level-bookinfo .c-level-bookinfo__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.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;
  line-height: 1.5;
}

.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 40px;
}

@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 {
  position: relative;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .c-back-link {
    width: 40px !important;
  }
  .c-back-link .icon-svg {
    top: 0;
  }
  .c-back-link .c-desktop-text {
    display: none;
  }
}

.c-close-link {
  color: #1A051D;
  text-decoration: none;
  font-weight: 600;
  float: right;
  width: 90px;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.c-close-link .icon-svg {
  position: relative;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .c-close-link {
    width: 40px;
  }
  .c-close-link .icon-svg {
    top: 0;
  }
  .c-close-link .c-desktop-text {
    display: none;
  }
}

.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;
}

.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) {
  .flex-col.c-flex--leftcol:first-child::before {
    display: none;
  }
}

.c-coursesuccess--activation .u-smal-text-fixed {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  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 .progress-step {
  position: relative;
  padding: 0rem 7rem;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  width: 40px;
  height: 40px;
  counter-increment: stepno;
  list-style: none;
}

@media (max-width: 767px) {
  .c-progress-container .c-progress-tracker .progress-step {
    width: 32px;
    height: 32px;
    padding: 0rem 2.5rem;
  }
}

.c-progress-container .c-progress-tracker .progress-step: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 .progress-step:after {
    bottom: 12px;
  }
}

.c-progress-container .c-progress-tracker .progress-step:last-child {
  margin-right: 0;
}

.c-progress-container .c-progress-tracker .progress-step:last-child:after {
  display: none;
}

.c-progress-container .c-progress-tracker .progress-step .progress-step--label {
  display: inline-block;
  color: #000000;
  cursor: default;
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  width: 100%;
}

@media (max-width: 767px) {
  .c-progress-container .c-progress-tracker .progress-step .progress-step--label {
    height: 32px;
  }
}

.c-progress-container .c-progress-tracker .progress-step .progress-step--label:hover, .c-progress-container .c-progress-tracker .progress-step .progress-step--label:visited, .c-progress-container .c-progress-tracker .progress-step .progress-step--label:active, .c-progress-container .c-progress-tracker .progress-step .progress-step--label:focus {
  text-decoration: none;
  color: #000000;
}

.c-progress-container .c-progress-tracker .progress-step .progress-step--label: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 .progress-step .progress-step--label:before {
    height: 32px;
    width: 32px;
    margin-left: -16px;
  }
}

.c-progress-container .c-progress-tracker .progress-step .progress-step--label .progress-text {
  font-size: 14px;
  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 .progress-step .progress-step--label .progress-text {
    display: none;
  }
}

.c-progress-container .c-progress-tracker .progress-step .progress-step--label .progress-text:before {
  content: counter(stepno) ". ";
  font-weight: bold;
  position: absolute;
  left: -18px;
}

.c-progress-container .c-progress-tracker .progress-step.is-active .progress-step--label::before {
  border-color: #1B60F4;
}

.c-progress-container .c-progress-tracker .progress-step.is-complete::after {
  background: #1B60F4;
}

.c-progress-container .c-progress-tracker .progress-step.is-complete .progress-step--label: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-weight: 600;
  line-height: 1.5;
  text-align: center;
  display: none;
  position: absolute;
  width: 100%;
  top: -50px;
}

@media (max-width: 767px) {
  .c-progress-container .mob-progress-text.is-active {
    display: block;
  }
}

.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: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.c-success-registration-content .u-button {
  min-width: 208px;
}

.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;
}

.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;
  }
}

.view-options__logo {
  max-width: 82px;
}

.view-options .icon-edit--button {
  margin-left: auto;
}

@media (max-width: 500px) {
  .view-options .icon-edit--button {
    display: inline-block;
    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: 16px;
  margin-bottom: 4px;
  display: inline-block;
}

.view-options__detail .view-level p {
  max-width: 600px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-left: auto;
  text-align: right;
}

@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;
  }
}

.u-button.u-button-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.u-button.u-button-flex .icon-svg {
  margin: 0 5px;
}

.u-button.u-flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.table-scroll {
  position: relative;
  width: 100%;
  z-index: 1;
  border: 1px solid #8B8B8B;
  border-radius: 10px;
  overflow-y: hidden;
  overflow-x: auto;
}

.table-scroll table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.table-wrap {
  position: relative;
}

.table-scroll th,
.table-scroll td {
  padding: 15px 15px;
  border: 1px solid #8B8B8B;
  background: #fff;
  vertical-align: top;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border-top: 0;
}

.table-scroll tbody td {
  border-right: 0;
  border-left: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}

.table-scroll tbody td.more-resource {
  padding-bottom: 0;
  border-bottom: 0;
}

.table-scroll tbody tr:last-child td, .table-scroll tbody tr:last-child th {
  border-bottom: 0;
}

.table-scroll thead th:last-child {
  border-right: 0;
}

.table-scroll thead th {
  background: #fff;
  color: #000000;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  vertical-align: middle;
  border-top: 0;
  white-space: nowrap;
  border-left: 0;
  border-right: 0;
  text-align: left;
}

.table-scroll thead th:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #8B8B8B;
}

.table-scroll thead th :first-child:after {
  position: absolute;
  content: "";
  left: inherit;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #8B8B8B;
  right: -1px;
}

/* safari and ios need the tfoot itself to be position:sticky also */
.table-scroll tfoot,
.table-scroll tfoot th,
.table-scroll tfoot td {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  background: #666;
  color: #fff;
  z-index: 4;
}

/* testing links*/
.table-scroll th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 2;
  background: #f6f6f6;
  border-left: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.table-scroll th:first-child:after {
  position: absolute;
  content: "";
  right: -1px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #8B8B8B;
}

.table-scroll th:first-child:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #8B8B8B;
}

.table-scroll th:first-child .custom-radio--checkbox input[type='checkbox'] + .custom-label {
  top: 6px;
}

.table-scroll thead th:first-child,
.table-scroll tfoot th:first-child {
  z-index: 5;
  background: #f6f6f6;
  -webkit-box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.5);
}

.col-section--wrapper {
  width: 126px;
  display: block;
  text-align: center;
}

.col-section--block {
  width: 60px;
  display: inline-block;
}

.col-section--block .col-section--block__labelname {
  position: absolute;
  left: -50px;
  top: 0;
  font-size: 14px;
  font-weight: 600;
}

.col-section--form {
  width: 60px;
  display: inline-block;
}

@media (max-width: 767px) {
  .col-section--form {
    width: auto;
  }
}

.col-section--form .custom-radio--checkbox {
  top: 1px;
}

.col-section--form .custom-radio--checkbox input[type="image"] {
  width: 20px;
  height: 20px;
}

.resource-panel {
  position: relative;
}

.resource-panel td {
  background-color: #f6f6f6;
}

.resource-panel--row {
  border: 1px solid #8B8B8B;
  border-radius: 6px;
  overflow: hidden;
}

.resource-panel--row td {
  border: 0;
  background-color: #f6f6f6;
}

.resource-panel--row td strong {
  font-weight: 600;
}

.resource-panel--row .resource-panel--button .u-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 160px;
}

.resource-panel--row + .resource-panel--row {
  margin-top: 10px;
}

.table-navigator {
  position: absolute;
  right: 0;
}

.table-navigator .advancer {
  height: 64px;
  width: 64px;
  background-color: rgba(246, 246, 246, 0.8);
  -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);
  cursor: pointer;
  border: 1px solid #8B8B8B;
}

.table-navigator .advancer--left {
  border-radius: 8px 0 0 8px;
  margin-right: 15px;
}

.table-navigator .advancer--left .icon::before {
  content: "";
  background-image: url(../../images/chevron-next.svg);
  background-repeat: no-repeat;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
  left: 11px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.table-navigator .advancer--right {
  border-radius: 0 8px 8px 0;
}

.table-navigator .advancer--right .icon {
  position: relative;
  width: 30px;
}

.table-navigator .advancer--right .icon::before {
  content: "";
  background-image: url(../../images/chevron-next.svg);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
  left: 11px;
}

.table-navigator.fixed-nav {
  position: fixed;
  bottom: 32%;
  z-index: 5;
}

.only-view--optinspage .view-options h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.only-view--optinspage .view-options .view-options__detail h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.only-view--optinspage .view-options .icon-svg-edit-outline {
  cursor: pointer;
}

.only-view--optinspage .view-options--plan .view-options--wrapper {
  border-bottom: 1px solid #8B8B8B;
}

@media (max-width: 767px) {
  .only-view--optinspage .view-options--plan .view-options--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.only-view--optinspage .view-options--plan .view-options--wrapper.u-border-none {
  border: none;
}

@media (max-width: 767px) {
  .only-view--optinspage .view-options--plan .view-options--wrapper > :last-child {
    margin: 0 auto;
  }
}

.only-view--optinspage .view-options--plan__details .plan-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.only-view--optinspage .view-options--plan__details .plan-title .c-code-label {
  font-size: 20px;
  margin-right: 10px;
  word-break: break-all;
}

@media (max-width: 767px) {
  .only-view--optinspage .view-options--plan__details .plan-title .c-code-label {
    font-size: 16px;
    padding-right: 40px;
    margin: 0;
  }
  .only-view--optinspage .view-options--plan__details .plan-title .c-code-label .icon-edit--button {
    right: -10px;
    position: absolute;
    top: 0px;
  }
}

.only-view--optinspage .view-options--plan__details .plan-title .icon-svg {
  margin: 0 1rem;
}

.only-view--optinspage .view-options--plan__details.total-ours .description {
  font-size: 14px;
  max-width: 550px;
}

.only-view--optinspage .view-options--plan .u-flex-inline {
  font-size: 16px;
}

.c-data-mobileonly, .c-head-contenttitle__mobile {
  display: none;
}

.c-head-contenttitle__desktop {
  display: block;
}

.c-data-desktoponly {
  display: table;
}

.c-plantitle--block {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  padding: 0 15px;
}

.c-book-tile__mobile, .mobiles-img--view {
  display: none;
}

.icon-edit--button {
  border: 0;
  background-color: transparent;
  padding: 0;
  width: 24px;
  height: 24px;
  margin: 0 15px 0 10px;
}

.icon-edit--button .icon-svg {
  margin: 0;
}

.c-view--optinswrapper .only-view--optinspage .view-options--plan__details .plan-title .icon-svg {
  margin: 0;
}

.c-sessions--selected {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-box-shadow: 0px -30px 30px #fff;
          box-shadow: 0px -30px 30px #fff;
}

.c-sessions--button {
  border-top: 1px solid #8B8B8B;
  padding: 20px;
}

.c-data--table {
  padding-top: 90px;
  display: block;
  padding-bottom: 40px;
}

.list-group {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item:last-child {
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item-action:focus, .list-group-item-action:hover {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* ================== Modal Css Start Here ================== */
.c-selection--hoursection {
  display: none;
}

.overlay {
  display: none;
}

/* ================== Modal Css End Here ================== */
.table-scroll tr:last-child th:first-child:before {
  display: none;
}

.visually-hidden {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

.c-maximum--plansblock {
  padding: 12px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f0f0f0;
}

@media (max-width: 767px) {
  .c-maximum--plansblock {
    min-height: 90px;
  }
}

.c-createplan--stepbody {
  padding-top: 85px;
}

.c-createplan--stepbody #fixed-main--header.c-header-title {
  position: fixed;
  min-height: 85px;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (max-width: 767px) {
  .c-createplan--stepbody {
    padding-top: 50px;
  }
}

.c-buildplain--tablecontainer {
  margin-bottom: 100px;
}

.c-buildplain--tableblock {
  border: 1px solid #8B8B8B;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}

.c-buildtable--title {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 30px;
}

.c-buildtable--title.c-moretable--title {
  padding-top: 80px;
}

.c-buildplain--tableblock.c-buildplain--modified table.div-table {
  margin-bottom: 50px;
}

.c-buildplain--tableblock.c-buildplain--modified table.div-table:last-child {
  margin-bottom: 0;
}

.div-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.div-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  clear: both;
}

.div-table-row:nth-of-type(odd) {
  background-color: #F6F6F6;
}

.div-table-row:nth-of-type(even) {
  background-color: #fff;
}

.div-table-row.c-buildtable--heading {
  background-color: #fff;
}

.div-table-col {
  padding: 20px 30px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #8B8B8B;
}

.c-buildtable--heading .div-table-col {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #8B8B8B;
  text-align: left;
}

.c-buildtable--heading .c-head--col2 {
  font-weight: 600;
}

.c-buildplain--tableblock .div-table .div-table-row.c-buildtable--data .custom-radio--checkbox {
  top: 1px;
  z-index: 0;
}

.c-buildplain--tableblock .div-table .div-table-row.c-buildtable--data .custom-radio--checkbox .custom-label {
  height: 16px;
}

.c-buildplain--tableblock .div-table .div-table-row.c-buildtable--data .custom-radio--checkbox .custom-label:before {
  top: 1px;
}

.c-buildplain--tableblock .div-table .div-table-row.c-buildtable--data .custom-radio--checkbox input[type="image"] {
  width: 20px;
  height: 20px;
}

.c-buildplain--tableblock .div-table .div-table-row.c-buildtable--data .c-data--col2 {
  font-weight: 400;
}

.c-buildplain--tableblock .div-table:last-child .div-table-row.c-buildtable--data:last-child .div-table-col {
  border: 0;
}

.c-buildtable--button .div-table-row {
  background-color: #fff;
}

.c-buildtable--button .div-table-row .div-table-col {
  padding-bottom: 0;
  padding-top: 40px;
}

.c-tabplan-heading {
  font-size: 20px;
  font-weight: 600;
}

.c-tabplandata-heading {
  font-size: 18px;
  font-weight: 600;
}

.c-buildplain--view {
  margin: 0;
}

.c-buildplain--view .c-buildplain--left, .c-buildplain--view .c-buildplain--right {
  padding: 0;
}

.c-buildplain--right {
  position: relative;
}

.c-buildplain--right .c-selection--block {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  left: 0px;
}

.c-selection--block {
  max-width: 160px;
  margin: 0 auto;
}

.c-selection--block .c-selection--sessionname {
  font-size: 20px;
  color: #1A051D;
  padding: 12px;
  font-weight: normal;
  border-bottom: 1px solid #8B8B8B;
  padding-top: 0;
}

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

.c-selection--block .c-selection--list .c-selection--listblock {
  padding: 15px 0;
  border-bottom: 1px solid #8B8B8B;
}

.c-selection--block .c-selection--list .c-selection--listblock .c-selection--icon {
  width: 20px;
  height: 20px;
  display: block;
  float: left;
  margin-right: 10px;
}

.c-selection--block .c-selection--list .c-selection--listblock .c-selection--name {
  display: block;
  overflow: hidden;
  font-size: 20px;
  font-weight: 600;
}

.c-selection--block .c-selection--list .c-selection--listblock .c-selection--name .c-selection--subname {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.c-selection--block .c-selection--list .c-selection--listblock:last-child {
  border: 0;
}

.c-selection--block .c-selection--button {
  padding: 10px 0 0 0;
}

.c-selection--block .c-selection--button .u-button {
  width: 100%;
  margin-bottom: 20px;
}

.c-buildtable--clearbtn .div-table-col {
  border: 0;
}

.c-error-validation {
  text-align: center;
  padding: 15px 2px;
}

.c-mobileview .c-error-validation {
  padding: 0px 2px 10px 2px;
}

.slide-mobile--icon, .hours-mobile {
  display: none;
}

.c-tabplan-heading__desktop {
  display: block;
}

.load-container {
  width: 136px;
  height: 136px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -68px;
  margin-top: -68px;
  z-index: 5;
}

.load-container:before {
  width: 100%;
  height: calc(100% - 105px);
  position: fixed;
  left: 0;
  top: 105px;
  content: "";
  background-color: white;
}

.load-container .loadertext {
  width: 270px;
  color: #000000;
  z-index: 111;
  position: absolute;
  font-size: 16px;
  font-weight: 600;
  margin-left: -135px;
  left: 50%;
  top: -80px;
}

.load-container .loader {
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load 1.1s infinite ease;
  animation: load 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.load-container img {
  position: relative;
}

.none {
  display: none;
}

.c-deleteplan, .c-editconfirmation, .c-exportplan, .c-sessionexpired {
  padding: 0 0px 80px 0px;
  font-size: 16px;
  text-align: center;
  position: relative;
}

.c-deleteplan__title, .c-editconfirmation__title, .c-exportplan__title, .c-sessionexpired__title {
  padding: 8px 0;
  font-size: 20px;
}

.c-deleteplan__title2, .c-editconfirmation__title2, .c-exportplan__title2, .c-sessionexpired__title2 {
  padding: 8px 0 0;
  font-size: 20px;
}

.c-deleteplan__details, .c-editconfirmation__details, .c-exportplan__details, .c-sessionexpired__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-deleteplan--msg, .c-editconfirmation--msg, .c-exportplan--msg, .c-sessionexpired--msg {
  margin: 0 auto;
  max-width: 560px;
}

@media (max-width: 767px) {
  .c-deleteplan--msg, .c-editconfirmation--msg, .c-exportplan--msg, .c-sessionexpired--msg {
    padding-bottom: 8px;
  }
}

.c-deleteplan--link, .c-editconfirmation--link, .c-exportplan--link, .c-sessionexpired--link {
  color: #0000FF;
  text-decoration: underline;
}

.c-deleteplan--link:focus::after, .c-deleteplan--link:focus::before, .c-editconfirmation--link:focus::after, .c-editconfirmation--link:focus::before, .c-exportplan--link:focus::after, .c-exportplan--link:focus::before, .c-sessionexpired--link:focus::after, .c-sessionexpired--link:focus::before {
  display: none;
}

.c-deleteplan--link:hover, .c-deleteplan--link:active, .c-deleteplan--link:focus, .c-editconfirmation--link:hover, .c-editconfirmation--link:active, .c-editconfirmation--link:focus, .c-exportplan--link:hover, .c-exportplan--link:active, .c-exportplan--link:focus, .c-sessionexpired--link:hover, .c-sessionexpired--link:active, .c-sessionexpired--link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  text-decoration: underline !important;
}

.c-sessionexpired {
  padding-bottom: 0;
}

.c-editbtns .u-button {
  min-width: 210px;
}

@media (min-width: 768px) {
  .c-editbtns .u-button--primary {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .c-editbtns .u-button--primary {
    margin-top: 20px;
  }
}

.c-editbtns.c-planstep--buttonblock .u-button {
  min-width: 210px;
}

@media (max-width: 767px) {
  .c-editbtns.c-planstep--buttonblock .u-button {
    min-width: 138px;
  }
}

/* Plan footer css start here */
.c-planstep--footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: #fff;
  left: 0;
  z-index: 2;
}

.c-planstep--buttonblock {
  border: 0;
}

.c-plannerblock-container .c-sessions--selected {
  position: -webkit-sticky;
  position: sticky;
  bottom: 65px;
  z-index: 1;
  background-color: #fff;
  padding: 10px 5px;
}

.c-plannerblock-container .c-sessions--button {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1;
  background-color: #fff;
  padding: 10px 5px;
}

.c-plannerblock-container--pt {
  padding-top: 100px;
}

@media only screen and (max-width: 767px) {
  .c-plannerblock-container--pt {
    padding-top: 50px;
  }
}

.c-plannerblock-container .c-stepplan--button {
  position: fixed;
  width: 100%;
  border: 0;
  padding: 20px;
}

.plan-name--created {
  font-size: 20px;
  font-weight: 600;
  padding: 0 10px;
}

#activationCode_id,
#edittitle {
  padding-right: 35px;
}

.u-minimum--with120 {
  min-width: 120px;
  display: block;
}

.c-mdatda--th.c-mdatda--th2 .u-minimum--with120 {
  min-width: 120px;
  display: block;
}

.c-mdatda--th.c-mdatda--th2 .u-minimum--with120:after {
  display: none;
}

.c-common-fixed-footer.successpage {
  background: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.yourplanClass {
  display: block;
}

.yourplanClass .c-header-title#fixed-main--header {
  position: fixed;
}

.view-options--plan__details > .plan-title .c-code-label {
  width: 100%;
  display: block;
}

.c-selection--list {
  display: none;
}

.js .c-selection--list, .js .c-sessions--selected {
  display: block;
}

@media only screen and (min-width: 768px) {
  .c-plannerblock--logo {
    display: none;
  }
  .c-ddata-none {
    display: none;
  }
  body .c-selection--list .c-selection--listblock#mobilePopup {
    display: block !important;
  }
}

@media only screen and (max-width: 1439px) and (min-width: 768px) {
  .c-yourplanblock--right, .colblock-mobiles--view, .c-plannerblock--right {
    padding-left: 20px;
  }
}

@media (max-width: 1023px) {
  .c-buildplain--tablecontainer {
    margin-bottom: 260px;
  }
  .main-list--group {
    padding-left: 24px;
    padding-right: 24px;
  }
  .c-buildplain--right {
    width: 100%;
    background-color: #fff;
    z-index: 3;
  }
  .c-buildplain--right .c-selection--block {
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: inherit;
    left: 0px;
    bottom: 75px;
    padding: 0 24px;
    background-color: #fff;
    border-top: 1px solid #8B8B8B;
    border-bottom: 1px solid #8B8B8B;
  }
  .c-buildplain--right .c-selection--block .c-selection--list {
    width: 67.777%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock {
    width: 50%;
    border: 0;
  }
  .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock .c-error-validation.c-code-error {
    position: absolute;
    padding: 5px 24px;
    left: 0;
    bottom: 15px;
    width: 100%;
  }
  .c-buildplain--right .c-selection--block .c-selection--button {
    text-align: center;
    margin: 0 -24px;
    border-top: 1px solid #8b8b8b;
    padding-top: 0px;
  }
  .c-buildplain--right .c-selection--block .c-selection--button .u-button--bordered-dark {
    position: absolute;
    bottom: 0px;
    width: 30%;
    right: 24px;
  }
  .c-buildplain--right .c-selection--block .c-selection--button .u-button--primary {
    width: auto;
    min-width: 200px;
  }
  .c-buildplain--right .c-selection--sessionname {
    display: none;
  }
  .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    position: fixed;
    bottom: 98px;
    right: 24px;
    z-index: 4;
    width: 25%;
  }
  .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear button {
    width: 100%;
  }
  .c-data--table {
    padding: 90px 0 40px;
  }
  .c-errorview .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 98px;
  }
  .c-errorview.remove-error--msg .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 68px;
  }
}

@media only screen and (max-width: 767px) {
  .c-plannerblock-container .c-sessions--button.c-stepplan--editbtn {
    border-top: 1px solid #8B8B8B;
  }
  .c-buildplain--right .c-selection--block {
    position: fixed;
    bottom: 46px;
    top: inherit;
    background-color: #fff;
    padding: 0;
    border-top: 1px solid #8B8B8B;
  }
  .c-buildplain--right .c-selection--block .c-selection--list {
    width: 100%;
    display: block;
    position: relative;
    padding: 5px 0 45px;
  }
  .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock {
    width: 100%;
    text-align: center;
    padding: 0px 15px 0 15px;
    position: relative;
  }
  .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock .c-selection--icon {
    display: none;
  }
  .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock .slide-mobile--icon {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
  }
  .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock .c-error-validation.c-code-error {
    position: relative;
    bottom: 0;
  }
  .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock .c-selection--name {
    font-size: 16px;
  }
  .c-buildplain--right .c-selection--block .c-selection--list .c-selection--listblock .c-selection--name .c-selection--subname {
    display: inline;
  }
  .c-buildplain--right .c-selection--block .c-selection--button .u-button--bordered-dark {
    display: none;
  }
  .c-buildplain--right .c-selection--hoursection {
    padding: 18px 5px 18px 15px;
    text-align: right;
  }
  .c-buildplain--right .c-selection--hoursection .c-modal-link {
    padding: 5px 0px 5px 20px;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    text-align: right;
    position: relative;
    padding-right: 90px;
  }
  .c-buildplain--right .c-selection--hoursection .c-modal-link .icon-svg-chevron-next {
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    right: 0px;
    top: 50%;
    margin-top: -12px;
    padding: 0;
  }
  .c-createplanner-laststep .only-view--optinspage {
    padding: 0;
  }
  .only-view--optinspage.c-view--optinspage {
    padding: 0 10px;
  }
  .c-data--table {
    padding: 40px 0 40px;
  }
  .c-progress-container {
    padding-top: 0;
  }
  .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    right: 0;
    width: 100%;
    bottom: 53px;
  }
  .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear button {
    width: auto;
  }
  .c-errorview .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 82px;
  }
  .c-errorview.remove-error--msg .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 52px;
  }
  .c-yourplan--button {
    padding: 20px 0;
  }
  .c-yourplan--button span {
    display: none;
  }
  .c-yourplan--button .u-button {
    padding: 5px 20px;
  }
  .c-head-contenttitle__mobile {
    display: block;
  }
  .c-buildtable--heading {
    position: relative;
  }
  .c-buildtable--heading .d-inline-grid {
    display: -ms-inline-grid;
    display: inline-grid;
    text-align: left;
  }
  .c-head-hourtitle__mobile {
    position: absolute;
    left: 15px;
    top: 44px;
  }
  .overlay-content .c-data--table.c-data--mobile .table-scroll th:first-child {
    text-align: center;
  }
  .col-section--block .col-section--block__labelname {
    left: -20px;
  }
  .c-plannerblock--left {
    display: none;
  }
  .c-plannerblock--right .view-options--wrapper {
    width: 100%;
    display: block;
  }
  .c-plannerblock--logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 15px;
    width: 120px;
    height: 120px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-plannerblock--ribon {
    border: 1px solid #8B8B8B;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 40px;
    background-color: #f6f6f6;
    width: 100%;
    display: block;
  }
  .c-plannerblock--ribon .u-text-speak {
    padding: 0;
    color: #4a4a4a;
  }
  .c-plannerblock--ribon .view-options--plan__details {
    width: 100%;
  }
  .c-plannerblock--delete {
    width: 100%;
    display: block;
    text-align: center;
  }
  .c-plannerblock .c-plannerblock--logo img {
    min-width: 55px;
  }
  .table-scroll tbody tr th .col-section--wrapper {
    width: 70px;
  }
  .table-scroll tbody tr th .col-section--wrapper .col-section--block {
    width: 34px;
    padding-right: 5px;
  }
  .table-scroll thead tr th .col-section--wrapper {
    width: 70px;
  }
  .table-scroll th:first-child, .table-scroll thead th:first-child {
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: #fff;
    padding: 15px 5px;
  }
  .m-text-center {
    text-align: center;
  }
  .resource-panel--button .u-button {
    display: inline-block;
    white-space: nowrap;
  }
  .resource-panel--button .u-button .icon-svg {
    vertical-align: middle;
  }
  .table-scroll .c-mdata-unit {
    position: relative;
    padding-right: 40px;
    display: block;
    border: 0;
  }
  .table-scroll .c-mdata-unit.c-mdata-unit__child {
    border-bottom: 0px solid #8B8B8B;
    position: relative;
    bottom: -1px;
    z-index: 1;
    cursor: pointer;
  }
  .table-scroll .c-mdata-unit .c-ddata-none {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 15px;
    margin-top: -8px;
    border: none;
    background: none;
  }
  .table-scroll .c-mdatda--th {
    border-right: 0;
  }
  .table-scroll .c-mdatda--th1 {
    width: 10%;
    text-align: left;
    padding: 15px;
  }
  .table-scroll .c-mdatda--th2 {
    width: 90%;
    text-align: left;
    padding: 15px;
  }
  .c-data-mobileonly {
    display: table;
  }
  .c-page {
    padding: 10px 15px;
  }
  .c-header-title.c-page.c-more-content#fixed-main--header {
    padding: 10px 45px;
    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;
    -ms-flex-line-pack: center;
        align-content: center;
    min-height: inherit;
  }
  .c-book-tile__desktop, .desktop-img--view {
    display: none;
  }
  .c-book-tile__mobile, .mobiles-img--view {
    display: block;
  }
  .block-mobiles--view {
    border: 1px solid #8b8b8b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 8px;
    padding: 0;
    -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);
    margin-bottom: 38px;
  }
  .block-mobiles--view .book {
    margin: 0;
    border: 0;
    background: none;
    margin-right: 9px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 7px 0 0 7px;
  }
  .block-mobiles--view .book img {
    padding: 8px;
    max-width: 80px;
  }
  .block-mobiles--view .c-eplanbook--name {
    font-size: 16px;
  }
  .block-mobiles--view .c-book-tile__mobile {
    padding: 12px 10px 12px 0;
  }
  .colblock-mobiles--view {
    padding: 0;
  }
  .colblock-mobiles--view .c-form-group__errorfield {
    padding-bottom: 40px;
    margin-bottom: 75px;
  }
  .c-progress-container .c-progress-tracker {
    margin-bottom: 20px;
    margin-top: 60px;
  }
  .c-createplanner-laststep {
    padding-top: 10px;
  }
  .c-eplancreate--block {
    margin-top: 10px;
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .c-eplancreate--block .c-bookshelf-block {
    margin: 0;
  }
  .c-eplancreate--block .c-bookshelf-block:not(:last-of-type) .c-book-tile {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .c-eplancreate--block .c-bookshelf-block:not(:last-of-type) .c-book-tile::before {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .c-eplancreate--block .c-bookshelf-block:not(:first-of-type) .c-book-tile {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .c-eplancreate--block .c-bookshelf-block:not(:first-of-type) .c-book-tile::before {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .c-eplancreate--block .c-book-tile__body {
    float: left;
    height: 100%;
    margin-right: 9px;
  }
  .c-eplancreate--block .c-book-tile__body img {
    padding: 0;
    max-width: 80px;
  }
  .c-eplancreate--block .c-book-tile__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-left: 10px;
    border: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-eplancreate--block .c-book-tile__footer .c-book-tile__footerinner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    vertical-align: middle;
  }
  .c-eplancreate--block .c-book-tile__footer .c-book-tile__footerinner .c-eplanbook--name {
    font-size: 16px;
  }
  .c-eplancreate--block .c-book-tile:hover .c-book-tile__footer, .c-eplancreate--block .c-book-tile:active .c-book-tile__footer {
    background-color: #1B60F4;
    color: #fff;
  }
  .c-eplancreate--block .c-book-tile:hover .c-book-tile__footer *, .c-eplancreate--block .c-book-tile:active .c-book-tile__footer * {
    color: #fff;
  }
  .c-eplancreate--block .c-book-tile.active, .c-eplancreate--block .c-book-tile:focus {
    border-color: #8B8B8B;
  }
  .c-eplancreate--block .c-book-tile:focus {
    -webkit-box-shadow: 0px 1px 2px 2px #1a60f4;
            box-shadow: 0px 1px 2px 2px #1a60f4;
  }
  .c-eplancreate--block .c-book-tile::after {
    display: none;
  }
  .c-state__common-block.c-eplancreate--block {
    margin-top: 10px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .c-state__common-block.c-eplancreate--block .c-bookshelf-block {
    margin: 0;
  }
  .c-state__common-block.c-eplancreate--block .c-book-tile__body {
    float: left;
    height: 100%;
    margin-right: 9px;
    background: none;
  }
  .c-state__common-block.c-eplancreate--block .c-book-tile__body img {
    padding: 0;
    width: 60px;
  }
  .c-state__common-block.c-eplancreate--block .c-book-tile__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-left: 10px;
    border: 0;
  }
  .c-state__common-block.c-eplancreate--block .c-book-tile__footer .c-book-tile__footerinner {
    height: 100%;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    vertical-align: middle;
    color: #000000;
  }
  .c-state__common-block.c-eplancreate--block .c-book-tile__footer .c-book-tile__footerinner .c-eplanbook--name {
    font-size: 16px;
  }
  .c-main-container.c-plannerblock-container .c-bookshelf-block .c-book-tile.c-book-tile--empty.create-plans--block {
    padding: 0;
  }
  .c-main-container.c-plannerblock-container .c-bookshelf-block .c-book-tile.c-book-tile--empty.create-plans--block .icon-svg {
    float: left;
    width: 60px;
    background-size: 24px;
    height: 70px;
    background-position: center center;
    margin-right: 9px;
    margin-top: 12px;
  }
  .c-main-container.c-plannerblock-container .c-bookshelf-block .c-book-tile.c-book-tile--empty.create-plans--block .c-createplanname {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .c-main-container.c-plannerblock-container .c-state__common-block.c-eplancreate--block .c-book-tile .c-book-tile__footer .c-eplanbook--name {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .c-main-container.c-plannerblock-container .c-state__common-block.c-eplancreate--block .c-book-tile .c-book-tile__footer .c-eplanbook--lavel {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .c-close-link span {
    display: none;
  }
  .c-mdata-none, .col-section--export, .resource-panel--row .resource-panel--text.c-mdata-none {
    display: none;
  }
  .c-mdata-none, .col-section--export {
    display: none;
  }
  .table-navigator {
    display: none;
  }
  .overlay .overlay-content .table-scroll .c-mdata-unit, .overlay .overlay-content .table-scroll .c-mdata-none {
    background-color: #f6f6f6;
    bottom: 0;
  }
  .overlay .overlay-content .table-scroll .c-mdata-unit:first-child {
    border-radius: 6px 6px 0 0;
  }
  .overlay .overlay-content .table-scroll .c-mdata-none:last-child {
    border-radius: 0 0 6px 6px;
  }
  .overlay {
    display: block;
    position: relative;
    width: 100%;
    min-height: 600px;
  }
  .overlay .closebtn {
    display: none;
  }
  .table-control--mobile .c-mdata-none {
    display: block;
    border: 0;
  }
  .table-control--mobile tr td:last-child.c-mdata-none {
    position: relative;
  }
  .table-control--mobile tr td:last-child.c-mdata-none:before {
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    content: "";
    left: 0;
    z-index: 1;
    background-color: #8B8B8B;
  }
  .js .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: block;
  }
  .js .overlay .closebtn {
    position: absolute;
    top: 16px;
    left: 20px;
    z-index: 2;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 0;
    display: block;
  }
  .js .total-teaching--container h1.total-teaching--title {
    display: block;
  }
  .js .total-teaching--container h6.total-teaching--title {
    display: none;
  }
  .js .c-selection--block h2.c-selection--sessionname {
    display: block;
  }
  .js .c-selection--block div.c-selection--sessionname {
    display: none;
  }
  .js .c-selection--hoursection {
    display: block;
  }
  .js .table-control--mobile .c-mdata-none {
    display: none;
  }
  .js .table-scroll .c-mdata-unit.c-mdata-unit__child {
    border-bottom: 1px solid #8B8B8B;
    position: relative;
    bottom: -1px;
    z-index: 1;
    cursor: pointer;
  }
  .js .c-mdata-unit .icon-svg.icon-svg--16.icon-svg-next {
    display: block;
  }
  .c-mdata-unit .icon-svg.icon-svg--16.icon-svg-next, .overlay {
    display: none;
  }
  .total-teaching--container h1.total-teaching--title, .c-selection--block h2.c-selection--sessionname {
    display: none;
  }
  .total-teaching--container h6.total-teaching--title, .c-selection--block div.c-selection--sessionname {
    display: block;
  }
  .overlay-content {
    position: relative;
    width: 100%;
    text-align: center;
    height: 100%;
    background-color: #fff;
  }
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  body.modal {
    overflow: hidden;
  }
  body.modal .o-page .o-page__sidebar {
    z-index: 0;
  }
  .c-data--table.c-data--mobile {
    height: 100%;
    padding: 0 15px;
  }
  .c-data--table.c-data--mobile .c-data--mobile__title {
    height: 56px;
    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;
    width: 100%;
    border-bottom: 1px solid #8B8B8B;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
  }
  .c-data--table.c-data--mobile .c-mdata-unit.c-mdata-unit__child {
    bottom: 0;
    border: 0;
  }
  .c-data--table.c-data--mobile .c-mdata-none {
    display: block;
  }
  .c-data--table.c-data--mobile .table-scroll th:first-child {
    display: block;
    position: relative;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 1px solid #8B8B8B;
    padding: 16px 10px;
  }
  .c-data--table.c-data--mobile .table-scroll th, .c-data--table.c-data--mobile .table-scroll td {
    text-align: left;
    border: 0;
    padding-left: 25px;
  }
  .c-data--table.c-data--mobile .table-scroll th a, .c-data--table.c-data--mobile .table-scroll td a {
    font-size: 14px;
    padding: 0;
    color: #000;
  }
  .c-data--table.c-data--mobile .table-scroll th .col-section--block__input, .c-data--table.c-data--mobile .table-scroll td .col-section--block__input {
    display: none;
  }
  .c-data--table.c-data--mobile .table-scroll th .col-section--wrapper, .c-data--table.c-data--mobile .table-scroll th .col-section--block, .c-data--table.c-data--mobile .table-scroll td .col-section--wrapper, .c-data--table.c-data--mobile .table-scroll td .col-section--block {
    width: 100%;
  }
  .c-data--table.c-data--mobile .table-scroll {
    border: 0;
    border-radius: 0;
    overflow-x: hidden;
    height: calc(100vh - 80px);
    overflow: auto;
    margin-bottom: 5px;
  }
  .c-data--table.c-data--mobile .c-sessions--button {
    display: none;
  }
  .slide-mobile--icon, .hours-mobile {
    display: block;
  }
  .hours-mobile {
    display: inline-block;
  }
  .c-buildplain--tabsdata {
    display: none;
  }
  .c-block.c-block--tabs {
    padding: 0;
    margin-bottom: 20px;
  }
  .c-tabplan-heading.c-tabplan-heading__mobspace {
    margin-bottom: 20px;
  }
  .c-plannerblock--right .u-flex.view-options--wrapper {
    margin-bottom: 20px;
    border-bottom: 0;
  }
  .c-plannerblock--right .u-flex.view-options--wrapper.u-border-none {
    display: none;
  }
  .c-yourplanblock--right.c-plannerblock--right .u-flex.view-options--wrapper {
    margin-bottom: 0px;
    border-bottom: 1px solid #8B8B8B;
  }
  .c-yourplanblock--right.c-plannerblock--right .u-flex.view-options--wrapper.u-border-none {
    display: block;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .c-yourplanblock--right.c-plannerblock--right .u-flex.view-options--wrapper.u-border-none .view-options--plan__details.total-ours {
    padding-bottom: 20px;
  }
  .total-teaching--title {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 16px;
  }
  .total-teaching--container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-buildplain--tablecontainer {
    margin-bottom: 290px;
  }
  .c-buildplain--view {
    padding: 0 0px;
  }
  .c-buildtable--button .btn-table-col1, .c-buildtable--button .btn-table-col2 {
    display: none;
  }
  .c-buildtable--button .btn-table-col3 {
    width: 100%;
    text-align: center;
  }
  .div-table-row.c-buildtable--heading .c-head--col1 {
    width: 65%;
  }
  .div-table-row.c-buildtable--heading .c-head--col3 {
    width: 35%;
    text-align: right;
  }
  .div-table-row.c-buildtable--data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .div-table-row.c-buildtable--data .c-data--col2 {
    position: absolute;
    bottom: 10px;
    padding: 0 15px;
    border: 0;
    width: 100%;
  }
  .div-table-row.c-buildtable--data .c-data--col1 {
    width: 100%;
    padding-right: 75px;
    padding-bottom: 30px;
  }
  .div-table-row.c-buildtable--data .c-data--col3 {
    text-align: right;
    position: absolute;
    width: 50px;
    right: 0;
    border: 0;
  }
  .c-buildtable--title, .div-table-col {
    padding: 20px 15px;
  }
  .c-common-fixed-footer {
    background: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  .c-title--32 {
    font-size: 28px;
  }
  .c-edit--planname {
    margin-top: -50px;
  }
  .c-edit--planname .colblock-mobiles--view .c-form-group__errorfield {
    margin-bottom: 0px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 350px) {
  .c-errorview .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 102px;
  }
  .c-errorview.remove-error--msg .div-table.c-buildtable--button .div-table-col.btn-table-col3 .c-buildtable__clear {
    bottom: 50px;
  }
}

.c-page__title--eplanner {
  position: absolute;
}

.c-page__title--maxplan {
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .c-page__title--maxplan {
    left: 45px;
  }
}

.c-page__back--eplanner {
  width: auto;
  position: absolute;
  left: 40px;
}

.c-page__back--eplanner:focus {
  position: absolute !important;
}

@media only screen and (max-width: 767px) {
  .c-page__back--eplanner {
    left: 15px;
  }
}

.c-createplanner-laststep .c-planstep--footer .c-planstep--buttonblock, .yourplanClass .c-plannerblock-container .c-sessions--selected {
  -webkit-box-shadow: 0px -30px 30px #fff;
          box-shadow: 0px -30px 30px #fff;
  z-index: 5;
}

@media only screen and (max-width: 767px) {
  .c-planstep--buttonblock.c-editbtns {
    padding: 5px 20px;
  }
  .c-planstep--buttonblock.c-editbtns .u-button {
    margin: 0;
  }
}

.yourplanClass .c-plannerblock-container .c-sessions--button {
  z-index: 5;
}

label.c-bookshelf-block {
  position: relative;
}

.mee-with--plan .resource-panel--row .resource-panel--button .u-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 160px;
}

.c-buildplain--left.c-errorview .c-buildplain--tableblock {
  margin-bottom: 80px;
}

.c {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-footer {
  padding-top: 1rem;
  position: relative;
  z-index: 2;
  font-size: 13px;
  background-color: #fff;
}

.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;
  }
}

@media (max-width: 1023px) {
  .scroll-in.inside .o-page__content .c-footer {
    padding: 0 0 60px 0;
  }
}

@media (max-width: 1023px) {
  html.js .c-footer {
    padding: 0 0 60px 0 !important;
  }
}

@media (max-width: 1023px) {
  html .c-footer {
    padding: 0 !important;
  }
}

@media (max-width: 1999px) {
  .mee-with--plan #footer.c-footer {
    display: block !important;
  }
  .mee-hotbody-corners #footer.c-footer,
  .mee-with--plan.mee-modal--plan #footer.c-footer {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .mee-with--plan .c-createplanner-laststep .only-view--optinspage {
    padding-top: 40px;
  }
  .mee-with--plan[data-gr-c-s-loaded="true"] .c-createplanner-laststep .only-view--optinspage {
    padding-top: 0px;
  }
}

.mee-with--plan .c-deleteplan, .mee-with--plan .c-editconfirmation, .mee-with--plan .c-exportplan {
  min-height: 400px;
}

@media (max-width: 767px) {
  .mee-with--plan .c-deleteplan, .mee-with--plan .c-editconfirmation, .mee-with--plan .c-exportplan {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .mee-with--plan .c-plannerblock-container .c-editbtns {
    padding-bottom: 20px;
  }
}

.u-clearfix::before, .u-clearfix::after {
  content: "";
  display: table;
}

.u-clearfix::after {
  clear: both;
}

.u-row {
  margin-right: -16px;
  margin-left: -16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1440px) {
  .u-row {
    margin-right: -16px;
    margin-left: -16px;
  }
}

@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 .u-form-label {
  margin-bottom: 4px;
}

.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;
}

.u-form-control.u-form-control__error {
  border: 2px solid #EB0104;
}

.c-form-group__errorfield .c-form-group__icon {
  position: absolute;
  min-width: auto !important;
  right: 2px;
  height: 42px;
  border-radius: 0 6px 6px 0;
  padding: 0 14px 0 10px;
  background-color: #fff;
  border: none;
  top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  width: 35px;
}

.c-form-group__errorfield .c-form-group__icon .icon-svg-cancel-error {
  height: 12px;
  width: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
}

p.u-form-control__error {
  color: #EB0104;
}

.u-form-label {
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.u-form-label a:hover {
  text-decoration: none;
}

p.u-text-speak {
  font-weight: 600;
}

p.u-text-16 {
  font-size: 16px;
}

body.using-mouse button.c-form-group__icon:focus,
body button.c-form-group__icon:focus, .c-form-group__icon:focus {
  position: absolute;
}

body.using-mouse button.c-form-group__icon:focus:after,
body button.c-form-group__icon:focus:after, .c-form-group__icon:focus:after {
  border-radius: 6px;
}

.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;
}

.u-relative {
  position: relative;
}

p {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
}

.u-small-text {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
}

.u-smal-text-fixed {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.u-v-middle {
  vertical-align: middle;
}

.u-text-error {
  color: #EB0104;
}

/*Colors*/
.u-text-black {
  color: #000000;
}

/*Visibility*/
.u-hidden {
  display: none;
}

.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;
}
/*# sourceMappingURL=enhanced.css.map */