@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&subset=latin-ext");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote,
a, abbr, acronym, address, big, cite,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline; }

:root {
  --nav-height: 5.5rem;
  --box-shadow-alpha: .16;
  --title-color: #214778; }

html {
  font-size: 62.5%;
  height: 100%; }
  html .code-container {
    font-size: 100% !important; }
  html * {
    box-sizing: border-box; }

body {
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-size: 1.4rem;
  margin: 0;
  display: grid;
  align-items: flex-start;
  justify-content: stretch;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  padding-top: var(--nav-height);
  background: url(/images/Logos/body_bg.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover; }
  body.scroll-disabled {
    overflow: hidden; }
  body.step-body {
    background: #fff;
    grid-template-rows: 1fr; }
    body.step-body header {
      position: fixed;
      left: 0;
      right: 0;
      background-color: #c8e0ff;
      top: var(--nav-height);
      text-align: center;
      padding: .8rem;
      z-index: 999; }
      @media only screen and (max-width: 980px) {
        body.step-body header {
          display: none; } }
    body.step-body main {
      padding: 4rem 0 8rem 0; }
      @media only screen and (max-width: 980px) {
        body.step-body main {
          position: relative;
          padding-bottom: 0; } }
    body.step-body footer {
      --box-shadow-alpha: .16;
      display: flex;
      align-items: center;
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      flex: none;
      height: 8rem;
      background-color: #f1f6fe;
      box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, var(--box-shadow-alpha)); }
      @media only screen and (max-width: 980px) {
        body.step-body footer {
          position: relative;
          height: auto;
          flex: 0 0 auto; } }

ol, ul {
  padding-left: 2rem; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

elements-of-type(html5-block) {
  display: block; }

.element-to-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.text-strong {
  font-weight: bold; }

.text-to-center {
  text-align: center !important; }

.text-to-left {
  text-align: left !important; }

.text-to-right {
  text-align: right !important; }

.text-justify {
  text-align: justify !important; }

.nav-item-center {
  white-space: nowrap; }
  @media only screen and (min-width: 769px) {
    .nav-item-center {
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); } }

.nav-item-right {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%); }
  @media only screen and (max-width: 768px) {
    .nav-item-right {
      position: relative;
      top: unset;
      right: unset;
      transform: translate(0, 0);
      margin-bottom: 2rem; } }

.nav-item-left {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translate(0, -50%); }
  @media only screen and (max-width: 768px) {
    .nav-item-left {
      position: relative;
      top: unset;
      right: unset;
      transform: translate(0, 0);
      margin-bottom: 2rem; } }

.clean-button {
  padding: 0;
  margin: 0;
  height: auto;
  display: inline-block !important;
  float: none !important; }

.validation-summary {
  padding: 0;
  margin: 0;
  background-color: #fdeeee;
  color: #d91313;
  padding: .5rem;
  box-sizing: border-box;
  padding-left: 2.5rem; }
  .validation-summary > li {
    margin-bottom: .5rem;
    color: #d91313; }
    .validation-summary > li:last-of-type {
      margin-bottom: 0; }

.position--relative {
  position: relative; }

.justify-content--start {
  justify-content: start; }

.button {
  --btn-background: #27be89;
  --btn-border-color: var(--btn-background);
  --btn-color: #fff;
  --btn-badding: 0.8rem 1.6rem;
  --btn-min-width: 16rem;
  --btn-max-width: 24rem;
  --btn-font-size: large;
  --box-shadow-alpha: .15;
  --icon-size: 1.6rm;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-width: var(--btn-min-width);
  max-width: var(--btn-max-width);
  padding: var(--btn-badding);
  background-color: var(--btn-background);
  border-radius: .5rem;
  font-size: var(--btn-font-size);
  font-weight: 500;
  color: var(--btn-color);
  text-decoration: none;
  transition: box-shadow .25s,background-color .25s,border-color .25s;
  cursor: pointer;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, var(--box-shadow-alpha));
  border: 0.2rem solid var(--btn-border-color); }
  .button span.success {
    display: none; }
  .button:hover, .button:focus {
    text-decoration: none;
    background-color: #24b280;
    transition: all 0.25s ease-in-out;
    outline: none; }
  .button[disabled="disabled"] {
    background-color: #aeaeae;
    border-color: #aeaeae;
    cursor: not-allowed; }
  .button.with-borders {
    position: relative;
    z-index: 9;
    padding: .8rem 3rem;
    overflow: hidden;
    border: 0.1rem solid #424242; }
    .button.with-borders:before, .button.with-borders:after {
      position: absolute;
      display: block;
      content: '';
      z-index: 10;
      height: 5rem;
      background-color: #424242;
      top: 50%;
      width: 5rem; }
    .button.with-borders:before {
      left: 0;
      transform: translate(-90%, -50%) rotate(45deg); }
    .button.with-borders:after {
      right: 0;
      transform: translate(90%, -50%) rotate(45deg); }
  .button.with-tooltip {
    position: relative; }
    .button.with-tooltip:after {
      position: absolute;
      bottom: 4.5rem;
      left: 50%;
      transform: translateX(-50%) scale(0, 0);
      display: block;
      width: auto;
      padding: .5rem;
      text-align: center;
      color: #fff;
      font-size: 1.4rem;
      background-color: #424242;
      content: attr(Tooltip);
      transition: all 0.25s ease-in-out;
      min-width: 10rem;
      z-index: 10; }
    .button.with-tooltip:hover:after {
      transform: translateX(-50%) scale(1, 1); }
  .button.with-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row; }
    .button.with-icon > img {
      display: block;
      width: 2rem;
      height: 2rem;
      margin-left: .5rem; }
    .button.with-icon span {
      color: #fff; }
    .button.with-icon--left > img {
      margin-left: 0;
      margin-right: .5rem; }
  .button.with-loading {
    position: relative;
    min-height: 4rem; }
    .button.with-loading span, .button.with-loading img {
      display: none; }
    .button.with-loading:before, .button.with-loading:after {
      position: absolute;
      top: 50%;
      left: 50%;
      border: 2px solid rgba(0, 0, 0, 0);
      border-top-color: #fff;
      border-left-color: #fff;
      width: 1.6rem;
      height: 1.6rem;
      border-radius: 100%;
      display: block;
      content: '';
      transform: translate(-50%, -50%) rotate(0);
      animation: RotateAnim .7s infinite; }
    .button.with-loading:after {
      border-top-color: rgba(0, 0, 0, 0);
      border-left-color: rgba(0, 0, 0, 0);
      border-bottom-color: #fff;
      border-right-color: #fff;
      width: 2.2rem;
      height: 2.2rem;
      transform: translate(-50%, -50%) rotate(0);
      animation: RotateAnim 1s infinite; }
  .button.success {
    position: relative;
    min-height: 4rem; }
    .button.success span.default, .button.success img {
      display: none; }
    .button.success span.success {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-70%, -50%);
      font-size: 1.6rem;
      display: block; }
    .button.success:after {
      display: block;
      position: absolute;
      top: 50%;
      left: 70%;
      transform: translate(0, -75%) rotate(315deg);
      background-color: rgba(0, 0, 0, 0);
      height: 0;
      width: 0;
      content: "";
      border-left: 0.2px solid #fff;
      border-bottom: 0.2px solid #fff;
      animation: DrawCheck 1s forwards; }
  .button.failed {
    background-color: #f16161;
    border-color: #f16161; }
    .button.failed > img {
      display: none; }
    .button.failed > span {
      position: relative;
      padding-right: 2rem; }
      .button.failed > span:before, .button.failed > span:after {
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(25%, -50%) rotate(45deg);
        width: 2rem;
        height: .2rem;
        background-color: #fff;
        content: ""; }
      .button.failed > span:after {
        transform: translate(25%, -50%) rotate(-45deg); }
  .button.secondary {
    background-color: #424242;
    color: #fff;
    border-color: #424242; }
    .button.secondary:hover {
      color: #fff;
      background-color: #5c5c5c;
      border-color: #5c5c5c; }

.buttons-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden; }
  @media only screen and (max-width: 980px) {
    .buttons-container {
      justify-content: center;
      flex: 0 0 100%;
      flex-wrap: wrap;
      max-width: 100%;
      width: 100%; } }
  .buttons-container > * {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .buttons-container .button {
    margin-left: 1rem; }
    @media only screen and (max-width: 768px) {
      .buttons-container .button {
        margin: 0 .5rem;
        margin-bottom: 1rem; } }
    @media only screen and (max-width: 580px) {
      .buttons-container .button {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%; }
        .buttons-container .button:last-child {
          margin-bottom: 0; } }

@keyframes RotateAnim {
  from {
    transform: translate(-50%, -50%) rotate(0); }
  to {
    transform: translate(-50%, -50%) rotate(360deg); } }

@keyframes DrawCheck {
  0% {
    height: 0;
    width: 0; }
  33% {
    height: 1rem;
    width: 0; }
  100% {
    height: 1rem;
    width: 2rem; } }

code {
  font-size: 1.7rem; }

.code__header-template {
  display: none; }

.code__header {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  background-color: #1e1e1e;
  display: flex;
  border-bottom: 1px solid #3f3f46;
  flex-direction: row;
  justify-content: flex-end; }

.code__copy-button {
  position: relative;
  width: 9rem;
  height: 4rem;
  display: block;
  background-color: #1e1e1e;
  border: none;
  transition: all 0.25s ease-in-out;
  border-left: 1px solid #3f3f46; }
  .code__copy-button:hover, .code__copy-button:focus {
    background-color: #3f3f46;
    cursor: pointer;
    outline: none; }
  .code__copy-button > span {
    font-size: 1.6rem;
    color: #d4d4d4;
    transition: all 0.25s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block; }

.code__bg {
  background-color: #1e1e1e;
  flex: 0 0 55%;
  width: 55%;
  overflow: hidden;
  max-width: 55%;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-between; }
  .code__bg > div:first-of-type {
    flex: 1 0 auto; }
  .code__bg > div:last-of-type {
    flex: 0 1 20rem;
    overflow: auto; }
  .code__bg > * {
    width: 100%;
    flex: 0 0 auto;
    max-width: 100%; }
  @media only screen and (max-width: 1200px) {
    .code__bg {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%; } }

.code__container {
  width: 100%;
  border: none;
  background-color: #1e1e1e;
  align-self: flex-start; }
  @media only screen and (max-width: 980px) {
    .code__container {
      margin: 1rem auto; } }

.code__top-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  background-color: #1e1e1e;
  border-bottom: 1px solid #3f3f46; }

.code__button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  width: auto;
  background-color: #1e1e1e;
  border: none;
  padding: 0 1rem;
  height: 4rem;
  transition: all 0.25s ease-in-out;
  border-left: 1px solid #3f3f46; }
  .code__button img {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    margin-left: .5rem; }
  .code__button:focus {
    outline: none; }
  .code__button span {
    color: #d4d4d4;
    font-size: 1.6rem; }
  .code__button:hover {
    background-color: #3f3f46;
    cursor: pointer; }
  .code__button:last-child {
    background-color: #27be89; }
    .code__button:last-child img {
      width: 2rem;
      height: 2rem; }
    .code__button:last-child span {
      color: #fff; }
    .code__button:last-child:hover {
      background-color: #24b280; }

.container {
  width: 70%;
  margin: 0 auto;
  box-sizing: border-box; }
  @media only screen and (max-width: 1440px) {
    .container {
      min-width: 100%;
      padding: 0 5rem; } }
  @media only screen and (max-width: 1200px) {
    .container {
      padding: 0 4rem; } }
  @media only screen and (max-width: 980px) {
    .container {
      padding: 0 1.6rem; } }
  .container-large {
    width: 85%;
    margin: 0 auto; }
    @media only screen and (max-width: 980px) {
      .container-large {
        min-width: 100%;
        padding: 0 1.6rem; } }
    .container-large.with-flex {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: center; }

.diagnostics-grid {
  width: 100%;
  background-color: #1e1e1e; }
  .diagnostics-grid thead th {
    text-align: left;
    padding: .5rem 0;
    padding-left: .5rem;
    border-style: solid;
    border-color: #3f3f46;
    border-width: 0.1rem 0 0.1rem 0.1rem; }
    .diagnostics-grid thead th:first-child {
      border-left: none; }
    .diagnostics-grid thead th span {
      color: #d4d4d4; }
  .diagnostics-grid tbody tr:hover {
    background-color: #3f3f46; }
  .diagnostics-grid tbody td {
    padding: .5rem 0;
    text-align: left; }
    .diagnostics-grid tbody td span {
      text-align: left;
      color: #d4d4d4;
      padding-left: .5rem; }
    .diagnostics-grid tbody td > img {
      display: block;
      width: 1.5rem;
      height: 1.5rem;
      margin: 0 auto; }

.filters-box {
  margin: 1.5rem 0 0 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }
  .filters-box > * {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    -moz-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    width: 40%;
    max-width: 40%;
    box-sizing: border-box; }
  @media only screen and (max-width: 580px) {
    .filters-box {
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      .filters-box > * {
        width: 100%; }
        .filters-box > *:not(:last-child) {
          margin-bottom: 1rem; } }
  @media only screen and (max-width: 768px) {
    .filters-box {
      margin: 1.5rem 0; } }
  .filters-box .filter {
    width: 50%;
    padding: 1rem;
    vertical-align: top;
    box-sizing: border-box;
    margin-bottom: 0; }
    @media only screen and (max-width: 768px) {
      .filters-box .filter {
        width: 100%;
        padding: 0 1rem; } }
    .filters-box .filter:first-child {
      padding-left: 0; }
    .filters-box .filter:last-child {
      padding-right: 0; }
    .filters-box .filter label {
      font-size: 90%;
      font-weight: 500;
      margin-bottom: 5px;
      display: block; }
    .filters-box .filter .dotvvm-bp-multi-select {
      width: 100%; }
    .filters-box .filter .dotvvm-bp-range-slider {
      margin-top: 13px; }

.form-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }
  .form-wrapper > * {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: 45%;
    -moz-flex-basis: 45%;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    width: 45%;
    max-width: 45%;
    box-sizing: border-box; }
  @media only screen and (max-width: 580px) {
    .form-wrapper {
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      .form-wrapper > * {
        width: 100%; }
        .form-wrapper > *:not(:last-child) {
          margin-bottom: 1rem; } }

.label-wrapper {
  margin-bottom: 1rem; }
  .label-wrapper > label {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.2rem; }
    .label-wrapper > label + * {
      width: 100%; }

.cs-loader .cs-loader-inner {
  color: #424242;
  text-align: center;
  height: 20px;
  position: relative; }
  .cs-loader .cs-loader-inner label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    opacity: 0;
    display: inline-block; }
    .cs-loader .cs-loader-inner label:nth-child(6) {
      will-change: auto;
      -webkit-animation: lol--10 3s 100ms infinite ease-in-out;
      animation: lol--10 3s 100ms infinite ease-in-out; }

@keyframes lol--10 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 60%; }
  66% {
    opacity: 1;
    left: 60%; }
  100% {
    opacity: 0;
    left: 100%; } }

@-webkit-keyframes lol--10 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 60%; }
  66% {
    opacity: 1;
    left: 60%; }
  100% {
    opacity: 0;
    left: 100%; } }
    .cs-loader .cs-loader-inner label:nth-child(5) {
      will-change: auto;
      -webkit-animation: lol--6 3s 200ms infinite ease-in-out;
      animation: lol--6 3s 200ms infinite ease-in-out; }

@keyframes lol--6 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 56%; }
  66% {
    opacity: 1;
    left: 56%; }
  100% {
    opacity: 0;
    left: 100%; } }

@-webkit-keyframes lol--6 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 56%; }
  66% {
    opacity: 1;
    left: 56%; }
  100% {
    opacity: 0;
    left: 100%; } }
    .cs-loader .cs-loader-inner label:nth-child(4) {
      will-change: auto;
      -webkit-animation: lol--2 3s 300ms infinite ease-in-out;
      animation: lol--2 3s 300ms infinite ease-in-out; }

@keyframes lol--2 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 52%; }
  66% {
    opacity: 1;
    left: 52%; }
  100% {
    opacity: 0;
    left: 100%; } }

@-webkit-keyframes lol--2 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 52%; }
  66% {
    opacity: 1;
    left: 52%; }
  100% {
    opacity: 0;
    left: 100%; } }
    .cs-loader .cs-loader-inner label:nth-child(3) {
      will-change: auto;
      -webkit-animation: lol-2 3s 400ms infinite ease-in-out;
      animation: lol-2 3s 400ms infinite ease-in-out; }

@keyframes lol-2 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 48%; }
  66% {
    opacity: 1;
    left: 48%; }
  100% {
    opacity: 0;
    left: 100%; } }

@-webkit-keyframes lol-2 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 48%; }
  66% {
    opacity: 1;
    left: 48%; }
  100% {
    opacity: 0;
    left: 100%; } }
    .cs-loader .cs-loader-inner label:nth-child(2) {
      will-change: auto;
      -webkit-animation: lol-6 3s 500ms infinite ease-in-out;
      animation: lol-6 3s 500ms infinite ease-in-out; }

@keyframes lol-6 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 44%; }
  66% {
    opacity: 1;
    left: 44%; }
  100% {
    opacity: 0;
    left: 100%; } }

@-webkit-keyframes lol-6 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 44%; }
  66% {
    opacity: 1;
    left: 44%; }
  100% {
    opacity: 0;
    left: 100%; } }
    .cs-loader .cs-loader-inner label:nth-child(1) {
      will-change: auto;
      -webkit-animation: lol-10 3s 600ms infinite ease-in-out;
      animation: lol-10 3s 600ms infinite ease-in-out; }

@keyframes lol-10 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 40%; }
  66% {
    opacity: 1;
    left: 40%; }
  100% {
    opacity: 0;
    left: 100%; } }

@-webkit-keyframes lol-10 {
  0% {
    opacity: 0;
    left: 0; }
  33% {
    opacity: 1;
    left: 40%; }
  66% {
    opacity: 1;
    left: 40%; }
  100% {
    opacity: 0;
    left: 100%; } }

section {
  padding: 5rem 0; }
  @media only screen and (max-width: 980px) {
    section {
      padding: 3rem 0; } }
  section .section-title {
    font-size: 2.2rem;
    padding: 0;
    padding-bottom: 5rem;
    text-align: center; }
    @media only screen and (max-width: 980px) {
      section .section-title {
        font-size: 1.8rem;
        padding-bottom: 3rem; } }
  section.no-padding {
    padding: 0; }
  section.no-padding-top {
    padding-top: 0; }

h1, .h1 {
  font-size: 4.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 300; }

h2 {
  font-size: 2.2rem;
  font-family: "Open Sans", sans-serif; }

h3 {
  font-size: 1.8rem;
  font-family: "Open Sans", sans-serif; }

body > div:not(&:last-of-type) p, body > div:not(&:last-of-type) span, body > div:not(&:last-of-type) a {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif; }

body > h1 {
  opacity: 0;
  position: absolute; }

.title-lesson {
  color: var(--title-color);
  display: block;
  font-size: large; }

.lessons-container {
  --col-count: 4;
  --item-max-width: 1fr;
  display: grid;
  grid-template-columns: repeat(var(--col-count), minmax(1.6rem, var(--item-max-width)));
  gap: 2.4rem; }
  @media only screen and (max-width: 1024px) {
    .lessons-container {
      --col-count: 2; } }
  @media only screen and (max-width: 768px) {
    .lessons-container {
      --item-max-width: 425px; } }
  @media only screen and (max-width: 426px) {
    .lessons-container {
      --item-max-width: 1fr;
      --col-count: 1; } }
  .lessons-container h1 {
    font-size: 40px;
    margin-bottom: 0;
    margin-top: 10px;
    font-weight: 100;
    color: #000; }

.lessons-item {
  --alpha: 0;
  text-align: center;
  color: #424242;
  background-color: #fff;
  padding: 4rem;
  box-sizing: border-box;
  padding-bottom: 10rem;
  position: relative;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  border-radius: .5rem;
  border: .1rem solid #ccc;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, var(--alpha)); }
  .lessons-item:hover {
    --alpha: .3; }
    .lessons-item:hover > img {
      transform: scale(1.05, 1.05); }
    .lessons-item:hover .button {
      background-color: #24b280; }
  @media only screen and (max-width: 1440px) {
    .lessons-item {
      padding: 2.4rem;
      padding-bottom: 11rem; } }
  .lessons-item.finished > img {
    width: 45%;
    min-width: 12rem; }
  .lessons-item > img {
    display: block;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 0.8rem;
    min-width: 15rem;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out; }
  .lessons-item h2 {
    margin-bottom: 0.8rem;
    color: var(--title-color); }
  .lessons-item p {
    display: block;
    min-height: 3.5rem;
    margin-bottom: 1.6rem;
    font-size: 1.6rem; }
    .lessons-item p a {
      font-size: 1.2rem;
      color: #27be89; }
      .lessons-item p a:hover {
        color: #1e946a; }
  .lessons-item .button {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%); }
    @media only screen and (max-width: 1200px) {
      .lessons-item .button {
        bottom: 5rem; } }

.modal {
  position: absolute;
  top: 40%;
  left: 50%;
  background-color: #fff;
  width: 50rem;
  height: auto;
  transform: translate(-50%, -50%);
  padding: 2.4rem;
  box-sizing: border-box;
  border-radius: 4px; }
  .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.8);
    animation: FadeAnim .3s forwards;
    z-index: 9999; }
  .modal__header {
    text-align: center; }
    .modal__header h2 {
      font-size: 4rem;
      margin-bottom: 1.6rem; }
    .modal__header p {
      font-size: 1.8rem; }
  .modal__content img {
    width: 8rem;
    display: block;
    height: auto;
    margin: 3rem auto; }
  .modal__close {
    position: absolute;
    width: 4rem;
    height: 4rem;
    transform: scale(1, 1);
    bottom: 100%;
    left: 100%;
    cursor: pointer;
    transition: all 0.25s ease-in-out; }
    .modal__close:hover {
      transform: scale(1.1, 1.1); }
    .modal__close:before, .modal__close:after {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
      width: 3.5rem;
      height: .2rem;
      background-color: #fff;
      content: ""; }
    .modal__close:after {
      transform: translate(-50%, -50%) rotate(-45deg); }
  .modal__buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 3rem; }

@keyframes FadeAnim {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.loading-anim > img {
  width: 8rem;
  display: block;
  float: left; }

.lang-switch {
  --pop-up-opacity: 0;
  --btn-color: Open Sans, sans-serif;
  --list-z-index: -100;
  position: relative; }
  @media only screen and (max-width: 980px) {
    .lang-switch {
      width: auto; } }
  .lang-switch:focus-within {
    --btn-color: #3773c2;
    --pop-up-opacity: 1;
    --list-z-index: 100; }
  .lang-switch__button {
    background: rgba(0, 0, 0, 0);
    width: 100%;
    display: block;
    color: #fff;
    height: 3.2rem;
    width: 3.2rem;
    line-height: 3.2rem;
    color: var(--btn-color);
    font-family: Segoe UI, Arial, Helvetica, sans-serif;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    border: none;
    font-size: 1.6rem;
    padding: 0;
    cursor: pointer;
    font-weight: 600; }
    .lang-switch__button:hover {
      --btn-color: #3773c2; }
  .lang-switch__list {
    position: absolute;
    display: block;
    list-style: none;
    left: 50%;
    top: calc(100% + 0.4rem);
    width: 8rem;
    background-color: #fff;
    border: 1px solid #aeaeae;
    transform: translateX(-50%);
    padding-left: 0;
    opacity: var(--pop-up-opacity);
    transition: opacity 0.25s;
    z-index: var(--list-z-index); }
    .lang-switch__list a {
      display: block;
      padding: 0.2rem 0.4rem;
      text-decoration: none;
      color: #424242;
      background-color: #fff;
      text-transform: uppercase; }
      .lang-switch__list a:hover {
        background-color: #d4d4d4; }

.pager {
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start; }
  @media only screen and (max-width: 980px) {
    .pager {
      justify-content: center;
      margin-bottom: 2rem;
      flex: 0 0 100%;
      max-width: 100%;
      width: 100%; } }
  .pager .button {
    width: 15rem;
    min-width: 5rem;
    padding: .8rem 0; }
  .pager > div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0 2rem; }
  .pager__item {
    position: relative;
    display: block;
    flex: 0 0 2rem;
    max-width: 2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background-color: #424242;
    text-decoration: none;
    transform: scale(1, 1);
    transition: all 0.25s ease-in-out;
    margin-right: 1rem;
    transition: all 0.25s ease-in-out; }
    .pager__item:after {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%) scale(0, 0);
      display: block;
      width: auto;
      padding: .5rem;
      text-align: center;
      color: #fff;
      font-size: 1.4rem;
      background-color: #424242;
      content: attr(Tooltip);
      transition: all 0.25s ease-in-out;
      min-width: 10rem;
      z-index: 10; }
    .pager__item:hover {
      background-color: #aeaeae; }
      .pager__item:hover:after {
        transform: translateX(-50%) scale(1, 1); }
    .pager__item:last-child {
      margin-right: 0; }
    .pager__item.active {
      background-color: #27be89;
      transform: scale(1.2, 1.2);
      transition: all 0.25s ease-in-out; }
      .pager__item.active:hover:after {
        transform: translateX(-50%) scale(0.9, 0.9);
        transition: all 0.25s ease-in-out; }

.embedded-view {
  flex: 0 0 calc(55% - 2px);
  width: calc(55% - 2px);
  max-width: calc(55% - 2px); }
  .embedded-view__header {
    background-color: #424242;
    color: #fff;
    display: block;
    font-size: 1.8rem;
    margin: 0;
    padding: .5rem 1rem;
    font-weight: 300;
    box-sizing: border-box; }
  .embedded-view__content {
    display: block;
    width: calc(100% - 2px);
    border: 1px solid #aeaeae;
    border-top: none;
    background-color: #fff;
    height: auto; }
  .embedded-view + div {
    margin-top: 2rem; }
  @media only screen and (max-width: 1200px) {
    .embedded-view {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%; } }

.dotvvm-sticker {
  font-size: 1em;
  font-family: Segoe UI,Arial,Helvetica,sans-serif;
  font-weight: 800; }
  .dotvvm-sticker > span:first-of-type {
    color: #424242; }
  .dotvvm-sticker > span:last-of-type {
    color: #3175b9; }
  .dotvvm-sticker > * {
    font-size: 1em; }

.nav__burger {
  --burger-height: 2.2rem;
  --line-offset-top: calc(calc(var(--burger-height) / 2) * -1);
  --line-offset-botton: calc(var(--burger-height) / 2);
  --line-scale: 1;
  --line-opacity: 1;
  --anim-type: ease-out;
  position: relative;
  display: none;
  width: 3.2rem;
  height: var(--burger-height);
  background-image: none;
  background-color: rgba(0, 0, 0, 0);
  border-width: 0;
  cursor: pointer;
  outline: none; }
  @media only screen and (max-width: 768px) {
    .nav__burger {
      display: block; } }
  .nav__burger span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: .2rem;
    background: #424242;
    transition: transform 0.25s, opacity 0.25s; }
    .nav__burger span:nth-child(1) {
      opacity: var(--line-opacity);
      transform: translate(-50%, var(--line-offset-top)) scale(var(--line-scale), 1); }
    .nav__burger span:nth-child(2), .nav__burger span:nth-child(3) {
      transform: translate(-50%, -50%) rotate(0); }
    .nav__burger span:nth-child(4) {
      opacity: var(--line-opacity);
      transform: translate(-50%, var(--line-offset-botton)) scale(var(--line-scale), 1); }
  .nav__burger.open {
    --line-offset-top: -50%;
    --line-offset-botton: -50%;
    --anim-type: ease-in;
    --line-scale: 0;
    --line-opacity: 0; }
    .nav__burger.open span:nth-child(2) {
      transform: translate(-50%, -50%) rotate(45deg); }
    .nav__burger.open span:nth-child(3) {
      transform: translate(-50%, -50%) rotate(-45deg); }

.link {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  font-size: large;
  color: var(--link-color);
  text-align: left;
  text-decoration: none;
  text-decoration: underline;
  transition: color .25s;
  --link-color: #fff; }
  .link:hover {
    --link-color: #fff; }
  .link > .icon {
    margin-left: 0.8rem;
    fill: var(--link-color); }
  .link--white {
    --link-color: #fff; }
    .link--white:hover {
      --link-color: #fff; }

* .link {
  font-size: 1em; }

.box-wrapper {
  border: 1px solid #aeaeae;
  border-radius: .5rem;
  padding: 2rem;
  display: inline-block;
  box-shadow: 0 0 3px 0px #cccccc;
  width: auto;
  min-width: 30rem;
  transition: all .25s linear; }
  .box-wrapper h2 {
    display: block;
    width: 100%;
    text-align: center;
    border-left: 2px solid #424242;
    margin: 1rem -2rem 2rem -2rem;
    padding: 0 2rem; }
  .box-wrapper input:not(.button):not([type="checkbox"]) {
    padding: 0.4rem;
    margin-bottom: 2rem;
    border: none;
    border-bottom: 2px solid #c1c1c2;
    transition: .25s ease-in-out;
    width: 100%; }
    .box-wrapper input:not(.button):not([type="checkbox"]):focus {
      outline: none;
      border-bottom-color: #424242; }
  .box-wrapper .button {
    display: block;
    margin: 2rem auto 0 auto; }
  .box-wrapper .has-error input {
    border-bottom-color: #d91313 !important; }

.step-info-box {
  flex: 0 0 45%;
  width: 45%;
  max-width: 45%;
  padding-right: 5rem;
  box-sizing: border-box; }
  .step-info-box.no-flex {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding-right: 0; }
  @media only screen and (max-width: 1200px) {
    .step-info-box {
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
      padding-right: 0;
      margin-bottom: 2rem; } }
  .step-info-box h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 400; }
  .step-info-box h3 {
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: 18px; }
  .step-info-box p, .step-info-box strong, .step-info-box b, .step-info-box a:not(.button), .step-info-box ul li {
    margin-top: 16px;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 0; }
  .step-info-box p, .step-info-box li {
    line-height: 2; }
    .step-info-box p code, .step-info-box li code {
      border: 1px solid #d3d6db;
      background-color: #f9f9f9;
      line-height: 19px;
      padding: 2px 7px;
      direction: ltr;
      color: #000;
      border-radius: 2px;
      font-family: Consolas !important; }
  .step-info-box img {
    display: block;
    margin-top: 16px;
    width: auto;
    max-width: 100%; }
  .step-info-box a {
    font-weight: 500;
    color: #3773c2; }
    .step-info-box a:hover {
      color: #2c5b9a; }
  .step-info-box blockquote {
    margin: 20px 0;
    background-color: #fff;
    background: none;
    border: 1px solid #3773c2;
    padding: .5rem;
    border-left-width: .5rem; }
    .step-info-box blockquote p {
      margin: 0; }
  .step-info-box pre {
    background-color: #fff;
    font-family: Consolas !important;
    font-size: 12.8px;
    line-height: 19px;
    direction: ltr;
    border-radius: 2px;
    overflow-x: auto;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden; }
    .step-info-box pre > * {
      flex: 0 0 100%;
      max-width: 100%;
      width: 100%; }
    .step-info-box pre code {
      font-family: Consolas !important;
      color: #000;
      background-color: #1e1e1e;
      order: 1;
      padding: 1rem;
      box-sizing: border-box; }

div.dotvvm-bp-grid-view {
  display: block;
  width: 100%;
  overflow-x: auto; }
  div.dotvvm-bp-grid-view .culumn-checkbox {
    padding: 0.5rem 0 0.5rem 0.5rem; }
  div.dotvvm-bp-grid-view .row-button {
    margin: 0 .4rem; }
  div.dotvvm-bp-grid-view thead th.sort-asc, div.dotvvm-bp-grid-view thead th.sort-desc {
    position: relative; }
    div.dotvvm-bp-grid-view thead th.sort-asc a:after, div.dotvvm-bp-grid-view thead th.sort-desc a:after {
      font: normal normal normal 14px/1 FontAwesome;
      display: block;
      width: 0.8rem;
      position: absolute;
      top: 50%;
      right: 0.5rem;
      transform: translate(0, -50%); }
  div.dotvvm-bp-grid-view thead th.sort-asc a:after {
    content: "\f0dd";
    height: 1.8rem; }
  div.dotvvm-bp-grid-view thead th.sort-desc a:after {
    content: "\f0de";
    height: 0.8rem; }
  div.dotvvm-bp-grid-view > table {
    border: 1px solid #aeaeae;
    width: 100%; }
    div.dotvvm-bp-grid-view > table th, div.dotvvm-bp-grid-view > table td {
      border: 1px solid #aeaeae; }
    div.dotvvm-bp-grid-view > table > thead {
      background-color: #424242;
      color: #fff; }
      div.dotvvm-bp-grid-view > table > thead > tr > th {
        padding: 0.5rem 1.5rem 0.5rem 0.8rem;
        border: 1px solid #aeaeae; }
        div.dotvvm-bp-grid-view > table > thead > tr > th a, div.dotvvm-bp-grid-view > table > thead > tr > th span {
          color: #fff;
          font-weight: 500; }
        div.dotvvm-bp-grid-view > table > thead > tr > th a:hover {
          color: #d9d9d9; }
    div.dotvvm-bp-grid-view > table > tbody > tr > td {
      padding: 0.5rem 0.8rem; }
    div.dotvvm-bp-grid-view > table > tbody > tr.edit-row {
      background-color: #fff;
      border: 1px solid #424242; }
      div.dotvvm-bp-grid-view > table > tbody > tr.edit-row:hover {
        background-color: #fff; }
      div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td {
        padding: 0 !important;
        height: 3.1rem; }
        div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td.culumn-checkbox {
          padding: .4rem 0 .4rem .4rem !important; }
        div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td:last-child {
          padding: 0.5rem 0.8rem !important; }
        div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td > .dotvvm-bp-control:not(.bp-icon) {
          position: relative;
          height: 100%;
          margin: auto;
          border: 1px solid transparent;
          box-sizing: border-box;
          background-color: transparent; }
          div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td > .dotvvm-bp-control:not(.bp-icon).bp-state-focused {
            border: 1px solid;
            outline: none;
            border-color: #757575 !important;
            box-shadow: 0 0 0 0.1rem #757575; }
          div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td > .dotvvm-bp-control:not(.bp-icon) > .bp-unselect {
            display: none; }
        div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td .dotvvm-bp-combo-box > .bp-text-box {
          width: 100%;
          padding: .4rem .7rem;
          border: none;
          display: block;
          box-sizing: border-box; }
          div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td .dotvvm-bp-combo-box > .bp-text-box:focus {
            border: none;
            box-shadow: none;
            outline: none; }
        div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td .dotvvm-bp-combo-box .fa.fa-chevron-down {
          border: none; }
          div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td .dotvvm-bp-combo-box .fa.fa-chevron-down:hover {
            color: #292929;
            background-color: #fff; }
        div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td .bp-text-box {
          font-size: 1.4rem;
          font-family: "Open Sans", sans-serif; }
        div.dotvvm-bp-grid-view > table > tbody > tr.edit-row > td .dotvvm-bp-text-box {
          padding: .4rem .7rem; }
    div.dotvvm-bp-grid-view > table > tbody > tr.selected-row {
      background-color: #424242;
      color: #fff; }
      div.dotvvm-bp-grid-view > table > tbody > tr.selected-row:hover {
        background-color: #424242;
        color: #fff; }
    div.dotvvm-bp-grid-view > table > tbody > tr .fa {
      color: #424242;
      display: block;
      float: left;
      width: 2rem;
      height: 2rem;
      border: 1px solid #424242;
      text-align: center;
      margin-right: 0.2rem;
      padding: 0.2rem;
      background-color: #fff;
      transition: all .3s; }
      div.dotvvm-bp-grid-view > table > tbody > tr .fa:last-child {
        margin-right: 0; }
      div.dotvvm-bp-grid-view > table > tbody > tr .fa:hover {
        cursor: pointer;
        transition: all .3s;
        color: #fff;
        background-color: #424242; }
      div.dotvvm-bp-grid-view > table > tbody > tr .fa.fa-trash:hover {
        background-color: #ed3232; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--nav-height);
  padding: 0 5.6rem;
  background-color: #fff;
  z-index: 9999;
  box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, var(--box-shadow-alpha)); }
  @media only screen and (max-width: 1440px) {
    .nav {
      padding: 0 3.2rem; } }
  @media only screen and (max-width: 1200px) {
    .nav {
      padding: 0 2.4rem; } }
  @media only screen and (max-width: 980px) {
    .nav {
      padding: 0 1.6rem; } }
  @media only screen and (max-width: 768px) {
    .nav {
      border-bottom: 0.1rem solid #aeaeae; } }
  @media only screen and (max-width: 768px) {
    .nav:before, .nav:after {
      display: none; } }

.nav .button {
  --btn-background: #3175b9;
  --btn-border-color: var(--btn-background);
  --btn-color: #ffffff;
  --btn-badding: 0.8rem 1.6rem;
  --btn-min-width: 16rem;
  --btn-max-width: 24rem;
  --btn-font-size: large;
  --box-shadow-alpha: .15;
  --icon-size: 1.6rm;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-width: var(--btn-min-width);
  max-width: var(--btn-max-width);
  padding: var(--btn-badding);
  background-color: var(--btn-background);
  border-radius: .5rem;
  font-size: var(--btn-font-size);
  font-weight: 500;
  color: var(--btn-color);
  text-decoration: none;
  transition: box-shadow .25s,background-color .25s,border-color .25s;
  cursor: pointer;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, var(--box-shadow-alpha));
  border: 0.2rem solid var(--btn-border-color); }
  .nav .button--primary {
    --btn-background: #27be89; }
    .nav .button--primary--primary:hover {
      --btn-background: #24b280; }
  .nav .button--small {
    --btn-min-width: 12rem;
    --btn-padding: 0.4rem 0.8rem;
    --btn-font-size: medium; }

.nav__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  margin: 0 1.6rem;
  font-size: x-large;
  text-decoration: none; }
  .nav__logo * {
    line-height: 2.4rem; }
  @media only screen and (max-width: 980px) {
    .nav__logo {
      margin-left: 0; } }
  @media only screen and (max-width: 768px) {
    .nav__logo {
      margin: 0; } }

.nav__menu {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 1;
  list-style: none;
  transition: opacity 0.25s;
  transition-delay: .1s; }
  @media only screen and (max-width: 768px) {
    .nav__menu {
      position: absolute;
      top: calc(100% + 1px);
      left: 0;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      width: 100%;
      height: calc(100vh - var(--nav-height) - 1px);
      background-color: #fff;
      opacity: 0; } }
  @media only screen and (max-width: 768px) {
    .nav__menu.open {
      display: block;
      animation: fade 0.25s linear forwards;
      animation-delay: .1s; } }

.nav__item {
  display: block;
  height: 100%;
  float: left;
  padding: 0 1.6rem; }
  @media only screen and (max-width: 1200px) {
    .nav__item {
      padding: 0 .8rem; } }
  @media only screen and (max-width: 768px) {
    .nav__item {
      padding: 0 1.6rem; } }
  @media only screen and (max-width: 768px) {
    .nav__item {
      grid-row-end: span 4; } }
  .nav__item--mobile {
    display: none; }
    @media only screen and (max-width: 768px) {
      .nav__item--mobile {
        display: block; } }
  .nav__item--with-button {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    padding-right: 2.4rem; }
    @media only screen and (max-width: 980px) {
      .nav__item--with-button {
        display: none; } }
  .nav__item--row-1 {
    grid-row-start: 1; }
  .nav__item--row-3 {
    grid-row-start: 6; }
  .nav__item--row-5 {
    grid-row-start: 11; }
  .nav__item a:not(.button), .nav__item input {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-family: Segoe UI, Arial, Helvetica, sans-serif;
    font-size: medium;
    font-weight: 600;
    line-height: var(--nav-height);
    color: #424242;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer; }
    @media only screen and (max-width: 980px) {
      .nav__item a:not(.button), .nav__item input {
        font-size: small; } }
    @media only screen and (max-width: 768px) {
      .nav__item a:not(.button), .nav__item input {
        flex-direction: column;
        width: 100%;
        height: 100%;
        font-size: large;
        line-height: 4rem; } }
    @media only screen and (max-width: 320px) {
      .nav__item a:not(.button), .nav__item input {
        font-size: medium; } }
    .nav__item a:not(.button):focus, .nav__item input:focus {
      outline: none; }
    .nav__item a:not(.button):hover, .nav__item input:hover {
      text-decoration: underline; }
    .nav__item a:not(.button) > div, .nav__item input > div {
      position: relative;
      width: 6rem;
      height: 6rem;
      background-color: #424242;
      border-radius: 50%; }
      @media only screen and (max-width: 320px) {
        .nav__item a:not(.button) > div, .nav__item input > div {
          width: 5rem;
          height: 5rem; } }
  .nav__item .icon {
    --icon-size: 1.6rem;
    display: block;
    width: var(--icon-size);
    min-width: var(--icon-size);
    height: var(--icon-size);
    margin-left: 0.8rem;
    fill: #3175b9; }
    @media only screen and (max-width: 768px) {
      .nav__item .icon {
        --icon-size: 2.4rem;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0;
        transform: translate(-50%, -50%);
        fill: #fff; } }
    @media only screen and (max-width: 320px) {
      .nav__item .icon {
        --icon-size: 2rem; } }
  .nav__item--active a:not(.button) {
    color: #3175b9;
    text-decoration: underline; }
    @media only screen and (max-width: 768px) {
      .nav__item--active a:not(.button) {
        color: #424242;
        text-decoration: none; } }
    .nav__item--active a:not(.button) > div {
      background-color: #3773c2; }

.nav__item-icon {
  display: none; }
  @media only screen and (max-width: 768px) {
    .nav__item-icon {
      display: block; } }

.nav__left, .nav__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style: none; }
  @media only screen and (max-width: 768px) {
    .nav__left, .nav__right {
      display: grid;
      align-items: flex-start;
      width: 100%;
      grid-template-columns: 1fr; } }

@media only screen and (max-width: 768px) {
  .nav__left {
    display: grid;
    height: 100%;
    padding-top: 1.6rem;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(16, 1fr); } }

.nav__left h4, .nav__left li.h4 {
  display: none; }
  @media only screen and (max-width: 768px) {
    .nav__left h4, .nav__left li.h4 {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 9.6rem;
      background: linear-gradient(to right, #e8e8e8 0%, #fff 100%);
      font-size: x-large;
      font-weight: 600;
      color: #3773c2;
      grid-column-end: span 3; } }
  @media only screen and (max-width: 580px) {
    .nav__left h4, .nav__left li.h4 {
      padding-left: 3.2rem;
      font-size: large; } }

@media only screen and (max-width: 768px) {
  .nav__right {
    display: none; } }

.nav__mobile-buttons {
  display: none;
  padding-top: 1.6rem;
  text-align: center;
  grid-column-end: span 3; }
  @media only screen and (max-width: 768px) {
    .nav__mobile-buttons {
      display: block; } }

.nav__user-nav {
  display: block;
  width: 100%;
  margin-bottom: 5rem;
  background-color: #fff;
  text-align: center;
  overflow: auto;
  z-index: 999; }
  @media only screen and (max-width: 580px) {
    .nav__user-nav {
      position: fixed;
      top: 5.5rem;
      left: 0;
      border-bottom: 0.1rem solid #27be89; } }

.nav__user-menu {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none; }
  @media only screen and (max-width: 580px) {
    .nav__user-menu {
      justify-content: flex-start; } }
  .nav__user-menu .nav__item > a:not(.button) {
    padding: .8rem 0; }

@keyframes fade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.guide-container {
  display: block;
  width: 70%;
  margin: 50px auto; }
  .guide-container .dotvvm-bp-control:not(.fa) {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; }
  @media only screen and (max-width: 768px) {
    .guide-container {
      width: 100%; } }
  .guide-container hr {
    margin: 50px 0; }
  .guide-container > h1 {
    text-align: center; }
  .guide-container .guide-box:not(.fonts) {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
    .guide-container .guide-box:not(.fonts) > * {
      -webkit-box-flex: 0;
      -webkit-flex-grow: 0;
      -moz-flex-grow: 0;
      -ms-flex-positive: 0;
      flex-grow: 0;
      -webkit-flex-shrink: 0;
      -moz-flex-shrink: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      -webkit-flex-basis: 20%;
      -moz-flex-basis: 20%;
      -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
      width: 20%;
      max-width: 20%;
      box-sizing: border-box; }
    @media only screen and (max-width: 580px) {
      .guide-container .guide-box:not(.fonts) {
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; }
        .guide-container .guide-box:not(.fonts) > * {
          width: 100%; }
          .guide-container .guide-box:not(.fonts) > *:not(:last-child) {
            margin-bottom: 1rem; } }
    .guide-container .guide-box:not(.fonts) > * {
      padding: 15px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
    .guide-container .guide-box:not(.fonts) img {
      width: 100%; }
    .guide-container .guide-box:not(.fonts).g-images div {
      position: relative;
      width: 100%;
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      justify-content: space-between;
      -webkit-box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      align-items: flex-start; }
      .guide-container .guide-box:not(.fonts).g-images div > * {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -webkit-flex-shrink: 0;
        -moz-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -webkit-flex-basis: 30%;
        -moz-flex-basis: 30%;
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        width: 30%;
        max-width: 30%;
        box-sizing: border-box; }
      @media only screen and (max-width: 580px) {
        .guide-container .guide-box:not(.fonts).g-images div {
          -webkit-box-direction: normal;
          -webkit-box-orient: vertical;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column; }
          .guide-container .guide-box:not(.fonts).g-images div > * {
            width: 100%; }
            .guide-container .guide-box:not(.fonts).g-images div > *:not(:last-child) {
              margin-bottom: 1rem; } }
    .guide-container .guide-box:not(.fonts).icons img {
      flex: 0 0 80px; }
    .guide-container .guide-box:not(.fonts).logos {
      align-items: center; }
    @media only screen and (max-width: 580px) {
      .guide-container .guide-box:not(.fonts) {
        flex-direction: column; } }
  .guide-container .g-button {
    text-align: center; }
    .guide-container .g-button p {
      margin-bottom: 1rem; }
  .guide-container .g-color span {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: auto; }
  .guide-container .g-color p {
    font-weight: 600;
    padding-top: 10px;
    display: block;
    width: 100%;
    text-align: center; }
  .guide-container .g-color.primary span {
    background: #424242; }
  .guide-container .g-color.primary p:after {
    display: block;
    content: "#424242"; }
  .guide-container .g-color.secondary span {
    background: #27be89; }
  .guide-container .g-color.secondary p:after {
    display: block;
    content: "#27be89"; }
  .guide-container .g-color.font span {
    background: #000; }
  .guide-container .g-color.font p:after {
    display: block;
    content: "#000"; }
  .guide-container .g-color.background span {
    background: #fcfcfc;
    border: 2px solid #c9c9c9; }
  .guide-container .g-color.background p:after {
    display: block;
    content: "#fcfcfc"; }
  .guide-container .g-color.error span {
    background: #d91313; }
  .guide-container .g-color.error p:after {
    display: block;
    content: "#d91313"; }
  .guide-container .g-font {
    margin: 1.5rem 0 3rem 0; }
    .guide-container .g-font padding {
      font-size: 14px; }
    .guide-container .g-font > h1 + p:after {
      display: block;
      content: "Open Sans, sans-serif"; }
    .guide-container .g-font > h2 + p:after {
      display: block;
      content: "Open Sans, sans-serif"; }
    .guide-container .g-font > h3 + p:after {
      display: block;
      content: "Open Sans, sans-serif"; }
    .guide-container .g-font.text {
      font-family: "Open Sans", sans-serif; }
      .guide-container .g-font.text span {
        display: block;
        margin-bottom: 10px; }
      .guide-container .g-font.text p:after {
        display: block;
        content: "Open Sans, sans-serif"; }

.error__container {
  max-width: 768px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .error__container > h1 {
    margin: 0;
    text-align: center;
    color: #3773c2;
    margin-bottom: 1.5rem;
    font-size: 5rem;
    font-weight: 900; }
    @media only screen and (max-width: 768px) {
      .error__container > h1 {
        font-size: 2.2rem; } }
  .error__container > strong {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
    color: #000;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .error__container > strong {
        font-size: 1.8rem; } }
  .error__container > p {
    text-align: center;
    display: block;
    margin-bottom: 2rem;
    color: #000;
    font-size: 1.6rem; }
  .error__container .button {
    margin: 0 auto; }

.main-header {
  --bg-img-linear-right: #c8e0ff;
  --bg-img-linear-left: #f1f6fe;
  --title-color: #214778;
  --subtitle-color: #424242;
  --bg-position-x: 120%;
  --image-transform-x: -100%;
  overflow: hidden;
  background-image: linear-gradient(to right, var(--bg-img-linear-left) 0%, var(--bg-img-linear-left) 85%, var(--bg-img-linear-right) 85%, var(--bg-img-linear-right) 100%);
  background-repeat: no-repeat;
  position: relative;
  max-width: 100vw; }
  @media only screen and (max-width: 1440px) {
    .main-header {
      --image-transform-x: -70%; } }
  @media only screen and (max-width: 1200px) {
    .main-header {
      --image-transform-x: -55%; } }
  @media only screen and (max-width: 980px) {
    .main-header {
      margin-bottom: 3rem;
      --image-transform-x: -65%; } }
  @media only screen and (max-width: 768px) {
    .main-header {
      background-image: linear-gradient(to right, var(--bg-img-linear-left) 0%, var(--bg-img-linear-left) 100%); } }
  .main-header > img {
    position: absolute;
    height: 100%;
    display: block;
    top: 50%;
    left: 100%;
    transform: translate(var(--image-transform-x), -50%); }
    @media only screen and (max-width: 768px) {
      .main-header > img {
        display: none; } }
  .main-header > div > div {
    padding: 5rem 0;
    position: relative;
    color: #fff; }
    @media only screen and (max-width: 768px) {
      .main-header > div > div {
        text-align: center;
        padding: 3rem 0; } }
    .main-header > div > div > h1, .main-header > div > div .h1 {
      display: block;
      text-transform: uppercase;
      font-size: 5rem;
      line-height: 5rem 0.2rem;
      font-weight: 300;
      position: relative;
      padding-bottom: 5rem;
      color: var(--title-color); }
      @media only screen and (max-width: 580px) {
        .main-header > div > div > h1, .main-header > div > div .h1 {
          font-size: 2.2rem;
          line-height: calc($font-size-xl + .2rem); } }
      .main-header > div > div > h1:before, .main-header > div > div .h1:before {
        position: absolute;
        content: '';
        top: calc(100% - 2.5rem);
        left: 0;
        width: 10rem;
        height: .4rem;
        transform: translateY(-50%);
        background-color: var(--title-color); }
        @media only screen and (max-width: 768px) {
          .main-header > div > div > h1:before, .main-header > div > div .h1:before {
            left: 50%;
            transform: translate(-50%, -50%); } }
    .main-header > div > div p {
      padding-bottom: 2.5rem;
      font-size: 2.2rem;
      line-height: 1.7;
      color: var(--subtitle-color); }
      @media only screen and (max-width: 1024px) {
        .main-header > div > div p {
          font-size: 1.8rem; } }
      @media only screen and (max-width: 768px) {
        .main-header > div > div p {
          font-size: 1.6rem; } }

.section-coffee {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #f1f6fe;
  padding: 10rem 0; }
  @media only screen and (max-width: 768px) {
    .section-coffee {
      padding: 3rem 0; } }
  .section-coffee > div {
    flex: 0 0 40%;
    width: 40%;
    max-width: 40%;
    position: relative; }
    @media only screen and (max-width: 768px) {
      .section-coffee > div {
        display: none; } }
    .section-coffee > div img {
      display: block;
      height: auto;
      width: 75%;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%); }
    .section-coffee > div h2 {
      color: #214778;
      display: block;
      margin-bottom: 3rem;
      font-size: 4.2rem;
      font-weight: 300; }
      @media only screen and (max-width: 768px) {
        .section-coffee > div h2 {
          font-size: 3rem; } }
    .section-coffee > div p {
      display: block;
      margin-bottom: 2rem;
      font-size: 1.8rem; }
    .section-coffee > div:last-child {
      display: block;
      flex: 0 0 60%;
      width: 60%;
      max-width: 60%; }
      @media only screen and (max-width: 768px) {
        .section-coffee > div:last-child {
          padding: 0 2rem;
          box-sizing: border-box;
          width: 100%;
          flex: 0 0 100%;
          max-width: none;
          text-align: center; } }

.footer {
  padding-top: var(--footer-padding);
  background-color: #424242;
  --footer-padding: 5rem;
  --content-gap: 1.6rem;
  --col-template: 26.4rem auto 26.4rem;
  --items-align: stretch; }
  @media only screen and (max-width: 980px) {
    .footer {
      --content-gap: 3.2rem;
      --col-template: auto;
      --items-align: flex-start; } }
  @media only screen and (max-width: 580px) {
    .footer {
      --footer-padding: 3.2rem; } }
  .footer__container {
    display: grid;
    width: 100%;
    max-width: 1200px;
    padding-bottom: var(--footer-padding) !important;
    margin: 0 auto;
    text-align: left;
    grid-column-gap: var(--content-gap);
    grid-row-gap: var(--content-gap);
    grid-template-columns: var(--col-template); }
    @media only screen and (max-width: 1200px) {
      .footer__container {
        width: 100%;
        padding: 0 3.2rem; } }
    @media only screen and (max-width: 980px) {
      .footer__container {
        justify-content: center; } }
    @media only screen and (max-width: 768px) {
      .footer__container {
        padding: 0 2.4rem; } }
    @media only screen and (max-width: 580px) {
      .footer__container {
        padding: 0 1.6rem; } }
    .footer__container > * {
      align-self: var(--items-align); }
  .footer__left {
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    justify-content: flex-start; }
    @media only screen and (max-width: 980px) {
      .footer__left {
        align-items: center; } }
    .footer__left img {
      display: block;
      width: 100%;
      max-width: 24rem;
      margin-bottom: 2.4rem; }
      @media only screen and (max-width: 580px) {
        .footer__left img {
          max-width: 20rem; } }
    .footer__left p {
      display: block;
      margin-bottom: 3.2rem;
      font-size: medium;
      color: #fff; }
      @media only screen and (max-width: 980px) {
        .footer__left p {
          margin-bottom: 1.6rem; } }
  .footer__middle {
    display: grid;
    justify-content: center;
    grid-column-gap: var(--content-gap);
    grid-row-gap: var(--content-gap);
    grid-template-columns: repeat(2, auto);
    --content-gap: 16rem; }
    @media only screen and (max-width: 1024px) {
      .footer__middle {
        --content-gap: 12rem; } }
    @media only screen and (max-width: 1440px) {
      .footer__middle {
        --content-gap: 8rem; } }
    @media only screen and (max-width: 980px) {
      .footer__middle {
        --content-gap: 6rem; } }
    @media only screen and (max-width: 580px) {
      .footer__middle {
        --content-gap: 2.4rem; } }
    @media only screen and (max-width: 426px) {
      .footer__middle {
        --content-gap: 1.6rem; } }
    .footer__middle > * {
      align-self: var(--items-align); }
  .footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; }
    @media only screen and (max-width: 980px) {
      .footer__right {
        align-items: center; } }
    .footer__right > .social-container {
      margin-bottom: 0; }
  .footer__bottom {
    padding: 0.8rem;
    background-color: #1d1d1d;
    text-align: center; }
    .footer__bottom > small {
      font-size: small;
      color: #fff; }
      .footer__bottom > small > a {
        font-size: inherit;
        color: inherit; }
  .footer h5 {
    display: block;
    margin-bottom: 1.6rem;
    font-size: large;
    font-weight: 600;
    color: #fff; }
  .footer ul {
    padding-left: 1.7rem; }
    .footer ul > li {
      margin-bottom: 0.4rem;
      font-size: medium;
      color: #fff; }

.social-container {
  --anim-type: 0.25s;
  display: inline-grid;
  align-items: center;
  grid-column-gap: 0.8rem;
  grid-template-columns: repeat(5, auto); }
  .social-container > a {
    display: block;
    align-self: center;
    width: 4rem;
    height: 4rem;
    opacity: 1;
    border-radius: 50%;
    transition: opacity var(--anim-type), box-shadow var(--anim-type);
    --box-shadow-alpha: .3;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, var(--box-shadow-alpha)); }
    .social-container > a:hover {
      opacity: .9;
      --box-shadow-alpha: .6; }
    .social-container > a > .icon {
      display: block;
      width: 100%;
      max-width: 100%;
      height: 100%; }

.section-lesson {
  background-color: #fff; }
  @media only screen and (max-width: 768px) {
    .section-lesson > .container-large.with-flex {
      display: none; } }
  .section-lesson > .mobile-message {
    display: none; }
    @media only screen and (max-width: 768px) {
      .section-lesson > .mobile-message {
        display: block;
        padding: 0 2rem;
        text-align: center;
        box-sizing: border-box; }
        .section-lesson > .mobile-message h3 {
          margin-top: 5rem;
          background-color: #27be89;
          font-size: 2.2rem;
          padding: 1.6rem;
          box-sizing: border-box;
          color: #fff;
          font-weight: 100;
          font-family: "Open Sans", sans-serif;
          border-radius: 4px; } }

.lesson-footer-container {
  background-color: rgba(0, 0, 0, 0);
  padding: 1rem 0;
  transition: all 0.25s ease-in-out;
  width: 100%; }
  @media only screen and (max-width: 768px) {
    .lesson-footer-container {
      display: none; } }

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