/* Found on: http://css-tricks.com/snippets/css/useful-css3-less-mixins/ */
/*Added calc(), found on: https://gist.github.com/jonkemp/2280688 */
/* Colour Palette*/
/*Media queries*/
/*@media shortcuts*/
html {
  width: 100%;
  height: 100%;
}
html :focus {
  outline: none;
}
body {
  width: 100%;
  min-height: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  position: absolute;
  color: #0a2e64;
  font-family: "Calibri", "Arial", sans-serif;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}
p,
h1,
h2,
h3,
section {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
input,
textarea,
select {
  font-size: 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: 0 none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*iPad hack
* as found here http://stackoverflow.com/questions/19012135/ios-7-ipad-safari-landscape-innerheight-outerheight-layout-issue
*/
@media (orientation: landscape) {
  html.ipad.ios7 > body.code {
    position: fixed;
    bottom: 0;
  }
}
@media (orientation: portrait) {
  html.ipad.ios7 > body.code {
    position: absolute;
  }
}
.bolt {
  font-family: "KBTurningGears", "Calibri", 'Arial', sans-serif;
}
.robot-talk {
  color: #00d058;
}
.twitter {
  color: #0089e6 !important;
}
.twitter .logo {
  display: inline-block;
  width: 12px;
  height: 9px;
  margin-right: 5px;
  background-image: url("../img/twitter-logo.png");
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .twitter .logo {
    background-image: url("../img/twitter-logo@2x.png");
    background-size: 23px 9px;
    background-repeat: no-repeat;
  }
}
.twitter:hover {
  color: #00d058 !important;
}
.twitter:hover .logo {
  background-position: -11px 0;
}
header {
  background-color: #e60613;
  height: 60px;
  width: 100%;
  color: white;
  border-bottom: 4px solid #ffa800;
  font-family: 'Polaris', 'Calibri', 'Arial', sans-serif;
  position: fixed;
  top: 0;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  header {
    height: 40px;
    border-bottom-width: 2px;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  header {
    overflow: visible;
  }
}
header .home {
  font-size: 22px;
  padding: 5px 0;
  margin-left: 40px;
  cursor: pointer;
  display: inline-block;
  float: left;
}
header .home .bolt {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  header .home {
    margin-left: 20px;
    font-size: 18px;
  }
  header .home .bolt {
    font-size: 22px;
  }
}
header nav {
  float: right;
  display: inline-block;
  margin-right: 40px;
  height: 100%;
}
header nav .menu-item {
  float: left;
  display: inline-block;
  border-right: 1px solid #ffa800;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 768px) {
  header nav .menu-item {
    min-width: 120px;
  }
}
@media screen and (min-width: 992px) {
  header nav .menu-item {
    min-width: 150px;
  }
}
header nav .menu-item:hover,
header nav .menu-item.active,
header nav .menu-item.selected {
  background-color: #ffa800;
  border-right: 2px solid #e60613;
}
header nav .menu-item.active .arrow {
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
header nav .menu-item:first-child {
  border-left: 1px solid #ffa800;
}
header nav .menu-item a,
header nav .menu-item .playground {
  color: white;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 0;
  box-sizing: border-box;
}
header nav .drop-down {
  display: none;
  position: absolute;
  margin: 0;
  padding: 0;
  list-style-type: none;
  top: 64px;
  width: 100%;
}
header nav .drop-down li {
  cursor: pointer;
  border: 1px solid #ffa800;
  border-top: 0;
  background-color: #efefef;
  padding: 10px 20px;
}
header nav .drop-down li a {
  font-size: 14px;
  color: #0a2e64;
  width: 100%;
  height: 100%;
  display: block;
}
header nav .drop-down li:hover {
  background-color: #ffa800;
}
header nav .drop-down li:hover a {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  header nav {
    display: none;
  }
}
header .logo {
  height: 50px;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  header .logo {
    vertical-align: top;
  }
}
footer {
  background-color: #ffa800;
  height: 30px;
  width: 100%;
  position: absolute;
  bottom: 0;
  border-top: 4px solid #00d058;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  footer {
    height: auto;
    border-top-width: 2px;
  }
}
@media screen and (min-width: 768px) {
  footer {
    position: relative;
  }
}
@media screen and (min-width: 992px) {
  footer {
    position: absolute;
  }
}
footer nav {
  padding: 5px 0;
  margin: 0 40px;
}
footer nav a {
  display: inline-block;
  font-size: 12px;
  color: #0a2e64;
  float: left;
  margin-right: 10px;
}
footer nav a:hover,
footer nav a.active {
  color: #ffffff;
}
footer nav a.twitter {
  float: right;
}
@media screen and (max-width: 767px) {
  footer nav a.twitter {
    width: 100%;
    margin: 5px 0;
  }
}
@media screen and (max-width: 767px) {
  footer nav {
    margin: 0 20px;
  }
}
.main {
  width: 100%;
  max-width: 900px;
  margin: 80px auto 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main {
    margin: 60px 0 15px 0;
    overflow: hidden;
  }
}
/*Loader*/
.loader {
  width: 40px;
  height: 40px;
  background-image: url("../img/loading.png");
  -webkit-animation: play 0.8s steps(24) infinite;
  -moz-animation: play 0.8s steps(24) infinite;
  -ms-animation: play 0.8s steps(24) infinite;
  -o-animation: play 0.8s steps(24) infinite;
  animation: play 0.8s steps(24) infinite;
}
@-webkit-keyframes play {
  from {
    background-position: 0px;
  }
  to {
    background-position: -960px;
  }
}
@-moz-keyframes play {
  from {
    background-position: 0px;
  }
  to {
    background-position: -960px;
  }
}
@-ms-keyframes play {
  from {
    background-position: 0px;
  }
  to {
    background-position: -960px;
  }
}
@-o-keyframes play {
  from {
    background-position: 0px;
  }
  to {
    background-position: -960px;
  }
}
@keyframes play {
  from {
    background-position: 0px;
  }
  to {
    background-position: -960px;
  }
}
.homepage .main {
  max-width: 1000px;
}
.content-text {
  width: 75%;
  max-width: 570px;
  margin: 50px auto;
  position: relative;
  border: 2px solid #0089e6;
  background-color: white;
  padding: 10px;
  font-family: 'Polaris', 'Calibri', 'Arial', sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.content-text.activities {
  z-index: 10;
  padding: 0;
  margin-bottom: 80px;
}
.content-text.activities h2 {
  padding: 5px 10px;
  background-color: #0089e6;
  color: white;
  font-size: 16px;
  border-bottom: 2px solid #00d058;
}
.content-text.activities section {
  padding: 20px 10px 10px 10px;
}
.content-text.activities section h3 {
  font-size: 16px;
  display: inline-block;
  width: 150px;
}
.content-text.activities section h3 .category {
  font-family: "Calibri", "Arial", sans-serif;
  font-size: 12px;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .content-text.activities section h3 {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .content-text.activities section h3 {
    width: 150px;
  }
}
.content-text.activities section .description {
  font-family: "Calibri", "Arial", sans-serif;
  display: inline-block;
  font-size: 14px;
  width: 320px;
  vertical-align: top;
  margin: 0 10px;
}
@media screen and (min-width: 768px) {
  .content-text.activities section .description {
    width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .content-text.activities section .description {
    width: 320px;
    margin: 0 10px;
  }
}
.content-text.activities section a {
  color: white;
  background-color: #0089e6;
  border-bottom: 2px solid #00d058;
  border-right: 2px solid #00d058;
  padding: 5px;
  font-size: 14px;
  display: inline-block;
  float: right;
}
@media screen and (min-width: 768px) {
  .content-text.activities section a {
    float: none;
    margin: 10px 0;
  }
}
@media screen and (min-width: 992px) {
  .content-text.activities section a {
    float: right;
    margin: 0;
  }
}
.content-text.activities section a:hover {
  border: none;
  border-top: 1px solid #00d058;
  border-left: 1px solid #00d058;
}
.content-text.activities section a.more {
  float: none;
  margin: 20px 0;
}
.content-text.activities section hr {
  display: block;
  height: 1px;
  width: 80%;
  border: 0;
  margin: 5px auto;
  padding: 0;
  border-top: 1px solid #0089e6;
}
.content-text.activities section .drawing h3 {
  color: #0089e6;
}
.content-text.activities section .drawing h3 .category {
  color: #ffa800;
}
.content-text.activities section .interactions h3 {
  color: #00d058;
}
.content-text.activities section .interactions h3 .category {
  color: #0089e6;
}
.content-text.activities section .games h3 {
  color: #e60613;
}
.content-text.activities section .games h3 .category {
  color: #00d058;
}
.content-text.activities section .apps h3 {
  color: #ffa800;
}
.content-text.activities section .apps h3 .category {
  color: #e60613;
}
.content-text.activities section .playtime h3 {
  color: #0089e6;
}
.content-text.activities section .playtime h3 .category {
  color: #e60613;
}
@media screen and (min-width: 768px) {
  .content-text {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .content-text {
    margin-top: 140px;
    margin-bottom: 65px;
  }
  .content-text.activities {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .content-text {
    width: 75%;
  }
}
.content-text h1 {
  font-size: 24px;
  padding: 10px 60px;
  line-height: 1;
}
.content-text h1.bolt {
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .content-text h1 {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .content-text h1 {
    padding: 10px 30px 0;
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .content-text h1 {
    padding: 10px 60px;
  }
}
.content-text .intro {
  height: auto;
  font-size: 14px;
  padding: 15px 15px 0 80px;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}
.content-text .intro.first {
  padding-left: 180px;
}
@media screen and (max-width: 767px) {
  .content-text .intro {
    width: 100%;
    font-size: 12px;
    padding-left: 15px;
  }
  .content-text .intro.first {
    padding-left: 15px;
  }
}
@media screen and (min-width: 768px) {
  .content-text .intro {
    padding: 15px 15px 0 15px;
  }
  .content-text .intro.first {
    padding-left: 112px;
  }
}
@media screen and (min-width: 992px) {
  .content-text .intro {
    padding: 15px 15px 0 80px;
  }
  .content-text .intro.first {
    padding-left: 180px;
  }
}
.content-text .intro.left {
  float: left;
  margin-left: 50px;
  max-width: 425px;
}
@media screen and (min-width: 768px) {
  .content-text .intro.left {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .content-text .intro.left {
    margin-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .content-text .intro.left {
    margin-left: 50px;
  }
}
.content-text .intro:last-child {
  margin-bottom: 20px;
}
.content-text .intro.activity {
  text-align: center;
}
.content-text .intro .activity-wrapper {
  display: block;
  padding: 5px 0 25px;
  width: 50%;
  margin: 0 auto;
  border-bottom: 1px solid #0089e6;
  text-align: left;
}
.content-text .intro .activity-wrapper span {
  padding-top: 10px;
}
.content-text .intro .activity-wrapper span.drawing {
  color: #0089e6;
}
.content-text .intro .activity-wrapper span.interactions {
  color: #00d058;
}
.content-text .intro .activity-wrapper span.game {
  color: #e60613;
}
.content-text .intro a {
  color: #0089e6;
  text-decoration: underline;
  font-size: 16px;
  font-weight: bold;
}
.content-text .intro a:hover {
  color: #e60613;
}
.content-text .intro a.activity {
  color: white;
  background-color: #0089e6;
  border-bottom: 2px solid #00d058;
  border-right: 2px solid #00d058;
  padding: 5px;
  font-size: 14px;
  display: inline-block;
  float: right;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .content-text .intro a.activity {
    float: none;
    margin: 10px 0;
  }
}
@media screen and (min-width: 992px) {
  .content-text .intro a.activity {
    float: right;
    margin: 0;
  }
}
.content-text .intro a.activity:hover {
  border: none;
  border-top: 1px solid #00d058;
  border-left: 1px solid #00d058;
}
.content-text .intro a.activity.more {
  float: none;
  margin: 20px 0;
}
@media screen and (min-width: 992px) {
  .homepage.xmas .content-text h1 {
    padding-left: 90px;
  }
}
.homepage.xmas .content-text.activities {
  border-color: #e60613;
}
.homepage.xmas .content-text.activities h2,
.homepage.xmas .content-text.activities section a {
  background-color: #e60613;
}
.homepage.xmas .content-text.activities section hr {
  border-top-color: #e60613;
}
.homepage.xmas .content-text.activities section .apps h3,
.homepage.xmas .content-text.activities section .games h3,
.homepage.xmas .content-text.activities section .drawing h3 {
  color: #00d058;
}
.homepage.xmas .content-text.activities section .apps h3 .category,
.homepage.xmas .content-text.activities section .games h3 .category,
.homepage.xmas .content-text.activities section .drawing h3 .category {
  color: #e60613;
}
.bolt-image {
  position: absolute;
  top: 28px;
  left: 55px;
  pointer-events: none;
  z-index: 10;
  width: auto;
}
@media screen and (min-width: 768px) {
  .bolt-image {
    bottom: 40px;
    left: -33px;
  }
  .bolt-image img {
    width: 348px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .bolt-image {
    top: 0px;
    left: -15px;
    z-index: 0;
    pointer-events: auto;
  }
  .bolt-image img {
    width: 250px;
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  .bolt-image {
    top: 30px;
    left: 55px;
    bottom: auto;
  }
}
.page .main {
  overflow-x: hidden;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .page .main {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .page .main {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .about .list:last-child,
  .policy .list:last-child {
    margin-bottom: 80px;
  }
}
.page-content {
  font-family: 'Calibri', 'Arial', sans-serif;
  font-size: 14px;
  width: 80%;
  max-width: 650px;
  margin: 0 auto;
}
.page-content h1 {
  font-family: "Polaris", 'Calibri', 'Arial', sans-serif;
  background-color: #ffa800;
  border: 2px solid #ffa800;
  border-top: none;
  padding: 5px 10px;
  color: #ffffff;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-content h1 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-content h1 {
    font-size: 24px;
  }
}
.page-content .alphabet {
  color: #0089e6;
  margin-bottom: 20px;
  text-align: center;
}
.page-content .alphabet a {
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  font-size: 14px;
  margin: 0px 3px;
  display: inline-block;
  text-decoration: none;
  color: #0089e6;
}
.page-content .alphabet a.disabled {
  pointer-events: none;
  cursor: default;
  color: #efefef;
}
@media screen and (min-width: 992px) {
  .page-content .alphabet a {
    margin: 0 4px;
  }
}
.page-content .alphabet a:hover {
  text-decoration: underline;
  color: #ffa800;
}
.page-content .alphabet a:first-child {
  margin-left: 0;
}
.page-content .alphabet a:last-child {
  margin-right: 0;
}
.page-content .list section {
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.page-content .list section hr {
  display: block;
  height: 1px;
  width: 80%;
  border: 0;
  margin: 5px auto;
  padding: 0;
}
.page-content .list section h3 {
  display: inline-block;
  width: 150px;
  vertical-align: top;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  font-size: 14px;
}
.page-content .list section h3 span {
  font-style: italic;
  font-size: 12px;
  font-family: "Calibri", "Arial", sans-serif;
  color: #0a2e64;
}
@media screen and (max-width: 767px) {
  .page-content .list section h3 {
    width: 100%;
  }
}
.page-content .list section .activity,
.page-content .list section .definition {
  padding: 10px;
}
.page-content .list section .activity a,
.page-content .list section .definition a {
  color: #ffffff;
  padding: 5px 10px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  vertical-align: top;
  float: right;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page-content .list section .step-select {
    display: none;
  }
}
.page-content .list section .step-select span {
  width: 150px;
  display: inline-block;
  text-align: right;
  padding-right: 20px;
  box-sizing: border-box;
}
.page-content .list section .step-select ul {
  list-style-type: none;
  display: inline-block;
  padding: 20px 10px 10px 10px;
  vertical-align: middle;
}
.page-content .list section .step-select ul li {
  float: left;
  display: inline-block;
  margin-right: 10px;
}
.page-content .list section .step-select ul li button {
  width: 35px;
  height: 35px;
  font-size: 16px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  background: #efefef;
  color: #0a2e64;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  cursor: pointer;
}
.page-content .list section .step-select ul li.active button {
  color: #ffffff;
}
.page-content .list section .description {
  width: 60%;
  max-width: 400px;
  display: inline-block;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .page-content .list section .description {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}
.page-content .list section ul {
  margin: 0;
  padding: 20px 20px 10px 50px;
}
.page-content .list section .example-container {
  width: 100%;
  margin-top: 10px;
}
.page-content .list section .example-container .toggle-example {
  width: 120px;
  height: 30px;
  color: #ffffff;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  background: #0089e6;
  border: 2px solid #ffa800;
  border-top: transparent;
  border-left: transparent;
  cursor: pointer;
}
.page-content .list section .example-container .toggle-example.active {
  background: #ffa800;
  border: 2px solid #0089e6;
  border-bottom: transparent;
  border-right: transparent;
}
.page-content .list section .example-container .toggle-example.active:hover {
  background: #0089e6;
  border-color: #ffa800;
}
.page-content .list section .example-container .toggle-example:hover {
  background: #ffa800;
  border-color: #0089e6;
}
.page-content .list section .example-container .example-list {
  list-style-type: none;
  margin: 0 ;
  padding: 15px 0 0;
  width: 100%;
}
.page-content .list section .example-container .example-list li {
  border-bottom: 1px solid #ffa800;
  display: table;
  width: 100%;
  table-layout: fixed;
}
.page-content .list section .example-container .example-list li:last-child {
  border-bottom: none;
}
.page-content .list section .example-container .example-list li .code,
.page-content .list section .example-container .example-list li .output {
  width: 50%;
  padding: 5px 10px;
  display: table-cell;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.page-content .list section .example-container .example-list li .code.title,
.page-content .list section .example-container .example-list li .output.title {
  font-family: 'Polaris', 'Calibri', 'Arial', sans-serif;
  font-size: 14px;
  font-variant: small-caps;
  color: #ffffff;
  background-color: #0089e6;
}
.page-content .list section .example-container .example-list li .code {
  background-color: #efefef;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
}
.page-content .list section .example-container .example-list li .output:not(.title) {
  font-style: italic;
  color: #0089e6;
}
.page-content .list section:nth-child(n) {
  border: 2px solid #0089e6;
}
.page-content .list section:nth-child(n) h2 {
  background-color: #0089e6;
  border-bottom: 1px solid #ffa800;
}
.page-content .list section:nth-child(n) h3 {
  color: #0089e6;
}
.page-content .list section:nth-child(n) h3 span {
  color: #ffa800;
}
.page-content .list section:nth-child(n) .step-select span {
  color: #0089e6;
}
.page-content .list section:nth-child(n) .step-select ul li.active button {
  background: #ffa800;
}
.page-content .list section:nth-child(n) .activity a,
.page-content .list section:nth-child(n) .defintion a {
  background-color: #0089e6;
  border-right: 2px solid #ffa800;
  border-bottom: 2px solid #ffa800;
}
.page-content .list section:nth-child(n) .activity a:hover,
.page-content .list section:nth-child(n) .defintion a:hover {
  border: none;
  border-top: 1px solid #ffa800;
  border-left: 1px solid #ffa800;
}
.page-content .list section:nth-child(n) hr {
  border-top: 1px solid #0089e6;
}
.page-content .list section:nth-child(2n) {
  border: 2px solid #00d058;
}
.page-content .list section:nth-child(2n) h2 {
  background-color: #00d058;
  border-bottom: 1px solid #0089e6;
}
.page-content .list section:nth-child(2n) h3 {
  color: #00d058;
}
.page-content .list section:nth-child(2n) h3 span {
  color: #0089e6;
}
.page-content .list section:nth-child(2n) .step-select span {
  color: #00d058;
}
.page-content .list section:nth-child(2n) .step-select ul li.active button {
  background: #0089e6;
}
.page-content .list section:nth-child(2n) .activity a {
  background-color: #00d058;
  border-right: 2px solid #0089e6;
  border-bottom: 2px solid #0089e6;
}
.page-content .list section:nth-child(2n) .activity a:hover {
  border: none;
  border-top: 1px solid #0089e6;
  border-left: 1px solid #0089e6;
}
.page-content .list section:nth-child(2n) .example-container .toggle-example {
  border-color: #0089e6;
  background: #00d058;
}
.page-content .list section:nth-child(2n) .example-container .toggle-example.active {
  background: #0089e6;
  border-color: #00d058;
}
.page-content .list section:nth-child(2n) .example-container .toggle-example.active:hover {
  background: #00d058;
  border-color: #0089e6;
}
.page-content .list section:nth-child(2n) .example-container .toggle-example:hover {
  background: #0089e6;
  border-color: #00d058;
}
.page-content .list section:nth-child(2n) .example-container .example-list li {
  border-color: #0089e6;
}
.page-content .list section:nth-child(2n) .example-container .example-list li .code.title,
.page-content .list section:nth-child(2n) .example-container .example-list li .output.title {
  background-color: #00d058;
}
.page-content .list section:nth-child(2n) hr {
  border-top: 1px solid #00d058;
}
.page-content .list section:nth-child(3n) {
  border: 2px solid #e60613;
}
.page-content .list section:nth-child(3n) h2 {
  background-color: #e60613;
  border-bottom: 1px solid #00d058;
}
.page-content .list section:nth-child(3n) h3 {
  color: #e60613;
}
.page-content .list section:nth-child(3n) h3 span {
  color: #00d058;
}
.page-content .list section:nth-child(3n) .step-select span {
  color: #e60613;
}
.page-content .list section:nth-child(3n) .step-select ul li.active button {
  background: #00d058;
}
.page-content .list section:nth-child(3n) .activity a {
  background-color: #e60613;
  border-right: 2px solid #00d058;
  border-bottom: 2px solid #00d058;
}
.page-content .list section:nth-child(3n) .activity a:hover {
  border: none;
  border-top: 1px solid #00d058;
  border-left: 1px solid #00d058;
}
.page-content .list section:nth-child(3n) .example-container .toggle-example {
  border-color: #00d058;
  background: #e60613;
}
.page-content .list section:nth-child(3n) .example-container .toggle-example.active {
  background: #00d058;
  border-color: #e60613;
}
.page-content .list section:nth-child(3n) .example-container .toggle-example.active:hover {
  background: #e60613;
  border-color: #00d058;
}
.page-content .list section:nth-child(3n) .example-container .toggle-example:hover {
  background: #00d058;
  border-color: #e60613;
}
.page-content .list section:nth-child(3n) .example-container .example-list li {
  border-color: #00d058;
}
.page-content .list section:nth-child(3n) .example-container .example-list li .code.title,
.page-content .list section:nth-child(3n) .example-container .example-list li .output.title {
  background-color: #e60613;
}
.page-content .list section:nth-child(3n) hr {
  border-top: 1px solid #e60613;
}
.page-content .list section:nth-child(4n) {
  border: 2px solid #ffa800;
}
.page-content .list section:nth-child(4n) h2 {
  background-color: #ffa800;
  border-bottom: 1px solid #e60613;
}
.page-content .list section:nth-child(4n) h3 {
  color: #ffa800;
}
.page-content .list section:nth-child(4n) h3 span {
  color: #e60613;
}
.page-content .list section:nth-child(4n) .step-select span {
  color: #ffa800;
}
.page-content .list section:nth-child(4n) .step-select ul li.active button {
  background: #e60613;
}
.page-content .list section:nth-child(4n) .activity a {
  background-color: #ffa800;
  border-right: 2px solid #e60613;
  border-bottom: 2px solid #e60613;
}
.page-content .list section:nth-child(4n) .activity a:hover {
  border: none;
  border-top: 1px solid #e60613;
  border-left: 1px solid #e60613;
}
.page-content .list section:nth-child(4n) .example-container .toggle-example {
  border-color: #e60613;
  background: #ffa800;
}
.page-content .list section:nth-child(4n) .example-container .toggle-example.active {
  background: #e60613;
  border-color: #ffa800;
}
.page-content .list section:nth-child(4n) .example-container .toggle-example.active:hover {
  background: #ffa800;
  border-color: #e60613;
}
.page-content .list section:nth-child(4n) .example-container .toggle-example:hover {
  background: #e60613;
  border-color: #ffa800;
}
.page-content .list section:nth-child(4n) .example-container .example-list li {
  border-color: #e60613;
}
.page-content .list section:nth-child(4n) .example-container .example-list li .code.title,
.page-content .list section:nth-child(4n) .example-container .example-list li .output.title {
  background-color: #ffa800;
}
.page-content .list section:nth-child(4n) hr {
  border-top: 1px solid #ffa800;
}
.page-content .list section:nth-child(5n) {
  border: 2px solid #0089e6;
}
.page-content .list section:nth-child(5n) h2 {
  background-color: #0089e6;
  border-bottom: 1px solid #e60613;
}
.page-content .list section:nth-child(5n) h3 {
  color: #0089e6;
}
.page-content .list section:nth-child(5n) h3 span {
  color: #e60613;
}
.page-content .list section:nth-child(5n) .step-select span {
  color: #0089e6;
}
.page-content .list section:nth-child(5n) .step-select ul li.active button {
  background: #e60613;
}
.page-content .list section:nth-child(5n) .activity a {
  background-color: #0089e6;
  border-right: 2px solid #e60613;
  border-bottom: 2px solid #e60613;
}
.page-content .list section:nth-child(5n) .activity a:hover {
  border: none;
  border-top: 1px solid #e60613;
  border-left: 1px solid #e60613;
}
.page-content .list section:nth-child(5n) .example-container .toggle-example {
  border-color: #e60613;
  background: #0089e6;
}
.page-content .list section:nth-child(5n) .example-container .toggle-example.active {
  background: #e60613;
  border-color: #0089e6;
}
.page-content .list section:nth-child(5n) .example-container .toggle-example.active:hover {
  background: #0089e6;
  border-color: #e60613;
}
.page-content .list section:nth-child(5n) .example-container .toggle-example:hover {
  background: #e60613;
  border-color: #0089e6;
}
.page-content .list section:nth-child(5n) .example-container .example-list li {
  border-color: #e60613;
}
.page-content .list section:nth-child(5n) .example-container .example-list li .code.title,
.page-content .list section:nth-child(5n) .example-container .example-list li .output.title {
  background-color: #0089e6;
}
.page-content .list section:nth-child(5n) hr {
  border-top: 1px solid #0089e6;
}
.page-content .brand {
  font-family: 'Polaris', 'Calibri', 'Arial', sans-serif;
}
.page-content .bolt {
  font-size: 18px;
}
.page-content a {
  color: #ffa800;
  text-decoration: underline;
}
.page-content a:hover {
  color: #e60613;
}
.page-content h2 {
  font-family: 'Polaris', 'Calibri', 'Arial', sans-serif;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 10px;
}
.page-content .intro {
  font-family: 'Polaris', 'Calibri', 'Arial', sans-serif;
  color: #0089e6;
  font-style: italic;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page-content .intro {
    font-size: 12px;
  }
}
.page-content .body {
  padding: 20px 20px 10px 20px;
}
@media screen and (min-width: 768px) {
  .about section:last-child .body:nth-child(n+3) {
    max-width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .about section:last-child .body:nth-child(n+3) {
    max-width: 450px;
  }
}
.about .video {
  padding: 20px 20px 10px 20px;
}
.about .video h3 {
  width: 100%!important;
  border-bottom: 1px solid #0089e6;
  margin-bottom: 10px;
}
.about .video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.about .video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .policy section:last-child .body:nth-child(n+5) {
    max-width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .policy section:last-child .body:nth-child(n+5) {
    max-width: 450px;
  }
}
.computer,
.lock {
  position: absolute;
  bottom: 40px;
  right: -10px;
}
@media screen and (max-width: 767px) {
  .computer,
  .lock {
    position: relative;
    width: 80%;
    max-width: 349px;
    margin: 30px auto 0 auto;
  }
  .computer img,
  .lock img {
    width: 100%;
    height: auto;
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .computer,
  .lock {
    width: auto;
    max-width: none;
    right: -70px;
  }
  .computer img,
  .lock img {
    max-width: none;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .computer,
  .lock {
    right: -10px;
  }
}
.img-playground,
.books,
.stamp {
  position: relative;
  width: 80%;
  max-width: 349px;
  margin: 30px auto 80px auto;
}
.img-playground img,
.books img,
.stamp img {
  width: 100%;
  height: auto;
  display: inline-block;
}
a.download {
  color: #ffffff;
  padding: 5px 10px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  vertical-align: top;
  float: right;
  text-decoration: none;
  background-color: #0089e6;
  border-right: 2px solid #ffa800;
  border-bottom: 2px solid #ffa800;
}
a.download:hover {
  border: none;
  border-top: 1px solid #ffa800;
  border-left: 1px solid #ffa800;
  color: #ffffff;
}
/*Styling specific to the main coding page*/
@media screen and (min-width: 768px) {
  body.code {
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  body.code {
    height: 100%;
  }
}
body.code .main {
  width: 100%;
  max-width: none;
  margin: 0;
  height: -webkit-calc(100% - 96px);
  height: -moz-calc(100% - 96px);
  height: calc(100% - 96px);
  padding-top: 62px;
  position: relative;
}
body.code .main .panel {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  body.code .main .panel {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  body.code .main .panel {
    height: 100%;
  }
  body.code .main .panel.right {
    float: right;
    width: 582px;
    padding: 40px 40px 40px 0;
  }
  body.code .main .panel.left {
    float: left;
    width: -webkit-calc(100% - 582px);
    width: -moz-calc(100% - 582px);
    width: calc(100% - 582px);
  }
}
body.code .main .codeArea {
  width: 100%;
  min-width: 300px;
  height: 100%;
  float: left;
  position: relative;
  padding: 40px 30px 40px 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body.code .main .codeArea #source_update {
  display: none;
}
body.code .main .codeArea .codeWindow {
  border: 2px solid #0089e6;
  height: 100%;
  overflow: hidden;
  position: relative;
}
body.code .main .codeArea .codeWindow h2 {
  background-color: #0089e6;
  font-size: 18px;
  color: #ffffff;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  padding: 5px;
  border-bottom: 2px solid #e60613;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body.code .main .codeArea .codeWindow #source {
  width: 100%;
  height: -webkit-calc(100% - 40px);
  height: -moz-calc(100% - 40px);
  height: calc(100% - 40px);
  resize: none;
  border: 0;
  padding: 10px 5px;
  color: #0a2e64;
  font-size: 13px;
  line-height: 1.5;
  font-family: "Calibri", "Arial", sans-serif;
}
body.code .main .codeArea .codeWindow #code_loading {
  position: absolute;
  top: 39px;
  width: 100%;
  height: -webkit-calc(100% - 39px);
  height: -moz-calc(100% - 39px);
  height: calc(100% - 39px);
  background-color: rgba(255, 255, 255, 0.5);
  display: none;
}
body.code .main .codeArea .codeWindow #code_loading img {
  display: block;
  margin: 50px auto;
  width: 246px;
  height: 218px;
}
body.code .main .codeArea .codeWindow #source_ghost {
  position: absolute;
  left: 0;
  top: 39px;
  background-color: #ffffff;
  font-size: 13px;
  width: 100%;
  display: none;
  height: -webkit-calc(100% - 39px);
  height: -moz-calc(100% - 39px);
  height: calc(100% - 39px);
  overflow: scroll;
  padding-top: 10px;
  pointer-events: none;
}
body.code .main .codeArea .codeWindow #source_ghost p {
  padding: 0 5px;
  white-space: pre-wrap;
}
body.code .main .codeArea .codeWindow #source_ghost p.current {
  background-color: rgba(0, 137, 230, 0.7);
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  body.code .main .codeArea {
    height: 600px;
  }
}
@media screen and (min-width: 992px) {
  body.code .main .codeArea {
    height: 100%;
  }
}
body.code .main .outputArea {
  display: block;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  /* No support for these yet, use at own risk */
  -o-user-select: none;
  user-select: none;
  width: 100%;
  position: relative;
  cursor: default;
}
@media screen and (min-width: 768px) {
  body.code .main .outputArea {
    display: block;
    width: 542px;
    margin: 20px auto 10px;
  }
}
@media screen and (min-width: 992px) {
  body.code .main .outputArea {
    display: block;
    width: 100%;
    margin: 0;
  }
}
body.code .main .outputArea div.grid {
  background-image: url("../img/grid.png");
  background-repeat: no-repeat;
  width: 540px;
  height: 334px;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  body.code .main .outputArea div.grid {
    background-image: url("../img/grid@2x.png");
    background-size: 540px 334px;
    background-repeat: no-repeat;
  }
}
body.code .main .outputArea #canvas-alert {
  width: 540px;
  height: 334px;
  position: absolute;
  top: 1px;
  background-color: rgba(255, 255, 255, 0.9);
  left: 1px;
  display: none;
}
body.code .main .outputArea #canvas-alert h2 {
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 10px;
  text-transform: capitalize;
}
body.code .main .outputArea #canvas-alert .msg {
  width: 250px;
  float: right;
  padding: 40px 10px 10px 10px;
  font-size: 14px;
  white-space: pre-wrap;
}
body.code .main .outputArea #canvas-alert.warning {
  background-image: url('../img/alerts/warning.png');
  background-repeat: no-repeat;
  background-position: 20px 80px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  body.code .main .outputArea #canvas-alert.warning {
    background-image: url("../img/alerts/warning@2x.png");
    background-size: 246px 218px;
    background-repeat: no-repeat;
  }
}
body.code .main .outputArea #canvas-alert.warning h2 {
  background-color: #ffa800;
  border-bottom: 2px solid #e60613;
}
body.code .main .outputArea #canvas-alert.confirm {
  background-image: url('../img/alerts/confirm.png');
  background-repeat: no-repeat;
  background-position: 0 80px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  body.code .main .outputArea #canvas-alert.confirm {
    background-image: url("../img/alerts/confirm@2x.png");
    background-size: 246px 218px;
    background-repeat: no-repeat;
  }
}
body.code .main .outputArea #canvas-alert.confirm h2 {
  background-color: #0089e6;
  border-bottom: 2px solid #00d058;
}
body.code .main .outputArea #canvas-alert.error {
  background-image: url('../img/alerts/error.png');
  background-repeat: no-repeat;
  background-position: 20px 80px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  body.code .main .outputArea #canvas-alert.error {
    background-image: url("../img/alerts/error@2x.png");
    background-size: 246px 218px;
    background-repeat: no-repeat;
  }
}
body.code .main .outputArea #canvas-alert.error h2 {
  background-color: #e60613;
  border-bottom: 2px solid #ffa800;
}
body.code .main .outputArea #canvas-alert a.close,
body.code .main .outputArea #canvas-alert a.confirm {
  color: #ffffff;
  background-color: #00d058;
  padding: 5px 10px;
  font-size: 14px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  border: 2px solid #0089e6;
  border-top: none;
  border-left: none;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
body.code .main .outputArea #canvas-alert a.close:hover,
body.code .main .outputArea #canvas-alert a.confirm:hover {
  border: 1px solid #0089e6;
  border-bottom: none;
  border-right: none;
}
body.code .main .outputArea #canvas-alert.confirm a.close {
  background-color: #e60613;
  border: 2px solid #ffa800;
  border-top: none;
  border-left: none;
  right: 180px;
}
body.code .main .outputArea #canvas-alert.confirm a.close:hover {
  border: 1px solid #ffa800;
  border-bottom: none;
  border-rigth: none;
}
body.code .main .outputArea #screen {
  background-color: #efefef;
  border: 1px solid #00d058;
  border-bottom: 0;
  float: left;
  display: block;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  /* No support for these yet, use at own risk */
  -o-user-select: none;
  user-select: none;
  position: relative;
}
body.code .main .outputArea .controls {
  width: 100%;
  height: 40px;
  background-color: #00d058;
  border-top: 2px solid #0089e6;
  float: left;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body.code .main .outputArea .controls .options {
  display: inline-block;
  float: right;
}
body.code .main .outputArea .controls .options button {
  margin-right: 0;
  margin-left: 10px;
}
body.code .main .outputArea .controls button {
  background-color: #ffa800;
  border: 2px solid #0089e6;
  border-bottom: none;
  border-left: none;
  color: white;
  cursor: pointer;
  width: 28px;
  height: 28px;
  text-indent: -99999px;
  margin-right: 10px;
  float: left;
}
body.code .main .outputArea .controls button[disabled=disabled],
body.code .main .outputArea .controls button[disabled=disabled]:hover,
body.code .main .outputArea .controls button[disabled=disabled].active {
  background-color: #efefef;
  border: 2px solid #ffffff;
  border-bottom: none;
  border-left: none;
  background-position: -28px 0;
}
body.code .main .outputArea .controls button:hover,
body.code .main .outputArea .controls button.active {
  background-color: #ffa800;
  border: 1px solid #0089e6;
  border-top: none;
  border-right: none;
  background-position: -28px 0;
}
body.code .main .outputArea .controls button#ui_play {
  background-image: url('../img/controls/play.png');
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  body.code .main .outputArea .controls button#ui_play {
    background-image: url("../img/controls/play@2x.png");
    background-size: 56px 26px;
    background-repeat: no-repeat;
  }
}
body.code .main .outputArea .controls button#ui_play.disabled {
  display: none;
}
body.code .main .outputArea .controls button#ui_pause {
  background-image: url('../img/controls/pause.png');
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  body.code .main .outputArea .controls button#ui_pause {
    background-image: url("../img/controls/pause@2x.png");
    background-size: 56px 26px;
    background-repeat: no-repeat;
  }
}
body.code .main .outputArea .controls button#ui_pause.disabled {
  display: none;
}
body.code .main .outputArea .controls button#ui_step {
  background-image: url('../img/controls/step.png');
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  body.code .main .outputArea .controls button#ui_step {
    background-image: url("../img/controls/step@2x.png");
    background-size: 56px 26px;
    background-repeat: no-repeat;
  }
}
body.code .main .outputArea .controls button#ui_restart {
  background-image: url('../img/controls/restart.png');
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  body.code .main .outputArea .controls button#ui_restart {
    background-image: url("../img/controls/restart@2x.png");
    background-size: 56px 26px;
    background-repeat: no-repeat;
  }
}
body.code .main .outputArea .controls button#ui_grid {
  background-image: url('../img/controls/grid.png');
  background-repeat: no-repeat;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  body.code .main .outputArea .controls button#ui_grid {
    background-image: url("../img/controls/grid@2x.png");
    background-size: 56px 26px;
    background-repeat: no-repeat;
  }
}
body.code .main .tutoArea {
  width: 100%;
  height: 50px;
  border: 2px solid #e60613;
  position: relative;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  overflow: hidden;
  background-color: #ffffff;
}
body.code .main .tutoArea.hide {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  body.code .main .tutoArea {
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: calc(100% - 80px);
    float: none;
    display: block;
    margin: 20px auto 0 auto;
    height: 150px;
  }
}
@media screen and (min-width: 992px) {
  body.code .main .tutoArea {
    float: left;
    display: inline-block;
    width: 100%;
    margin: 20px 0 0 0;
    height: -webkit-calc(100% - 392px);
    height: -moz-calc(100% - 392px);
    height: calc(100% - 392px);
  }
}
body.code .main .tutoArea.nc {
  position: absolute;
  bottom: 35px;
  width: 542px;
}
body.code .main .tutoArea.nc .toggleCollapse {
  position: absolute;
  left: 20px;
  bottom: 10px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  font-size: 12px;
  color: #ffffff;
  padding: 5px 10px;
  vertical-align: top;
  text-decoration: none;
  background-color: #ffa800;
  border-right: 2px solid #0089e6;
  border-bottom: 2px solid #0089e6;
}
body.code .main .tutoArea.nc .toggleCollapse:hover {
  border: none;
  border-left: 1px solid #0089e6;
  border-top: 1px solid #0089e6;
}
body.code .main .tutoArea.nc.expanded .toggleCollapse {
  left: 118px;
}
body.code .main .tutoArea.nc.collapsed h2 {
  width: 100%;
  border-right: none;
  height: auto;
}
body.code .main .tutoArea.nc.collapsed .toggleCollapse {
  left: 20px;
}
body.code .main .tutoArea h2 {
  font-size: 16px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  color: #ffffff;
  background-color: #e60613;
  height: 100%;
  width: 20%;
  text-align: center;
  display: inline-block;
  padding: 10px;
  box-sizing: border-box;
  border-right: 2px solid #ffa800;
  position: relative;
  float: left;
}
body.code .main .tutoArea h2 .level {
  font-size: 14px;
  font-family: "Calibri", "Arial", sans-serif;
  font-style: italic;
}
body.code .main .tutoArea h2 a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  font-size: 14px;
  position: absolute;
  bottom: 10px;
}
body.code .main .tutoArea h2 a span {
  text-decoration: underline;
  font-size: 12px;
}
body.code .main .tutoArea h2 a:hover {
  color: #ffa800;
}
body.code .main .tutoArea .steps {
  height: 100%;
}
body.code .main .tutoArea .steps .step {
  width: 78%;
  display: inline-block;
  overflow: hidden;
  padding: 10px 10px 5px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  height: 100%;
  font-size: 14px;
  font-family: "Calibri", "Arial", sans-serif;
}
body.code .main .tutoArea .steps .step h3 {
  padding-bottom: 5px;
}
body.code .main .tutoArea .steps .step .help {
  color: #ffa800;
  text-decoration: underline;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
}
body.code .main .tutoArea .steps .step .help:hover {
  color: #e60613;
}
body.code .main .tutoArea .steps .step .hint {
  color: #ffa800;
  text-decoration: underline;
  display: inline-block;
  float: right;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
}
body.code .main .tutoArea .steps .step .hint:hover {
  color: #e60613;
}
body.code .main .tutoArea .steps nav {
  padding: 0 10px;
  position: absolute;
  right: 10px;
  top: 10px;
}
body.code .main .tutoArea .steps nav a {
  font-size: 12px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  text-decoration: none;
  color: #e60613;
}
body.code .main .tutoArea .steps nav a span {
  text-decoration: underline;
}
body.code .main .tutoArea .steps nav a:hover {
  color: #0089e6;
}
body.code .main .tutoArea .steps nav a.previous {
  margin-right: 8px;
}
body.code .main .tutoArea .steps nav a.disabled {
  color: #efefef;
  cursor: default;
}
body.code .main .tutoArea .steps nav a.disabled span {
  text-decoration: none;
}
body.code .main .overlay {
  width: 100%;
  height: -webkit-calc(100% - 40px);
  height: -moz-calc(100% - 40px);
  height: calc(100% - 40px);
  background-color: rgba(10, 46, 100, 0.8);
  position: absolute;
  top: 64px;
  display: none;
}
body.code .main .overlay .container {
  width: 500px;
  height: auto;
  min-height: 300px;
  background-color: #ffffff;
  border: 2px solid #ffa800;
  margin: 50px auto;
  font-size: 14px;
  position: relative;
}
body.code .main .overlay .container h2 {
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  background-color: #ffa800;
  border-bottom: 2px solid #0089e6;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 10px;
}
body.code .main .overlay .container .hint {
  padding: 15px 25px 15px 0px;
  width: 320px;
  float: right;
  margin-top: 30px;
  text-align: justify;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body.code .main .overlay .container .hint .pagination {
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  color: #0089e6;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
body.code .main .overlay .container .hint .pagination a {
  font-size: 26px;
  vertical-align: middle;
  cursor: pointer;
}
body.code .main .overlay .container .hint .pagination a:hover {
  color: #ffa800;
}
body.code .main .overlay .container .hint .pagination a.disabled {
  color: #efefef;
}
body.code .main .overlay .container .hint .pagination a.prev {
  margin-right: 20px;
}
body.code .main .overlay .container .hint .pagination a.next {
  margin-left: 20px;
}
body.code .main .overlay .container .answer {
  color: #ffffff;
  background-color: #0089e6;
  padding: 5px 10px;
  font-size: 14px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  border: 2px solid #e60613;
  border-top: none;
  border-left: none;
  position: absolute;
  bottom: 20px;
  left: 180px;
}
body.code .main .overlay .container .answer:hover {
  border: 1px solid #e60613;
  border-bottom: none;
  border-right: none;
}
body.code .main .overlay .container .close {
  color: #ffffff;
  background-color: #00d058;
  padding: 5px 10px;
  font-size: 14px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  border: 2px solid #0089e6;
  border-top: none;
  border-left: none;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
body.code .main .overlay .container .close:hover {
  border: 1px solid #0089e6;
  border-bottom: none;
  border-right: none;
}
body.code .main .overlay .container .bulb {
  width: 175px;
  height: 289px;
  position: absolute;
  left: -20px;
  bottom: 5px;
}
body.code.oldbrowser .main {
  height: 85%;
}
@media screen and (min-width: 992px) {
  body.code.oldbrowser .main .panel.right {
    width: 59%;
  }
  body.code.oldbrowser .main .panel.left {
    width: 41%;
  }
}
body.code.oldbrowser .main .codeArea .codeWindow #source,
body.code.oldbrowser .main .codeArea .codeWindow #code_loading,
body.code.oldbrowser .main .codeArea .codeWindow #source_ghost {
  height: 100%;
}
body.code.oldbrowser .main .codeArea .codeWindow #source {
  padding-bottom: 40px;
}
body.code.oldbrowser .main .outputArea,
body.code.oldbrowser .main .tutoArea {
  width: 542px;
  float: right;
}
@media screen and (min-width: 992px) {
  body.code.oldbrowser .main .tutoArea {
    height: 300px;
    float: right;
  }
}
body.code.oldbrowser .main .overlay {
  height: 100%;
}
.validation {
  font-size: 12px;
  width: 100%;
  max-width: 400px;
  position: relative;
  float: left;
  padding-bottom: 5px;
}
.validation.ok {
  font-size: 14px;
}
.error {
  color: #e60613;
}
.ok {
  color: #00d058;
}
form {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form.error input {
  border: 1px solid #e60613;
}
@media screen and (max-width: 767px) {
  form .loader {
    float: none;
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  form .loader {
    display: inline-block;
    float: right;
    margin-right: 30px;
  }
}
@media screen and (min-width: 992px) {
  form .loader {
    margin-right: 40px;
  }
}
form textarea {
  width: 100%;
  height: 150px;
  resize: none;
  background-color: #efefef;
  border: 1px solid #ffa800;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  color: #536c92;
  padding: 5px;
  margin: 10px 0;
}
form textarea.active {
  color: #ffa800;
}
@media screen and (max-width: 767px) {
  form textarea {
    height: 100px;
  }
}
@media screen and (min-width: 768px) {
  form textarea {
    height: 150px;
  }
}
form input {
  background-color: #efefef;
  border: 1px solid #00d058;
  height: 40px;
  width: 250px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  color: #536c92;
  padding: 5px;
}
form input.active {
  color: #00d058;
}
@media screen and (max-width: 767px) {
  form input {
    width: 100%;
  }
}
form .subject {
  display: inline-block;
  background-color: #efefef;
  padding: 0!important;
}
form .subject .picked {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #0089e6;
  width: 250px;
  cursor: pointer;
  position: relative;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  font-size: 12px;
  color: #536c92;
}
form .subject .picked .text {
  display: inline-block;
  padding: 10px;
}
form .subject .picked .arrow {
  display: inline-block;
  float: right;
  padding: 10px;
}
form .subject .picked.active .arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
form .subject .picked:hover .arrow,
form .subject .picked.active .arrow {
  color: #ffffff;
  background-color: #0089e6;
}
form .subject .picked.selected {
  color: #0089e6;
}
form .subject .picked ul {
  display: none;
  list-style-type: none;
  padding: 0;
  position: absolute;
  z-index: 10;
  width: 100%;
  background-color: white;
  border: 1px solid #0089e6;
  border-top: 0;
  left: -1px;
  background-color: #efefef;
}
form .subject .picked ul li {
  padding: 10px;
  border-top: 1px solid #0089e6;
  color: #536c92;
}
form .subject .picked ul li:hover,
form .subject .picked ul li.active {
  color: #ffffff;
  background-color: #0089e6;
}
form #send {
  width: 120px;
  height: 42px;
  background-color: #0089e6;
  border: 2px solid #ffa800;
  border-top: none;
  border-left: none;
  color: #ffffff;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  font-size: 14px;
  font-variant: small-caps;
  cursor: pointer;
  float: right;
  margin-left: -3px;
}
form #send:hover {
  background-color: #ffa800;
  border: 1px solid #0089e6;
  border-bottom: none;
  border-right: none;
}
@media screen and (max-width: 767px) {
  form #send {
    float: none;
    margin: 10px auto 0 auto;
  }
}
@media screen and (min-width: 768px) {
  form #send {
    width: 88px;
  }
}
@media screen and (min-width: 992px) {
  form #send {
    width: 120px;
  }
}
.warning {
  display: none;
}
.isSmall.activities .activity a {
  display: none;
}
.isSmall.homepage,
.isSmall.code {
  height: 100%;
  min-height: 480px;
}
.isSmall.homepage .main,
.isSmall.code .main {
  display: none;
}
.isSmall.homepage .warning,
.isSmall.code .warning {
  display: inherit;
  position: relative;
}
@media screen and (max-width: 767px) {
  .isSmall.homepage .warning,
  .isSmall.code .warning {
    margin: 80px 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  .isSmall.homepage .warning,
  .isSmall.code .warning {
    margin-top: 100px;
  }
}
.isSmall.homepage .warning p,
.isSmall.code .warning p {
  border: 2px solid #0089e6;
  padding: 15px 15px 20px 15px;
  font-family: "Polaris", "Calibri", "Arial", sans-serif;
  width: 80%;
  margin: 0 auto;
  font-size: 14px;
}
.isSmall.homepage .warning p .bolt,
.isSmall.code .warning p .bolt {
  font-size: 18px;
}
.isSmall.homepage .warning p a,
.isSmall.code .warning p a {
  color: #ffa800;
  display: block;
  text-align: center;
  margin: 10px auto 0 auto;
  font-size: 12px;
  text-decoration: underline;
}
.isSmall.homepage .warning p a:hover,
.isSmall.code .warning p a:hover {
  color: #e60613;
}
.isSmall.homepage .warning .bolt-holding,
.isSmall.code .warning .bolt-holding {
  background-image: url("../img/bolt-fallback.png");
  background-repeat: no-repeat;
  width: 184px;
  height: 240px;
  margin: -15px auto 0 auto;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  .isSmall.homepage .warning .bolt-holding,
  .isSmall.code .warning .bolt-holding {
    background-image: url("../img/bolt-fallback@2x.png");
    background-size: 184px 240px;
    background-repeat: no-repeat;
  }
}
