/* Global Variables */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

html, body {
  height: 100%; }

body {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
  -moz-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  min-height: 100vh;
  font-family: 'Rubik', 'Helvetica', 'Arial', 'sans-serif';
  color: #666;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased; }

header, footer, aside, article, section, nav, svg, iframe {
  display: block; }

ul {
  padding: 0;
  margin: 0;
  list-style: none; }

a {
  text-decoration: none; }

input, textarea {
  border: none;
  background: none;
  outline: none;
  font: normal 400 16px/18px Rubik, Arial, sans-serif;
  color: #666;
  min-height: 48px; }
  input.placeholder, textarea.placeholder {
    color: #ccc; }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #ccc; }
  input:-moz-placeholder, textarea:-moz-placeholder {
    color: #ccc; }
  input::-moz-placeholder, textarea::-moz-placeholder {
    color: #ccc; }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #ccc; }
  input:-webkit-autofill, textarea:-webkit-autofill {
    box-shadow: 0 0 0 30px #fff inset; }

img {
  display: block;
  max-width: 100%; }

p {
  margin: 0 0 15px;
  line-height: 24px; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 500; }

#page {
  -webkit-flex: 1 0 auto;
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%; }

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px; }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px; }

.section-title {
  margin: 0 0 20px;
  font: normal 700 30px/38px Rubik, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-align: center; }
  .section-title.separator {
    position: relative;
    margin: 0 0 80px;
    color: #444; }
    .section-title.separator:after {
      position: absolute;
      bottom: -35px;
      left: 50%;
      width: 70px;
      height: 6px;
      background: #e5e5e5;
      content: "";
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
  .section-title.normal {
    text-transform: none;
    font-weight: 500; }

.section-description {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  text-align: center;
  line-height: 28px;
  font-weight: 300; }
  .section-description a {
    color: #55c1e7;
    text-decoration: underline; }
    .section-description a:hover {
      text-decoration: none; }

.flex-h-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center; }

#header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  background: #fff;
  padding: 0 20px;
  z-index: 10;
  min-height: 100px; }
  #header > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; }
    #header > div .logo {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      margin: -10px 0 0;
      transition: opacity 0.1s ease;
      -moz-transition: opacity 0.1s ease;
      -webkit-transition: opacity 0.1s ease;
      -o-transition: opacity 0.1s ease; }
      #header > div .logo:hover {
        opacity: .8; }
      #header > div .logo img {
        width: 155px;
        max-width: 100%; }
    #header > div .profile {
      position: relative;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row nowrap;
      -moz-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-align-items: center;
      align-items: center;
      cursor: pointer;
      padding: 0 30px 0 0; }
      #header > div .profile:hover .user {
        color: #333; }
      #header > div .profile.active .user {
        color: #333; }
        #header > div .profile.active .user ul {
          display: block; }
      #header > div .profile:after {
        position: absolute;
        top: 50%;
        right: 0;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 14px;
        height: 14px;
        content: "";
        background: url(../img/svg/icon-arrow-down.svg) no-repeat center center;
        -webkit-background-size: 11px;
        -moz-background-size: 11px;
        -o-background-size: 11px;
        background-size: 11px; }
      #header > div .profile .avatar {
        margin: 0 15px 0 0; }
        #header > div .profile .avatar .noavatar {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center;
          -webkit-justify-content: center;
          justify-content: center;
          width: 42px;
          height: 42px;
          background: #7eaffc;
          color: #fff;
          font: normal 400 24px/24px "Fredoka One", Arial, sans-serif;
          border-radius: 50%; }
      #header > div .profile .user {
        color: #999; }
        #header > div .profile .user ul {
          display: none;
          width: 200px;
          position: absolute;
          top: 60px;
          right: 0;
          background: #fff;
          border-radius: 5px;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          padding: 20px; }
          #header > div .profile .user ul.active {
            display: block; }
          #header > div .profile .user ul:before {
            position: absolute;
            top: -8px;
            left: 50%;
            content: "";
            width: 16px;
            height: 16px;
            background: #fff;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            margin-left: -4px;
            z-index: -1; }
          #header > div .profile .user ul:after {
            position: absolute;
            top: -8px;
            left: 50%;
            content: "";
            width: 16px;
            height: 16px;
            background: #fff;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            margin-left: -4px; }
          #header > div .profile .user ul li {
            margin: 10px 0 0; }
            #header > div .profile .user ul li:first-of-type {
              margin: 0; }
            #header > div .profile .user ul li a {
              color: #7eaffc;
              display: block; }
              #header > div .profile .user ul li a:hover {
                color: #4c90fb; }

#main-menu {
  position: relative;
  padding: 0 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.07);
  border-top: 1px solid #eaeaea;
  z-index: 9; }
  #main-menu > div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    max-width: 1200px;
    min-height: 90px;
    width: 100%;
    margin: 0 auto; }
    #main-menu > div .primary-menu {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      transition: right 0.4s ease-in-out, opacity 0.3s ease-in-out;
      -moz-transition: right 0.4s ease-in-out, opacity 0.3s ease-in-out;
      -webkit-transition: right 0.4s ease-in-out, opacity 0.3s ease-in-out;
      -o-transition: right 0.4s ease-in-out, opacity 0.3s ease-in-out; }
      #main-menu > div .primary-menu.active {
        right: 0;
        opacity: 1; }
      #main-menu > div .primary-menu li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        margin: 0 50px 0 0; }
        #main-menu > div .primary-menu li a {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          align-items: center;
          padding: 0 0 0 35px;
          font-size: 18px;
          font-weight: 500;
          color: #999;
          letter-spacing: .025em; }
          #main-menu > div .primary-menu li a:hover {
            color: #7eaffc;
            text-decoration: none; }
          #main-menu > div .primary-menu li a.active {
            color: #7eaffc; }
          #main-menu > div .primary-menu li a.curriculum {
            background: url(../img/svg/icon-file-text.svg) no-repeat center left;
            -webkit-background-size: 20px;
            -moz-background-size: 20px;
            -o-background-size: 20px;
            background-size: 20px; }
            #main-menu > div .primary-menu li a.curriculum:hover, #main-menu > div .primary-menu li a.curriculum.active {
              background: url(../img/svg/icon-file-text-hover.svg) no-repeat center left;
              -webkit-background-size: 20px;
              -moz-background-size: 20px;
              -o-background-size: 20px;
              background-size: 20px; }
          #main-menu > div .primary-menu li a.students {
            background: url(../img/svg/icon-user-nav.svg) no-repeat center left;
            -webkit-background-size: 20px;
            -moz-background-size: 20px;
            -o-background-size: 20px;
            background-size: 20px; }
            #main-menu > div .primary-menu li a.students:hover, #main-menu > div .primary-menu li a.students.active {
              background: url(../img/svg/icon-user-nav-hover.svg) no-repeat center left;
              -webkit-background-size: 20px;
              -moz-background-size: 20px;
              -o-background-size: 20px;
              background-size: 20px; }

@media screen and (max-width: 1140px), screen and (max-device-width: 1140px) {
  /*#header {
      #main-menu {
          .primary-menu { position: fixed; top: 0; right: -100%; opacity: 0; height: 100%; padding: 80px 0 0; z-index: 1000; background: $white; box-shadow: 0 0 30px rgba(0,0,0,.15); @include flex-flow(column nowrap); @include justify-content(flex-start);
              li { margin: 0; line-height: 16px; border-bottom: 1px solid #ddd;
                  &:first-of-type { border-top: 1px solid #ddd; }
                  &.active, &:hover { box-shadow: inset 8px 0 #4fcefa; }
                  a { font-size: 18px; @include flex(1, 0, 0); padding: 20px 30px 20px 30px; }
              }
          }
          .secondary-menu { margin: 0 50px 0 0; }
      }
      .burger { display: block; position: absolute; top: 50%; right: 20px; @include translate(0, -50%); z-index: 1001; }
  }*/ }
@media screen and (max-width: 640px), screen and (max-device-width: 640px) {
  /*#header #main-menu {
      .primary-menu li.hidden-secondary { display: block; padding: 20px 30px 0 30px; border: none;
          &:hover, &.active { box-shadow: none; }
          a { padding: 0; @include justify-content(); font-size: 12px; }
          .btn-gray-wolf-border:hover { color: $white; }
      }
      .secondary-menu { display: none; }
  }*/ }
.std-text-button {
  text-decoration: underline;
  font-size: 13px;
  color: #adadad;
  text-transform: uppercase; }
  .std-text-button:hover {
    text-decoration: none;
    color: #adadad; }

.std-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  font: normal 500 14px/25px Rubik, Arial, sans-serif;
  text-transform: uppercase;
  padding: 0 30px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  border-radius: 5px;
  letter-spacing: .025em;
  border: none;
  cursor: pointer;
  text-decoration: none !important; }

.border-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  font: normal 500 14px/25px Rubik, Arial, sans-serif;
  text-transform: uppercase;
  padding: 0 30px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  border-radius: 5px;
  letter-spacing: .025em;
  border: 2px solid;
  cursor: pointer;
  text-decoration: none !important; }

/**/
.btn-gray-wolf-border {
  transition: background 0.1s ease, color 0.1s ease;
  -moz-transition: background 0.1s ease, color 0.1s ease;
  -webkit-transition: background 0.1s ease, color 0.1s ease;
  -o-transition: background 0.1s ease, color 0.1s ease;
  border-color: #555;
  color: #555; }
  .btn-gray-wolf-border:hover {
    background: #555;
    color: #fff; }

.btn-white-bear-border {
  transition: background 0.1s ease, color 0.1s ease;
  -moz-transition: background 0.1s ease, color 0.1s ease;
  -webkit-transition: background 0.1s ease, color 0.1s ease;
  -o-transition: background 0.1s ease, color 0.1s ease;
  border-color: #fff;
  color: #fff; }
  .btn-white-bear-border:hover {
    background: #fff;
    color: #fff; }
  .btn-white-bear-border:hover {
    color: #87b1f2; }

.btn-gray-fox-border {
  transition: background 0.1s ease, color 0.1s ease;
  -moz-transition: background 0.1s ease, color 0.1s ease;
  -webkit-transition: background 0.1s ease, color 0.1s ease;
  -o-transition: background 0.1s ease, color 0.1s ease;
  border-color: #bbb;
  color: #bbb; }
  .btn-gray-fox-border:hover {
    background: #bbb;
    color: #fff; }

.btn-dolphin {
  transition: background 0.1s ease;
  -moz-transition: background 0.1s ease;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  background: #93b4e8; }
  .btn-dolphin:hover {
    background: #719de1;
    color: #fff; }

.btn-purple-turtle {
  transition: background 0.1s ease;
  -moz-transition: background 0.1s ease;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  background: #ae99e9; }
  .btn-purple-turtle:hover {
    background: #9377e2;
    color: #fff; }

.btn-gray-wolf {
  transition: background 0.1s ease;
  -moz-transition: background 0.1s ease;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  background: #555; }
  .btn-gray-wolf:hover {
    background: #414141;
    color: #fff; }

.btn-white-bear {
  transition: background 0.1s ease;
  -moz-transition: background 0.1s ease;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  background: #fff;
  color: #87b1f2; }
  .btn-white-bear:hover {
    background: #ebebeb;
    color: #fff; }
  .btn-white-bear:hover {
    background: #8e90cc;
    color: #fff; }

.btn-red-dragon {
  transition: background 0.1s ease;
  -moz-transition: background 0.1s ease;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  background: #f15f5f; }
  .btn-red-dragon:hover {
    background: #ee3939;
    color: #fff; }

.btn-disabled-fish {
  transition: background 0.1s ease;
  -moz-transition: background 0.1s ease;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  background: #eee; }
  .btn-disabled-fish:hover {
    cursor: not-allowed; }

.btn-purple-lion {
  transition: background 0.1s ease;
  -moz-transition: background 0.1s ease;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  background: #625092; }
  .btn-purple-lion:hover {
    background: #504278;
    color: #fff; }

.btn-dolphin-glow {
  box-shadow: 0 8px 30px rgba(147, 180, 232, 0.35); }

.btn-gray-wolf-glow {
  box-shadow: 0 8px 30px rgba(85, 85, 85, 0.35); }

.btn-blue-whale-glow {
  box-shadow: 0 8px 30px rgba(58, 86, 130, 0.35); }

.btn-lion-glow {
  box-shadow: 0 8px 30px rgba(98, 80, 146, 0.35); }

/**/
.btn-small {
  height: 40px;
  font: normal 500 12px/14px Rubik, Arial, sans-serif;
  padding: 0 20px; }

.btn-medium {
  height: 50px; }

.btn-large {
  height: 60px;
  font: normal 500 20px/24px Rubik, Arial, sans-serif; }

/**/
.modules-list > ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
  -moz-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap; }
  .modules-list > ul > li {
    margin: 20px 0 0;
    border: 1px solid #e7e7e7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    background: #fff; }
    .modules-list > ul > li:first-of-type {
      margin: 0; }
    .modules-list > ul > li .module-single {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row nowrap;
      -moz-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-align-items: center;
      align-items: center; }
      .modules-list > ul > li .module-single .module-num {
        padding: 16px 25px;
        text-align: center;
        box-shadow: 1px 0 0 #e7e7e7; }
        .modules-list > ul > li .module-single .module-num * {
          display: block; }
        .modules-list > ul > li .module-single .module-num strong {
          color: #999;
          font-size: 24px;
          line-height: 28px;
          font-weight: 600; }
        .modules-list > ul > li .module-single .module-num span {
          font-size: 14px;
          line-height: 24px;
          color: #d4d4d4;
          text-transform: uppercase; }
      .modules-list > ul > li .module-single .module-name {
        padding: 20px;
        font-size: 18px;
        color: #505050;
        -webkit-flex: 8 0 0;
        -moz-flex: 8 0 0;
        -ms-flex: 8 0 0;
        flex: 8 0 0;
        width: 100%;
        box-shadow: inset 1px 0 0 #e7e7e7;
        word-break: break-word; }
    .modules-list > ul > li .topics-list {
      display: block;
      border-top: 1px solid #e7e7e7; }
      .modules-list > ul > li .topics-list > li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-align-items: center;
        align-items: center;
        padding: 10px 0;
        border-top: 1px solid #e7e7e7; }
        .modules-list > ul > li .topics-list > li:first-of-type {
          border: none;
          box-shadow: inset 0 12px 20px -10px rgba(0, 0, 0, 0.1); }
        .modules-list > ul > li .topics-list > li .topic-num {
          padding: 16px 22px;
          text-align: center; }
          .modules-list > ul > li .topics-list > li .topic-num span {
            font-size: 11px;
            line-height: 14px;
            font-weight: 500;
            padding: 6px 8px 5px;
            text-align: center;
            color: #fff;
            text-transform: uppercase;
            border-radius: 3px;
            background: #dedede; }
        .modules-list > ul > li .topics-list > li .topic-name {
          padding: 0 20px;
          font-size: 14px;
          color: #999;
          -webkit-flex: 8 0 0;
          -moz-flex: 8 0 0;
          -ms-flex: 8 0 0;
          flex: 8 0 0;
          width: 100%; }
        .modules-list > ul > li .topics-list > li .topic-action {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row nowrap;
          -moz-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-align-items: center;
          align-items: center;
          padding: 10px 20px;
          white-space: nowrap; }
          .modules-list > ul > li .topics-list > li .topic-action > * {
            margin: 0 0 0 10px; }
          .modules-list > ul > li .topics-list > li .topic-action.junior a {
            color: #e8d26d;
            border-color: #e8d26d; }
            .modules-list > ul > li .topics-list > li .topic-action.junior a:hover {
              border-color: #e1c441; }
          .modules-list > ul > li .topics-list > li .topic-action.middle a {
            color: #a1d36e;
            border-color: #a1d36e; }
            .modules-list > ul > li .topics-list > li .topic-action.middle a:hover {
              border-color: #88c747; }
          .modules-list > ul > li .topics-list > li .topic-action.senior a {
            color: #55c1e7;
            border-color: #55c1e7; }
            .modules-list > ul > li .topics-list > li .topic-action.senior a:hover {
              border-color: #28b1e1; }

@media screen and (max-width: 768px), screen and (max-device-width: 768px) {
  .modules-list > ul > li {
    -webkit-flex-flow: column nowrap;
    -moz-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    margin: 20px 0 0; }
    .modules-list > ul > li .module-num {
      border: none;
      padding: 10px; }
    .modules-list > ul > li .module-name {
      padding: 0 20px 10px; } }
.empty-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid #e7e7e7;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 30px;
  margin: 0; }
  .empty-list.borderless {
    border: none;
    box-shadow: none; }

.breadcrumb ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-justify-content: center;
  justify-content: center; }
  .breadcrumb ul li {
    position: relative;
    margin: 0 0 0 10px;
    color: #ccc;
    font-size: 14px; }
    .breadcrumb ul li:first-of-type {
      margin: 0; }
      .breadcrumb ul li:first-of-type:before {
        content: "";
        padding: 0; }
    .breadcrumb ul li:before {
      content: "\00BB";
      padding: 0 10px 0 0;
      color: #ccc; }
    .breadcrumb ul li a {
      color: #ccc;
      text-decoration: underline;
      font-size: 14px; }
      .breadcrumb ul li a:hover {
        text-decoration: none; }

.modal-access {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 8000; }
  .modal-access .modal-access-container {
    position: fixed;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50.1%, -50.1%);
    -moz-transform: translate(-50.1%, -50.1%);
    -ms-transform: translate(-50.1%, -50.1%);
    -o-transform: translate(-50.1%, -50.1%);
    transform: translate(-50.1%, -50.1%);
    width: 100%;
    max-width: 500px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 9000; }
    .modal-access .modal-access-container .modal-close {
      position: absolute;
      top: -30px;
      right: 0;
      cursor: pointer;
      opacity: .8;
      transition: opacity 0.1s ease;
      -moz-transition: opacity 0.1s ease;
      -webkit-transition: opacity 0.1s ease;
      -o-transition: opacity 0.1s ease; }
      .modal-access .modal-access-container .modal-close:hover {
        opacity: 1; }
      .modal-access .modal-access-container .modal-close img {
        width: 18px;
        height: 18px; }
    .modal-access .modal-access-container .message {
      background: url(../img/svg/icon-notallowed.svg) no-repeat 20px center;
      -webkit-background-size: 30px;
      -moz-background-size: 30px;
      -o-background-size: 30px;
      background-size: 30px; }
      .modal-access .modal-access-container .message p {
        margin: 0;
        padding: 20px 20px 20px 70px; }

#page.curriculum .page-container {
  padding-top: 0; }
#page.curriculum .hero-image {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-flow: column nowrap;
  -moz-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  background: url(../img/party-pattern.png) no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 40px 20px;
  min-height: 250px;
  text-align: center; }
  #page.curriculum .hero-image h1 {
    position: relative;
    color: #fff;
    font-size: 34px;
    margin: -60px 0 0;
    text-transform: uppercase; }
#page.curriculum .choose-segment {
  position: relative;
  margin: -60px 0 70px;
  min-height: 100px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  background: #fff;
  text-align: center; }
  #page.curriculum .choose-segment ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap; }
    #page.curriculum .choose-segment ul li {
      -webkit-flex: 1 0 auto;
      -moz-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
      flex: 1 0 auto;
      border-left: 1px solid #eaeaea; }
      #page.curriculum .choose-segment ul li:first-of-type {
        border: none; }
        #page.curriculum .choose-segment ul li:first-of-type a {
          border-radius: 5px 0 0 5px; }
      #page.curriculum .choose-segment ul li:last-of-type a {
        border-radius: 0 5px 5px 0; }
      #page.curriculum .choose-segment ul li a {
        position: relative;
        display: block;
        font: normal 400 44px/50px "Fredoka One", Arial, sans-serif;
        padding: 30px;
        background: #fff;
        text-transform: uppercase;
        transition: box-shadow 0.1s ease, transform 0.15s ease;
        -moz-transition: box-shadow 0.1s ease, transform 0.15s ease;
        -webkit-transition: box-shadow 0.1s ease, transform 0.15s ease;
        -o-transition: box-shadow 0.1s ease, transform 0.15s ease; }
        #page.curriculum .choose-segment ul li a.junior {
          color: #e8d26d; }
          #page.curriculum .choose-segment ul li a.junior:hover {
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
            z-index: 4; }
          #page.curriculum .choose-segment ul li a.junior.active {
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.06), inset 0 -5px 0 #e8d26d; }
        #page.curriculum .choose-segment ul li a.middle {
          color: #a1d36e; }
          #page.curriculum .choose-segment ul li a.middle:hover {
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
            z-index: 3; }
          #page.curriculum .choose-segment ul li a.middle.active {
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.06), inset 0 -5px 0 #a1d36e; }
        #page.curriculum .choose-segment ul li a.senior {
          color: #55c1e7; }
          #page.curriculum .choose-segment ul li a.senior:hover {
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
            z-index: 2; }
          #page.curriculum .choose-segment ul li a.senior.active {
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.06), inset 0 -5px 0 #55c1e7; }
        #page.curriculum .choose-segment ul li a.active {
          z-index: 2; }
          #page.curriculum .choose-segment ul li a.active:hover {
            -ms-transform: scale(1, 1);
            -webkit-transform: scale(1, 1);
            transform: scale(1, 1); }
        #page.curriculum .choose-segment ul li a:hover {
          -ms-transform: scale(1.2, 1.2);
          -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2); }
#page.curriculum .modules-list > ul > li .module-single:hover, #page.curriculum .modules-list > ul > li .module-single:active, #page.curriculum .modules-list > ul > li .module-single.active {
  background: #fbfbfb;
  cursor: pointer; }
#page.curriculum .modules-list > ul > li .topics-list {
  display: none; }

#page.project-single .page-container {
  padding-top: 30px; }
#page.project-single .hero-image {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-flow: column nowrap;
  -moz-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  background: url(../img/scratch-bg.jpg) no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 40px 20px;
  min-height: 200px;
  text-align: center; }
  #page.project-single .hero-image:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.5); }
#page.project-single .project-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap; }
  #page.project-single .project-container .project-gallery {
    position: relative;
    max-width: 300px;
    width: 100%;
    margin: -140px 0 0 0; }
    #page.project-single .project-container .project-gallery .main-image {
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
      height: 200px;
      background: url(https://www.tynker.com/image/og/tynker-1200x630.jpg) no-repeat center center;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
      border-radius: 5px; }
    #page.project-single .project-container .project-gallery ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row wrap;
      -moz-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
      flex-flow: row wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      #page.project-single .project-container .project-gallery ul li {
        width: 90px;
        height: 90px;
        margin: 15px 0 0; }
        #page.project-single .project-container .project-gallery ul li a {
          display: block;
          width: 90px;
          height: 90px;
          background: url(https://www.tynker.com/image/og/tynker-1200x630.jpg) no-repeat center center;
          -webkit-background-size: cover;
          -moz-background-size: cover;
          -o-background-size: cover;
          background-size: cover;
          border-radius: 3px; }
  #page.project-single .project-container .project-summary {
    margin: 0 0 0 70px;
    width: 100%; }
    #page.project-single .project-container .project-summary .breadcrumb ul {
      -webkit-justify-content: flex-start;
      justify-content: flex-start; }
    #page.project-single .project-container .project-summary h2 {
      margin: 10px 0 20px;
      font-size: 32px;
      color: #222;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center; }
      #page.project-single .project-container .project-summary h2 span {
        display: inline-block;
        font: normal 400 15px/24px "Fredoka One", Arial, sans-serif;
        color: #fff;
        text-transform: uppercase;
        padding: 4px 10px;
        margin: 0 15px 0 0; }
        #page.project-single .project-container .project-summary h2 span.junior {
          background: #e8d26d; }
        #page.project-single .project-container .project-summary h2 span.middle {
          background: #a1d36e; }
        #page.project-single .project-container .project-summary h2 span.senior {
          background: #55c1e7; }
    #page.project-single .project-container .project-summary .project-meta {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row nowrap;
      -moz-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      margin: 0 0 30px; }
      #page.project-single .project-container .project-summary .project-meta > * {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
        border: 1px solid #e7e7e7;
        text-transform: uppercase;
        color: #888;
        font-size: 14px;
        padding: 15px 15px 12px 15px;
        margin: 0 0 0 10px;
        border-radius: 3px; }
        #page.project-single .project-container .project-summary .project-meta > *:first-of-type {
          margin: 0; }
      #page.project-single .project-container .project-summary .project-meta .runtime span {
        position: relative;
        display: block;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #e9e9e9;
        margin: 0 auto 10px; }
        #page.project-single .project-container .project-summary .project-meta .runtime span:before, #page.project-single .project-container .project-summary .project-meta .runtime span:after {
          position: absolute;
          width: 14px;
          height: 14px;
          border-radius: 50%;
          background: #e9e9e9;
          content: ""; }
        #page.project-single .project-container .project-summary .project-meta .runtime span:before {
          top: 0;
          left: -16px; }
        #page.project-single .project-container .project-summary .project-meta .runtime span:after {
          top: 0;
          right: -16px; }
      #page.project-single .project-container .project-summary .project-meta .likes {
        padding: 15px 20px 12px 20px; }
        #page.project-single .project-container .project-summary .project-meta .likes span {
          display: block;
          width: 18px;
          height: 18px;
          background: url(../img/svg/icon-heart.svg) no-repeat center center;
          -webkit-background-size: 18px;
          -moz-background-size: 18px;
          -o-background-size: 18px;
          background-size: 18px;
          margin: 0 0 6px; }
      #page.project-single .project-container .project-summary .project-meta .status {
        position: relative;
        margin-left: auto;
        padding: 0 20px 0 65px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        text-transform: capitalize; }
        #page.project-single .project-container .project-summary .project-meta .status.completed {
          color: #a1d36e; }
          #page.project-single .project-container .project-summary .project-meta .status.completed:before {
            background: #a1d36e; }
        #page.project-single .project-container .project-summary .project-meta .status:before {
          position: absolute;
          top: 50%;
          left: 20px;
          width: 34px;
          height: 34px;
          background: #ccc;
          content: "";
          border-radius: 50%;
          -webkit-transform: translate(0, -50%);
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          transform: translate(0, -50%); }
        #page.project-single .project-container .project-summary .project-meta .status:after {
          position: absolute;
          top: 50%;
          left: 20px;
          width: 34px;
          height: 34px;
          background: url(../img/svg/icon-check.svg) no-repeat center center;
          -webkit-background-size: 16px;
          -moz-background-size: 16px;
          -o-background-size: 16px;
          background-size: 16px;
          content: "";
          -webkit-transform: translate(0, -50%);
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          transform: translate(0, -50%); }
    #page.project-single .project-container .project-summary .project-description p {
      margin: 25px 0 0;
      font-size: 16px;
      line-height: 24px; }
      #page.project-single .project-container .project-summary .project-description p:first-of-type {
        margin: 0; }
    #page.project-single .project-container .project-summary .steps {
      margin: 60px 0 0; }
      #page.project-single .project-container .project-summary .steps dl {
        margin: 0;
        padding: 0; }
        #page.project-single .project-container .project-summary .steps dl dt {
          margin: 0 0 20px;
          font-size: 18px;
          font-weight: 500;
          text-transform: uppercase;
          color: #444; }
        #page.project-single .project-container .project-summary .steps dl dd {
          margin: 0 0 10px; }
          #page.project-single .project-container .project-summary .steps dl dd a {
            color: #7eaffc; }
            #page.project-single .project-container .project-summary .steps dl dd a:hover {
              text-decoration: underline; }

@media screen and (max-width: 640px), screen and (max-device-width: 640px) {
  #page.project-single .hero-image {
    display: none; }
  #page.project-single .project-container {
    display: block; }
    #page.project-single .project-container .project-gallery {
      max-width: none;
      margin: 0; }
    #page.project-single .project-container .project-summary {
      margin: 50px 0 0; } }
@media screen and (max-width: 480px), screen and (max-device-width: 480px) {
  #page.project-single .project-container .project-summary .project-meta .likes {
    display: none; } }
#page.project-step .step-content {
  position: relative;
  text-align: center; }
  #page.project-step .step-content .step-chooser {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: fixed;
    top: 300px;
    margin-left: -100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e4e4e4;
    transition: background 0.1s ease;
    -moz-transition: background 0.1s ease;
    -webkit-transition: background 0.1s ease;
    -o-transition: background 0.1s ease; }
    #page.project-step .step-content .step-chooser:hover, #page.project-step .step-content .step-chooser.active {
      background: #f9f9f9; }
    #page.project-step .step-content .step-chooser.active ul {
      left: 100px;
      visibility: visible;
      opacity: 1; }
    #page.project-step .step-content .step-chooser .burger {
      position: relative;
      z-index: 10; }
      #page.project-step .step-content .step-chooser .burger input[type="checkbox"] {
        display: none; }
      #page.project-step .step-content .step-chooser .burger label {
        display: block;
        padding: 30px 20px;
        cursor: pointer;
        margin: 0; }
        #page.project-step .step-content .step-chooser .burger label > span {
          position: relative;
          display: block;
          width: 24px;
          height: 2px;
          background: #111;
          text-indent: -9999px;
          transition: background 0.01s 0.3s ease;
          -moz-transition: background 0.01s 0.3s ease;
          -webkit-transition: background 0.01s 0.3s ease;
          -o-transition: background 0.01s 0.3s ease; }
          #page.project-step .step-content .step-chooser .burger label > span:before, #page.project-step .step-content .step-chooser .burger label > span:after {
            position: absolute;
            left: 0;
            width: 24px;
            height: 2px;
            background: #111;
            content: "";
            transition: top 0.3s 0.35s ease, transform 0.3s 0.05s ease;
            -moz-transition: top 0.3s 0.35s ease, transform 0.3s 0.05s ease;
            -webkit-transition: top 0.3s 0.35s ease, transform 0.3s 0.05s ease;
            -o-transition: top 0.3s 0.35s ease, transform 0.3s 0.05s ease; }
          #page.project-step .step-content .step-chooser .burger label > span:before {
            top: -8px; }
          #page.project-step .step-content .step-chooser .burger label > span:after {
            top: 8px; }
      #page.project-step .step-content .step-chooser .burger .trigger:checked ~ label > span {
        background: transparent; }
        #page.project-step .step-content .step-chooser .burger .trigger:checked ~ label > span:after, #page.project-step .step-content .step-chooser .burger .trigger:checked ~ label > span:before {
          transition: top 0.3s 0.05s ease, transform 0.3s 0.35s ease;
          -moz-transition: top 0.3s 0.05s ease, transform 0.3s 0.35s ease;
          -webkit-transition: top 0.3s 0.05s ease, transform 0.3s 0.35s ease;
          -o-transition: top 0.3s 0.05s ease, transform 0.3s 0.35s ease;
          top: 0; }
        #page.project-step .step-content .step-chooser .burger .trigger:checked ~ label > span:before {
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg); }
        #page.project-step .step-content .step-chooser .burger .trigger:checked ~ label > span:after {
          -webkit-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          -o-transform: rotate(-45deg);
          transform: rotate(-45deg); }
    #page.project-step .step-content .step-chooser ul {
      width: 300px;
      position: absolute;
      top: 0;
      left: -100px;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: left 0.3s ease, opacity 0.3s ease;
      -moz-transition: left 0.3s ease, opacity 0.3s ease;
      -webkit-transition: left 0.3s ease, opacity 0.3s ease;
      -o-transition: left 0.3s ease, opacity 0.3s ease; }
      #page.project-step .step-content .step-chooser ul.active {
        opacity: 1;
        left: 100px;
        visibility: visible; }
      #page.project-step .step-content .step-chooser ul:before {
        position: absolute;
        top: 20px;
        left: -8px;
        content: "";
        width: 16px;
        height: 16px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: -1; }
      #page.project-step .step-content .step-chooser ul:after {
        position: absolute;
        top: 20px;
        left: -8px;
        content: "";
        width: 16px;
        height: 16px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
      #page.project-step .step-content .step-chooser ul li {
        margin: 10px 0 0;
        text-align: left; }
        #page.project-step .step-content .step-chooser ul li:first-of-type {
          margin: 0; }
        #page.project-step .step-content .step-chooser ul li a {
          display: block;
          color: #666;
          border: none;
          font-size: 14px; }
          #page.project-step .step-content .step-chooser ul li a:hover {
            color: #7eaffc; }
  #page.project-step .step-content .segment {
    display: inline-block;
    font: normal 400 15px/24px "Fredoka One", Arial, sans-serif;
    color: #fff;
    text-transform: uppercase;
    padding: 4px 10px;
    margin: 0 0 15px;
    border-radius: 3px; }
    #page.project-step .step-content .segment.junior {
      background: #e8d26d; }
    #page.project-step .step-content .segment.middle {
      background: #a1d36e; }
    #page.project-step .step-content .segment.senior {
      background: #55c1e7; }
  #page.project-step .step-content .breadcrumb {
    margin: 0 0 50px; }
  #page.project-step .step-content h1 {
    margin: 0 0 50px;
    padding: 0 70px;
    color: #222;
    word-break: break-word; }
  #page.project-step .step-content .step-description > p {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
    color: #777;
    line-height: 30px;
    font-size: 18px;
    font-weight: 300; }
    #page.project-step .step-content .step-description > p img {
      display: block;
      width: auto !important;
      height: auto !important;
      border: 1px solid #ccc;
      padding: 6px;
      vertical-align: bottom;
      margin: 20px 5px; }
  #page.project-step .step-content .step-description ol li p {
    text-align: left;
    color: #777;
    line-height: 30px;
    font-size: 18px;
    font-weight: 300; }
    #page.project-step .step-content .step-description ol li p img {
      display: block;
      width: auto !important;
      height: auto !important;
      border: 1px solid #ccc;
      padding: 6px;
      vertical-align: bottom;
      margin: 20px 5px; }
  #page.project-step .step-content .bottom-nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 100px 0 0; }
    #page.project-step .step-content .bottom-nav a {
      position: relative;
      font-size: 18px;
      color: #ccc; }
      #page.project-step .step-content .bottom-nav a:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
        height: 50px;
        opacity: .4;
        content: "";
        -webkit-transform: translate(0, -25%);
        -moz-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%); }
      #page.project-step .step-content .bottom-nav a:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
        height: 50px;
        border: 1px solid #f0f0f0;
        border-radius: 50%;
        opacity: 0;
        content: "";
        -webkit-transform: translate(0, -25%);
        -moz-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%); }
      #page.project-step .step-content .bottom-nav a.previous {
        padding: 0 0 0 75px;
        text-align: left; }
        #page.project-step .step-content .bottom-nav a.previous:before {
          background: url(../img/svg/icon-arrow-left.svg) no-repeat center center;
          -webkit-background-size: 15px;
          -moz-background-size: 15px;
          -o-background-size: 15px;
          background-size: 15px; }
      #page.project-step .step-content .bottom-nav a.next {
        padding: 0 75px 0 0;
        text-align: right;
        margin-left: auto; }
        #page.project-step .step-content .bottom-nav a.next:before {
          right: 0;
          left: auto;
          background: url(../img/svg/icon-arrow-right.svg) no-repeat center center;
          -webkit-background-size: 15px;
          -moz-background-size: 15px;
          -o-background-size: 15px;
          background-size: 15px; }
        #page.project-step .step-content .bottom-nav a.next:after {
          right: 0;
          left: auto; }
      #page.project-step .step-content .bottom-nav a:hover {
        color: #777; }
        #page.project-step .step-content .bottom-nav a:hover:before, #page.project-step .step-content .bottom-nav a:hover:after {
          opacity: 1; }

@media screen and (max-width: 1400px), screen and (max-device-width: 1400px) {
  #page.project-step .step-content .step-chooser {
    margin: 0; } }
@media screen and (max-width: 1280px), screen and (max-device-width: 1280px) {
  #page.project-step .step-content .step-description {
    max-width: 900px;
    margin: 0 auto; } }
#page.students {
  background: #f8f8f8; }
  #page.students .students-list {
    border: 1px solid #e7e7e7;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06); }
    #page.students .students-list > ul > li {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row nowrap;
      -moz-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-align-items: center;
      align-items: center;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      padding: 15px 20px;
      border-top: 1px solid #e7e7e7; }
      #page.students .students-list > ul > li:first-of-type {
        border: none; }
      #page.students .students-list > ul > li .student-pic {
        -webkit-flex: 1 0 0;
        -moz-flex: 1 0 0;
        -ms-flex: 1 0 0;
        flex: 1 0 0; }
        #page.students .students-list > ul > li .student-pic img {
          width: 40px;
          height: 40px;
          border-radius: 50%; }
      #page.students .students-list > ul > li .student-name {
        -webkit-flex: 3 0 0;
        -moz-flex: 3 0 0;
        -ms-flex: 3 0 0;
        flex: 3 0 0;
        text-align: left; }
      #page.students .students-list > ul > li .student-age {
        -webkit-flex: 1 0 0;
        -moz-flex: 1 0 0;
        -ms-flex: 1 0 0;
        flex: 1 0 0; }
      #page.students .students-list > ul > li .student-track {
        -webkit-flex: 2 0 0;
        -moz-flex: 2 0 0;
        -ms-flex: 2 0 0;
        flex: 2 0 0; }
      #page.students .students-list > ul > li .student-rating {
        -webkit-flex: 1 0 0;
        -moz-flex: 1 0 0;
        -ms-flex: 1 0 0;
        flex: 1 0 0; }
        #page.students .students-list > ul > li .student-rating .rank {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row nowrap;
          -moz-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-justify-content: center;
          justify-content: center; }
          #page.students .students-list > ul > li .student-rating .rank.per-20 .star:nth-of-type(1) {
            background: url(../img/svg/icon-star-yellow.svg) no-repeat center center; }
          #page.students .students-list > ul > li .student-rating .rank.per-40 .star:nth-of-type(1), #page.students .students-list > ul > li .student-rating .rank.per-40 .star:nth-of-type(2) {
            background: url(../img/svg/icon-star-yellow.svg) no-repeat center center; }
          #page.students .students-list > ul > li .student-rating .rank.per-60 .star:nth-of-type(1), #page.students .students-list > ul > li .student-rating .rank.per-60 .star:nth-of-type(2), #page.students .students-list > ul > li .student-rating .rank.per-60 .star:nth-of-type(3) {
            background: url(../img/svg/icon-star-yellow.svg) no-repeat center center; }
          #page.students .students-list > ul > li .student-rating .rank.per-80 .star:nth-of-type(1), #page.students .students-list > ul > li .student-rating .rank.per-80 .star:nth-of-type(2), #page.students .students-list > ul > li .student-rating .rank.per-80 .star:nth-of-type(3), #page.students .students-list > ul > li .student-rating .rank.per-80 .star:nth-of-type(4) {
            background: url(../img/svg/icon-star-yellow.svg) no-repeat center center; }
          #page.students .students-list > ul > li .student-rating .rank.per-100 .star {
            background: url(../img/svg/icon-star-yellow.svg) no-repeat center center; }
          #page.students .students-list > ul > li .student-rating .rank .star {
            width: 16px;
            height: 16px;
            margin: 0 1px;
            background: url(../img/svg/icon-star-yellow.svg) no-repeat center center;
            -webkit-background-size: 16px;
            -moz-background-size: 16px;
            -o-background-size: 16px;
            background-size: 16px; }
      #page.students .students-list > ul > li .student-actions {
        -webkit-flex: 2 0 0;
        -moz-flex: 2 0 0;
        -ms-flex: 2 0 0;
        flex: 2 0 0;
        text-align: right; }

#page.login {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: url(../img/party-pattern.png) no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }
  #page.login:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/login-bg-glow.png) no-repeat center center; }
  #page.login .login-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 0 20px; }
    #page.login .login-container > img {
      margin: 0 auto 70px; }
    #page.login .login-container .form-row {
      position: relative;
      width: 100%;
      height: 90px;
      margin: 20px 0 0;
      background: #fff;
      box-shadow: 0 8px 20px rgba(90, 92, 143, 0.2);
      border-radius: 10px;
      padding: 0 20px 0 90px; }
      #page.login .login-container .form-row > img {
        position: absolute;
        top: 50%;
        left: 30px;
        width: 28px;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%); }
      #page.login .login-container .form-row input {
        width: 100%;
        height: 90px;
        color: #666;
        font-weight: 300;
        font-size: 26px; }
        #page.login .login-container .form-row input.placeholder {
          color: #ccc;
          font-weight: 300;
          font-size: 26px; }
        #page.login .login-container .form-row input:-ms-input-placeholder {
          color: #ccc;
          font-weight: 300;
          font-size: 26px; }
        #page.login .login-container .form-row input:-moz-placeholder {
          color: #ccc;
          font-weight: 300;
          font-size: 26px; }
        #page.login .login-container .form-row input::-moz-placeholder {
          color: #ccc;
          font-weight: 300;
          font-size: 26px; }
        #page.login .login-container .form-row input::-webkit-input-placeholder {
          color: #ccc;
          font-weight: 300;
          font-size: 26px; }
        #page.login .login-container .form-row input:-webkit-autofill {
          -webkit-box-shadow: 0 0 0 1000px white inset !important; }
    #page.login .login-container .form-helpers {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-flow: row nowrap;
      -moz-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-align-items: center;
      align-items: center;
      margin: 30px 0 60px; }
      #page.login .login-container .form-helpers .remember-me .rmbrme-text, #page.login .login-container .form-helpers .forgotten-password a {
        cursor: pointer;
        color: #fff;
        opacity: .8;
        transition: opacity 0.1s ease;
        -moz-transition: opacity 0.1s ease;
        -webkit-transition: opacity 0.1s ease;
        -o-transition: opacity 0.1s ease;
        font-size: 20px; }
        #page.login .login-container .form-helpers .remember-me .rmbrme-text:hover, #page.login .login-container .form-helpers .forgotten-password a:hover {
          opacity: 1; }
      #page.login .login-container .form-helpers .remember-me {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center; }
        #page.login .login-container .form-helpers .remember-me .jcf-checkbox {
          box-shadow: 0 8px 20px rgba(90, 92, 143, 0.2); }
        #page.login .login-container .form-helpers .remember-me:hover .rmbrme-text {
          opacity: 1; }
    #page.login .login-container .std-button {
      padding: 0 50px; }

#page.topics .empty-list {
  position: relative; }
#page.topics .hero-image {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-flow: column nowrap;
  -moz-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  padding: 40px 20px;
  min-height: 250px;
  text-align: center; }
  #page.topics .hero-image.junior {
    background: url(../img/junior-party-pattern.png) no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  #page.topics .hero-image.middle {
    background: url(../img/middle-party-pattern.png) no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  #page.topics .hero-image.senior {
    background: url(../img/senior-party-pattern.png) no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; }
  #page.topics .hero-image .segment {
    display: inline-block;
    font: normal 400 20px/24px "Fredoka One", Arial, sans-serif;
    background: #fff;
    text-transform: uppercase;
    padding: 6px 10px;
    margin: 0 0 15px;
    border-radius: 3px; }
    #page.topics .hero-image .segment.junior {
      color: #e8d26d; }
    #page.topics .hero-image .segment.middle {
      color: #a1d36e; }
    #page.topics .hero-image .segment.senior {
      color: #55c1e7; }
  #page.topics .hero-image h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 400;
    margin: 0; }
#page.topics .lesson-plan {
  position: relative;
  margin: 0 0 30px; }
  #page.topics .lesson-plan .lesson-mask {
    position: relative;
    overflow: hidden;
    height: 450px; }
    #page.topics .lesson-plan .lesson-mask:after {
      position: absolute;
      width: 100%;
      height: 100%;
      bottom: 0;
      background: url(../img/lesson-mask.png) no-repeat bottom center;
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
      background-size: cover;
      content: ""; }
  #page.topics .lesson-plan .flex-h-container {
    position: relative;
    margin: 20px 0 0; }
    #page.topics .lesson-plan .flex-h-container.hidden {
      margin: -100px 0 0; }
    #page.topics .lesson-plan .flex-h-container a {
      color: #444;
      text-decoration: underline; }
      #page.topics .lesson-plan .flex-h-container a:hover {
        text-decoration: none; }
#page.topics .projects-list .project {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin: 30px 0 0;
  padding: 30px;
  border: 1px solid #dfdfdf;
  border-top-width: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06); }
  #page.topics .projects-list .project:first-of-type {
    margin: 100px 0 0; }
  #page.topics .projects-list .project .project-image {
    -webkit-flex: 2 0 0;
    -moz-flex: 2 0 0;
    -ms-flex: 2 0 0;
    flex: 2 0 0; }
  #page.topics .projects-list .project .project-summary {
    position: relative;
    -webkit-flex: 8 0 0;
    -moz-flex: 8 0 0;
    -ms-flex: 8 0 0;
    flex: 8 0 0;
    padding: 0 0 0 50px; }
    #page.topics .projects-list .project .project-summary .project-title {
      font-weight: 300;
      font-size: 36px;
      margin: 0 0 20px;
      padding: 0 150px 0 0; }
    #page.topics .projects-list .project .project-summary .project-description {
      font-weight: 300;
      line-height: 24px;
      margin: 10px 0 0; }
      #page.topics .projects-list .project .project-summary .project-description p {
        margin: 0; }
    #page.topics .projects-list .project .project-summary .project-meta {
      margin: 25px 0 0;
      padding: 10px;
      border: 1px solid #e4e4e8;
      font-size: 12px;
      text-transform: uppercase; }
      #page.topics .projects-list .project .project-summary .project-meta ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row nowrap;
        -moz-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap; }
        #page.topics .projects-list .project .project-summary .project-meta ul li {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-flex-flow: row nowrap;
          -moz-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
          -webkit-align-items: center;
          align-items: center;
          border-left: 1px solid #d7d7db;
          padding: 1px 1px 1px 10px;
          margin: 0 0 0 10px; }
          #page.topics .projects-list .project .project-summary .project-meta ul li.finished {
            color: #a1d36e;
            font-weight: 500; }
          #page.topics .projects-list .project .project-summary .project-meta ul li.notstarted {
            color: #dfdfdf;
            font-weight: 500; }
          #page.topics .projects-list .project .project-summary .project-meta ul li.date {
            color: #bcbcbc;
            margin-left: auto;
            border: none; }
          #page.topics .projects-list .project .project-summary .project-meta ul li:first-of-type {
            border: none;
            padding: 0;
            margin: 0 0 0 5px; }
          #page.topics .projects-list .project .project-summary .project-meta ul li img {
            width: 12px;
            height: 12px;
            margin: 0 5px 0 0; }
          #page.topics .projects-list .project .project-summary .project-meta ul li .runtime {
            position: relative;
            display: block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e9e9e9;
            margin: 0 18px 0 6px; }
            #page.topics .projects-list .project .project-summary .project-meta ul li .runtime:before, #page.topics .projects-list .project .project-summary .project-meta ul li .runtime:after {
              position: absolute;
              width: 8px;
              height: 8px;
              border-radius: 50%;
              background: #e9e9e9;
              content: ""; }
            #page.topics .projects-list .project .project-summary .project-meta ul li .runtime:before {
              top: 0;
              left: -10px;
              background: #7eaffc; }
            #page.topics .projects-list .project .project-summary .project-meta ul li .runtime:after {
              top: 0;
              right: -10px; }
    #page.topics .projects-list .project .project-summary .border-button {
      position: absolute;
      top: 2px;
      right: 0; }

.jcf-checkbox, .jcf-radio {
  position: relative;
  overflow: hidden;
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background: #fff;
  height: 36px;
  width: 36px;
  margin: 0 20px 0 0; }
  .jcf-checkbox + label, .jcf-radio + label {
    cursor: pointer;
    margin: 0; }

.jcf-checkbox {
  border-radius: 5px; }
  .jcf-checkbox.jcf-checked span {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/svg/icon-check-green.svg) no-repeat center center;
    -webkit-background-size: 18px 18px;
    -moz-background-size: 18px 18px;
    -o-background-size: 18px 18px;
    background-size: 18px 18px; }
  .jcf-checkbox input[type=checkbox] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0;
    left: 0;
    top: 0;
    cursor: pointer; }

/*# sourceMappingURL=main.css.map */
