﻿@charset "UTF-8";
.reflectX {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1); }

.relative {
  position: relative; }

.horz-center {
  margin: 0 auto; }

.bold {
  font-weight: 900; }

.text-brand-blue {
  color: #0d71ba; }

.text-dark-blue {
  color: #043649; }

.text-dark-purple {
  color: #453a3e; }

.text-mid-purple {
  color: #69555c; }

.text-orange {
  color: #f37049; }

.text-yellow {
  color: #f9b24b; }

.text-black-05 {
  color: #f3f3f3; }

.text-black-10 {
  color: #e6e6e5; }

.text-black-20 {
  color: #cdcccc; }

.text-black-30 {
  color: #b4b4b4; }

.text-black-40 {
  color: #989898; }

.text-black-50 {
  color: #818181; }

.text-black-60 {
  color: #676767; }

.text-black-70 {
  color: #4e4e4e; }

.text-white {
  color: white; }

.bg-brand-blue {
  background-color: #0d71ba; }

.bg-dark-blue {
  background-color: #043649; }

.bg-dark-purple {
  background-color: #453a3e; }

.bg-mid-purple {
  background-color: #69555c; }

.bg-orange {
  background-color: #f37049; }

.bg-yellow {
  background-color: #f9b24b; }

.bg-black-05 {
  background-color: #f3f3f3; }

.bg-black-10 {
  background-color: #e6e6e5; }

.bg-black-20 {
  background-color: #cdcccc; }

.bg-black-30 {
  background-color: #b4b4b4; }

.bg-black-40 {
  background-color: #989898; }

.bg-black-50 {
  background-color: #818181; }

.bg-black-60 {
  background-color: #676767; }

.bg-black-70 {
  background-color: #4e4e4e; }

.bg-white {
  background-color: white; }

* {
  box-sizing: border-box; }

html, body {
  height: 100%; }

body {
  margin: 0;
  min-width: 300px; }

ul {
  padding: 0; }

a:active, a:selected, a:visited {
  border: none;
  outline: none; }

@-ms-viewport {
  width: auto !important; }

html {
  font-size: 10px; }
  @media screen and (max-width: 1440px) {
    html {
      font-size: 9px; } }
  @media screen and (max-width: 1200px) {
    html {
      font-size: 8px; } }

body {
  color: #453a3e;
  font-family: "Segeo UI", "Lato", Helvetica, sans-serif; }

h1 {
  font-size: 3.6rem;
  font-weight: 900; }

h2 {
  font-size: 2.8rem; }

h3 {
  font-size: 2.4rem; }

p {
  font-size: 1.8rem; }

li {
  font-size: 1.8rem;
  color: #4e4e4e;
  font-weight: 200; }

.dashed li {
  list-style-type: none; }
  .dashed li::before {
    content: "–"; }

.list-title {
  font-size: 1.8rem;
  color: #0d71ba;
  margin-top: 9rem; }

.list-text {
  font-size: 1.6rem;
  font-weight: 300;
  padding-left: 1rem;
  margin-top: 0;
  border-left: 2px solid #0d71ba; }

.uppercase {
  text-transform: uppercase; }

.hightlight {
  color: white;
  display: inline;
  padding-left: 0.5rem;
  padding-right: 2rem; }
  .hightlight__blue {
    background-color: #0d71ba; }

.text-thin {
  font-weight: 200; }

.text-bold {
  font-weight: 600; }

.text-extra-bold {
  font-weight: 900; }

.text-underline-orange {
  display: inline-block;
  border-bottom: 3px solid #f37049; }

.text-inline {
  display: inline; }

@media screen and (max-width: 768px) {
  .list-title {
    margin-top: 5rem; } }

input, textarea {
  border-radius: 0 !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

button, input[type="submit"], a.btn__link {
  height: 5rem;
  font-size: 1.8rem;
  background-color: white;
  border: none;
  text-transform: capitalize;
  min-width: 18rem;
  color: white;
  -webkit-transition: box-shadow .1s ease;
          transition: box-shadow .1s ease; }
  button:hover, input[type="submit"]:hover, a.btn__link:hover {
    box-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.25); }
  button:focus, input[type="submit"]:focus, a.btn__link:focus {
    outline: none;
    box-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.25); }
  button.btn__large, input[type="submit"].btn__large, a.btn__link.btn__large {
    height: 6rem;
    min-width: 27rem; }
  button.btn__white, input[type="submit"].btn__white, a.btn__link.btn__white {
    color: #453a3e;
    font-weight: 900; }
    button.btn__white:active, input[type="submit"].btn__white:active, a.btn__link.btn__white:active {
      background-color: #f3f3f3; }
  button.btn__orange, input[type="submit"].btn__orange, a.btn__link.btn__orange {
    background-color: #f37049; }
  button.btn__yellow, input[type="submit"].btn__yellow, a.btn__link.btn__yellow {
    background-color: #f9b24b; }
  button.btn__purple, input[type="submit"].btn__purple, a.btn__link.btn__purple {
    background-color: #69555c;
    color: white; }
  button.btn__blue, input[type="submit"].btn__blue, a.btn__link.btn__blue {
    background-color: #0d71ba;
    color: white; }
  button.btn__on-white, input[type="submit"].btn__on-white, a.btn__link.btn__on-white {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25); }
  button.btn__link, input[type="submit"].btn__link, a.btn__link.btn__link {
    text-align: center;
    line-height: 2.75;
    text-transform: capitalize;
    font-weight: 900;
    display: block;
    width: 0; }
    button.btn__link:hover, button.btn__link:active, button.btn__link:focus, input[type="submit"].btn__link:hover, input[type="submit"].btn__link:active, input[type="submit"].btn__link:focus, a.btn__link.btn__link:hover, a.btn__link.btn__link:active, a.btn__link.btn__link:focus {
      text-decoration: none; }

.active .btn__white {
  border: 3px solid #0d71ba !important;
  position: relative; }
  .active .btn__white::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    margin-left: -1.25rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.25rem 1.25rem 0 1.25rem;
    border-color: #0d71ba transparent transparent transparent; }

.active .btn__white.orange-outline {
  border: 3px solid #f37049 !important;
  position: relative; }
  .active .btn__white.orange-outline::after {
    border: none; }

.btn__clear {
  border-radius: 0 !important;
  border: none !important; }

.tab {
  background-color: white;
  color: #f37049;
  font-weight: 900;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  height: 5rem;
  display: inline-block;
  line-height: 2.5;
  padding: 0 2rem;
  margin-right: 1rem;
  border: 3px solid white;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .tab:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    color: #0d71ba; }
  .tab.active {
    border: 3px solid #f37049;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); }
    .tab.active:hover {
      color: #f37049; }

.stroke-box {
  border: 3px solid white; }

.stroke-box__dark-purple {
  border-color: #453a3e; }

.windows-official {
  height: 1.75rem;
  width: 17rem;
  background: url("../img/windows-official.svg") center center no-repeat;
  background-size: contain; }

.small-spacer {
  width: 100%;
  height: 3rem; }

@media screen and (max-width: 768px) {
  button.btn__full-width__sm, input[type="submit"].btn__full-width__sm, a.btn__link.btn__full-width__sm {
    width: 100%; } }

@media screen and (max-width: 480px) {
  button.btn__full-width__xs, input[type="submit"].btn__full-width__xs, a.btn__link.btn__full-width__xs {
    width: 100%; } }

.hero {
  background: #043649 url("../img/opsgility-homepage-hero.jpg") center center no-repeat;
  background-size: cover;
  height: calc(100vh - 7rem);
  min-height: 720px;
  color: white;
  padding: 15vh 0; 
  }
  .hero--slogan {
    margin-top: 3rem; }
  .hero--main-text {
    font-size: 7rem;
    max-width:800px;
    display: block;
    margin: 0 auto; }
    .hero--main-text:first-child {
      margin-top: 0rem;
      margin-bottom: 1rem; }
    .hero--main-text:last-child {
      padding-bottom: 1.5rem; }
  .hero--divider {
    width: 65%;
    height: 4px;
    background: #f37049;
    margin: 3rem auto 4rem;
    position: relative; }
    .hero--divider::before, .hero--divider::after {
      content: '';
      width: 0.75rem;
      height: 4px;
      position: absolute;
      top: 0;
      background-color: #f37049; }
    .hero--divider::before {
      left: -1.5rem; }
    .hero--divider::after {
      right: -1.5rem; }
  .hero--btn {
    height: 7rem !important;
    width: 30rem !important;
    font-size: 2.5rem !important;
    margin: 5rem auto 0;
    box-shadow: 0 6px 15px 3px rgba(0, 0, 0, 0.2);
    -webkit-transition: box-shadow .2s ease, color .2s ease !important;
            transition: box-shadow .2s ease, color .2s ease !important; }
    .hero--btn:focus, .hero--btn:hover {
      box-shadow: 0 5px 20px 6px rgba(0, 0, 0, 0.35) !important;
      color: #f37049 !important; }

.tech-cards {
  margin: 7rem auto 14rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .tech-cards--title {
    margin-top: 7rem; }

.tech-card {
  width: 25rem;
  height: 25rem;
  overflow: hidden;
  display: inline-block; }
  .tech-card:not(:last-child) {
    margin-right: 3rem; }
  .tech-card__azure {
    background-color: #00bcf2; }
  .tech-card__dynamics-crm {
    background-color: #00188f; }
  .tech-card__office-365 {
    background-color: #eb3d01; }
  .tech-card__visual-studio {
    background-color: #68217a; }
  .tech-card__azure > .tech-card--logo, .tech-card__dynamics-crm > .tech-card--logo, .tech-card__office-365 > .tech-card--logo, .tech-card__visual-studio > .tech-card--logo {
    height: 10rem;
    width: 10rem;
    margin: 2rem auto 4rem;
    background-size: contain; }
  .tech-card__azure > .tech-card--logo {
    height: 12rem;
    width: 12rem;
    margin: 1rem auto 3rem;
    background: url("../img/azure-logo.svg") center center no-repeat; }
  .tech-card__dynamics-crm > .tech-card--logo {
    background: url("../img/dynamics-crm.svg") center center no-repeat; }
  .tech-card__office-365 > .tech-card--logo {
    background: url("../img/office-365.svg") center center no-repeat; }
  .tech-card__visual-studio > .tech-card--logo {
    background: url("../img/visual-studio.svg") center center no-repeat; }

.home--cloud-bg {
  background: url("../img/clouds-top.svg") top center no-repeat, white url("../img/grey-geometry.svg") top center;
  background-size: contain, contain;
  padding: 0rem 0 11rem;
  margin-top: 15rem;
  position: relative; }
  .home--cloud-bg::before {
    content: '';
    width: 100%;
    height: 16rem;
    background-color: #e6e6e5;
    position: absolute;
    top: -16rem; }

.azure-training {
  width: 90rem;
  height: 35.5rem;
  border: 3px solid #989898;
  border-bottom: none;
  padding: 4.5rem 7rem 5.5rem;
  margin: -10rem auto 37.5rem;
  position: relative; }
  .azure-training::before, .azure-training::after {
    content: '';
    height: 3px;
    width: 3rem;
    background-color: #989898;
    position: absolute;
    bottom: -3px; }
  .azure-training::before {
    left: -3px; }
  .azure-training::after {
    right: -3px; }
  .azure-training--title {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
    display: block; }
    .azure-training--title::before {
      content: '';
      height: 5.5rem;
      width: 5.5rem;
      position: absolute;
      left: 7.5rem;
      top: -1.2rem;
      background: url("../img/dark-blue-azure.svg") center center no-repeat; }
    .azure-training--title::after {
      content: '';
      height: 3px;
      width: 40rem;
      background-color: #989898;
      position: absolute;
      bottom: -3px;
      left: 17rem; }
  .azure-training--text {
    margin-bottom: 4.5rem; }
  .azure-training--boxes {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .azure-training--box {
    background-color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    width: 21rem;
    height: 21rem;
    -webkit-flex-basis: 1;
        -ms-flex-preferred-size: 1;
            flex-basis: 1; }
    .azure-training--box:not(:last-child) {
      margin-right: 5rem; }
  .azure-training--number {
    background-color: #0d71ba;
    padding: 1.5rem 0;
    margin: 0;
    border-bottom: 3px solid #043649; }
  .azure-training--type {
    margin-top: 3.5rem;
    font-size: 2rem; }

.home-instructors--subtext {
  font-size: 2.2rem;
  margin-top: 1rem;
  margin-bottom: 7rem; }

.home-instructors--card {
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 0 1.5rem 1.5rem;
  height: 44rem; }
  .home-instructors--card h3 {
    margin-top: 3rem; }
  .home-instructors--card img {
    width: calc(100% + 3rem);
    margin: 0 -1.5rem;
    height: auto; }

.home-instructors--btn {
  width: 30rem !important;
  height: 6.5rem !important;
  font-size: 2.2rem !important;
  line-height: 2.75 !important;
  margin-top: 10rem; }

.home-enterprise {
  background: #f9b24b url("../img/home-enterprise-readiness.jpg") center center no-repeat;
  background-size: cover;
  height: 79rem;
  padding: 10rem 0; }
  .home-enterprise--feature-set {
    width: 30%;
    margin-top: 4rem;
    display: inline-block; }
  .home-enterprise--features li {
    font-weight: 500 !important;
    font-size: 2rem; }
    .home-enterprise--features li::before {
      content: ''; }
  .home-enterprise--btn {
    width: 25rem !important;
    color: #f37049 !important;
    margin-top: 4rem;
    line-height: 3.25 !important; }

@media screen and (max-width: 1200px) {
  .azure-training {
    margin-bottom: 27.5rem; }
  .home-instructors--card h3 {
    margin-top: 2rem; } }

@media screen and (max-width: 991px) {
  .tech-card {
    width: 20rem;
    height: 20rem; }
    .tech-card h2 {
      font-size: 2.5rem; }
    .tech-card__azure > .tech-card--logo, .tech-card__dynamics-crm > .tech-card--logo, .tech-card__office-365 > .tech-card--logo, .tech-card__visual-studio > .tech-card--logo {
      height: 7rem;
      width: 7rem;
      margin: 2.25rem auto 2.5rem; }
    .tech-card__azure > .tech-card--logo {
      height: 9rem;
      width: 9rem;
      margin: 1.25rem auto -1rem; }
  .home-enterprise {
    padding: 5rem 0; }
    .home-enterprise--feature-set {
      width: 30%;
      margin-top: 2rem;
      display: inline-block; }
    .home-enterprise--btn {
      margin-top: 3rem; } }

@media screen and (max-width: 768px) {
  .tech-cards {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 40rem;
    margin-top: 2rem;
    margin-bottom: 3rem; }
    .tech-cards h2 {
      font-size: 2.5rem; }
    .tech-cards__azure > .tech-card--logo, .tech-cards__dynamics-crm > .tech-card--logo, .tech-cards__office-365 > .tech-card--logo, .tech-cards__visual-studio > .tech-card--logo {
      height: 7rem;
      width: 7rem;
      margin: 2.25rem auto 2.5rem; }
    .tech-cards__azure > .tech-card--logo {
      height: 9rem;
      width: 9rem;
      margin: 1.25rem auto -1rem; }
  .tech-card {
    width: 19rem;
    height: 19rem; }
    .tech-card:nth-child(2n-1) {
      margin-right: 1.5rem !important; }
    .tech-card:nth-child(2n) {
      margin-right: 0 !important; }
    .tech-card:nth-child(-n + 2) {
      margin-bottom: 1.5rem; }
  .azure-training {
    max-width: 55rem;
    width: 100%;
    height: 90rem;
    padding-top: 6rem; }
    .azure-training--title {
      font-size: 3rem; }
      .azure-training--title::before {
        left: 50%;
        top: -6rem;
        margin-left: -2.75rem; }
      .azure-training--title::after {
        width: 25rem;
        left: 50%;
        margin-left: -12.5rem; }
    .azure-training--text {
      font-size: 2rem; }
    .azure-training--boxes {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .azure-training--box {
      width: 100%; }
      .azure-training--box:not(:last-child) {
        margin-right: 0;
        margin-bottom: 3rem; }
  .home-instructors--card {
    height: 51rem;
    margin-bottom: 3rem; }
  .home-instructors--btn {
    margin-top: 5rem; }
  .home-enterprise {
    background: #f9b24b url("../img/home-enterprise-readiness-mobile.png") center center no-repeat;
    background-size: cover;
    height: auto; }
    .home-enterprise--text h3 {
      margin-bottom: 5rem;
      font-size: 2rem; }
    .home-enterprise--feature-set {
      display: block;
      width: 50rem;
      margin: 0 auto 5rem;
      margin-bottom: 5rem; }
    .home-enterprise--features li {
      font-weight: 500 !important;
      font-size: 2rem; }
      .home-enterprise--features li::before {
        content: ''; }
    .home-enterprise--btn {
      margin: 0 auto; }
    .home-enterprise--text {
      text-align: center; } }

@media screen and (max-width: 700px) {
  .home-instructors--card {
    height: 47rem;
    margin-bottom: 3rem; }
  .home-instructors--btn {
    margin-top: 5rem; } }

@media screen and (max-width: 615px) {
  .hero {
    min-height: auto; }
    .hero--slogan {
      margin-top: 0rem; }
    .hero--main-text {
      font-size: 3.5rem; }
      .hero--main-text:first-child {
        margin-top: 3rem; }
  .home-instructors--card {
    height: 45rem; } }

@media screen and (max-width: 558px) {
  .tech-card {
    margin-bottom: 3rem; }
    .tech-card:not(:last-child) {
      margin-right: 0; }
    .tech-card:nth-child(2n-1) {
      margin-right: 3rem; }
  .home-instructors--card {
    height: 43rem; } }

@media screen and (max-width: 545px) {
  .hero--slogan {
    margin-top: 0rem; }
  .hero--main-text {
    font-size: 3rem; }
    .hero--main-text:first-child {
      margin-top: 3rem; }
  .hero h4 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.25rem; }
  .hero p {
    font-size: 1.6rem;
    line-height: 1.2; }
  .hero--btn {
    height: 6rem !important;
    width: 27rem !important;
    font-size: 2rem !important;
    margin: 5rem auto 0;
    box-shadow: 0 6px 15px 3px rgba(0, 0, 0, 0.2);
    -webkit-transition: box-shadow .2s ease, color .2s ease !important;
            transition: box-shadow .2s ease, color .2s ease !important; }
    .hero--btn:focus, .hero--btn:hover {
      box-shadow: 0 5px 20px 6px rgba(0, 0, 0, 0.35) !important;
      color: #f37049 !important; }
  .tech-cards--title {
    font-size: 2rem; }
  .tech-cards--subtitle {
    font-size: 1.6rem; } }

@media screen and (max-width: 460px) {
  .azure-training {
    height: 100rem; }
  .home-instructors--card {
    height: 50rem;
    margin: 0 auto 3rem auto;
    width: 35rem; }
    .home-instructors--card h3 {
      word-wrap: break-word; }
  .home-instructors--col-break {
    width: 100%;
    margin: 0; }
  .home-enterprise--feature-set {
    width: 35rem; } }

@media screen and (max-width: 360px) {
  .tech-cards {
    width: 35rem; }
  .tech-card {
    width: 17rem;
    height: 17rem; }
    .tech-card:nth-child(2n-1) {
      margin-right: 1rem !important; }
    .tech-card:nth-child(-n + 2) {
      margin-bottom: 1rem; }
    .tech-card h2 {
      font-size: 2rem; }
    .tech-card__azure > .tech-card--logo, .tech-card__dynamics-crm > .tech-card--logo, .tech-card__office-365 > .tech-card--logo, .tech-card__visual-studio > .tech-card--logo {
      height: 7rem;
      width: 7rem;
      margin: 2.25rem auto 2.5rem; }
  .azure-training {
    height: 105rem; } }

.customers {
  background: url("../img/clouds-top.svg") top center no-repeat, url("../img/grey-geometry.svg") bottom center repeat;
  background-size: contain, 100% auto;
  overflow: auto;
  overflow-x: hidden; }

.customer-carousel {
  margin-top: 10rem; }
  .customer-carousel--carousel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    margin-top: 5rem; }
  .customer-carousel--arrow {
    height: 7.25rem;
    width: 3rem;
    background: url("../img/logo-carousel-arrow.svg") center center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    -webkit-transition: background-size .2s ease;
            transition: background-size .2s ease; }
    .customer-carousel--arrow:hover {
      background-size: 90% 90%; }
  .customer-carousel--bounding-box {
    height: 12rem;
    width: 100%;
    overflow: hidden;
    position: relative; }
  .customer-carousel--slides {
    height: 12rem;
    width: 1000000px;
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
  .customer-carousel--logo-box {
    padding: 2rem 0;
    height: 100%;
    display: inline-block;
    position: relative;
    width: 272px; }
    .customer-carousel--logo-box:not(:last-child)::after {
      content: '';
      width: 3px;
      height: 2rem;
      background-color: #b4b4b4;
      display: block;
      position: absolute;
      right: 0;
      top: 5rem; }
  .customer-carousel--logo {
    height: 100%;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 52.5%; }

.testimonial-card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  height: 33rem;
  background-color: white;
  margin: 32.5rem 0 12rem;
  position: relative;
  overflow: hidden; }
  .testimonial-card--item {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    display: none; }
  .testimonial-card--testimony {
    margin-top: 3rem;
    padding: 0 4rem;
    height: 20rem;
    overflow-y: scroll; }
    .testimonial-card--testimony::-webkit-scrollbar {
      -webkit-appearance: none;
      width: 4px; }
    .testimonial-card--testimony::-webkit-scrollbar-thumb {
      background-color: #b4b4b4; }
  .testimonial-card--name {
    position: absolute;
    bottom: 3rem;
    left: 37rem; }
    .testimonial-card--name p:last-child {
      margin-bottom: 0; }
  .testimonial-card--image {
    width: 33rem;
    height: 33rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    float: left; }

@media screen and (max-width: 768px) {
  .testimonial-card {
    max-width: 35rem;
    margin: 7rem auto 7rem;
    height: auto; }
    .testimonial-card--image {
      width: 35rem;
      height: 35rem;
      margin: 0;
      background-size: cover;
      background-position: top center;
      background-color: #f3f3f3;
      float: none; }
    .testimonial-card--name {
      position: static;
      margin-left: 2.5rem;
      margin-bottom: 2.5rem; }
      .testimonial-card--name p:first-child {
        margin-bottom: 0.5rem; }
    .testimonial-card--testimony {
      margin-top: 2.5rem;
      padding: 0 2.5rem;
      height: 27.5rem; }
  .customer-carousel--logo-box {
    width: calc(100vw - 70px); }
    .customer-carousel--logo-box:not(:last-child)::after {
      width: 0; }
  .customer-carousel--bounding-box, .customer-carousel--slides {
    height: 22rem; } }

@media screen and (max-width: 1440px) {
  .customer-carousel--logo-box {
    width: 273px; } }

@media screen and (max-width: 1200px) {
  .customer-carousel--logo-box {
    width: 225px; } }

@media screen and (max-width: 991px) {
  .customer-carousel--logo-box {
    width: 170px; } }

@media screen and (max-width: 768px) {
  .customer-carousel--logo-box {
    width: calc(100vw - 74px); }
  .customer-carousel--logo {
    height: 90%;
    width: 80%;
    margin-left: 10%; } }

@media screen and (max-width: 1440px) {
  .testimonial-card {
    margin-top: 25rem; } }

@media screen and (max-width: 991px) {
  .testimonial-card {
    margin-top: 15rem; } }

@media screen and (max-width: 768px) {
  .testimonial-card {
    height: 75rem; } }

.login {
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  .login--bg {
    height: 100%;
    background: #043649 url("../img/login-bg.jpg") center center no-repeat;
    background-size: cover;
    overflow: hidden; }
  .login--logo {
    height: 5rem;
    width: 14.5rem;
    background: url("../img/logo-white.svg") center center no-repeat;
    background-size: contain;
    margin: 0 auto 8rem; }
  .login h1 {
    margin-bottom: 3rem; }
  .login--box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 40rem;
    padding: 3rem 2.5rem 7rem;
    position: relative;
    border-bottom: none;
    margin-bottom: 7rem; }
    .login--box::before, .login--box::after {
      content: '';
      width: 9.5rem;
      height: 3px;
      background-color: white;
      position: absolute;
      bottom: 0; }
    .login--box::before {
      left: 0; }
    .login--box::after {
      right: 0; }
  .login--input, .login .sign-up--input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    box-shadow: 0;
    color: white;
    font-size: 2rem;
    font-weight: 200;
    padding: .5rem 1.5rem;
    margin-top: 2rem;
    width: 100%; }
    .login--input:focus, .login .sign-up--input:focus {
      outline: none; }
    .login--input::-webkit-input-placeholder, .login .sign-up--input::-webkit-input-placeholder {
      color: #e6e6e5; }
    .login--input::-moz-placeholder, .login .sign-up--input::-moz-placeholder {
      color: #e6e6e5; }
    .login--input:-ms-input-placeholder, .login .sign-up--input:-ms-input-placeholder {
      color: #e6e6e5; }
    .login--input::placeholder, .login .sign-up--input::placeholder {
      color: #e6e6e5; }
  .login--sign-in {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    z-index: 1; }
  .login--forgot-pass {
    color: #cdcccc;
    margin-top: 0.5rem;
    -webkit-transition: color .2s ease;
            transition: color .2s ease; }
    .login--forgot-pass:hover {
      color: white;
      text-decoration: none; }

.sign-up--box {
  padding: 3rem 3rem 6rem;
  display: block;
  width: 83.3334%;
  border-bottom: 0;
  margin: 0 auto;
  position: relative; }
  .sign-up--box::before, .sign-up--box::after {
    content: '';
    width: 38rem;
    height: 3px;
    background-color: white;
    position: absolute;
    bottom: 0; }
  .sign-up--box::before {
    left: 0; }
  .sign-up--box::after {
    right: 0; }

.sign-up--input {
  display: block; }

.sign-up--checkbox {
  color: #e6e6e5;
  margin-top: 1rem; }
  .sign-up--checkbox input {
    background: white;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    border: 1px solid #cdcccc;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .sign-up--checkbox input:focus {
      outline: none; }
    .sign-up--checkbox input:checked {
      background: white url("../img/check-box.png") center center no-repeat;
      background-size: 95% 95%; }
  .sign-up--checkbox a {
    color: #e6e6e5;
    text-decoration: underline; }
    .sign-up--checkbox a:hover {
      color: white; }

@media screen and (min-width: 1440px) {
  .sign-up--box::before, .sign-up--box::after {
    width: 37rem; } }

@media screen and (max-width: 1440px) and (min-width: 1200px) {
  .sign-up--box::before, .sign-up--box::after {
    width: 42rem; } }

@media screen and (max-width: 991px) {
  .sign-up--box::before, .sign-up--box::after {
    width: 27rem; } }

@media screen and (max-width: 768px) {
  .login {
    position: initial;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
    .login--bg {
      overflow: auto;
      padding: 4rem 0 0;
      background: #043649 url("../img/blue-geometry-bg.jpg") center center no-repeat; }
    .login--box {
      margin-left: auto;
      margin-right: auto; }
  .sign-up--box {
    width: 60rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 8rem; }
    .sign-up--box::before, .sign-up--box::after {
      width: 19.5rem; }
    .sign-up--box::before {
      left: 0; }
    .sign-up--box::after {
      right: 0; } }

@media screen and (max-width: 510px) {
  .login--box, .sign-up--box {
    width: 35rem; }
    .login--box::before, .login--box::after, .sign-up--box::before, .sign-up--box::after {
      width: 7rem; }
  .login--box::before, .login--box::after {
    width: 6.5rem; } }

.contact--bg {
  min-height: 30rem;
  background: url("../img/grey-geometry.svg") center center;
  background-size: 100% auto;
  padding: 7.5rem 0 9rem; }

.contact--form input[type="text"] {
  height: 5rem; }
  .contact--form input[type="text"]:first-child {
    margin-top: 1.5rem; }

.contact--form textarea {
  min-height: 17.5rem;
  padding-top: 0.75rem !important; }

.contact--form input[type="text"], .contact--form textarea {
  width: 100%;
  font-size: 2rem;
  background-color: white;
  border: 2px solid #cdcccc;
  color: #989898;
  margin-bottom: 2.25rem;
  padding: 0 1.5rem; }
  .contact--form input[type="text"]::-webkit-input-placeholder, .contact--form textarea::-webkit-input-placeholder {
    color: #cdcccc; }
  .contact--form input[type="text"]::-moz-placeholder, .contact--form textarea::-moz-placeholder {
    color: #cdcccc; }
  .contact--form input[type="text"]:-ms-input-placeholder, .contact--form textarea:-ms-input-placeholder {
    color: #cdcccc; }
  .contact--form input[type="text"]::placeholder, .contact--form textarea::placeholder {
    color: #cdcccc; }
  .contact--form input[type="text"]:focus, .contact--form textarea:focus {
    outline: none;
    border-color: #0d71ba;
    color: #0d71ba; }
  .contact--form input[type="text"]::-moz-selection, .contact--form textarea::-moz-selection {
    background-color: #0d71ba;
    color: white; }
  .contact--form input[type="text"]::selection, .contact--form textarea::selection {
    background-color: #0d71ba;
    color: white; }

.contact-us--box {
  border-top: 0;
  padding: 0 3rem;
  margin-top: 5rem;
  margin-bottom: 10rem;
  min-height: 15rem; }
  .contact-us--box::before, .contact-us--box::after {
    content: '';
    height: 3px;
    background-color: white;
    position: absolute;
    top: 0; }
  .contact-us--box::before {
    left: 0;
    width: 1rem; }
  .contact-us--box::after {
    right: 0;
    width: 5rem; }
  .contact-us--box__phone::after {
    width: 8rem; }
  .contact-us--box__email::after {
    width: 13rem; }
  .contact-us--box__mail::after {
    width: 9.5rem; }

.contact-us--box-container {
  position: relative;
  top: -1.25rem; }
  .contact-us--box-container h3 {
    margin-bottom: 0.6rem; }

@media screen and (max-width: 991px) {
  .contact-us--box__phone::after {
    width: 1rem; }
  .contact-us--box__email::after {
    width: 6rem; }
  .contact-us--box__mail::after {
    width: 11.5rem; } }

@media screen and (max-width: 768px) {
  .contact--bg {
    padding-top: 5rem; }
  .contact-us--box {
    max-width: 35rem;
    position: relative;
    margin: 6rem auto 0; }
    .contact-us--box:last-child {
      margin-bottom: 5rem; }
    .contact-us--box__phone::after {
      width: 16rem; }
    .contact-us--box__email::after {
      width: 21rem; }
    .contact-us--box__mail::after {
      width: 8rem; } }

.pricing {
  background: url("../img/white-spacer.png") no-repeat, #f1f1f2 url("../img/grey-clouds.png") no-repeat;
  background-position: top center, top 12rem center;
  background-size: 100% 12rem, contain; }
  .pricing--text {
    margin-top: 6rem; }
  .pricing--box {
    padding: 0 3rem;
    min-height: 57rem;
    margin: 10rem 0;
    position: relative; }
    .pricing--box h3 {
      margin-bottom: 1.9rem; }
  .pricing--plan-wrap {
    position: absolute;
    top: -2.5rem;
    left: 2rem; }
  .pricing--plan {
    display: inline;
    background: white;
    box-shadow: 10px 0 white, -10px 0 white; }
  .pricing--button {
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    display: block;
    outline: 7px solid #f1f1f2; }
    .pricing--button:hover, .pricing--button:active, .pricing--button:visited, .pricing--button:focus {
      outline: 7px solid #f1f1f2 !important;
      box-shadow: 0 0.8rem 0.8rem transparent !important; }
  .pricing--prices {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid #0d71ba;
    font-size: 10rem;
    color: #69555c;
    text-align: center;
    letter-spacing: .3rem; }
    .pricing--prices__upper-text {
      font-size: 3.75rem;
      position: relative;
      bottom: 3.75rem; }
  .pricing--description {
    padding: 5rem 3rem 3.2rem 0;
    border-bottom: 3px solid #f37049;
    margin-bottom: 2rem; }
    .pricing--description .list-text:last-child {
      margin-bottom: 5rem; }

.faq {
  background: #f1f1f2;
  padding-bottom: 3rem; }
  .faq--header {
    margin-top: 10rem; }
  .faq--tabs {
    border-bottom: 0px;
    text-align: center; }
    .faq--tabs li {
      margin: 0 auto;
      float: none;
      margin-top: 2rem;
      margin-bottom: 0;
      width: 19rem;
      display: inline-block; }
      .faq--tabs li:not(:last-child) {
        margin-right: 3rem; }
      .faq--tabs li > a {
        line-height: 2.75 !important;
        padding: 0;
        color: #0d71ba !important; }
        .faq--tabs li > a:hover {
          background-color: white;
          box-shadow: 0 0.8rem 0.8rem rgba(0, 0, 0, 0.25); }
      .faq--tabs li.active > a {
        line-height: 2.5 !important; }

@media screen and (max-width: 1200px) {
  .pricing--prices {
    letter-spacing: 0; }
  .pricing--description {
    padding-bottom: 3rem; } }

@media screen and (max-width: 991px) {
  .pricing {
    background-position: top center, top 15rem center;
    background-size: 100% 15rem, contain; }
    .pricing--box {
      padding: 1rem 2rem 0;
      min-height: 61rem; }
    .pricing--prices {
      font-size: 7rem;
      letter-spacing: 0; }
      .pricing--prices__upper-text {
        font-size: 3.5rem;
        position: relative;
        bottom: 2.5rem; }
    .pricing--description {
      padding: 6rem 0 1.9rem 0;
      font-size: 1.6rem; } }

@media screen and (max-width: 768px) {
  .pricing {
    background-size: 100% 0, 100%;
    background-position: top center, top -7rem center; }
    .pricing--box {
      padding: 0 3rem;
      max-width: 35rem;
      min-height: 50rem;
      margin: 10rem auto 0; }
    .pricing--plan {
      background-color: #f3f3f3;
      box-shadow: 10px 0 #f3f3f3, -10px 0 #f3f3f3; }
    .pricing--description {
      padding: 4rem 0 1.9rem 0; }
    .pricing--button::before {
      left: calc(-3rem - 3px);
      width: 2.25rem; }
    .pricing--button::after {
      right: calc(-13rem - 5px);
      width: 12.5rem; }
      .pricing--box__middle .pricing--button::after {
        right: calc(-13rem - 5px); }
    .pricing .list-text:last-child {
      margin-bottom: 0; } }

@media screen and (max-width: 550px) {
  .pricing {
    background-position-y: -5rem; }
  .faq--tabs li:not(:last-child) {
    margin-right: 0; } }

.learn-more {
  padding: 9rem 0; }
  .learn-more--divider {
    position: relative; }
    .learn-more--divider::after {
      content: '';
      width: 3px;
      height: 100%;
      position: absolute;
      border-right: 3px solid white;
      right: -15px;
      top: 0; }
  .learn-more--para {
    padding: 0 3rem; }

@media screen and (max-width: 768px) {
  .learn-more--divider {
    margin-bottom: 9rem; }
    .learn-more--divider::after {
      border-right: none; } }

.tour {
  background: #f1f1f2 url("../img/grey-clouds.png") top center no-repeat;
  background-size: contain;
  margin-top: 17rem;
  position: relative; }
  .tour::before {
    content: '';
    height: 17rem;
    width: 100%;
    background-color: white;
    position: absolute;
    top: -17rem; }
  .tour--title {
    margin-top: -5rem; }
  .tour--subtitle {
    margin-top: 4rem; }
    .tour--subtitle:last-child {
      margin-bottom: 20rem; }
  .tour--feature-section {
    position: relative;
    margin-top: 10rem; }
    .tour--feature-section:first-child {
      margin-top: 0; }
    .tour--feature-section:last-child {
      margin-bottom: 11rem; }
  .tour--feature-image, .tour--feature-set {
    width: calc(50% - 2rem);
    display: inline-block; }
  .tour--feature-image img {
    width: 100%; }
  .tour--feature-set ~ .tour--feature-image,
  .tour--feature-image ~ .tour--feature-set {
    margin-left: 3rem; }
  .tour--feature-set {
    position: relative;
    top: 5rem; }
  .tour--feature-title, .tour--feature-text {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto; }
  .tour--feature-text {
    margin-top: -.75rem;
    padding-top: 0;
    padding-left: 1rem;
    border-left: 2px solid #0d71ba; }

.curriculum {
  background: #043649 url("../img/large-blue-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 7rem 0;
  position: relative; }
  .curriculum--divider {
    height: 3px;
    width: 100%;
    max-width: 40rem;
    margin: 6rem auto 2rem;
    background-color: #043649; }
  .curriculum--technology {
    margin-top: 10rem; }
  .curriculum--logo {
    height: 10rem;
    width: 10rem;
    margin: 0 auto 2rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative; }
    .curriculum--logo__azure {
      background-image: url("../img/azure-logo.svg");
      background-position: center bottom; }
    .curriculum--logo__dynamics-crm {
      background-image: url("../img/dynamics-crm.svg"); }
    .curriculum--logo__office-365 {
      background-image: url("../img/office-365.svg"); }
    .curriculum--logo__visual-studio {
      background-image: url("../img/visual-studio.svg"); }
  .curriculum--logo-divider {
    height: 3px;
    width: 4rem;
    margin: 0 auto;
    background-color: #f37049; }

.tour-readiness {
  padding: 9rem 0; }
  .tour-readiness--image {
    background: url("../img/tour-readiness.jpg") top left no-repeat;
    background-size: cover;
    position: absolute;
    top: -3px;
    left: -3rem;
    height: calc(100% + 6px);
    width: 55vw;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  .tour-readiness--box {
    border: 3px solid #cdcccc;
    padding: 6rem 2.5rem;
    margin-top: 2rem;
    max-width: 90%;
    position: relative;
    margin: 0 auto; }
  .tour-readiness--title {
    display: inline !important;
    background: white;
    box-shadow: 10px 0 white, -10px 0 white;
    position: absolute;
    top: -4.5rem;
    left: 2.5rem; }
  .tour-readiness--text {
    font-size: 2rem; }
    .tour-readiness--text:first-child {
      margin-top: 15rem; }
  .tour-readiness--btn {
    position: absolute;
    right: 3rem;
    bottom: -2.25rem;
    outline: 10px solid white; }

.training {
  padding: 11rem 0;
  overflow: hidden; }
  .training--list {
    margin: 2rem 0; }
    .training--list li {
      font-weight: 500;
      font-size: 2rem; }
  .training--side-box {
    background-color: #f3f3f3;
    border: 3px solid #cdcccc;
    width: 50vw;
    z-index: 1;
    margin-top: 5rem;
    padding: 4rem; }

@media screen and (min-width: 768px) and (max-width: 991px) {
  .tour-readiness--title {
    width: 26rem; } }

@media screen and (max-width: 768px) {
  .tour--feature-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .tour--feature-section:nth-child(2n) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
  .tour--feature-set {
    top: 0;
    margin-top: 3rem;
    margin-bottom: 5rem; }
  .tour--feature-image, .tour--feature-set {
    width: 35rem; }
  .tour--feature-set ~ .tour--feature-image,
  .tour--feature-image ~ .tour--feature-set {
    margin-left: 0; }
  .training {
    padding: 7rem 0; }
    .training--side-box {
      width: 100vw;
      padding-right: 10rem; }
  .tour-readiness {
    padding: 7rem 0; }
    .tour-readiness--image {
      background-position: top left;
      background-size: cover;
      position: absolute;
      top: -5rem;
      left: 0;
      height: 35rem;
      width: calc(100% + 6px);
      -webkit-transform: translate(-3px, -100%);
              transform: translate(-3px, -100%); }
    .tour-readiness--box {
      margin-top: 38rem; } }

@media screen and (max-width: 480px) {
  .tour-readiness--title {
    width: 26rem; } }

.enterprise {
  background: #f1f1f2 url("../img/grey-clouds.png") top center no-repeat;
  background-size: contain;
  overflow: auto; }
  .enterprise--header {
    background: #f9b24b;
    min-height: 27.5rem;
    padding-bottom: 9rem; }
  .enterprise--text-border {
    display: block;
    margin-top: 8rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    position: relative; }
    .enterprise--text-border::after {
      content: '';
      height: 3px;
      width: 60%;
      position: absolute;
      left: 20%;
      bottom: -0.5rem;
      background: #f37049; }
  .enterprise--ad-hoc {
    margin-bottom: 2rem; }
  .enterprise--levels {
    margin-top: 8rem;
    margin-bottom: -1rem; }
  .enterprise--box {
    padding: 4.5rem 2rem 0;
    border-top: none;
    min-height: 64rem;
    margin: 10rem 0;
    position: relative; }
    .enterprise--box::before, .enterprise--box::after {
      content: '';
      height: 3px;
      background-color: #453a3e;
      position: absolute;
      top: 0; }
    .enterprise--box::before {
      left: 0;
      width: 1rem; }
    .enterprise--box__left::after {
      right: 0;
      width: 5rem; }
    .enterprise--box__middle::after {
      right: 0;
      width: 3.5rem; }
    .enterprise--box__right::after {
      right: 0;
      width: 7rem; }
    .enterprise--box h3 {
      margin-bottom: 1.9rem; }
  .enterprise--plan {
    position: absolute;
    top: -4.5rem; }
  .enterprise--features li {
    font-weight: 900;
    line-height: 2;
    margin-left: 1.5rem;
    position: relative; }
    .enterprise--features li::before {
      content: '\2013';
      color: #f37049;
      position: absolute;
      left: -1.5rem; }
  .enterprise--features__note {
    font-weight: 500;
    font-size: 1.8rem;
    color: #69555c;
    padding-left: 1.75rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    position: relative; }
    .enterprise--features__note::before {
      content: '';
      width: 6px;
      height: 6px;
      background-color: #69555c;
      position: absolute;
      top: 1rem;
      left: 0rem; }
  .enterprise--card {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
    background: white;
    padding: 3rem;
    margin-bottom: 15rem; }
    .enterprise--card h2 {
      margin-top: 0;
      margin-bottom: 5rem; }
  .enterprise--image-placeholder {
    background: #e6e6e5;
    width: 40rem;
    height: 26.5rem;
    position: absolute;
    right: calc(3rem + 15px);
    top: 3rem; }
  .enterprise--classroom {
    width: 100%;
    height: 65rem;
    background: url("../img/enterprise-readiness-classroom.jpg") center center no-repeat;
    background-size: cover;
    margin-top: -30rem; }

@media screen and (max-width: 1440px) and (min-width: 1200px) {
  .enterprise--box__left::after {
    width: 9rem; }
  .enterprise--box__middle::after {
    width: 7rem; }
  .enterprise--box__right::after {
    width: 10.5rem; } }

@media screen and (max-width: 991px) {
  .enterprise--box {
    padding-top: 7.5rem;
    min-height: 83rem; }
  .enterprise--card {
    padding-right: 3rem; }
  .enterprise--image-placeholder {
    width: 100%;
    height: 26rem;
    position: static;
    float: left;
    margin-bottom: 3rem; }
  .enterprise--classroom {
    margin-top: -43rem; } }

@media screen and (max-width: 768px) {
  .enterprise--box {
    height: auto;
    min-height: inherit;
    padding-top: 4rem;
    padding-bottom: 1.5rem;
    max-width: 35rem;
    margin: 9rem auto 0; }
    .enterprise--box__left::after {
      width: 4rem; }
    .enterprise--box__middle::after {
      width: 2.5rem; }
    .enterprise--box__right::after {
      width: 6rem; }
  .enterprise--card {
    margin: 8rem auto 0;
    max-width: 60rem;
    width: 100%; }
  .enterprise--image-placeholder {
    background: transparent;
    display: none; }
  .enterprise--classroom {
    margin-top: -20rem; } }

.open-session {
  background: white; }
  .open-session__bottom-border {
    border-bottom: 3px solid #f3f3f3; }
  .open-session--session {
    margin: 2rem 0 5rem;
    overflow: hidden; }
    .open-session--session__padding {
      margin: 8rem 0 10rem; }
  .open-session--year-section {
    position: relative; }
  .open-session--year {
    margin-top: 5rem;
    margin-bottom: 4rem; }
  .open-session--month-section {
    position: relative;
    margin-top: 2rem; }
  .open-session--month {
    position: absolute;
    left: calc(8.33333333% + 15px);
    top: -4rem;
    z-index: 19;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  .open-session--box {
    border: 3px solid #cdcccc;
    position: relative;
    min-height: 22rem;
    margin-top: 1.5rem;
    padding: 2rem 5rem 2rem 2rem;
    width: calc(100% - 22rem - 30px);
    display: inline-block;
    margin-right: 30px; }
  .open-session--title {
    margin-left: -1rem;
    position: relative;
    top: -4rem;
    padding: 0 1rem;
    display: inline;
    background-color: white;
    box-shadow: 10px 0 0 white; }
  .open-session--info {
    margin-top: -1rem; }
  .open-session--instructor {
    margin-top: 1rem; }
  .open-session--price {
    position: absolute;
    right: 5rem; }
  .open-session--date-box {
    border: 3px solid #cdcccc;
    margin-top: 1.5rem;
    padding-top: 2.5rem;
    height: 22rem;
    width: 22rem;
    display: inline-block;
    position: relative;
    float: right; }
  .open-session--status {
    color: #cdcccc;
    height: 5rem;
    width: calc(100% + 6px);
    background-color: white;
    position: absolute;
    bottom: -3px;
    left: -3px;
    border: 3px solid #cdcccc;
    line-height: 2.5; }
    .open-session--status__open {
      background-color: #f37049;
      border: none;
      text-align: center;
      cursor: pointer;
      -webkit-transition: .2s background-color ease;
              transition: .2s background-color ease; }
      .open-session--status__open:hover {
        background-color: #0d71ba; }
      .open-session--status__open a {
        color: white;
        line-height: 2.75;
        font-size: 1.8rem;
        text-align: center;
        text-decoration: none; }
  .open-session--slider-container {
    width: 100%;
    overflow: hidden; }
  .open-session--slider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100000px;
    margin-left: -62.5vw;
    padding: 10rem 0 5rem;
    position: relative;
    left: 0; }
  .open-session--slide {
    width: calc(75vw - 1rem);
    position: relative;
    margin-right: 2rem; }
    .open-session--slide img {
      width: 100%; }
  .open-session--slide-title {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: #453a3e;
    background-color: white;
    padding: 1rem; }

@media screen and (max-width: 991px) {
  .open-session--box {
    min-height: 20rem;
    width: calc(100% - 20rem - 30px); }
  .open-session--date-box {
    height: 20rem;
    width: 20rem; } }

@media screen and (max-width: 768px) {
  .open-session--session__padding {
    margin-top: 7rem; }
  .open-session--box {
    min-height: 20rem;
    width: 100%; }
  .open-session--month {
    top: -5rem;
    left: 15px;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  .open-session--date-box {
    height: 20rem;
    width: 100%;
    margin-bottom: 7rem; }
  .open-session--price {
    position: initial;
    right: 5rem; }
  .open-session--slider {
    padding-top: 0; }
  .open-session--slide-title {
    top: -1rem;
    left: 1rem;
    padding: .5rem;
    font-size: 1.8rem; } }

.instructor {
  padding: 14rem 0 5rem;
  background-color: white; }
  .instructor--bg {
    background: url("../img/page-header.jpg") top center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 36rem;
    z-index: 0; }
  .instructor--card {
    background-color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    min-height: 68rem;
    overflow: auto;
    padding: 3.25rem 3rem;
    opacity: 0.9999; }
  .instructor--profile {
    width: 100%;
    height: auto; }
  .instructor--mvp {
    height: 12rem;
    width: 100%;
    background-image: url("../img/mvp-symbol.png");
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 2.5rem; }
  .instructor--name {
    margin-top: -0.5rem; }
  .instructor--title {
    margin-top: -1rem;
    line-height: 1.4;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #f37049;
    margin-bottom: 2rem; }
    .instructor--title__thin {
      margin: -.75rem 0 3rem; }
  .instructor .instructor--para {
    margin-bottom: 1.5rem; }
  .instructor--logos {
    margin-top: 3rem; }
  .instructor--logo {
    width: 4rem;
    height: 4rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    margin-right: 2.5rem;
    cursor: pointer; }
    .instructor--logo:hover {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); }
    .instructor--logo__facebook {
      background-image: url("../img/footer-facebook.svg"); }
    .instructor--logo__twitter {
      background-image: url("../img/footer-twitter.svg"); }
    .instructor--logo__linked-in {
      background-image: url("../img/footer-linked-in.svg"); }
    .instructor--logo__github {
      background-image: url("../img/footer-github.svg"); }
  .instructor--image {
    width: 100%;
    padding-bottom: 110%;
    background-color: #e6e6e5;
    margin-bottom: -1rem;
    display: block; }
  .instructor--info {
    margin-bottom: .5rem;
    word-wrap: break-word; }
    .instructor--info:last-child {
      margin-bottom: 7rem; }
  .instructor p:last-child {
    margin-top: -0.5rem;
    margin-bottom: 7rem; }

.instructors {
  padding-top: 5rem; }
  .instructors--title {
    margin-bottom: 6rem; }

@media screen and (max-width: 768px) {
  .instructor--profile {
    margin: 0 auto;
    max-width: 50rem; }
  .instructor--mvp {
    background-position: center left;
    margin-bottom: 5rem; }
  .instructor--card {
    margin: 0 5rem;
    padding-left: 0;
    padding-right: 0; } }

.billing--title {
  margin-bottom: 4rem; }

.billing--form input[type="text"], .billing--form select {
  height: 5rem;
  width: calc(50% - 7.5px) !important;
  float: left;
  font-size: 2rem;
  background-color: white;
  border: 3px solid #cdcccc;
  color: #989898;
  margin-bottom: 2.25rem;
  padding: 0 1.5rem;
  border-radius: 0 !important;
  -webkit-appearance: none; }
  .billing--form input[type="text"]::-webkit-input-placeholder, .billing--form select::-webkit-input-placeholder {
    color: #cdcccc; }
  .billing--form input[type="text"]::-moz-placeholder, .billing--form select::-moz-placeholder {
    color: #cdcccc; }
  .billing--form input[type="text"]:-ms-input-placeholder, .billing--form select:-ms-input-placeholder {
    color: #cdcccc; }
  .billing--form input[type="text"]::placeholder, .billing--form select::placeholder {
    color: #cdcccc; }
  .billing--form input[type="text"]:focus, .billing--form select:focus {
    outline: none;
    border-color: #0d71ba;
    color: #0d71ba; }
  .billing--form input[type="text"]::-moz-selection, .billing--form select::-moz-selection {
    background-color: #0d71ba;
    color: white; }
  .billing--form input[type="text"]::selection, .billing--form select::selection {
    background-color: #0d71ba;
    color: white; }
  .billing--form input[type="text"]:nth-child(2n -1), .billing--form select:nth-child(2n -1) {
    margin-right: 15px; }

.billing--form select {
  border-radius: 0px;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../img/select-arrows.svg");
  background-size: 2rem 2rem;
  background-position: 99% center;
  background-repeat: no-repeat;
  color: #cdcccc; }
  .billing--form select:focus {
    background-image: url("../img/select-arrows-active.svg"); }
  .billing--form select::-ms-expand {
    display: none; }

.billing--form-spacer {
  width: calc(50% - 7.5px) !important;
  margin-bottom: 2.25rem;
  height: 5rem;
  float: left; }

.billing--forms-spacer {
  height: 7rem; }

@media screen and (max-width: 768px) {
  .billing--form input[type="text"], .billing--form select {
    width: 100% !important; } }

@media screen and (max-width: 500px) {
  .billing--form select {
    background-position: 98% center; } }

.refer {
  padding: 7rem 0 3rem; }
  .refer--textarea {
    border: 3px solid #cdcccc;
    padding: 2rem;
    width: 100%;
    height: 60rem;
    resize: none;
    color: #b4b4b4;
    margin: 2rem 0; }
    .refer--textarea:focus {
      outline: none;
      border-color: #0d71ba;
      color: #0d71ba; }
  .refer--btn.btn__link.btn__purple {
    padding: 0 1.5rem;
    width: 25rem; }
  .refer--dark-section {
    padding: 7rem; }
  .refer--image-placeholder {
    width: 100%;
    height: 25rem;
    background: #69555c; }

.career {
  padding: 7rem 0; }
  .career--jobs {
    border-bottom: 0; }
  .career--current-openings {
    text-transform: uppercase;
    background-color: #cdcccc;
    color: #453a3e;
    font-weight: 900; }
  .career--job-titles {
    background-color: #cdcccc;
    height: 4rem;
    width: 100%;
    line-height: 2.25;
    padding-left: 0.75rem;
    border-bottom: 3px solid #f37049; }
  .career--job {
    width: 100%;
    margin-right: 4rem;
    border-bottom: 1px solid #cdcccc;
    padding-left: 0.75rem; }
    .career--job a {
      color: #453a3e;
      font-weight: 900;
      padding-left: 0 !important;
      border: none !important; }
      .career--job a:hover {
        background: transparent !important;
        border: none !important; }
    .career--job.active {
      border-bottom: 1px solid #cdcccc; }
      .career--job.active a {
        color: #0d71ba !important;
        border: 0 !important;
        padding-bottom: 10px;
        background-color: transparent !important; }
  .career--title {
    padding-top: 0; }
  .career--job-name {
    margin-top: 0; }

@media screen and (min-width: 768px) {
  .career--content .tab-pane {
    border-left: 3px solid #818181;
    padding-left: 2rem;
    margin-left: -30px; } }

@media screen and (max-width: 768px) {
  .career {
    padding: 4rem 0; }
    .career--jobs {
      margin-bottom: 5rem; } }

.company {
  padding: 7rem 0 5rem;
  background-color: white;
  overflow: auto;
  min-height: 95rem; }
  .company--card {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 5rem;
    padding-bottom: 3rem;
    background-color: white; }
  .company--title {
    margin: 5rem 0 3rem 7rem; }
  .company--history {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    margin: 0 7rem; }
  .company--card-header {
    background-image: url("../img/company-history.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 20rem; }
  .company--bg {
    background: url("../img/page-header.jpg") top center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 95rem;
    z-index: 0; }
  .company--team {
    margin-top: 4rem; }
  .company--down-arrow {
    background: url("../img/down-arrow.svg") center center no-repeat;
    background: contain;
    width: 7.2rem;
    height: 4rem;
    margin: 0 auto; }

@media screen and (max-width: 768px) {
  .company--history {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1; } }

@media screen and (max-width: 480px) {
  .company {
    padding-bottom: 2rem; }
    .company--title {
      margin-top: 4rem;
      margin-left: 5rem; }
    .company--history {
      margin: 0 5rem; } }

.blog {
  padding: 7rem 0;
  background: #f1f1f2 url("../img/four-layer-cloud-bg.png") top center no-repeat;
  background-size: 100% auto;
  /* Reply section */
  /* This is the right side bar styling */ }
  .blog--list {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    background-color: white; }
  .blog--categories {
    border: none; }
  .blog--category-box {
    height: 5rem;
    background-color: #e6e6e5; }
  .blog--current-category {
    font-size: 2rem;
    line-height: 2.5;
    color: #676767;
    min-width: 20rem;
    padding: 0 2rem;
    float: right;
    text-align: center;
    border-left: 1px solid white; }
  .blog--category {
    width: 25%;
    background-color: #e6e6e5;
    height: 5rem;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    overflow: hidden; }
    .blog--category:not(:last-child) {
      border-right: 1px solid white; }
    .blog--category a {
      color: #676767;
      border-radius: 0 !important;
      border: none !important;
      margin: 0 !important;
      padding: 11px !important; }
      .blog--category a:hover {
        color: #0d71ba !important;
        background-color: #f3f3f3; }
    .blog--category.active a {
      background-color: white !important;
      border-radius: 0;
      border: none !important;
      color: #0d71ba !important; }
  .blog--post {
    padding: 2rem;
    margin-bottom: 2rem; }
  .blog--preview-image {
    background-color: #cdcccc;
    width: 100%;
    padding-bottom: 40%;
    margin: 2rem 0; }
  .blog--prev, .blog--next {
    display: inline-block;
    margin-top: 4rem;
    margin-bottom: -2rem;
    text-decoration: none !important;
    cursor: pointer; }
    .blog--prev p, .blog--next p {
      display: inline-block; }
  .blog--next {
    float: right; }
  .blog--arrow {
    background: url("../img/blue-blog-arrow.svg") center center no-repeat;
    background-size: contain;
    height: 2.5rem;
    width: 1rem;
    display: inline-block;
    position: relative;
    top: 0.5rem; }
    .blog--arrow__prev {
      margin-right: 1rem; }
    .blog--arrow__next {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
      margin-left: 1rem; }
  .blog--reply {
    margin-top: 2rem; }
  .blog--reply-input {
    height: 4.5rem;
    border: 3px solid #cdcccc;
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 2rem; }
    .blog--reply-input__short {
      width: 50%; }
    .blog--reply-input__long {
      width: 100%;
      min-height: 16rem;
      resize: none; }
  .blog--subscribe {
    color: white;
    background-color: #0d71ba;
    display: block;
    font-size: 2rem;
    padding: 1.5rem;
    margin-bottom: 3rem; }
    .blog--subscribe:hover {
      color: white;
      text-decoration: none; }
  .blog--recent-posts {
    padding: 2rem;
    margin-bottom: 2rem;
    border: 3px solid #453a3e;
    position: relative; }
    .blog--recent-posts p {
      position: absolute;
      top: -1.5rem;
      background-color: white;
      padding: 0 1rem;
      left: 1rem; }
    .blog--recent-posts a {
      color: #453a3e;
      display: inline-block;
      margin-top: 1.5rem;
      border-bottom: 1px solid #cdcccc; }
      .blog--recent-posts a:first-child {
        margin-top: 2.5rem; }
      .blog--recent-posts a:hover {
        text-decoration: none;
        border-bottom: 1px solid #0d71ba; }
  .blog--share-post {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    background-color: white; }
    .blog--share-post a {
      width: 100%;
      height: 100%; }
    .blog--share-post .footer--logos {
      margin-bottom: 0.75rem; }

@media screen and (max-width: 991px) {
  .blog--reply-input__short {
    width: 100%; } }

@media screen and (max-width: 768px) {
  .blog--category {
    width: 50%; }
    .blog--category:nth-child(-1n + 2) {
      z-index: 1;
      border-bottom: 1px solid white; }
    .blog--category:nth-child(2) {
      border-right: none; }
  .blog--reply-input__short {
    width: 100%; }
  .blog--subscribe-text {
    margin-top: 5rem; }
  .blog--subscribe {
    margin-bottom: 5rem; }
  .blog--recent-posts p {
    background-color: #f3f3f3; } }

.courses {
  background-color: #f3f3f3;
  padding: 1rem 0 7rem; }
  .courses--bread-crumbs {
    margin-bottom: 4rem; }
    .courses--bread-crumbs h3 {
      display: inline-block;
      position: relative; }
      .courses--bread-crumbs h3:not(:last-child) {
        margin-right: 4rem; }
        .courses--bread-crumbs h3:not(:last-child) a {
          color: #cdcccc; }
      .courses--bread-crumbs h3:not(:last-child)::after {
        content: '';
        width: 1rem;
        height: 3rem;
        background-image: url("../img/breadcrumbs-arrow-grey.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        right: -2.5rem; }
      .courses--bread-crumbs h3:nth-last-child(2)::after {
        background-image: url("../img/breadcrumbs-arrow-blue.svg") !important; }
      .courses--bread-crumbs h3 a {
        color: #043649; }
  .courses--tabs {
    float: left; }
    .courses--tabs a {
      color: #f37049;
      text-decoration: none; }
  .courses--tab:hover a {
    color: #0d71ba; }
  .courses--tab.active:hover a {
    color: #f37049; }
  .courses--sort {
    background-color: white;
    height: 4rem;
    border-radius: 0 !important;
    border: 3px solid #cdcccc;
    min-width: 25rem;
    margin-top: 1rem;
    color: #b4b4b4;
    font-size: 1.8rem;
    font-weight: 900;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
    z-index: 2;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    float: right; }
    .courses--sort::before {
      content: '';
      position: absolute;
      top: 0;
      right: 4.25rem;
      width: 3px;
      height: 3.5rem;
      background-color: #cdcccc; }
    .courses--sort::after {
      content: '';
      position: absolute;
      top: 1.375rem;
      right: 1.5rem;
      width: 0;
      height: 4rem;
      border-style: solid;
      border-width: .75rem .75rem 0 .75rem;
      border-color: #cdcccc transparent transparent transparent; }
  .courses--sort-menu {
    height: auto;
    width: 25rem;
    margin: 2px 0 0 0;
    position: absolute;
    left: -3px;
    background-color: white;
    list-style-type: none;
    border: 3px solid #cdcccc; }
    .courses--sort-menu li {
      display: block; }
      .courses--sort-menu li:hover {
        background-color: #f3f3f3; }
        .courses--sort-menu li:hover a {
          color: #0d71ba; }
      .courses--sort-menu li a {
        color: #b4b4b4;
        font-weight: 900;
        padding: 0.5rem 1.5rem;
        height: 100%;
        width: 100%;
        display: block;
        text-decoration: none; }
  .courses--link:hover {
    text-decoration: none; }
  .courses--course {
    border: 3px solid #e6e6e5;
    background-color: white;
    padding: 0rem 2.5rem 4rem;
    margin-bottom: 0.75rem;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: default; }
    .courses--course:first-child::before {
      content: '';
      width: calc(100% + 6px);
      height: 3px;
      background-color: #f37049;
      position: absolute;
      top: -3px;
      left: -3px; }
    .courses--course:hover {
      border: 3px solid #f37049; }
      .courses--course:hover .courses--add, .courses--course:hover .courses--added {
        opacity: 1;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
    .courses--course__added::after {
      content: '';
      width: 3px;
      height: calc(100% + 6px);
      background-color: #f37049;
      position: absolute;
      right: -3px;
      top: -3px; }
  .courses--add {
    width: 4.5rem;
    height: calc(100% + 6px);
    display: none;
    background-color: #f37049;
    position: absolute;
    top: -3px;
    right: calc(-4.5rem - 4px);
    border-left: 4px solid #f3f3f3;
    color: white;
    font-size: 4rem;
    font-weight: 300;
    opacity: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer; }
    .courses--add:hover {
      opacity: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
  .courses--adding {
    display: inline-block;
    height: 4.5rem;
    width: 20rem;
    position: absolute;
    top: -6rem;
    right: calc(-10rem - 1px);
    color: white;
    background-color: #f37049;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 01.5;
    text-align: center;
    z-index: 9999; }
    .courses--adding::after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: .75rem 1rem 0 1rem;
      border-color: #f37049 transparent transparent transparent;
      position: absolute;
      bottom: -.6rem;
      left: 50%;
      margin-left: -1rem; }
  .courses--removing {
    display: inline-block;
    height: 4.5rem;
    width: 24rem;
    position: absolute;
    top: -6rem;
    right: calc(-12rem - 1px);
    color: white;
    background-color: #b4b4b4;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.5;
    text-align: center;
    z-index: 9999; }
    .courses--removing::after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: .75rem 1rem 0 1rem;
      border-color: #b4b4b4 transparent transparent transparent;
      position: absolute;
      bottom: -.6rem;
      left: 50%;
      margin-left: -1rem; }
  .courses--added {
    width: 4.5rem;
    height: calc(100% + 6px);
    display: none;
    background-color: #e6e6e5;
    position: absolute;
    top: -3px;
    right: calc(-4.5rem - 4px);
    border-left: 4px solid #f3f3f3;
    color: white;
    font-size: 6rem;
    font-weight: 300;
    opacity: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer; }
    .courses--added:hover {
      opacity: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #cdcccc; }
  .courses--main-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .courses--course-author, .courses--course-level, .courses--course-published, .courses--course-length, .courses--stars, .courses--due-date, .courses--course-completion, .courses--course-certificate {
    display: inline;
    width: 20%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: grow;
    -webkit-flex: grow 0;
        -ms-flex: grow 0;
            flex: grow 0; }
  .courses--course-level, .courses--course-published, .courses--course-length, .courses--course-completion, .courses--due-date, .courses--course-certificate {
    text-align: center; }
  .courses--course-published, .courses--course-completion, .courses--course-author {
    width: 25%;
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%; }
  .courses--stars, .courses--due-date, .courses--course-level {
    width: 15%;
    -webkit-flex-basis: 15%;
        -ms-flex-preferred-size: 15%;
            flex-basis: 15%; }
  .courses--due-date, .courses--course-certificate {
    font-size: 1.8rem; }
  .courses--stars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .courses--star {
    height: 2rem;
    width: 2rem;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    border-right: 3px solid transparent; }
    .courses--star__filled {
      background-image: url("../img/star-filled.svg"); }
    .courses--star__empty {
      background-image: url("../img/star-empty.svg"); }
  .courses--course-description {
    margin-top: 4rem;
    opacity: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .courses--course-description:not(.hidden) ~ .courses--course-expand {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .courses--course-description p {
      width: 75rem;
      display: inline-block;
      margin-right: 5rem; }
  .courses--course-certificate a {
    text-decoration: none; }
    .courses--course-certificate a:hover {
      color: #0d71ba; }
  .courses--start-btn {
    display: inline !important;
    padding: 1.5rem 4rem;
    line-height: 1.25 !important; }
  .courses--course-expand {
    background: url("../img/down-arrow.svg") center center no-repeat;
    background-size: contain;
    width: 3.5rem;
    height: 1rem;
    margin-top: 2rem;
    position: absolute;
    left: calc(50% - 1.75rem);
    bottom: 1.5rem; }
    .courses--course:hover .courses--course-expand {
      background: url("../img/down-arrow-orange.svg") center center no-repeat; }
  .courses--top {
    padding: 7rem 0 3rem; }
    .courses--top__search {
      padding: 3rem 0; }
    .courses--top h1 {
      margin-bottom: -2rem; }
  .courses--main-path {
    width: 100%;
    padding-bottom: 45%;
    background-color: #043649;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    -webkit-transition: box-shadow .3s ease, -webkit-transform .5s ease;
            transition: box-shadow .3s ease, transform .5s ease; }
    .courses--main-path:hover {
      box-shadow: 0 12px 16px -4px rgba(0, 0, 0, 0.4);
      -webkit-transform: scale(1.005);
              transform: scale(1.005); }
    .courses--main-path__azure {
      background-image: url("../img/course-path-azure.jpg");
      margin-top: 3rem; }
    .courses--main-path__dynamics {
      background-image: url("../img/course-path-dynamics.jpg");
      margin-top: 3rem; }
    .courses--main-path__visual-studio {
      background-image: url("../img/course-path-visual-studio.jpg"); }
    .courses--main-path__office365 {
      background-image: url("../img/course-path-office365.jpg");
      margin-bottom: 7.5rem; }
  .courses--learning-paths {
    margin: 3rem 0 7rem; }
  .courses--learning-path {
    width: 100%;
    display: block;
    background-color: #043649;
    height: 6rem;
    margin-bottom: 30px;
    position: relative;
    padding-left: 8rem;
    color: white;
    text-decoration: none;
    font-size: 3rem;
    line-height: 2;
    font-weight: 900;
    overflow: hidden;
    -webkit-transition: box-shadow .3s ease, -webkit-transform .5s ease;
            transition: box-shadow .3s ease, transform .5s ease;
    cursor: pointer; }
    .courses--learning-path:hover, .courses--learning-path:active, .courses--learning-path:focus {
      box-shadow: 0 12px 16px -4px rgba(0, 0, 0, 0.4);
      color: white;
      text-decoration: none; }
    .courses--learning-path__azure::before, .courses--learning-path__dynamics-crm::before, .courses--learning-path__office-365::before, .courses--learning-path__visual-studio::before {
      content: '';
      width: 6rem;
      height: 6rem;
      position: absolute;
      left: 0;
      top: 0;
      background-color: #0d71ba;
      background-position: center;
      background-repeat: no-repeat; }
    .courses--learning-path__azure::before {
      background-image: url("../img/azure-logo.svg");
      background-size: 85%; }
    .courses--learning-path__dynamics-crm::before {
      background-image: url("../img/dynamics-crm.svg");
      background-size: 70%; }
    .courses--learning-path__office-365::before {
      background-image: url("../img/office-365.svg");
      background-size: 65%; }
    .courses--learning-path__visual-studio::before {
      background-image: url("../img/visual-studio.svg");
      background-size: 70%; }
  .courses--search {
    width: 100%;
    font-size: 2rem; }
  .courses--search-field {
    border: 3px solid #0d71ba;
    width: calc(100% - 17.75rem);
    color: #0d71ba;
    height: 5rem;
    padding: 0 1.5rem; }
    .courses--search-field:focus {
      outline: none; }
    .courses--search-field::-webkit-input-placeholder {
      color: #0d71ba; }
    .courses--search-field::-moz-placeholder {
      color: #0d71ba; }
    .courses--search-field:-ms-input-placeholder {
      color: #0d71ba; }
    .courses--search-field::placeholder {
      color: #0d71ba; }
    .courses--search-field::-moz-selection {
      color: white;
      background-color: #0d71ba; }
    .courses--search-field::selection {
      color: white;
      background-color: #0d71ba; }
  .courses--search .courses--search-submit {
    height: 5rem;
    margin-left: -7px;
    border: 3px solid #0d71ba;
    color: #0d71ba !important;
    font-size: 2rem;
    padding: 0;
    -webkit-transition: background-color .3s ease, color .3s ease;
            transition: background-color .3s ease, color .3s ease; }
    .courses--search .courses--search-submit:hover, .courses--search .courses--search-submit:focus {
      background-color: #0d71ba;
      color: white !important;
      box-shadow: none; }

.course-license {
  padding: 11rem 0; }
  .course-license--title {
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    position: relative; }
    .course-license--title::after {
      content: '';
      width: 25rem;
      height: 3px;
      background-color: #453a3e;
      position: absolute;
      left: 50%;
      margin-left: -12.5rem;
      bottom: 0; }
  .course-license--btn {
    margin-top: 5rem; }

@media screen and (max-width: 1250px) and (min-width: 1200px) {
  .courses--sort {
    position: relative;
    right: 5rem; }
  .courses--list {
    margin-right: 5rem; } }

@media screen and (max-width: 1041px) and (min-width: 991px) {
  .courses--sort {
    position: relative;
    right: 5rem; }
  .courses--list {
    margin-right: 5rem; } }

@media screen and (max-width: 818px) and (min-width: 768px) {
  .courses--sort {
    position: relative;
    right: 5rem; }
  .courses--list {
    margin-right: 5rem; } }

@media screen and (max-width: 768px) {
  .courses--sort {
    position: relative;
    right: 5rem; }
  .courses--list {
    margin-right: 5rem; }
  .courses--add, .courses--added {
    opacity: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; } }

@media screen and (min-width: 1200px) {
  .courses--search-field {
    width: calc(100% - 18rem); } }

@media screen and (max-width: 991px) {
  .courses--learning-path {
    margin-bottom: 2rem !important; }
  .courses--main-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: space-f;
    -webkit-justify-content: space-f;
        -ms-flex-pack: space-f;
            justify-content: space-f; }
  .courses--main-info__expanded {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    height: 15rem; }
  .courses--course-author {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    width: 70%;
    -webkit-flex-basis: 70%;
        -ms-flex-preferred-size: 70%;
            flex-basis: 70%; }
  .courses--stars, .courses--due-date {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
    width: 30%;
    -webkit-flex-basis: 30%;
        -ms-flex-preferred-size: 30%;
            flex-basis: 30%;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    text-align: right;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .courses--course-level, .courses--course-published, .courses--course-length, .courses--course-completion, .courses--course-certificate {
    text-align: left;
    display: none;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }

@media screen and (max-width: 818px) {
  .courses--list .spread-sheet--box {
    margin-right: -5rem; } }

@media screen and (max-width: 768px) {
  .courses--main-path {
    max-width: 45rem;
    margin: 0 auto 2rem;
    padding-bottom: 0;
    height: 21rem; }
    .courses--main-path__azure {
      margin-top: 3rem; }
    .courses--main-path__dynamics {
      margin-top: 0; }
    .courses--main-path__office365 {
      margin-bottom: 7rem; }
  .courses--adding, .courses--removing {
    right: -3px; }
  .courses--tabs {
    float: none; }
  .courses--sort {
    float: none;
    margin-bottom: 2rem;
    margin-left: 5rem;
    margin-right: -5rem; }
    .courses--sort ul {
      width: calc(100% - 6px); } }

@media screen and (max-width: 600px) {
  .courses--search-field {
    width: calc(100% - 17.75rem); }
  .courses--course-description {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .courses--course-description p {
      display: inline-block;
      width: 100%; }
  .courses--start-btn {
    margin: 1rem 0; } }

@media screen and (max-width: 480px) {
  .courses--main-path {
    max-width: 35rem;
    height: 15rem; }
  .courses--search-field {
    width: calc(100% - 11.75rem); }
  .courses--search .courses--search-submit {
    min-width: 12rem; } }

@media screen and (max-width: 460px) {
  .courses--tab:last-child {
    margin-top: 1.25rem;
    z-index: 2; } }

.account-links {
  background-color: white;
  position: absolute;
  right: 0rem;
  width: 30rem;
  list-style-type: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); }
  .account-links li a {
    font-size: 2rem;
    color: #453a3e;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.75;
    padding: .5rem 1.5rem;
    width: 100%;
    display: inline-block;
    text-decoration: none; }
    .account-links li a:hover {
      color: #0d71ba; }
  .account-links li:first-child a {
    padding-top: 1rem; }
  .account-links--divider {
    width: 6rem;
    height: 3px;
    background-color: #f37049;
    margin: 1rem 0 1rem 1.5rem; }
  .account-links--last-link {
    padding-bottom: 1rem; }
  .account-links--logout {
    background-color: #cdcccc;
    padding: .75rem 0;
    border-top: 3px solid #f37049; }

.account {
  min-height: calc(100vh - 12rem);
  background-color: #f3f3f3;
  position: relative;
  margin-left: 35rem;
  padding-left: 3.6rem; }
  .account--header {
    background: #043649 url("../img/account-header.png") center center no-repeat;
    background-size: cover;
    height: 11rem;
    margin-left: -3.6rem;
    padding: 3.5rem 3rem 0; }
    .account--header h1 {
      margin-right: 3rem; }
  .account--sub-nav {
    background-color: #e6e6e5;
    border-bottom: 3px solid #cdcccc;
    margin-left: -15px;
    width: calc(100% + 30px);
    padding: 2.5rem 0; }
    .account--sub-nav h3 {
      margin: 0;
      position: relative;
      left: -.8rem;
      display: block;
      text-align: center;
      margin: 0 auto; }
      .account--sub-nav h3::after {
        content: '';
        position: relative;
        top: 2rem;
        left: 1rem;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0.7rem 0.7rem 0 0.7rem;
        border-color: #69555c transparent transparent transparent; }
  .account--sub-nav-section {
    border-top: 3px solid #cdcccc;
    margin: 2.5rem 0 0;
    list-style-type: none;
    padding: 2.5rem 2.5rem 0; }
  .account--top-actions {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: -2rem;
    margin-top: 3rem; }
  .account--top-spacer {
    width: 100%;
    height: 6rem; }
  .account--cta {
    display: inline-block;
    position: relative;
    display: inline;
    font-size: 2.75rem;
    font-weight: 600;
    color: #f37049; }
    .account--cta:hover, .account--cta:focus, .account--cta:visited, .account--cta:active {
      text-decoration: none;
      color: #f37049;
      outline: none; }
    .account--cta h4 {
      display: inline-block;
      margin-left: 0.5rem; }
  .account--filter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 3rem; }
  .account--search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
  .account--search-field, .account--search-submit {
    border: 3px solid #cdcccc !important;
    color: #b4b4b4 !important;
    font-size: 2rem;
    padding: 0 1rem;
    height: 4rem !important; }
  .account--search-field {
    width: 100%; }
    .account--search-field:hover, .account--search-field:focus, .account--search-field:active {
      outline: none !important; }
    .account--search-field::-moz-selection {
      color: white;
      background-color: #b4b4b4; }
    .account--search-field::selection {
      color: white;
      background-color: #b4b4b4; }
  .account--search-submit {
    margin-left: -3px;
    min-width: 14rem !important;
    overflow: hidden;
    color: #b4b4b4 !important;
    -webkit-transition: color .2s ease;
            transition: color .2s ease; }
    .account--search-submit:hover, .account--search-submit:focus, .account--search-submit:active {
      box-shadow: none !important;
      color: #0d71ba !important; }
  .account--sort {
    background-color: white;
    height: 4rem;
    border-radius: 0 !important;
    border: 3px solid #cdcccc;
    min-width: 25rem;
    margin-left: 2rem;
    color: #cdcccc;
    font-size: 1.8rem;
    font-weight: 900;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.8;
    z-index: 999;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    float: right; }
    .account--sort::before {
      content: '';
      position: absolute;
      top: 0;
      right: 4.25rem;
      width: 3px;
      height: 3.5rem;
      background-color: #cdcccc; }
    .account--sort::after {
      content: '';
      position: absolute;
      top: 1.375rem;
      right: 1.5rem;
      width: 0;
      height: 4rem;
      border-style: solid;
      border-width: .75rem .75rem 0 .75rem;
      border-color: #cdcccc transparent transparent transparent; }
  .account--sort-menu {
    height: auto;
    width: 25rem;
    margin: 2px 0 0 0;
    position: absolute;
    left: -3px;
    background-color: white;
    list-style-type: none;
    border: 3px solid #cdcccc; }
    .account--sort-menu li {
      display: block; }
      .account--sort-menu li:hover {
        background-color: #f3f3f3; }
        .account--sort-menu li:hover a {
          color: #0d71ba; }
      .account--sort-menu li a {
        color: #b4b4b4;
        font-weight: 900;
        padding: 0.5rem 1.5rem;
        height: 100%;
        width: 100%;
        display: block;
        text-decoration: none; }

.account-nav {
  height: 100%;
  width: 35rem;
  background-color: #e6e6e5;
  position: absolute;
  left: -35rem;
  top: 0;
  border-right: 3px solid #b4b4b4;
  padding: 3rem 0 3rem 4.5rem; }
  .account-nav--section {
    font: 2rem;
    list-style: none; }
  .account-nav--section-title {
    font: 2rem;
    font-weight: 700;
    color: #69555c;
    text-transform: uppercase;
    padding-bottom: .75rem; }
  .account-nav--link a {
    color: #b4b4b4;
    font-weight: 600;
    font-size: 2rem;
    text-decoration: none;
    display: inline-block;
    padding: .75rem 0; }
    .account-nav--link a:hover {
      color: #453a3e; }
  .account-nav--link__active a {
    color: #453a3e; }
  .account-nav--divider {
    height: 3px;
    width: 5rem;
    background-color: #f37049;
    margin: 2rem 0; }
  .account-nav--btn {
    margin-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem; }

.account-form {
  padding: 2.5rem 0 7rem; }
  .account-form input[type="text"], .account-form input[type="password"] {
    height: 5rem;
    width: calc(50% - 5rem);
    font-size: 2rem;
    background-color: white;
    border: 3px solid #cdcccc;
    color: #989898;
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
    border-radius: 0 !important; }
    .account-form input[type="text"]::-webkit-input-placeholder, .account-form input[type="password"]::-webkit-input-placeholder {
      color: #cdcccc; }
    .account-form input[type="text"]::-moz-placeholder, .account-form input[type="password"]::-moz-placeholder {
      color: #cdcccc; }
    .account-form input[type="text"]:-ms-input-placeholder, .account-form input[type="password"]:-ms-input-placeholder {
      color: #cdcccc; }
    .account-form input[type="text"]::placeholder, .account-form input[type="password"]::placeholder {
      color: #cdcccc; }
    .account-form input[type="text"]:focus, .account-form input[type="password"]:focus {
      outline: none;
      border-color: #0d71ba;
      color: #0d71ba; }
    .account-form input[type="text"]::-moz-selection, .account-form input[type="password"]::-moz-selection {
      background-color: #0d71ba;
      color: white; }
    .account-form input[type="text"]::selection, .account-form input[type="password"]::selection {
      background-color: #0d71ba;
      color: white; }
    .account-form input[type="text"]:nth-child(2n -1), .account-form input[type="password"]:nth-child(2n -1) {
      margin-right: 5rem; }
  .account-form select {
    height: 5rem;
    width: calc(50% - 5rem);
    font-size: 2rem;
    background-color: white;
    border: 3px solid #cdcccc;
    color: #989898;
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
    border-radius: 0 !important; }
    .account-form select::-webkit-input-placeholder {
      color: #cdcccc; }
    .account-form select::-moz-placeholder {
      color: #cdcccc; }
    .account-form select:-ms-input-placeholder {
      color: #cdcccc; }
    .account-form select::placeholder {
      color: #cdcccc; }
    .account-form select:focus {
      outline: none;
      border-color: #0d71ba;
      color: #0d71ba; }
    .account-form select:nth-child(2n -1) {
      margin-right: 5rem;
      border-radius: 0px;
      display: inline-block;
      background-image: url("../img/select-arrows.svg");
      background-size: 2rem 2rem;
      background-position: 99% center;
      background-repeat: no-repeat;
      color: #cdcccc; }
      .account-form select:nth-child(2n -1):focus {
        background-image: url("../img/select-arrows-active.svg"); }
  .account-form--title {
    margin-bottom: 4rem; }
  .account-form--subtitle {
    margin-bottom: 0;
    margin-top: 2rem; }
  .account-form--checkbox {
    color: #453a3e;
    font-size: 1.75rem;
    margin: 1rem 0 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .account-form input[type='checkbox'] {
    background: #f3f3f3;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    border: 3px solid #453a3e;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-flex-basis: 2rem;
        -ms-flex-preferred-size: 2rem;
            flex-basis: 2rem;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start; }
    .account-form input[type='checkbox']:focus {
      outline: none;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); }
    .account-form input[type='checkbox']:checked {
      background: white url("../img/check-box.png") center center no-repeat;
      background-size: 95% 95%; }
  .account-form--form-spacer {
    height: 1.5rem;
    width: 50%; }

@media screen and (orientation: landscape) and (max-height: 768px) {
  .account {
    min-height: 54rem; } }

@media screen and (min-width: 767px) {
  .account {
    padding-right: calc((100vw - 750px) / 2); }
    .account--header {
      width: calc(100% + (100vw - 750px) / 2 + 3.6rem); } }

@media screen and (min-width: 992px) {
  .account {
    padding-right: calc((100vw - 970px) / 2); }
    .account--header {
      width: calc(100% + (100vw - 970px) / 2 + 3.6rem); } }

@media screen and (min-width: 1200px) {
  .account {
    padding-right: calc((100vw - 1170px) / 2); }
    .account--header {
      width: calc(100% + (100vw - 1170px) / 2 + 3.6rem); } }

@media screen and (max-width: 991px) {
  .account--filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .account--sort {
    margin-left: 0;
    margin-top: 1rem; }
  .account--sort-menu {
    width: calc(100% + 6px);
    margin-top: -1px; } }

@media screen and (max-width: 767px) {
  .account {
    margin-left: 0;
    padding: 0 15px; }
    .account--header {
      width: 100vw;
      margin-left: -15px;
      padding-left: 15px; }
    .account--top-spacer {
      height: 0; }
  .account-nav {
    display: none; }
  .account-form {
    padding: 1rem 0 7rem; }
    .account-form input[type="text"], .account-form input[type="password"] {
      height: 5rem;
      width: 100%;
      margin-bottom: 0.75rem; }
      .account-form input[type="text"]:nth-child(2n -1), .account-form input[type="password"]:nth-child(2n -1) {
        margin-right: 0; }
    .account-form select {
      height: 5rem;
      width: 100%;
      margin-bottom: 0.75rem; }
      .account-form select:nth-child(2n -1) {
        margin-right: 0; }
  .account-links {
    position: static;
    box-shadow: none;
    margin: 2rem 0 0 0;
    width: 100%; }
    .account-links li a {
      padding: 1.5rem 1.5rem;
      width: 100%; }
    .account-links li:first-child a {
      padding-top: 1rem; } }

@media screen and (max-width: 500px) {
  .account--form select {
    background-position: 98% center; }
  .account--top-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .account--search-submit {
    min-width: 9rem !important; } }

.subscription {
  padding-right: 10rem;
  overflow: hidden; }
  .subscription--header {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 1.5rem 0 1.5rem; }
  .subscription--table {
    border-top: 3px solid #f37049;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  .subscription--cell {
    width: 33.333%;
    display: inline-block;
    background-color: white;
    -webkit-flex-basis: 1;
        -ms-flex-preferred-size: 1;
            flex-basis: 1;
    border-right: 1px solid #b4b4b4; }
    .subscription--cell:nth-child(3n) {
      border-right: none; }
    .subscription--cell__grey {
      background-color: #e6e6e5; }
  .subscription--btn-padding {
    margin: 2rem 0 5rem; }

@media screen and (max-width: 991px) {
  .subscription {
    padding-right: 15px; } }

@media screen and (max-width: 767px) {
  .subscription {
    padding-right: 0; }
    .subscription--table {
      border-top: none; }
    .subscription--cell {
      width: 100%;
      border-left: 1px solid #b4b4b4;
      border-right: 1px solid #b4b4b4;
      margin-bottom: 2rem; }
      .subscription--cell:nth-child(3n) {
        border-right: 1px solid #b4b4b4; }
      .subscription--cell__grey {
        margin-bottom: 0;
        border-top: 3px solid #f37049; }
      .subscription--cell:nth-child(3n-2) {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1; }
      .subscription--cell:nth-child(3n-1) {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; }
      .subscription--cell:nth-child(3n) {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
            -ms-flex-order: 3;
                order: 3; } }

.course-plans {
  padding: 3rem; }
  .course-plans--add {
    margin-top: 2rem;
    display: inline-block;
    position: relative;
    display: inline;
    font-size: 2.75rem;
    font-weight: 600;
    color: #f37049;
    top: 3rem;
    text-decoration: none; }
    .course-plans--add:hover, .course-plans--add:active, .course-plans--add:focus {
      color: #f37049;
      text-decoration: none; }
    .course-plans--add h4 {
      display: inline-block;
      margin-left: 0.5rem; }
  .course-plans--add:hover {
    text-decoration: none; }
  .course-plans--filter {
    margin-top: 5rem; }
  .course-plans--list {
    overflow: hidden; }
  .course-plans--content {
    padding-bottom: 3rem; }

.account-switch {
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  .account-switch--bg {
    height: calc(100% - 7rem);
    background: #043649 url("../img/blue-geometry-bg.jpg") center center no-repeat;
    background-size: cover;
    overflow: hidden; }
  .account-switch--container {
    margin: 10rem 0; }
    .account-switch--container h1 {
      margin-bottom: 4rem; }
  .account-switch--accounts {
    width: 100%;
    background-color: white;
    border: 3px solid #cdcccc;
    margin-top: 3rem;
    list-style-type: none;
    padding: 1rem; }
    .account-switch--accounts a {
      color: #b4b4b4;
      font-size: 2rem;
      padding: .5rem 0;
      display: block;
      text-decoration: none; }
      .account-switch--accounts a:hover {
        color: #0d71ba; }

@media screen and (max-width: 768px) {
  .account-switch--submit {
    min-width: 9rem !important; } }

.menu-bar {
  height: 7rem;
  background-color: #0d71ba;
  box-shadow: 0 0 4px rgba(7, 59, 80, .5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; }
  .menu-bar--logo {
    background: url("../img/logo-white.svg") center center no-repeat;
    background-size: contain;
    height: 4.5rem;
    width: 14.5rem;
    position: absolute;
    left: 2.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  .menu-bar--links {
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .menu-bar--links li {
      display: inline-block;
      height: 7rem;
      line-height: 3.75; }
      .menu-bar--links li:hover {
        background-color: #00679e; }
      .menu-bar--links li a {
        color: white;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 1.8rem;
        font-weight: 500;
        letter-spacing: .2rem;
        padding: 2.4rem 3.25rem; }
  .menu-bar--search-icon {
    width: 7rem;
    height: 7rem;
    background: url("../img/search-icon.svg") center center no-repeat;
    background-size: 3rem 3rem;
    position: absolute;
    top: 50%;
    right: 8rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: opacity .25s ease;
            transition: opacity .25s ease;
    opacity: 1; }
    .menu-bar--search-icon__inactive {
      opacity: 0.25; }
    .menu-bar--search-icon__only {
      right: 0; }
  .menu-bar--hamburger-box {
    width: 7rem;
    height: 7rem;
    background-color: #00679e;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: background .1s ease;
            transition: background .1s ease; }
    .menu-bar--hamburger-box:hover {
      background-color: #043649; }
  .menu-bar--hamburger {
    width: 7rem;
    height: 7rem;
    background: url("../img/hamburger.svg") center center no-repeat;
    background-size: 3.5rem 2.75rem; }
  .menu-bar--exit {
    width: 7rem;
    height: 7rem;
    background: url("../img/x.svg") center center no-repeat;
    background-size: 3.5rem 2.75rem; }
  .menu-bar--account {
    position: absolute;
    top: 50%;
    right: 7rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
    .menu-bar--account::after {
      content: '';
      position: absolute;
      right: 2.75rem;
      top: 3rem;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: .6rem .6rem 0 .6rem;
      border-color: white transparent transparent transparent; }
    .menu-bar--account__open::after {
      -webkit-transform: scaleY(-1);
              transform: scaleY(-1); }
    .menu-bar--account p {
      color: white;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 1.8rem;
      font-weight: 500;
      letter-spacing: .2rem;
      padding: 2.4rem 4.75rem 2.4rem 3.25rem;
      margin-bottom: 0;
      display: inline-block;
      height: 7rem;
      line-height: 1;
      cursor: pointer;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
      .menu-bar--account p:hover {
        background-color: #00679e; }

.menu-spacer {
  height: 7rem; }

@media screen and (max-width: 991px) {
  .menu-bar--links {
    display: none; } }

.footer-trial {
  padding: 5rem 0;
  overflow: hidden; }
  .footer-trial--text h3 {
    margin: 0;
    line-height: 1.4;
    text-align: right; }
  .footer-trial--button {
    line-height: 3.25 !important; }

.footer {
  padding-top: 9rem;
  position: relative; }
  .footer__signed-in {
    padding: 3rem 0; }
  .footer--logos {
    list-style-type: none;
    margin-bottom: 3rem; }
  .footer--logo {
    height: 4rem;
    width: 4rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
    .footer--logo:not(:last-child) {
      margin-right: 2rem; }
    .footer--logo__twitter {
      background-image: url("../img/footer-twitter.svg"); }
    .footer--logo__facebook {
      background-image: url("../img/footer-facebook.svg"); }
    .footer--logo__linkedin {
      background-image: url("../img/footer-linked-in.svg"); }
    .footer--logo__github {
      background-image: url("../img/footer-github.svg"); }
    .footer--logo__opsgility, .footer--logo__opsgility-purple, .footer--logo__opsgility-purple-small {
      width: 15rem;
      display: block; }
    .footer--logo__opsgility {
      height: 10rem;
      background-image: url("../img/logo-white.svg"); }
    .footer--logo__opsgility-purple-small {
      height: 10rem;
      background-image: url("../img/logo-purple.svg"); }
    .footer--logo__opsgility-purple {
      height: 4.5rem;
      background-image: url("../img/logo-purple.svg"); }
      .footer--inline-links .footer--logo__opsgility-purple {
        margin: 0 7.5rem; }
  .footer--nav-links {
    font-family: "Segoe UI";
    list-style-type: none;
    font-size: 1.6rem;
    text-transform: uppercase;
    line-height: 2;
    margin-right: 8rem;
    margin-bottom: 3rem; }
  .footer--nav-title {
    text-shadow: -1px 1px #453a3e;
    font-weight: 600; }
  .footer--nav-link a {
    color: #b4b4b4;
    text-decoration: none;
    font-weight: 500; }
    .footer--nav-link a:hover {
      color: white; }
  .footer--inline-links {
    list-style-type: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .footer--inline-links li {
      display: inline-block; }
      .footer--inline-links li a {
        font: 2rem;
        text-decoration: none;
        -webkit-transition: color .1s ease;
                transition: color .1s ease; }
        .footer--inline-links li a:hover {
          color: #b4b4b4; }

.copyright {
  font-size: 1.5rem;
  min-height: 4rem; }
  .copyright p {
    margin: 1rem 0; }

@media screen and (max-width: 991px) {
  .footer--logo:not(:last-child) {
    margin-right: 1rem; }
  .footer .footer--logo__opsgility-purple {
    margin-right: 7.5rem; }
  .footer--nav-links {
    margin-right: 4.5rem; } }

@media screen and (max-width: 768px) {
  .copyright__small {
    position: absolute;
    float: right;
    text-align: right;
    bottom: 1rem;
    right: 0;
    color: #69555c; }
  .footer {
    padding-top: 3rem;
    min-height: 10rem; }
    .footer--inline-links .footer--logo__opsgility, .footer--inline-links .footer--logo__opsgility-purple {
      margin: 0 5rem; }
    .footer__signed-in {
      padding: 2rem 0; }
      .footer__signed-in .footer--logo {
        margin: 0 auto 2rem;
        width: 100%;
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
            -ms-flex-order: -1;
                order: -1;
        -webkit-align-self: center;
            -ms-flex-item-align: center;
                align-self: center;
        -webkit-flex-basis: 1;
            -ms-flex-preferred-size: 1;
                flex-basis: 1; }
    .footer--inline-links {
      height: 8rem;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around;
      -webkit-align-content: center;
          -ms-flex-line-pack: center;
              align-content: center; }
  .footer-trial--text h3 {
    float: none;
    text-align: center; }
  .footer-trial button {
    text-align: center;
    margin: 2rem auto 0; }
  .footer-trial a {
    margin: 2rem auto 0; } }

@media screen and (max-width: 400px) {
  .copyright__signed-in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .copyright__signed-in p:first-child {
      margin-bottom: 0; }
    .copyright__signed-in p:last-child {
      margin-top: 0; } }

@media screen and (max-width: 400px) {
  .copyright__small {
    position: static;
    float: left;
    clear: both;
    text-align: left;
    margin-left: 2rem;
    color: #69555c; } }

.slide-nav {
  height: 80rem;
  width: 35rem;
  background: white;
  position: absolute;
  height: calc(100vh - 7rem);
  padding-bottom: 2rem;
  right: -35rem;
  color: #453a3e;
  padding-top: 10rem; }
  .slide-nav__signed-in {
    padding-top: 0;
    height: auto;
    padding-bottom: 0; }
  .slide-nav--bg {
    position: fixed;
    background-color: transparent;
    z-index: 9999;
    -webkit-transition: background-color .3s ease;
            transition: background-color .3s ease;
    top: 7rem;
    left: 0;
    right: 0;
    bottom: 0; }
    .slide-nav--bg__fade-color {
      background-color: rgba(5, 54, 73, 0.85); }
  .slide-nav--buttons {
    height: 10rem;
    position: fixed;
    top: 7rem;
    width: 35rem;
    background-color: white; }
  .slide-nav--button {
    height: 7rem;
    width: 50%;
    background-color: #cdcccc;
    float: left;
    color: #453a3e;
    text-align: center;
    line-height: 3.5;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2rem;
    border-bottom: 3px solid #f37049; }
    .slide-nav--button:hover {
      background-color: #e6e6e5;
      color: #453a3e;
      text-decoration: none; }
    .slide-nav--button:first-child {
      border-right: 2px solid #4e4e4e; }
      .slide-nav--button:first-child::after {
        content: '';
        width: 3px;
        height: calc(7rem - 3px);
        background: #f37049; }
  .slide-nav--scrolling {
    overflow: scroll;
    height: 100%; }
  .slide-nav--link-section {
    list-style-type: none;
    margin: 2rem 0 2rem 2rem;
    text-transform: uppercase; }
  .slide-nav--link {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2;
    color: #453a3e; }
    .slide-nav--link:hover {
      color: #69555c; }
    .slide-nav--link.text-extra-bold {
      font-weight: 900;
      color: #453a3e;
      cursor: default; }
    .slide-nav--link__socials {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
  .slide-nav--section-divider {
    height: 3px;
    width: 5.5rem;
    margin-left: 2rem;
    background-color: #f37049; }
  .slide-nav--social-link {
    height: 5rem;
    width: 4rem;
    margin-right: 1.5rem;
    background-size: contain;
    background-position: center 1rem;
    background-repeat: no-repeat; }
    .slide-nav--social-link__twitter {
      background-image: url("../img/footer-twitter.svg"); }
    .slide-nav--social-link__facebook {
      background-image: url("../img/footer-facebook.svg"); }
    .slide-nav--social-link__linked-in {
      background-image: url("../img/footer-linked-in.svg"); }
    .slide-nav--social-link__github {
      background-image: url("../img/footer-github.svg"); }

@media screen and (max-width: 768px) {
  .slide-nav {
    width: 100vw;
    height: 100%;
    right: -100vw; }
    .slide-nav--buttons {
      width: 100%; }
    .slide-nav__signed-in {
      height: auto;
      padding-bottom: 0 !important; } }

.search--bg {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  -webkit-transition: background-color .3s ease;
          transition: background-color .3s ease;
  top: 7rem;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0; }

.search--input {
  font-size: 7rem;
  color: #453a3e;
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 3rem; }
  .search--input:focus {
    outline: none; }
  .search--input::-webkit-input-placeholder {
    color: #b4b4b4; }
  .search--input::-moz-placeholder {
    color: #b4b4b4; }
  .search--input:-ms-input-placeholder {
    color: #b4b4b4; }
  .search--input::placeholder {
    color: #b4b4b4; }
  .search--input::-moz-selection {
    background-color: #0d71ba;
    color: white; }
  .search--input::selection {
    background-color: #0d71ba;
    color: white; }

.tall-header {
  text-align: center;
  color: white;
  background: #043649 url("../img/large-blue-bg.jpg") center center no-repeat;
  background-size: cover;
  min-height: 48rem; }
  .tall-header--title {
    font-size: 7rem;
    margin-top: 9rem; }
  .tall-header--subtitle {
    margin-top: 0; }

.short-header {
  text-align: center;
  color: white;
  background: url("../img/page-header.jpg") center center no-repeat;
  background-size: cover;
  min-height: 36rem;
  padding-bottom: 1rem; }
  .short-header--title {
    font-size: 7rem;
    margin-top: 9rem; }
  .short-header--subtitle {
    margin-top: 0; }

@media screen and (max-width: 768px) {
  .short-header--title {
    font-size: 5rem; }
  .short-header--subtitle {
    font-size: 2rem; } }

@media screen and (max-width: 480px) {
  .short-header--title {
    font-size: 4rem; }
  .short-header--subtitle {
    font-size: 2rem; } }

.spread-sheet {
  border: 3px solid #cdcccc;
  border-top: 2px solid #cdcccc;
  background-color: #fff;
  position: relative; }
  .spread-sheet::before {
    content: '';
    height: 3px;
    width: calc(100% + 6px);
    position: absolute;
    top: -3px;
    left: -3px;
    background-color: #f37049; }
  .spread-sheet--box {
    margin-top: 2rem; }
  .spread-sheet--row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #cdcccc; }
    .spread-sheet--row .spread-cell {
      font-size: 1.8rem; }
    .spread-sheet--row:first-child .spread-sheet--actions {
      border-top: 0; }
  .spread-sheet--btns {
    padding: 1.5rem 0; }
  .spread-sheet--btn {
    max-width: 20.5rem;
    width: 100%;
    display: inline-block; }
    .spread-sheet--btn:first-child {
      margin-right: 1.5rem; }
  .spread-sheet--actions {
    height: auto;
    position: absolute;
    right: -3px;
    z-index: 999;
    border: 3px solid #cdcccc;
    background-color: white; }
    .spread-sheet--actions h4 {
      display: block;
      background-color: white;
      margin: 0;
      padding: 1.7rem 1.25rem;
      border-bottom: 1px solid #e6e6e5;
      cursor: pointer;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
      .spread-sheet--actions h4:first-child {
        border-bottom: 3px solid #4e4e4e;
        background-color: #f3f3f3;
        padding: 1.5rem 1.25rem; }
        .spread-sheet--actions h4:first-child:hover {
          color: #b4b4b4; }
        .spread-sheet--actions h4:first-child::after {
          content: '';
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 0 0.75rem 0.75rem 0.75rem;
          border-color: transparent transparent #cdcccc transparent;
          position: absolute;
          top: 2.25rem;
          right: 1.5rem; }
      .spread-sheet--actions h4:hover {
        color: #0d71ba; }
  .spread-sheet--filters {
    padding: 1.5rem 0 8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .spread-sheet--sort {
    margin-left: 0;
    float: left; }
  .spread-sheet--prev, .spread-sheet--next {
    display: inline-block;
    margin-bottom: -2rem;
    text-decoration: none !important;
    cursor: pointer; }
    .spread-sheet--prev p, .spread-sheet--next p {
      display: inline-block; }
  .spread-sheet--next {
    float: right; }
  .spread-sheet--arrow {
    background: url("../img/blue-blog-arrow.svg") center center no-repeat;
    background-size: contain;
    height: 2.5rem;
    width: 1rem;
    display: inline-block;
    position: relative;
    top: 0.5rem; }
    .spread-sheet--arrow__prev {
      margin-right: 1rem; }
    .spread-sheet--arrow__next {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
      margin-left: 1rem; }

.spread-cell {
  border-right: 1px solid #cdcccc;
  display: block;
  margin: 0;
  padding: 1.75rem 1rem;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
  color: #0d71ba;
  font-weight: 200;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .spread-cell--title {
    font-weight: 900;
    border: none;
    position: relative;
    top: .25rem;
    padding: 1.25rem 1rem; }
  .spread-cell__no-border {
    border-right: none; }
  .spread-cell:last-child {
    border-right: 0; }
  .spread-cell__name {
    width: 29%;
    overflow: hidden; }
  .spread-cell__student {
    width: 27%;
    overflow: hidden; }
  .spread-cell__email {
    width: 43%;
    overflow: hidden; }
  .spread-cell__status {
    width: 11%;
    overflow: hidden; }
  .spread-cell__role {
    width: 9%;
    overflow: hidden; }
  .spread-cell__action {
    width: 8%;
    overflow: hidden;
    border-right: none; }
    .spread-cell__action:not(.spread-cell--title) {
      color: white;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      padding: 0 2.5rem;
      position: relative; }
      .spread-cell__action:not(.spread-cell--title)::after {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0.75rem 0.75rem 0 0.75rem;
        border-color: #cdcccc transparent transparent transparent;
        position: absolute;
        top: 2.25rem;
        right: 1.5rem; }

@media screen and (max-width: 991px) {
  .spread-sheet--row {
    position: relative;
    display: block;
    padding: 1rem; }
    .spread-sheet--row::after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0.75rem 0.75rem 0 0.75rem;
      border-color: #cdcccc transparent transparent transparent;
      position: absolute;
      top: 3.25rem;
      right: 2rem; }
  .spread-sheet--actions {
    display: none; }
  .spread-cell {
    position: relative; }
    .spread-cell__name, .spread-cell__username {
      padding: 1.5rem 0; }
    .spread-cell__name, .spread-cell__email, .spread-cell__status, .spread-cell__role, .spread-cell__action {
      width: 100%;
      border-right: none; }
    .spread-cell__email, .spread-cell__status, .spread-cell__role, .spread-cell__action, .spread-cell__crs-started, .spread-cell__crs-complete, .spread-cell__labs, .spread-cell__kms, .spread-cell__video-hours {
      padding: .5rem 0; }
    .spread-cell__crs-started, .spread-cell__crs-complete, .spread-cell__labs, .spread-cell__kms, .spread-cell__video-hours, .spread-cell__last-login {
      color: #453a3e; }
    .spread-cell__last-login {
      padding: .5rem 0 1.5rem; }
    .spread-cell__status, .spread-cell__role, .spread-cell__action {
      color: #453a3e; }
  .spread-hider {
    display: none; } }

@media screen and (max-width: 500px) {
  .spread-sheet--pagination {
    margin-right: 1rem; }
  .spread-sheet--btn {
    margin-bottom: 1rem; } }

.modal {
  background-color: rgba(4, 54, 73, 0.85);
  z-index: 999999; }

.modal-dialog {
  max-width: 86rem;
  margin: 7rem auto;
  width: calc(100% - 4rem); }

.modal-content {
  border-radius: 0 !important;
  padding: 3rem;
  box-shadow: none;
  border: none; }
  .modal-content input[type="text"] {
    height: 5rem;
    padding: 0 1.5rem; }

.modal--textarea {
  padding: 1rem 1.5rem;
  height: 15rem;
  resize: none; }

.modal-content input[type="text"], .modal--textarea {
  font-size: 2rem;
  background-color: white;
  border: 3px solid #cdcccc;
  color: #b4b4b4;
  margin-bottom: 2.5rem;
  width: 100%; }
  .modal-content input[type="text"]::-webkit-input-placeholder, .modal--textarea::-webkit-input-placeholder {
    color: #b4b4b4; }
  .modal-content input[type="text"]::-moz-placeholder, .modal--textarea::-moz-placeholder {
    color: #b4b4b4; }
  .modal-content input[type="text"]:-ms-input-placeholder, .modal--textarea:-ms-input-placeholder {
    color: #b4b4b4; }
  .modal-content input[type="text"]::placeholder, .modal--textarea::placeholder {
    color: #b4b4b4; }
  .modal-content input[type="text"]::-moz-selection, .modal--textarea::-moz-selection {
    color: white;
    background-color: #0d71ba; }
  .modal-content input[type="text"]::selection, .modal--textarea::selection {
    color: white;
    background-color: #0d71ba; }
  .modal-content input[type="text"]:focus, .modal--textarea:focus {
    outline: none; }

.modal-body {
  padding: 1.5rem 0; }

.modal-header {
  border-bottom: 3px solid #f37049;
  padding: 0; }

.modal-title {
  margin-bottom: 1rem; }

.modal-footer {
  border: none; }
  .modal-footer button:not(:last-child) {
    margin-right: 2.5rem; }
  .modal-footer__add-to-plan button {
    min-width: 22rem; }

.modal--input {
  height: 4rem; }

.modal--link-button {
  height: 1.8rem;
  width: 1.3rem;
  background: url("../img/link-icon.svg") no-repeat;
  background-position: center bottom;
  background-size: contain;
  display: inline-block;
  margin-left: .75rem;
  margin-right: 1rem;
  cursor: pointer; }

.modal--copy-success {
  color: #69555c; }

.modal--click-to-copy {
  color: #cdcccc;
  font-size: 1.6rem; }

.modal--dropdown {
  width: 100%;
  height: 5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2;
  margin: 0;
  margin-bottom: 2.5rem; }
  .modal--dropdown__first-child {
    z-index: 999999;
    margin-bottom: 3.5rem; }
  .modal--dropdown::before {
    height: 4.5rem; }
  .modal--dropdown::after {
    top: 1.75rem; }

.modal--multi-select label {
  cursor: pointer;
  position: relative;
  padding: .25rem 0 .25rem 4rem;
  width: 100%;
  margin: 0;
  color: #b4b4b4;
  font-weight: 300; }
  .modal--multi-select label input[type='checkbox'] {
    opacity: 0; }
    .modal--multi-select label input[type='checkbox'] + .modal--label-text::before {
      content: '';
      width: 1.125rem;
      height: 1.125rem;
      background-color: white;
      border: 1px solid white;
      outline: 3px solid #b4b4b4;
      position: absolute;
      left: 2rem;
      top: 1.75rem; }
    .modal--multi-select label input[type='checkbox']:checked + .modal--label-text {
      color: #0d71ba; }
    .modal--multi-select label input[type='checkbox']:checked + .modal--label-text::before {
      background-color: #0d71ba;
      outline: 3px solid #0d71ba; }

.modal--current-path {
  height: 5rem; }

.modal--path-list {
  margin-top: 0;
  width: calc(100% + 6px);
  max-height: 22.5rem;
  overflow-y: scroll; }
  .modal--path-list::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px; }
  .modal--path-list::-webkit-scrollbar-thumb {
    background-color: #cdcccc; }
  .modal--path-list li a {
    font-weight: 500 !important; }

.modal--upgrade-btns {
  margin: 4rem 0 11rem; }
  .modal--upgrade-btns a {
    min-width: 100%; }

.modal--course-info h4, .modal--course-info p {
  margin-bottom: .5rem; }

.modal--spacer {
  width: 100%;
  height: 1.5rem; }

@media screen and (max-width: 768px) {
  .modal--upgrade-btns {
    margin-bottom: 7rem; }
    .modal--upgrade-btns a {
      margin-bottom: 1.5rem; } }

@media screen and (max-width: 600px) {
  .modal-footer {
    padding: 0; }
    .modal-footer button {
      width: 100%; }
      .modal-footer button:not(:last-child) {
        margin-bottom: 1.5rem; } }

#ui-datepicker-div {
  border-radius: 0;
  border: 3px solid #cdcccc;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px); }

.ui-widget-header {
  background: white !important;
  border: none !important; }

.ui-datepicker-title {
  color: #453a3e; }

.ui-icon-circle-triangle-w, .ui-icon-circle-triangle-e {
  background: url("../img/down-arrow.svg") center center no-repeat !important;
  background-size: contain;
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important; }

.ui-icon-circle-triangle-e {
  -webkit-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important; }

.ui-icon-circle-triangle-w:hover, .ui-icon-circle-triangle-e:hover {
  background: url("../img/blue-blog-arrow.svg") center center no-repeat !important;
  -webkit-transform: rotate(0deg) !important;
          transform: rotate(0deg) !important; }

.ui-icon-circle-triangle-e:hover {
  -webkit-transform: scaleX(-1) !important;
          transform: scaleX(-1) !important; }

.ui-datepicker-prev-hover, .ui-datepicker-next-hover {
  background: none; }

.ui-state-hover {
  background: none !important;
  border: none !important; }

.ui-datepicker .ui-datepicker-prev-hover {
  left: 2px !important;
  top: 2px !important; }

.ui-datepicker .ui-datepicker-next-hover {
  right: 2px !important;
  top: 2px !important; }

.ui-state-default {
  background: white !important;
  color: #00679e;
  border: 1px solid #cdcccc; }

.ui-state-default.ui-state-hover {
  border: 1px solid #0d71ba !important; }

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  color: #69555c !important; }

.ui-datepicker-calendar thead {
  color: #b4b4b4; }

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #0d71ba !important;
  color: #0d71ba !important; }

.video--player {
  position: relative; }

.video--container {
  margin-bottom: 1rem; }

.video--course-video {
  width: 100%; }

.video--title-area {
  position: absolute;
  top: 4rem;
  left: 2rem;
  color: white; }

.video--title, .video--subtitle {
  font-size: 4.25rem; }

.video--subtitle {
  margin-top: 0; }

.video--start {
  background-color: white;
  display: inline;
  padding: 1.25rem 2.5rem 1.25rem 5.5rem;
  font-size: 2rem;
  line-height: 1.5;
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  -webkit-transition: box-shadow .1s ease;
          transition: box-shadow .1s ease;
  cursor: pointer; }
  .video--start:hover {
    box-shadow: 0 12px 16px -4px rgba(0, 0, 0, 0.4); }
  .video--start h4::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.75rem 0 1.75rem 2.5rem;
    border-color: transparent transparent transparent #453a3e;
    -moz-transform: scale(0.9999);
    position: absolute;
    left: 1.5rem;
    top: 2rem; }

@media screen and (max-width: 991px) {
  .video--container {
    margin-bottom: 1.5rem; } }

@media screen and (max-width: 768px) {
  .video--player {
    margin-left: -15px;
    margin-right: -15px; }
  .video--container {
    margin-bottom: 0rem; }
  .video--course-video {
    margin-bottom: -.75rem; }
  .video--title-area {
    display: none; }
  .video--start {
    width: 26rem;
    bottom: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 1.25rem 1rem 1.25rem 6.25rem; } }

.course--course__header {
  margin-top: 3rem;
  margin-bottom: 0; }
  .course--course__header::after {
    content: '';
    height: calc(100% + 6px);
    width: 3px;
    background-color: #f37049;
    position: absolute;
    top: -3px;
    right: -3px; }
  .course--course__header:hover {
    border: 3px solid #e6e6e5; }

.course--course-container {
  padding: 2rem 0 7rem; }

.course--note {
  width: calc(100% + 15px);
  min-height: 47.5rem;
  background: white;
  margin-left: -15px;
  overflow: hidden;
  margin-bottom: 2.25rem; }

.course--note-header {
  display: block;
  background-color: #69555c;
  width: 100%;
  padding: 1.5rem;
  margin-top: 0;
  margin-bottom: 0rem; }

.course--note-area {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: none;
  width: calc(100% - 3rem);
  max-width: calc(100% - 3rem);
  text-align: left;
  margin: 1.5rem;
  font-size: 1.6rem;
  min-height: 32.5rem;
  resize: none; }
  .course--note-area:focus, .course--note-area:active {
    outline: none; }

.course--save-note {
  min-width: 13rem;
  margin: 0 1.5rem 1.5rem 1.5rem;
  background-color: #69555c; }

.course--tab-container {
  padding: 3rem 2rem;
  min-height: 52.5rem; }

.course--tabs {
  border: none;
  padding-bottom: 1rem;
  border-bottom: 3px solid #f37049;
  margin-bottom: 1rem; }
  .course--tabs li:not(:last-child) {
    margin-right: 1.5rem; }
  .course--tabs li a {
    color: #f37049 !important;
    min-width: initial;
    width: auto !important;
    line-height: 1 !important;
    border: 3px solid white !important;
    margin-bottom: 1rem; }
    .course--tabs li a:active, .course--tabs li a:hover, .course--tabs li a:focus {
      background: white !important; }

.course--module {
  padding: 1.25rem 0 1.75rem;
  border-bottom: 1px solid #cdcccc;
  position: relative;
  cursor: pointer; }
  .course--module:first-child {
    padding-top: 0;
    margin-top: 3rem; }
  .course--module a {
    color: #453a3e;
    text-decoration: none; }
    .course--module a:hover .course--module-status {
      color: #453a3e; }
    .course--module a:hover p {
      color: #0d71ba; }

.course--feedback-btn {
  width: calc(100% - 30px) !important;
  margin-bottom: 7rem; }

.course--module-main-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .course--module-main-info h3 {
    margin: 1.5rem 0; }
  .course--module-main-info p {
    margin: 1.5rem 0;
    padding-left: 3rem; }

.course--module-completed {
  position: relative; }
  .course--module-completed::before {
    content: '';
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    left: -2.5rem;
    top: -.5rem;
    background: url("../img/module-completed.svg") center center no-repeat;
    background-size: contain; }

.course--module-status {
  margin-right: 1.5rem; }

.course--module-hidden-info {
  display: none; }

.course--module-expand {
  background: url("../img/down-arrow.svg") center center no-repeat;
  background-size: contain;
  width: 3.5rem;
  height: 1rem;
  margin-top: 2rem;
  position: absolute;
  right: 2rem;
  bottom: 1.25rem; }
  .course--module-expand__rotate {
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1); }

.course--feedback {
  width: 100%;
  outline: none;
  resize: none;
  height: 17.5rem;
  margin: 2rem 0;
  font-size: 2rem;
  padding: 1rem;
  background-color: white;
  color: #453a3e;
  border: none; }
  .course--feedback::-moz-selection {
    color: white;
    background-color: #0d71ba; }
  .course--feedback::selection {
    color: white;
    background-color: #0d71ba; }

.course--saved-note {
  padding: 2rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cdcccc; }

.course--note-time {
  padding-left: 7.5rem; }

.course--related-course {
  padding: 3rem 0 9rem; }

@media screen and (max-width: 1440px) {
  .course--note-area {
    min-height: 37.5rem; } }

@media screen and (max-width: 1200px) {
  .course--note-area {
    min-height: 33.25rem; } }

@media screen and (max-width: 991px) {
  .course--note {
    width: 100%;
    margin-left: 0;
    min-height: 20rem; }
  .course--note-area {
    min-height: 9.75rem; } }

@media screen and (min-width: 768px) {
  .course--view-report-br {
    display: none !important; } }

@media screen and (max-width: 768px) {
  .course--module-completed {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
    font-size: 2rem; }
    .course--module-completed::before {
      content: '';
      width: 2rem;
      height: 2rem;
      position: absolute;
      left: -2.25rem;
      top: 0; }
  .course--course-container {
    padding: 0; }
  .course--mobile-nav {
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 1.5rem;
    color: #f37049;
    border: 3px solid #f37049;
    margin-left: -15px;
    margin-right: -15px; }
    .course--mobile-nav h4 {
      font-weight: 900;
      margin: .75rem 0; }
  .course--nav-item {
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem 0;
    text-align: center; }
    .course--nav-item:first-child {
      border-right: 3px solid #f37049; }
  .course--tab-container {
    padding-top: 0;
    border-top: 3px solid #f37049;
    margin-left: -15px;
    margin-right: -15px; }
  .course--tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2rem;
    padding: 0;
    border-bottom: 0; }
    .course--tabs li {
      width: 19rem;
      margin-right: 0 !important; }
      .course--tabs li:nth-child(2) {
        margin-right: 1rem !important; }
  .course--related-course {
    background-color: white; }
  .course--mobile-title {
    margin: 0 -15px;
    padding: 0 30px;
    overflow: hidden; }
    .course--mobile-title h3 {
      margin: 2rem 0; }
  #courseDetails {
    padding-top: 2rem; } }

@media screen and (max-width: 360px) {
  .course--tabs li a {
    font-size: 1.6rem !important; } }

.tab-content .courses--list {
  margin-top: 0 !important; }

.courses-activity {
  border-top: 3px solid #b4b4b4;
  position: relative;
  overflow: hidden;
  display: none;
  -webkit-transition: height 1s ease;
          transition: height 1s ease; }
  .courses .courses-activity {
    position: relative;
    border-top: 3px solid #b4b4b4; }
  .courses-activity--close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99; }
  .courses-activity .scroll-to-top {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    cursor: pointer; }
  .courses-activity--heading > * {
    display: inline-block;
    margin-right: 2rem; }
  .courses-activity .courses--tabs {
    margin-top: 1rem;
    margin-bottom: 6rem;
    float: left !important; }

.courses--list {
  position: relative; }

.courses--list + .courses--list {
  margin-top: 8rem; }

.courses.courses-activity .courses-start-date {
  position: absolute;
  top: -3rem;
  margin-left: 1.5rem; }

.courses.courses-activity .courses--tabs {
  float: right; }

.courses.courses-activity .courses--tabs .tab:last-child {
  margin-right: 0; }

.courses-activity--close {
  position: absolute;
  right: 3rem;
  top: 3rem;
  cursor: pointer; }

#singleActivity .courses-activity--heading {
  margin-top: 3rem; }

.spread-cell__username {
  width: 27%;
  -webkit-flex-basis: 27%;
      -ms-flex-preferred-size: 27%;
          flex-basis: 27%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__schedule {
  width: 27%;
  -webkit-flex-basis: 27%;
      -ms-flex-preferred-size: 27%;
          flex-basis: 27%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__time, .spread-cell__price {
  width: 12%;
  -webkit-flex-basis: 12%;
      -ms-flex-preferred-size: 12%;
          flex-basis: 12%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__status {
  width: 13%;
  -webkit-flex-basis: 13%;
      -ms-flex-preferred-size: 13%;
          flex-basis: 13%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__crs-started {
  width: 13%;
  -webkit-flex-basis: 13%;
      -ms-flex-preferred-size: 13%;
          flex-basis: 13%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__crs-complete {
  width: 14%;
  -webkit-flex-basis: 14%;
      -ms-flex-preferred-size: 14%;
          flex-basis: 14%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__crs-name {
  width: 29%;
  -webkit-flex-basis: 29%;
      -ms-flex-preferred-size: 29%;
          flex-basis: 29%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__progress {
  width: 10%;
  -webkit-flex-basis: 10%;
      -ms-flex-preferred-size: 10%;
          flex-basis: 10%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__assigned {
  width: 15%;
  -webkit-flex-basis: 15%;
      -ms-flex-preferred-size: 15%;
          flex-basis: 15%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__labs {
  width: 7%;
  -webkit-flex-basis: 7%;
      -ms-flex-preferred-size: 7%;
          flex-basis: 7%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__kms {
  width: 8%;
  -webkit-flex-basis: 8%;
      -ms-flex-preferred-size: 8%;
          flex-basis: 8%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__video-hours {
  width: 19%;
  -webkit-flex-basis: 19%;
      -ms-flex-preferred-size: 19%;
          flex-basis: 19%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__due {
  width: 12%;
  -webkit-flex-basis: 12%;
      -ms-flex-preferred-size: 12%;
          flex-basis: 12%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1; }

.spread-cell__last-login {
  width: 11%;
  -webkit-flex-basis: 11%;
      -ms-flex-preferred-size: 11%;
          flex-basis: 11%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  border-right: none; }

.courses-activity-report--actions {
  float: right; }
  .courses-activity-report--actions input {
    margin-left: 2rem; }

@media screen and (max-width: 1041px) and (min-width: 991px) {
  .courses.courses-activity .courses--tabs {
    margin-right: 5rem; }
  .account-form input {
    height: 5rem; }
  .account-form input[type="checkbox"] {
    height: 2rem; } }

@media screen and (max-width: 991px) {
  .courses.courses-activity .spread-cell {
    border: none;
    width: 100%; }
  .spread-cell {
    position: relative; }
    .spread-cell__student {
      padding: 1.5rem 0; }
    .spread-cell__crs-name, .spread-cell__progress, .spread-cell__assigned, .spread-cell__due, .spread-cell__schedule, .spread-cell__time, .spread-cell__price, .spread-cell__status {
      padding: .5rem 0; }
    .spread-cell__student, .spread-cell__crs-name, .spread-cell__progress, .spread-cell__assigned, .spread-cell__due, .spread-cell__schedule, .spread-cell__time, .spread-cell__price, .spread-cell__status {
      width: 100%;
      border-right: none; } }

@media screen and (max-width: 768px) {
  #selectedPaths {
    z-index: 9999; } }

@media screen and (max-width: 354px) {
  .courses-activity-report--actions input {
    float: right; }
    .courses-activity-report--actions input:first-child {
      margin-bottom: 1rem; } }
