/*!
/*  Colors Variables    */
/* Neutral - black */
/* Accent - red */
/* Accent - blue */
/* Accent - orange */
/* UI Patern - valid */
/* UI Patern - error */
/* UI Patern - warning */
/* UI Patern - blue */
/*****************************/
/* Color Palette */
/* Neutral - black */
.black100 {
  color: #fff; }

.black200 {
  color: #f9f9fb; }

.black250 {
  color: #e6e8ea; }

.black300 {
  color: #cfd3d7; }

.black400 {
  color: #a0a5a8; }

.black500 {
  color: #8a8c8f; }

.black600 {
  color: #65666a; }

.black700 {
  color: #434447; }

.black800 {
  color: #2d3032; }

.black900 {
  color: #070706; }

/* Accent - red */
.red200 {
  color: #ff797e; }

.red300 {
  color: #ef4c49; }

.red400 {
  color: #e03734; }

.red500 {
  color: #c72b28; }

.red600 {
  color: #a71918; }

.red700 {
  color: #8d1b19; }

.red800 {
  color: #720d0c; }

.red900 {
  color: #4e0604; }

/* Accent - blue */
.blue200 {
  color: #b9ddf8; }

.blue300 {
  color: #85c4f4; }

.blue400 {
  color: #63b0ea; }

.blue500 {
  color: #4c9bd6; }

.blue600 {
  color: #327bb3; }

.blue700 {
  color: #25699d; }

.blue800 {
  color: #174f7b; }

.blue900 {
  color: #0b3c62; }

/* Accent - orange */
.orange400 {
  color: #fd7d20; }

.orange500 {
  color: #fd6a00; }

.orange600 {
  color: #e26003; }

.orange700 {
  color: #c45200; }

.orange800 {
  color: #a04503; }

.orange900 {
  color: #883900; }

/* UI Patern - valid */
.valid200 {
  color: #ecfcf2; }

.valid500 {
  color: #3ec92c; }

.valid800 {
  color: #138b04; }

/* UI Patern - error */
.error200 {
  color: #fcedec; }

.error500 {
  color: #d75a4a; }

.error800 {
  color: #a82f1f; }

/* UI Patern - warning */
.warning200 {
  color: #ffefbc; }

.warning500 {
  color: #c99916; }

.warning800 {
  color: #9b7713; }

/* UI Patern - blue */
.info200 {
  color: #edf6fc; }

.info500 {
  color: #3e7fb7; }

.info800 {
  color: #0f4a7c; }

/**************************/
/*   Mixin for Heading level        */
/**************************************/
/*   Mixin for spacers                 */
/* $type = padding | margin */
/* $size = xxs, xs, s, m, l, xl, xxl  */
/*  $direction = all, top, right, bottom or left */
/**************************************/
/*   **** placeholder Input       *****/
/**************************************/
/*   Heading style   */
/*********************/
/*      Bold level.  */
/*********************/
/*    Text  Body         */
/*********************/
/*    spacers size         */
/*********************/
/*!
/*  Headings   */
.heading-1 {
  font-size: 60px;
  line-height: 62px;
  font-weight: 900; }

.heading-2 {
  font-size: 44px;
  line-height: 42px;
  font-weight: 700; }

.heading-3 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700; }

.heading-4 {
  font-size: 32px;
  line-height: 36px;
  font-weight: 700; }

.heading-5 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 700; }

.heading-6 {
  font-size: 21px;
  line-height: 26px;
  font-weight: 700; }

.text-highlight {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400; }

.text-body {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400; }

.text-mention {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400; }

/* Reset Select */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  background: transparent;
  background-image: none; }

/* Remove IE arrow */
select::-ms-expand {
  display: none; }

/* Custom Select */
.select-form {
  position: relative;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 32px;
  border-radius: 2px;
  border: 1px solid #cfd3d7; }
  .select-form:hover {
    border: 1px solid #8a8c8f;
    color: #65666a; }
  .select-form:focus {
    color: #2d3032; }
  .select-form:checked {
    color: red; }

select {
  -webkit-flex: 1;
          flex: 1;
  padding-left: 8px;
  cursor: pointer; }

.select-form-container {
  position: relative; }

.custom-arrow {
  width: 16px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto 15px; }

.select-custom-arrow {
  width: 16px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin: auto; }

.select-custom-form {
  border-radius: 2px; }
  .select-custom-form:focus {
    border: 1px solid #2d3032;
    outline-color: #b9ddf8; }

.select-form--wrapper {
  position: relative; }

.price-select-helper {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0px; }

.form-select--container label {
  color: #2d3032;
  font-size: 14px;
  margin-bottom: 4px;
  margin-top: 8px;
  display: inline-block; }

/*****custom MenuList DropDown********/
.price-value {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row; }
  .price-value .ncloc,
  .price-value .price {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    padding: 0; }
    .price-value .ncloc .value,
    .price-value .price .value {
      color: #070706;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.8; }
    .price-value .ncloc .caption,
    .price-value .price .caption {
      color: #2d3032;
      font-weight: 300;
      font-size: 11px;
      line-height: 1; }

.price-option .ncloc,
.price-value .ncloc {
  width: 220px; }
.price-option .with-support,
.price-value .with-support {
  padding-left: 4px;
  color: #2d3032;
  font-weight: 300;
  font-size: 11px;
  line-height: 1; }

/*************************************/
.form-container input {
  transition: all 0.2s ease;
  color: #2d3032;
  font-size: 16px;
  padding: 8px;
  width: 100%;
  border: 1px solid #cfd3d7;
  border-radius: 2px;
  height: 32px; }
  .form-container input:hover {
    border: 1px solid #8a8c8f; }
  .form-container input:focus {
    border: 2px solid #4c9bd6;
    box-shadow: 0 0 0pt 2pt #b9ddf8;
    outline-style: none;
    padding-left: 7px; }

::-webkit-input-placeholder {
  color: #65666a;
  opacity: 1;
  /* Firefox */
  font-style: italic;
  font-size: 12px; }

:-ms-input-placeholder {
  color: #65666a;
  opacity: 1;
  /* Firefox */
  font-style: italic;
  font-size: 12px; }

::-ms-input-placeholder {
  color: #65666a;
  opacity: 1;
  /* Firefox */
  font-style: italic;
  font-size: 12px; }

::placeholder {
  color: #65666a;
  opacity: 1;
  /* Firefox */
  font-style: italic;
  font-size: 12px; }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #65666a;
  font-style: italic;
  font-size: 12px; }

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #65666a;
  font-style: italic;
  font-size: 12px; }

.form-container label {
  color: #2d3032;
  font-size: 14px;
  margin-bottom: 4px;
  margin-top: 8px;
  display: inline-block; }

/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width; }
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

*,
*::before,
*::after {
  box-sizing: inherit; }

.container {
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 1080px) {
    .container {
      max-width: 1080px; } }
  @media (min-width: 1160px) {
    .container {
      max-width: 1160px; } }

.container-fluid {
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 8px;
  padding-left: 8px; }

.col {
  -webkit-flex-basis: 0;
          flex-basis: 0;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  max-width: 100%; }

.col-auto {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  -webkit-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%; }

.col-2 {
  -webkit-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%; }

.col-3 {
  -webkit-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -webkit-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%; }

.col-5 {
  -webkit-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%; }

.col-6 {
  -webkit-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -webkit-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%; }

.col-8 {
  -webkit-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%; }

.col-9 {
  -webkit-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -webkit-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%; }

.col-11 {
  -webkit-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%; }

.col-12 {
  -webkit-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  -webkit-order: -1;
          order: -1; }

.order-last {
  -webkit-order: 13;
          order: 13; }

.order-0 {
  -webkit-order: 0;
          order: 0; }

.order-1 {
  -webkit-order: 1;
          order: 1; }

.order-2 {
  -webkit-order: 2;
          order: 2; }

.order-3 {
  -webkit-order: 3;
          order: 3; }

.order-4 {
  -webkit-order: 4;
          order: 4; }

.order-5 {
  -webkit-order: 5;
          order: 5; }

.order-6 {
  -webkit-order: 6;
          order: 6; }

.order-7 {
  -webkit-order: 7;
          order: 7; }

.order-8 {
  -webkit-order: 8;
          order: 8; }

.order-9 {
  -webkit-order: 9;
          order: 9; }

.order-10 {
  -webkit-order: 10;
          order: 10; }

.order-11 {
  -webkit-order: 11;
          order: 11; }

.order-12 {
  -webkit-order: 12;
          order: 12; }

.offset-1 {
  margin-left: 8.3333333333%; }

.offset-2 {
  margin-left: 16.6666666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.3333333333%; }

.offset-5 {
  margin-left: 41.6666666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.3333333333%; }

.offset-8 {
  margin-left: 66.6666666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.3333333333%; }

.offset-11 {
  margin-left: 91.6666666667%; }

@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%; }

  .col-sm-auto {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-sm-1 {
    -webkit-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-sm-2 {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-sm-3 {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }

  .col-sm-4 {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-sm-5 {
    -webkit-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-sm-6 {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }

  .col-sm-7 {
    -webkit-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-sm-8 {
    -webkit-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-sm-9 {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }

  .col-sm-10 {
    -webkit-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-sm-11 {
    -webkit-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-sm-12 {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }

  .order-sm-first {
    -webkit-order: -1;
            order: -1; }

  .order-sm-last {
    -webkit-order: 13;
            order: 13; }

  .order-sm-0 {
    -webkit-order: 0;
            order: 0; }

  .order-sm-1 {
    -webkit-order: 1;
            order: 1; }

  .order-sm-2 {
    -webkit-order: 2;
            order: 2; }

  .order-sm-3 {
    -webkit-order: 3;
            order: 3; }

  .order-sm-4 {
    -webkit-order: 4;
            order: 4; }

  .order-sm-5 {
    -webkit-order: 5;
            order: 5; }

  .order-sm-6 {
    -webkit-order: 6;
            order: 6; }

  .order-sm-7 {
    -webkit-order: 7;
            order: 7; }

  .order-sm-8 {
    -webkit-order: 8;
            order: 8; }

  .order-sm-9 {
    -webkit-order: 9;
            order: 9; }

  .order-sm-10 {
    -webkit-order: 10;
            order: 10; }

  .order-sm-11 {
    -webkit-order: 11;
            order: 11; }

  .order-sm-12 {
    -webkit-order: 12;
            order: 12; }

  .offset-sm-0 {
    margin-left: 0; }

  .offset-sm-1 {
    margin-left: 8.3333333333%; }

  .offset-sm-2 {
    margin-left: 16.6666666667%; }

  .offset-sm-3 {
    margin-left: 25%; }

  .offset-sm-4 {
    margin-left: 33.3333333333%; }

  .offset-sm-5 {
    margin-left: 41.6666666667%; }

  .offset-sm-6 {
    margin-left: 50%; }

  .offset-sm-7 {
    margin-left: 58.3333333333%; }

  .offset-sm-8 {
    margin-left: 66.6666666667%; }

  .offset-sm-9 {
    margin-left: 75%; }

  .offset-sm-10 {
    margin-left: 83.3333333333%; }

  .offset-sm-11 {
    margin-left: 91.6666666667%; } }
@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%; }

  .col-md-auto {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-md-1 {
    -webkit-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-md-2 {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-md-3 {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }

  .col-md-4 {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-md-5 {
    -webkit-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-md-6 {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }

  .col-md-7 {
    -webkit-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-md-8 {
    -webkit-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-md-9 {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }

  .col-md-10 {
    -webkit-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-md-11 {
    -webkit-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-md-12 {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }

  .order-md-first {
    -webkit-order: -1;
            order: -1; }

  .order-md-last {
    -webkit-order: 13;
            order: 13; }

  .order-md-0 {
    -webkit-order: 0;
            order: 0; }

  .order-md-1 {
    -webkit-order: 1;
            order: 1; }

  .order-md-2 {
    -webkit-order: 2;
            order: 2; }

  .order-md-3 {
    -webkit-order: 3;
            order: 3; }

  .order-md-4 {
    -webkit-order: 4;
            order: 4; }

  .order-md-5 {
    -webkit-order: 5;
            order: 5; }

  .order-md-6 {
    -webkit-order: 6;
            order: 6; }

  .order-md-7 {
    -webkit-order: 7;
            order: 7; }

  .order-md-8 {
    -webkit-order: 8;
            order: 8; }

  .order-md-9 {
    -webkit-order: 9;
            order: 9; }

  .order-md-10 {
    -webkit-order: 10;
            order: 10; }

  .order-md-11 {
    -webkit-order: 11;
            order: 11; }

  .order-md-12 {
    -webkit-order: 12;
            order: 12; }

  .offset-md-0 {
    margin-left: 0; }

  .offset-md-1 {
    margin-left: 8.3333333333%; }

  .offset-md-2 {
    margin-left: 16.6666666667%; }

  .offset-md-3 {
    margin-left: 25%; }

  .offset-md-4 {
    margin-left: 33.3333333333%; }

  .offset-md-5 {
    margin-left: 41.6666666667%; }

  .offset-md-6 {
    margin-left: 50%; }

  .offset-md-7 {
    margin-left: 58.3333333333%; }

  .offset-md-8 {
    margin-left: 66.6666666667%; }

  .offset-md-9 {
    margin-left: 75%; }

  .offset-md-10 {
    margin-left: 83.3333333333%; }

  .offset-md-11 {
    margin-left: 91.6666666667%; } }
@media (min-width: 1080px) {
  .col-lg {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%; }

  .col-lg-auto {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-lg-1 {
    -webkit-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-lg-2 {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-lg-3 {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }

  .col-lg-4 {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-lg-5 {
    -webkit-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-lg-6 {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }

  .col-lg-7 {
    -webkit-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-lg-8 {
    -webkit-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-lg-9 {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }

  .col-lg-10 {
    -webkit-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-lg-11 {
    -webkit-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-lg-12 {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }

  .order-lg-first {
    -webkit-order: -1;
            order: -1; }

  .order-lg-last {
    -webkit-order: 13;
            order: 13; }

  .order-lg-0 {
    -webkit-order: 0;
            order: 0; }

  .order-lg-1 {
    -webkit-order: 1;
            order: 1; }

  .order-lg-2 {
    -webkit-order: 2;
            order: 2; }

  .order-lg-3 {
    -webkit-order: 3;
            order: 3; }

  .order-lg-4 {
    -webkit-order: 4;
            order: 4; }

  .order-lg-5 {
    -webkit-order: 5;
            order: 5; }

  .order-lg-6 {
    -webkit-order: 6;
            order: 6; }

  .order-lg-7 {
    -webkit-order: 7;
            order: 7; }

  .order-lg-8 {
    -webkit-order: 8;
            order: 8; }

  .order-lg-9 {
    -webkit-order: 9;
            order: 9; }

  .order-lg-10 {
    -webkit-order: 10;
            order: 10; }

  .order-lg-11 {
    -webkit-order: 11;
            order: 11; }

  .order-lg-12 {
    -webkit-order: 12;
            order: 12; }

  .offset-lg-0 {
    margin-left: 0; }

  .offset-lg-1 {
    margin-left: 8.3333333333%; }

  .offset-lg-2 {
    margin-left: 16.6666666667%; }

  .offset-lg-3 {
    margin-left: 25%; }

  .offset-lg-4 {
    margin-left: 33.3333333333%; }

  .offset-lg-5 {
    margin-left: 41.6666666667%; }

  .offset-lg-6 {
    margin-left: 50%; }

  .offset-lg-7 {
    margin-left: 58.3333333333%; }

  .offset-lg-8 {
    margin-left: 66.6666666667%; }

  .offset-lg-9 {
    margin-left: 75%; }

  .offset-lg-10 {
    margin-left: 83.3333333333%; }

  .offset-lg-11 {
    margin-left: 91.6666666667%; } }
@media (min-width: 1160px) {
  .col-xl {
    -webkit-flex-basis: 0;
            flex-basis: 0;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    max-width: 100%; }

  .col-xl-auto {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none; }

  .col-xl-1 {
    -webkit-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%; }

  .col-xl-2 {
    -webkit-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%; }

  .col-xl-3 {
    -webkit-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%; }

  .col-xl-4 {
    -webkit-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%; }

  .col-xl-5 {
    -webkit-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%; }

  .col-xl-6 {
    -webkit-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%; }

  .col-xl-7 {
    -webkit-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%; }

  .col-xl-8 {
    -webkit-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%; }

  .col-xl-9 {
    -webkit-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%; }

  .col-xl-10 {
    -webkit-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%; }

  .col-xl-11 {
    -webkit-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%; }

  .col-xl-12 {
    -webkit-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%; }

  .order-xl-first {
    -webkit-order: -1;
            order: -1; }

  .order-xl-last {
    -webkit-order: 13;
            order: 13; }

  .order-xl-0 {
    -webkit-order: 0;
            order: 0; }

  .order-xl-1 {
    -webkit-order: 1;
            order: 1; }

  .order-xl-2 {
    -webkit-order: 2;
            order: 2; }

  .order-xl-3 {
    -webkit-order: 3;
            order: 3; }

  .order-xl-4 {
    -webkit-order: 4;
            order: 4; }

  .order-xl-5 {
    -webkit-order: 5;
            order: 5; }

  .order-xl-6 {
    -webkit-order: 6;
            order: 6; }

  .order-xl-7 {
    -webkit-order: 7;
            order: 7; }

  .order-xl-8 {
    -webkit-order: 8;
            order: 8; }

  .order-xl-9 {
    -webkit-order: 9;
            order: 9; }

  .order-xl-10 {
    -webkit-order: 10;
            order: 10; }

  .order-xl-11 {
    -webkit-order: 11;
            order: 11; }

  .order-xl-12 {
    -webkit-order: 12;
            order: 12; }

  .offset-xl-0 {
    margin-left: 0; }

  .offset-xl-1 {
    margin-left: 8.3333333333%; }

  .offset-xl-2 {
    margin-left: 16.6666666667%; }

  .offset-xl-3 {
    margin-left: 25%; }

  .offset-xl-4 {
    margin-left: 33.3333333333%; }

  .offset-xl-5 {
    margin-left: 41.6666666667%; }

  .offset-xl-6 {
    margin-left: 50%; }

  .offset-xl-7 {
    margin-left: 58.3333333333%; }

  .offset-xl-8 {
    margin-left: 66.6666666667%; }

  .offset-xl-9 {
    margin-left: 75%; }

  .offset-xl-10 {
    margin-left: 83.3333333333%; }

  .offset-xl-11 {
    margin-left: 91.6666666667%; } }
.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: -webkit-flex !important;
  display: flex !important; }

.d-inline-flex {
  display: -webkit-inline-flex !important;
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }

  .d-sm-inline {
    display: inline !important; }

  .d-sm-inline-block {
    display: inline-block !important; }

  .d-sm-block {
    display: block !important; }

  .d-sm-table {
    display: table !important; }

  .d-sm-table-row {
    display: table-row !important; }

  .d-sm-table-cell {
    display: table-cell !important; }

  .d-sm-flex {
    display: -webkit-flex !important;
    display: flex !important; }

  .d-sm-inline-flex {
    display: -webkit-inline-flex !important;
    display: inline-flex !important; } }
@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }

  .d-md-inline {
    display: inline !important; }

  .d-md-inline-block {
    display: inline-block !important; }

  .d-md-block {
    display: block !important; }

  .d-md-table {
    display: table !important; }

  .d-md-table-row {
    display: table-row !important; }

  .d-md-table-cell {
    display: table-cell !important; }

  .d-md-flex {
    display: -webkit-flex !important;
    display: flex !important; }

  .d-md-inline-flex {
    display: -webkit-inline-flex !important;
    display: inline-flex !important; } }
@media (min-width: 1080px) {
  .d-lg-none {
    display: none !important; }

  .d-lg-inline {
    display: inline !important; }

  .d-lg-inline-block {
    display: inline-block !important; }

  .d-lg-block {
    display: block !important; }

  .d-lg-table {
    display: table !important; }

  .d-lg-table-row {
    display: table-row !important; }

  .d-lg-table-cell {
    display: table-cell !important; }

  .d-lg-flex {
    display: -webkit-flex !important;
    display: flex !important; }

  .d-lg-inline-flex {
    display: -webkit-inline-flex !important;
    display: inline-flex !important; } }
@media (min-width: 1160px) {
  .d-xl-none {
    display: none !important; }

  .d-xl-inline {
    display: inline !important; }

  .d-xl-inline-block {
    display: inline-block !important; }

  .d-xl-block {
    display: block !important; }

  .d-xl-table {
    display: table !important; }

  .d-xl-table-row {
    display: table-row !important; }

  .d-xl-table-cell {
    display: table-cell !important; }

  .d-xl-flex {
    display: -webkit-flex !important;
    display: flex !important; }

  .d-xl-inline-flex {
    display: -webkit-inline-flex !important;
    display: inline-flex !important; } }
@media print {
  .d-print-none {
    display: none !important; }

  .d-print-inline {
    display: inline !important; }

  .d-print-inline-block {
    display: inline-block !important; }

  .d-print-block {
    display: block !important; }

  .d-print-table {
    display: table !important; }

  .d-print-table-row {
    display: table-row !important; }

  .d-print-table-cell {
    display: table-cell !important; }

  .d-print-flex {
    display: -webkit-flex !important;
    display: flex !important; }

  .d-print-inline-flex {
    display: -webkit-inline-flex !important;
    display: inline-flex !important; } }
.flex-row {
  -webkit-flex-direction: row !important;
          flex-direction: row !important; }

.flex-column {
  -webkit-flex-direction: column !important;
          flex-direction: column !important; }

.flex-row-reverse {
  -webkit-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important; }

.flex-column-reverse {
  -webkit-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important; }

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important; }

.justify-content-start {
  -webkit-justify-content: flex-start !important;
          justify-content: flex-start !important; }

.justify-content-end {
  -webkit-justify-content: flex-end !important;
          justify-content: flex-end !important; }

.justify-content-center {
  -webkit-justify-content: center !important;
          justify-content: center !important; }

.justify-content-between {
  -webkit-justify-content: space-between !important;
          justify-content: space-between !important; }

.justify-content-around {
  -webkit-justify-content: space-around !important;
          justify-content: space-around !important; }

.align-items-start {
  -webkit-align-items: flex-start !important;
          align-items: flex-start !important; }

.align-items-end {
  -webkit-align-items: flex-end !important;
          align-items: flex-end !important; }

.align-items-center {
  -webkit-align-items: center !important;
          align-items: center !important; }

.align-items-baseline {
  -webkit-align-items: baseline !important;
          align-items: baseline !important; }

.align-items-stretch {
  -webkit-align-items: stretch !important;
          align-items: stretch !important; }

.align-content-start {
  -webkit-align-content: flex-start !important;
          align-content: flex-start !important; }

.align-content-end {
  -webkit-align-content: flex-end !important;
          align-content: flex-end !important; }

.align-content-center {
  -webkit-align-content: center !important;
          align-content: center !important; }

.align-content-between {
  -webkit-align-content: space-between !important;
          align-content: space-between !important; }

.align-content-around {
  -webkit-align-content: space-around !important;
          align-content: space-around !important; }

.align-content-stretch {
  -webkit-align-content: stretch !important;
          align-content: stretch !important; }

.align-self-auto {
  -webkit-align-self: auto !important;
          align-self: auto !important; }

.align-self-start {
  -webkit-align-self: flex-start !important;
          align-self: flex-start !important; }

.align-self-end {
  -webkit-align-self: flex-end !important;
          align-self: flex-end !important; }

.align-self-center {
  -webkit-align-self: center !important;
          align-self: center !important; }

.align-self-baseline {
  -webkit-align-self: baseline !important;
          align-self: baseline !important; }

.align-self-stretch {
  -webkit-align-self: stretch !important;
          align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-flex-direction: row !important;
            flex-direction: row !important; }

  .flex-sm-column {
    -webkit-flex-direction: column !important;
            flex-direction: column !important; }

  .flex-sm-row-reverse {
    -webkit-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }

  .flex-sm-column-reverse {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }

  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important; }

  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important; }

  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important; }

  .justify-content-sm-start {
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important; }

  .justify-content-sm-end {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important; }

  .justify-content-sm-center {
    -webkit-justify-content: center !important;
            justify-content: center !important; }

  .justify-content-sm-between {
    -webkit-justify-content: space-between !important;
            justify-content: space-between !important; }

  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
            justify-content: space-around !important; }

  .align-items-sm-start {
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important; }

  .align-items-sm-end {
    -webkit-align-items: flex-end !important;
            align-items: flex-end !important; }

  .align-items-sm-center {
    -webkit-align-items: center !important;
            align-items: center !important; }

  .align-items-sm-baseline {
    -webkit-align-items: baseline !important;
            align-items: baseline !important; }

  .align-items-sm-stretch {
    -webkit-align-items: stretch !important;
            align-items: stretch !important; }

  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
            align-content: flex-start !important; }

  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
            align-content: flex-end !important; }

  .align-content-sm-center {
    -webkit-align-content: center !important;
            align-content: center !important; }

  .align-content-sm-between {
    -webkit-align-content: space-between !important;
            align-content: space-between !important; }

  .align-content-sm-around {
    -webkit-align-content: space-around !important;
            align-content: space-around !important; }

  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
            align-content: stretch !important; }

  .align-self-sm-auto {
    -webkit-align-self: auto !important;
            align-self: auto !important; }

  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
            align-self: flex-start !important; }

  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
            align-self: flex-end !important; }

  .align-self-sm-center {
    -webkit-align-self: center !important;
            align-self: center !important; }

  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
            align-self: baseline !important; }

  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
            align-self: stretch !important; } }
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-flex-direction: row !important;
            flex-direction: row !important; }

  .flex-md-column {
    -webkit-flex-direction: column !important;
            flex-direction: column !important; }

  .flex-md-row-reverse {
    -webkit-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }

  .flex-md-column-reverse {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }

  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important; }

  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important; }

  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important; }

  .justify-content-md-start {
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important; }

  .justify-content-md-end {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important; }

  .justify-content-md-center {
    -webkit-justify-content: center !important;
            justify-content: center !important; }

  .justify-content-md-between {
    -webkit-justify-content: space-between !important;
            justify-content: space-between !important; }

  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
            justify-content: space-around !important; }

  .align-items-md-start {
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important; }

  .align-items-md-end {
    -webkit-align-items: flex-end !important;
            align-items: flex-end !important; }

  .align-items-md-center {
    -webkit-align-items: center !important;
            align-items: center !important; }

  .align-items-md-baseline {
    -webkit-align-items: baseline !important;
            align-items: baseline !important; }

  .align-items-md-stretch {
    -webkit-align-items: stretch !important;
            align-items: stretch !important; }

  .align-content-md-start {
    -webkit-align-content: flex-start !important;
            align-content: flex-start !important; }

  .align-content-md-end {
    -webkit-align-content: flex-end !important;
            align-content: flex-end !important; }

  .align-content-md-center {
    -webkit-align-content: center !important;
            align-content: center !important; }

  .align-content-md-between {
    -webkit-align-content: space-between !important;
            align-content: space-between !important; }

  .align-content-md-around {
    -webkit-align-content: space-around !important;
            align-content: space-around !important; }

  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
            align-content: stretch !important; }

  .align-self-md-auto {
    -webkit-align-self: auto !important;
            align-self: auto !important; }

  .align-self-md-start {
    -webkit-align-self: flex-start !important;
            align-self: flex-start !important; }

  .align-self-md-end {
    -webkit-align-self: flex-end !important;
            align-self: flex-end !important; }

  .align-self-md-center {
    -webkit-align-self: center !important;
            align-self: center !important; }

  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
            align-self: baseline !important; }

  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
            align-self: stretch !important; } }
@media (min-width: 1080px) {
  .flex-lg-row {
    -webkit-flex-direction: row !important;
            flex-direction: row !important; }

  .flex-lg-column {
    -webkit-flex-direction: column !important;
            flex-direction: column !important; }

  .flex-lg-row-reverse {
    -webkit-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }

  .flex-lg-column-reverse {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }

  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important; }

  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important; }

  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important; }

  .justify-content-lg-start {
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important; }

  .justify-content-lg-end {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important; }

  .justify-content-lg-center {
    -webkit-justify-content: center !important;
            justify-content: center !important; }

  .justify-content-lg-between {
    -webkit-justify-content: space-between !important;
            justify-content: space-between !important; }

  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
            justify-content: space-around !important; }

  .align-items-lg-start {
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important; }

  .align-items-lg-end {
    -webkit-align-items: flex-end !important;
            align-items: flex-end !important; }

  .align-items-lg-center {
    -webkit-align-items: center !important;
            align-items: center !important; }

  .align-items-lg-baseline {
    -webkit-align-items: baseline !important;
            align-items: baseline !important; }

  .align-items-lg-stretch {
    -webkit-align-items: stretch !important;
            align-items: stretch !important; }

  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
            align-content: flex-start !important; }

  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
            align-content: flex-end !important; }

  .align-content-lg-center {
    -webkit-align-content: center !important;
            align-content: center !important; }

  .align-content-lg-between {
    -webkit-align-content: space-between !important;
            align-content: space-between !important; }

  .align-content-lg-around {
    -webkit-align-content: space-around !important;
            align-content: space-around !important; }

  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
            align-content: stretch !important; }

  .align-self-lg-auto {
    -webkit-align-self: auto !important;
            align-self: auto !important; }

  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
            align-self: flex-start !important; }

  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
            align-self: flex-end !important; }

  .align-self-lg-center {
    -webkit-align-self: center !important;
            align-self: center !important; }

  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
            align-self: baseline !important; }

  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
            align-self: stretch !important; } }
@media (min-width: 1160px) {
  .flex-xl-row {
    -webkit-flex-direction: row !important;
            flex-direction: row !important; }

  .flex-xl-column {
    -webkit-flex-direction: column !important;
            flex-direction: column !important; }

  .flex-xl-row-reverse {
    -webkit-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }

  .flex-xl-column-reverse {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }

  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
            flex-wrap: wrap !important; }

  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important; }

  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important; }

  .justify-content-xl-start {
    -webkit-justify-content: flex-start !important;
            justify-content: flex-start !important; }

  .justify-content-xl-end {
    -webkit-justify-content: flex-end !important;
            justify-content: flex-end !important; }

  .justify-content-xl-center {
    -webkit-justify-content: center !important;
            justify-content: center !important; }

  .justify-content-xl-between {
    -webkit-justify-content: space-between !important;
            justify-content: space-between !important; }

  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
            justify-content: space-around !important; }

  .align-items-xl-start {
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important; }

  .align-items-xl-end {
    -webkit-align-items: flex-end !important;
            align-items: flex-end !important; }

  .align-items-xl-center {
    -webkit-align-items: center !important;
            align-items: center !important; }

  .align-items-xl-baseline {
    -webkit-align-items: baseline !important;
            align-items: baseline !important; }

  .align-items-xl-stretch {
    -webkit-align-items: stretch !important;
            align-items: stretch !important; }

  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
            align-content: flex-start !important; }

  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
            align-content: flex-end !important; }

  .align-content-xl-center {
    -webkit-align-content: center !important;
            align-content: center !important; }

  .align-content-xl-between {
    -webkit-align-content: space-between !important;
            align-content: space-between !important; }

  .align-content-xl-around {
    -webkit-align-content: space-around !important;
            align-content: space-around !important; }

  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
            align-content: stretch !important; }

  .align-self-xl-auto {
    -webkit-align-self: auto !important;
            align-self: auto !important; }

  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
            align-self: flex-start !important; }

  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
            align-self: flex-end !important; }

  .align-self-xl-center {
    -webkit-align-self: center !important;
            align-self: center !important; }

  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
            align-self: baseline !important; }

  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
            align-self: stretch !important; } }
.row:before,
.row:after {
  display: inline-block !important; }

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Light.woff2") format("woff2"), url("/fonts/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-LightItalic.woff2") format("woff2"), url("/fonts/Roboto-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic; }
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular.woff2") format("woff2"), url("/fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Medium.woff2") format("woff2"), url("/fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Bold.woff2") format("woff2"), url("/fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Black.woff2") format("woff2"), url("/fonts/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-BoldItalic.woff2") format("woff2"), url("/fonts/Roboto-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic; }
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  min-width: 1080px;
  height: 100%;
  min-height: 100vh;
  line-height: 1;
  overflow-y: scroll;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400; }

a {
  color: #25699d; }
  a:hover, a:active {
    color: #174f7b; }

.content-link {
  border-bottom: 1px solid rgba(37, 105, 157, 0.3);
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  transition: all 0.2s ease; }
  .content-link:hover, .content-link:active {
    border-bottom: 1px solid #0b3c62; }

.external:after {
  content: " ";
  background-image: url("/images/ui/external.svg");
  padding-right: 20px;
  background-position: 5px 0px;
  background-size: 15px 15px;
  background-repeat: no-repeat; }

ul,
ol {
  list-style: none; }

dt {
  font-weight: 700; }

dt,
dd {
  float: left; }

dt {
  width: 70px;
  clear: left; }
  dt:after {
    content: ":"; }

img {
  max-width: 100%; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

.spacer-top-0 {
  margin-top: 0; }

.spacer-bottom-0 {
  margin-bottom: 0; }

.spacer-right-0 {
  margin-right: 0; }

.spacer-left-0 {
  margin-left: 0; }

.spacer-top-1 {
  margin-top: 0.25rem; }

.spacer-bottom-1 {
  margin-bottom: 0.25rem; }

.spacer-right-1 {
  margin-right: 0.25rem; }

.spacer-left-1 {
  margin-left: 0.25rem; }

.spacer-top-2 {
  margin-top: 0.5rem; }

.spacer-bottom-2 {
  margin-bottom: 0.5rem; }

.spacer-right-2 {
  margin-right: 0.5rem; }

.spacer-left-2 {
  margin-left: 0.5rem; }

.spacer-top-3 {
  margin-top: 1rem; }

.spacer-bottom-3 {
  margin-bottom: 1rem; }

.spacer-right-3 {
  margin-right: 1rem; }

.spacer-left-3 {
  margin-left: 1rem; }

.spacer-top-4 {
  margin-top: 1.5rem; }

.spacer-bottom-4 {
  margin-bottom: 1.5rem; }

.spacer-right-4 {
  margin-right: 1.5rem; }

.spacer-left-4 {
  margin-left: 1.5rem; }

.spacer-top-5 {
  margin-top: 3rem; }

.spacer-bottom-5 {
  margin-bottom: 3rem; }

.spacer-right-5 {
  margin-right: 3rem; }

.spacer-left-5 {
  margin-left: 3rem; }

.spacer-top-xxs {
  margin-top: 4px; }

.spacer-bottom-xxs {
  margin-bottom: 4px; }

.spacer-right-xxs {
  margin-right: 4px; }

.spacer-left-xxs {
  margin-left: 4px; }

.spacer-top-xs {
  margin-top: 8px; }

.spacer-bottom-xs {
  margin-bottom: 8px; }

.spacer-right-xs {
  margin-right: 8px; }

.spacer-left-xs {
  margin-left: 8px; }

.spacer-top-s {
  margin-top: 16px; }

.spacer-bottom-s {
  margin-bottom: 16px; }

.spacer-right-s {
  margin-right: 16px; }

.spacer-left-s {
  margin-left: 16px; }

.spacer-top-m {
  margin-top: 24px; }

.spacer-bottom-m {
  margin-bottom: 24px; }

.spacer-right-m {
  margin-right: 24px; }

.spacer-left-m {
  margin-left: 24px; }

.spacer-top-l {
  margin-top: 32px; }

.spacer-bottom-l {
  margin-bottom: 32px; }

.spacer-right-l {
  margin-right: 32px; }

.spacer-left-l {
  margin-left: 32px; }

.spacer-top-xl {
  margin-top: 40px; }

.spacer-bottom-xl {
  margin-bottom: 40px; }

.spacer-right-xl {
  margin-right: 40px; }

.spacer-left-xl {
  margin-left: 40px; }

.spacer-top-xxl {
  margin-top: 48px; }

.spacer-bottom-xxl {
  margin-bottom: 48px; }

.spacer-right-xxl {
  margin-right: 48px; }

.spacer-left-xxl {
  margin-left: 48px; }

.spacer-top-2l {
  margin-top: 64px; }

.spacer-bottom-2l {
  margin-bottom: 64px; }

.spacer-right-2l {
  margin-right: 64px; }

.spacer-left-2l {
  margin-left: 64px; }

.spacer-top-2xl {
  margin-top: 80px; }

.spacer-bottom-2xl {
  margin-bottom: 80px; }

.spacer-right-2xl {
  margin-right: 80px; }

.spacer-left-2xl {
  margin-left: 80px; }

.weight-light {
  font-weight: 300 !important; }

.weight-regular {
  font-weight: 400 !important; }

.weight-medium {
  font-weight: 500 !important; }

.weight-bold {
  font-weight: 700 !important; }

.weight-black {
  font-weight: 900 !important; }

.flex-center {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center; }

.flex-start {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: start;
          align-items: start; }

.flex-end {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: end;
          align-items: end; }

.page-wrapper {
  -webkit-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column; }

.page-container {
  width: 100%;
  min-width: 960px;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px; }

.display-flex-justify-center {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center; }

.display-flex-justify-evenly {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-evenly;
          justify-content: space-evenly; }

.display-flex-direction-column {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column; }

.display-flex-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap; }

.justify-space-around {
  -webkit-justify-content: space-around;
          justify-content: space-around; }

.justify-space-evenly {
  -webkit-justify-content: space-evenly;
          justify-content: space-evenly; }

.hero-icon {
  max-width: 350px; }

.max-width-550 {
  max-width: 550px; }

.margin-auto {
  margin: auto !important; }

.spacer-top-3xl {
  margin-top: 120px; }

.spacer-bottom-3xl {
  margin-bottom: 120px; }

@media only screen and (max-width: 980px) {
  .responsive-2-column {
    max-width: 100%;
    -webkit-flex: initial;
            flex: initial;
    margin: auto 40px; }

  .ide-block {
    margin-bottom: 24px; }

  .reset-display-responsive {
    display: initial; } }
@media only screen and (max-width: 1080px) {
  .is-responsive .spacer-left-l {
    margin-left: 0; }
  .is-responsive .spacer-block-xl-top,
  .is-responsive .spacer-block-top {
    margin-top: 32px; } }
body.lb-disable-scrolling {
  overflow: hidden; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/images/lightbox/loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/images/lightbox/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/images/lightbox/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  margin-top: 16px; }

.lb-data .lb-caption {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: white; }

.lb-data .lb-caption h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px; }

.lb-data .lb-caption p {
  margin-bottom: 8px; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-container .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  margin-top: -34px;
  background: url(/images/lightbox/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s; }

.lb-container .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

a[data-lightbox] figure:after {
  content: " ";
  background-color: rgba(7, 7, 6, 0.3);
  background-image: url("/images/ui/search-white.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  border-radius: 2px;
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: 12px;
  right: 6px;
  transition: all 0.2s ease; }

a[data-lightbox]:hover figure:after {
  background-color: #4c9bd6; }

a[data-lightbox] img {
  border-radius: 2px;
  box-shadow: 0 0 0 1px #e6e8ea;
  transition: all 0.2s ease; }
  a[data-lightbox] img.is-icon {
    border-radius: 0 !important;
    vertical-align: middle; }

a[data-lightbox]:hover img {
  box-shadow: 0 0 0 3px #4c9bd6; }

a.caption-integrated[data-lightbox] {
  display: block;
  border-radius: 4px;
  border-bottom: none;
  box-shadow: 0 0 0 1px #e6e8ea;
  transition: all 0.2s ease; }
  a.caption-integrated[data-lightbox]:hover {
    box-shadow: 0 0 0 3px #4c9bd6;
    border-bottom: none; }
    a.caption-integrated[data-lightbox]:hover img {
      box-shadow: none; }
  a.caption-integrated[data-lightbox] img {
    border-radius: 4px;
    box-shadow: none; }
  a.caption-integrated[data-lightbox] figcaption {
    border-top: 1px solid #e6e8ea;
    color: #070706;
    padding: 16px; }

.page-content {
  -webkit-flex: 1 0 auto;
          flex: 1 0 auto;
  line-height: 1.5;
  overflow: hidden; }

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

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.spacer-left-negative-s {
  margin-left: -16px !important; }

.pre-container {
  position: relative;
  width: 100%; }
  .pre-container pre,
  .pre-container .pre {
    font-family: "Fira Code", monospace;
    font-size: 9px;
    font-weight: 500;
    border: 1px solid #e6e8ea;
    background-color: #f9f9fb;
    color: #8a8c8f;
    padding: 8px;
    border-radius: 4px;
    text-align: left; }
  .pre-container .pre-icon {
    cursor: pointer;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    opacity: 0.6;
    transition: all 0.3s ease; }
    .pre-container .pre-icon:hover {
      opacity: 1;
      transition: all 0.3s ease; }

@media only screen and (max-width: 980px) {
  .text-center-sm {
    text-align: center !important; } }
.no-absolute {
  position: static !important;
  top: initial !important;
  right: initial !important;
  bottom: initial !important;
  left: initial !important; }

hr {
  height: 0;
  border-right: 0;
  border-left: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #cfd3d7; }

.styled {
  line-height: 1.5; }
  .styled h2 {
    line-height: 40px;
    font-size: 36px;
    font-weight: 400;
    overflow: hidden; }
    .styled h2 > strong {
      display: block;
      color: #4c9bd6; }
  .styled h3 {
    font-weight: 300;
    overflow: hidden;
    text-transform: uppercase; }
  .styled p {
    margin-top: 1em;
    overflow: hidden; }
  .styled pre {
    margin-top: 1em; }
  .styled ul,
  .styled ol {
    padding-left: 20px;
    overflow: hidden; }
  .styled li {
    position: relative;
    margin-top: 0.5em;
    padding-left: 15px;
    /* bullet point */ }
    .styled li:before {
      position: absolute;
      top: 0.45em;
      left: 0;
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 5px;
      background: #439ccd;
      content: ""; }
    .styled li > *:first-child {
      margin-top: 0; }
  .styled hr {
    height: 0;
    margin: 1.5em 0;
    border: none;
    border-top: 1px solid #e0e4e8;
    background: none; }
  .styled .image-left {
    float: left;
    max-width: 50%;
    margin-top: 0;
    margin-right: 50px; }

.new-styles {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  color: #070706;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400; }
  .new-styles h1,
  .new-styles .h1,
  .new-styles h2,
  .new-styles .h2,
  .new-styles h3,
  .new-styles .h3,
  .new-styles h4,
  .new-styles .h4,
  .new-styles h5,
  .new-styles .h5,
  .new-styles h6,
  .new-styles .h6 {
    font-weight: 700;
    text-transform: none; }
  .new-styles h1,
  .new-styles .h1 {
    font-size: 60px;
    line-height: 62px; }
  .new-styles h2,
  .new-styles .h2 {
    font-size: 44px;
    line-height: 42px; }
  .new-styles h3,
  .new-styles .h3 {
    font-size: 36px;
    line-height: 42px; }
  .new-styles h4,
  .new-styles .h4 {
    font-size: 32px;
    line-height: 36px; }
  .new-styles h5,
  .new-styles .h5 {
    font-size: 26px;
    line-height: 32px; }
  .new-styles h6,
  .new-styles .h6 {
    font-size: 21px;
    line-height: 26px; }
  .new-styles .text-highlight {
    font-size: 18px;
    line-height: 26px; }
  .new-styles .text-mention {
    font-size: 12px;
    line-height: 16px; }
  .new-styles .font-weight-900 {
    font-weight: 900 !important; }
  .new-styles a {
    text-decoration: none;
    color: #4c9bd6;
    border-bottom: 1px solid rgba(76, 155, 214, 0.3);
    transition-timing-function: ease;
    transition-duration: 0.2s;
    transition-property: border-color, color; }
    .new-styles a.no-underline {
      border-bottom-color: transparent; }
    .new-styles a:hover, .new-styles a:focus {
      border-bottom: 1px solid #25699d;
      color: #25699d; }
  .new-styles .img-link {
    border: 0; }
    .new-styles .img-link:hover {
      border: 0; }

/* row 1 */
.page-lead {
  margin: 0 auto !important;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  color: #262626;
  background-color: #f9f9fb;
  border-bottom: 1px solid #cfd3d7;
  padding-top: 30px;
  padding-bottom: 90px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-direction: column;
          flex-direction: column;
  /* row 1 title */ }
  .page-lead > * {
    -webkit-flex: 0;
            flex: 0;
    width: 850px; }
  .page-lead h2 {
    font-size: 35px;
    font-weight: 300;
    font-style: normal; }

/* row 3 */
.mini-page-lead {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  color: #262626;
  padding-top: 20px;
  padding-bottom: 25px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-direction: column;
          flex-direction: column;
  /* row 3 title */ }
  .mini-page-lead > * {
    -webkit-flex: 0;
            flex: 0;
    width: 850px; }
  .mini-page-lead h4 {
    font-size: 25px;
    font-weight: 300; }

.article-header, .article-header-large,
.left-header {
  margin-bottom: 20px;
  background-color: #f9f9fb;
  background-size: cover; }

.article-header, .article-header-large {
  padding: 30px 0px 50px; }

.left-header {
  padding: 48px 0; }
  .left-header p {
    margin-top: 8px;
    font-size: 21px;
    line-height: 32px;
    font-weight: 400; }

.article-header > .page-container, .article-header-large > .page-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center; }

.article-header-large {
  padding-bottom: 0; }
  .article-header-large .page-container {
    width: 960px;
    padding: 0; }
  .article-header-large .article-header-group {
    width: 100%;
    text-align: center; }
  .article-header-large .article-header-title {
    margin-top: 0;
    line-height: 77px; }
  .article-header-large .article-header-sub-title {
    font-weight: normal; }

.road-map-item {
  -webkit-flex-basis: 50%;
          flex-basis: 50%;
  padding-right: 30px;
  margin: 0 110px 0 110px; }
  .road-map-item h3 {
    font-size: 21px;
    font-weight: 700;
    color: #070706;
    text-transform: none; }
  .road-map-item h4 {
    font-size: 18px;
    font-weight: 400;
    color: #070706;
    text-transform: none;
    padding-bottom: 25px; }
  .road-map-item p {
    font-size: 16px;
    font-weight: 15px;
    color: #262626; }
  .road-map-item .padding-txt-left {
    padding-left: 30px; }

ul.languages {
  -webkit-column-count: 6;
          column-count: 6;
  -moz-column-count: 5;
  padding: 17px 0px 0px 0px; }
  ul.languages li {
    padding: 0;
    margin-bottom: 6px;
    margin-top: 0px; }
    ul.languages li:before {
      display: none; }
  ul.languages a.external:after {
    background-position: 6px 2px; }

.article-header-title {
  margin-top: 16px;
  font-size: 44px;
  line-height: 42px;
  font-weight: 700; }

.article-header-contact {
  text-align: center; }
  .article-header-contact > p {
    margin-bottom: 10px;
    color: #4c9bd6; }
  .article-header-contact > a {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    background-color: #b1eb41;
    color: #223e4e;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none; }
    .article-header-contact > a:hover, .article-header-contact > a:active {
      background-color: #91d311;
      color: #223e4e; }

.tooltip {
  position: absolute;
  top: 28px;
  text-align: center;
  overflow: visible;
  width: 200px;
  left: calc(50% - 100px);
  display: none;
  z-index: 4;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 100;
  color: #fff;
  background-color: #434447;
  border: 1px solid #434447;
  box-shadow: 0 0 5px 2px rgba(7, 7, 6, 0.1);
  border-radius: 3px;
  border-collapse: collapse; }
  .tooltip:after, .tooltip:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .tooltip:after {
    border-color: rgba(67, 68, 71, 0);
    border-bottom-color: #434447;
    border-width: 5px;
    margin-left: -5px; }
  .tooltip:before {
    border-color: rgba(67, 68, 71, 0);
    border-bottom-color: #434447;
    border-width: 6px;
    margin-left: -6px; }

.page-content.dark-background {
  background-color: #f9f9fb; }

.page-content.blue-background {
  background: linear-gradient(120deg, #25699d 40%, #3490cc 40%);
  color: #fff; }

.page-content.blue-background-small {
  background: linear-gradient(120deg, #25699d 25%, #3490cc 25%);
  color: #fff; }

.can-do,
.cannot-do {
  list-style-type: none; }
  .can-do > li,
  .cannot-do > li {
    padding-left: 32px;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 0 -2px; }
    .can-do > li:before,
    .cannot-do > li:before {
      display: none; }

.can-do > li {
  background-image: url("/images/ui/check.svg"); }

.cannot-do > li {
  background-image: url("/images/ui/cross.svg"); }

.download-tooltip {
  position: absolute;
  display: none;
  padding: 8px;
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
  background: #2d3032;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2; }

.download-tooltip::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: calc(50% - 5px);
  top: -5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #2d3032; }

.download-edition:hover .download-tooltip {
  display: block;
  margin-top: 10px;
  -webkit-animation: fadeInTooltipDownload 0.2s ease-in;
          animation: fadeInTooltipDownload 0.2s ease-in; }
@-webkit-keyframes fadeInTooltipDownload {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    margin-top: 0; }
  100% {
    display: block;
    opacity: 1;
    margin-top: 10px; } }
@keyframes fadeInTooltipDownload {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    margin-top: 0; }
  100% {
    display: block;
    opacity: 1;
    margin-top: 10px; } }
/****** tooltip **********/
.edition-info:hover .tooltip-show {
  display: block;
  margin-top: 10px;
  -webkit-animation: fadeInTooltipDownload 0.2s ease-in;
          animation: fadeInTooltipDownload 0.2s ease-in; }
@keyframes fadeInTooltipDownload {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    margin-top: 0; }
  100% {
    display: block;
    opacity: 1;
    margin-top: 10px; } }
.edition-info {
  position: relative;
  display: inline-block;
  text-indent: 0;
  margin-left: 8px; }
  .edition-info svg {
    width: 14px;
    height: 13px; }
    .edition-info svg path {
      fill: #fff; }
    .edition-info svg:focus, .edition-info svg:hover {
      outline: none; }
      .edition-info svg:focus + .tooltip, .edition-info svg:hover + .tooltip {
        display: block; }
  .edition-info .tooltip {
    position: absolute;
    top: 26px;
    width: 200px;
    left: -93px;
    display: none;
    z-index: 4;
    padding: 5px 11px;
    font-size: 12px;
    color: #fff;
    background-color: #434447;
    border: 1px solid #434447;
    box-shadow: 0 0 5px 2px rgba(7, 7, 6, 0.1);
    border-radius: 3px;
    border-collapse: collapse; }
    .edition-info .tooltip:after, .edition-info .tooltip:before {
      bottom: 100%;
      left: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none; }
    .edition-info .tooltip:after {
      border-color: rgba(67, 68, 71, 0);
      border-bottom-color: #434447;
      border-width: 5px;
      margin-left: -5px; }
    .edition-info .tooltip:before {
      border-color: rgba(67, 68, 71, 0);
      border-bottom-color: #434447;
      border-width: 6px;
      margin-left: -6px; }

/***************************************************/
/****   full text page   ********/
.fulltext-page > div > h2 {
  font-size: 21px;
  line-height: 26px;
  font-weight: 700; }

.fulltext-page {
  padding-bottom: 40px; }

.fulltext-page ul,
.fulltext-page ol {
  list-style-type: disc;
  margin-left: 20px; }

a.policy--link {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
  a.policy--link:hover {
    color: #fff;
    border-bottom: 1px solid #fff; }

/***************************************************/
/****   Centralize Quality Page Style   ********/
.centralize_quality .header--label {
  text-align: center; }
  .centralize_quality .header--label span {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
            align-items: center;
    margin-left: 8px;
    padding-right: 20px; }

.centralize_quality .feature-header {
  margin-top: 60px;
  margin-bottom: 40px; }

.centralize_quality .feature-header h1 {
  text-align: center; }

.centralize_quality .feature-header h1 > span:last-child::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 32px;
  width: 80%;
  height: 33px;
  opacity: 0.5;
  background-color: #b9ddf8;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%; }

.quality-gate-container {
  text-align: center;
  margin-bottom: 24px; }

.quality-gate-releasability {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 16px;
  -webkit-align-items: start;
          align-items: start; }
  .quality-gate-releasability > div {
    margin-left: 16px; }

.quality-gate-status--container {
  margin-top: 96px; }
  .quality-gate-status--container .quality-gate-status {
    margin-top: 32px;
    margin-bottom: 120px; }
    .quality-gate-status--container .quality-gate-status > div > p {
      text-align: left;
      padding-left: 0;
      margin-top: 16px;
      margin-bottom: 16px; }
    .quality-gate-status--container .quality-gate-status > div > h6 > img {
      position: relative;
      top: 8px;
      left: 8px; }
    .quality-gate-status--container .quality-gate-status > div > p.mention {
      font-size: 12px;
      font-style: italic;
      text-transform: initial;
      margin: 0; }

.data-container--wrapper > div > img {
  height: 84px; }
.data-container--wrapper > div > a {
  font-size: 12px;
  font-weight: bold; }

.data-container > h5 {
  margin-bottom: 24px; }
.data-container > p {
  margin-bottom: 48px; }

.quality-gate-language--container {
  margin-top: 96px; }
  .quality-gate-language--container > div > h3 {
    margin-bottom: 16px; }
  .quality-gate-language--container > div > p {
    margin-bottom: 16px; }
  .quality-gate-language--container .intro-text {
    margin: auto; }

.quality-gate-language--container.index-page-languages .row {
  margin-top: 40px; }

.quality-gate-c-edition--container .edition-tag {
  font-weight: bold;
  text-transform: uppercase; }
.quality-gate-c-edition--container .feature-item {
  padding-top: 160px; }

.quality-gate-ship-together--container .feature-item {
  padding-bottom: 120px; }

.quality-gate-alm--container a.caption-integrated[data-lightbox] figcaption {
  background: #fff; }
.quality-gate-alm--container a {
  text-decoration: none; }
.quality-gate-alm--container .text-highlight {
  font-style: normal;
  margin-left: 8px; }
.quality-gate-alm--container em {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center; }
.quality-gate-alm--container .quality-gate-alm {
  width: 40px;
  height: 40px; }
.quality-gate-alm--container figure {
  line-height: 0; }
.quality-gate-alm--container .auxiliar-link {
  position: absolute;
  bottom: -40px;
  width: calc(100% - 16px);
  z-index: 1;
  text-align: center; }

.quality-gate-failed--icon {
  width: 100px;
  height: 34px; }

.quality-gate-failed--wrapper {
  margin-top: 40px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center; }
  .quality-gate-failed--wrapper > h6 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center; }
    .quality-gate-failed--wrapper > h6 > img {
      margin-left: 16px; }
  .quality-gate-failed--wrapper > img {
    min-width: 650px; }

.quality-gate-team-success--wrapper {
  margin: 40px 0 80px; }

.quality-gate-delivery-inbox--container .pdf-icon {
  height: 60px;
  width: 50px;
  margin-top: 16px; }

.quality-gate-alm--wrapper {
  margin-top: 80px; }

/***************************************************/
/****   Elevate your game Page Style   ********/
.elevate-your-game .header--label {
  text-align: center; }
  .elevate-your-game .header--label span {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
            align-items: center;
    margin-left: 8px;
    padding-right: 20px; }

.elevate-your-game .feature-header {
  margin-top: 60px;
  margin-bottom: 40px; }

.elevate-your-game .subtitle {
  padding: 0 12px 0 12px;
  text-align: center; }

.elevate-your-game .feature-header h1 {
  text-align: center; }

.elevate-your-game .feature-header h1 > span:last-child::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 100px;
  width: 60%;
  height: 33px;
  opacity: 0.5;
  background-color: #b9ddf8;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%; }

.elevate-your-game .feature-item .rounded-image {
  box-shadow: none;
  border-radius: 0;
  max-width: 130%;
  position: relative;
  right: 80px;
  bottom: 40px; }

.elevate-your-game .feature-item {
  padding-top: 50px; }

.elevate-your-game .teammate--container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  margin-left: 32px; }

.ide-icon {
  width: 50%; }

.ide-icon--small {
  width: 30%; }

.elevate-your-game .elevate-game--container h2 {
  margin-bottom: 8px; }
.elevate-your-game .elevate-game--container p {
  margin-bottom: 32px; }

.elevate-your-game .teamate-container {
  margin-top: 80px;
  margin-bottom: 130px; }

.elevate-your-game .index-page-languages h3 {
  margin-bottom: 8px; }

.elevate-your-game .language--container {
  text-align: center; }

.elevate-your-game .sonarlint-logo {
  width: 50%; }

.elevate-your-game .index-page-languages {
  margin-bottom: 144px; }

/***************************************************/
/****   Multi Language Page Style   ********/
.multilanguage {
  padding: 0 0 90px;
  position: relative; }

.multilanguage .multilanguage--list-container {
  height: 100%; }
  .multilanguage .multilanguage--list-container > div {
    margin: auto;
    padding-top: 0;
    margin-left: 60px; }
    .multilanguage .multilanguage--list-container > div > a {
      margin-left: 9px;
      margin-bottom: 9px;
      padding: 0; }

@media only screen and (max-width: 980px) {
  .cppPage .multilanguage .multilanguage--list-container > div {
    margin-left: 10px; } }
.multilanguage .multilanguage--list-container.list-language > div > a {
  margin-left: 14px;
  margin-bottom: 14px;
  padding: 0; }

.multilanguage .button--container {
  position: absolute;
  right: 0; }

.multilanguage .header-language .button--container {
  margin-right: 0 !important; }

.multilanguage .rules-themes {
  background: #828282;
  color: white;
  position: absolute;
  z-index: 9;
  padding: 4px 8px;
  left: 50px;
  top: 20px;
  line-height: 1; }

.multilanguage .rules-themes.disable {
  display: none; }

.multilanguage .screenshots-legend--container > p {
  font-size: 16px;
  line-height: 21px;
  margin-left: 6px; }
.multilanguage .screenshots-legend--container > em {
  display: -webkit-inline-flex;
  display: inline-flex;
  margin-right: 16px; }
  .multilanguage .screenshots-legend--container > em > span {
    font-size: 12px;
    text-transform: capitalize; }
.multilanguage .screenshots-legend--container > em.edition-tag {
  position: absolute;
  right: 0;
  top: 18px;
  border: 1px solid #4c9bd6;
  color: #4c9bd6;
  padding: 4px;
  line-height: 1; }

.multilanguage .screenshot--icon {
  width: 21px;
  height: 21px;
  padding-top: 4px; }

.multilanguage .multilanguage--list-container.multilanguage-home {
  margin-top: 80px; }

.multilanguage .multilanguage--listItem {
  width: 130px;
  height: 130px;
  text-align: center;
  padding: 16px;
  color: #070706;
  border-radius: 5px;
  transition-timing-function: ease;
  transition-duration: 0.2s; }
  .multilanguage .multilanguage--listItem > img {
    height: 100%; }
  .multilanguage .multilanguage--listItem a {
    box-shadow: 0 10px 30px rgba(7, 7, 6, 0.2);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    border: 1px solid #cfd3d7;
    color: none; }

.cppPage .multilanguage .multilanguage--listItem,
.pythonPage .multilanguage .multilanguage--listItem {
  width: 80px;
  height: 80px;
  padding: 4px; }

.multilanguage .multilanguage-home--listItem {
  width: 105px;
  height: 105px;
  text-align: center;
  color: #070706;
  border-radius: 5px;
  padding: 6px;
  transition-timing-function: ease;
  transition-duration: 0.2s; }
  .multilanguage .multilanguage-home--listItem > img {
    height: 100%; }

.multilanguage .multilanguage-home > div > a {
  border: 1px solid #cfd3d7; }

.multilanguage.rules-explanation {
  padding: 60px 100px 100px; }

.multilanguage .rules-explanation--container {
  display: -webkit-flex;
  display: flex; }
  .multilanguage .rules-explanation--container > div {
    margin-top: 16px;
    width: 200px;
    margin-right: 32px;
    margin-left: 32px;
    margin: 25px auto; }
  .multilanguage .rules-explanation--container .connection-line {
    position: relative;
    margin-bottom: 24px; }
    .multilanguage .rules-explanation--container .connection-line > hr {
      position: absolute;
      width: 58px;
      left: 195px;
      top: 10px; }
    .multilanguage .rules-explanation--container .connection-line:after {
      right: 16px;
      content: " ";
      position: absolute;
      display: inline;
      top: 7px;
      width: 6px;
      height: 6px;
      left: 190px;
      border-width: 1px;
      border-style: solid;
      border-color: #4c9bd6;
      border-image: initial;
      border-radius: 3px; }
    .multilanguage .rules-explanation--container .connection-line > ul {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
              flex-direction: column;
      height: 100%; }
      .multilanguage .rules-explanation--container .connection-line > ul > li {
        margin: 20px 20px; }
        .multilanguage .rules-explanation--container .connection-line > ul > li.separation-height {
          -webkit-flex-grow: 1;
                  flex-grow: 1; }
        .multilanguage .rules-explanation--container .connection-line > ul > li > hr {
          width: 58px;
          position: absolute;
          left: -60px;
          margin-top: 10px; }
  .multilanguage .rules-explanation--container .connection-line-right {
    position: relative; }
    .multilanguage .rules-explanation--container .connection-line-right > ul {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
              flex-direction: column;
      height: 100%; }
      .multilanguage .rules-explanation--container .connection-line-right > ul > li {
        margin: 10px 20px;
        position: relative;
        line-height: 1;
        display: inline-block; }
        .multilanguage .rules-explanation--container .connection-line-right > ul > li.separation-height {
          -webkit-flex-grow: 1;
                  flex-grow: 1; }
        .multilanguage .rules-explanation--container .connection-line-right > ul > li > hr {
          width: 58px;
          position: absolute;
          left: -70px;
          top: 3px;
          margin-top: 10px; }
        .multilanguage .rules-explanation--container .connection-line-right > ul > li:before {
          right: 16px;
          content: " ";
          position: relative;
          display: inherit;
          top: 10px;
          width: 6px;
          height: 6px;
          left: -12px;
          border-width: 1px;
          border-style: solid;
          border-color: #4c9bd6;
          border-image: initial;
          border-radius: 5px; }
  .multilanguage .rules-explanation--container > img {
    width: 50%; }
  .multilanguage .rules-explanation--container .rules-explanation--item {
    display: inline-block; }
    .multilanguage .rules-explanation--container .rules-explanation--item > p {
      display: inline-block;
      margin-left: 20px; }
    .multilanguage .rules-explanation--container .rules-explanation--item > h3 {
      font-size: 16px;
      font-weight: 600;
      line-height: 1;
      display: inline; }
    .multilanguage .rules-explanation--container .rules-explanation--item svg {
      width: 16px;
      height: 16px;
      display: inline-block;
      margin-top: 2px;
      fill: #434447; }

.multilanguage .logo-header {
  max-width: 100%;
  height: 100px;
  padding: 6px; }

.multilanguage .rounded-image {
  box-shadow: 0 16px 56px rgba(7, 7, 6, 0.15);
  border-radius: 6px; }

.multilanguage .header-language > div {
  margin-right: 26px; }
  .multilanguage .header-language > div > h1 {
    margin-top: 8px; }
  .multilanguage .header-language > div > a {
    margin-top: 8px; }

.multilanguage figcaption.screenshots-legend--container {
  position: relative; }

/* Responsive for Multilanguages pages */
@media only screen and (max-width: 980px) {
  .is-responsive .yourBuildBlock {
    margin-left: 0 !important; } }
@media only screen and (max-width: 767px) {
  .is-responsive .multilanguage .button--container {
    position: relative;
    right: initial;
    margin-top: 16px; }
  .is-responsive .multilanguage .header-language > div {
    width: 100%;
    text-align: center; } }
@media only screen and (max-width: 480px) {
  .is-responsive .multilanguage .header-language .button--container,
  .is-responsive .multilanguage .header-language .btn {
    width: 100%;
    text-align: center; } }
/***************************************************/
/********* React animated slider style ***************/
.slider {
  position: relative;
  width: 100%;
  min-width: 770px;
  height: 100%;
  min-height: 370px;
  overflow: hidden;
  left: -40px; }

@media only screen and (max-width: 1230px) {
  .slider {
    min-width: 650px; } }
.slider a.previousButton,
.slider a.nextButton {
  font-size: 22px;
  line-height: 0;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all 2s linear;
  z-index: 1;
  color: #333;
  text-decoration: none;
  border-bottom: none;
  /* prevent jump effect when scaling */ }
  .slider a.previousButton > svg,
  .slider a.nextButton > svg {
    width: 48px;
    height: 48px; }
    .slider a.previousButton > svg > polygon,
    .slider a.nextButton > svg > polygon {
      display: none; }

.slider a.nextButton > svg {
  background: url("/features/multi-languages/index/right_arrow.svg"); }

.slider a.previousButton > svg {
  background: url("/features/multi-languages/index/left_arrow.svg"); }

.slider a.previousButton:not(.disabled):hover,
.slider a.nextButton:not(.disabled):hover {
  cursor: pointer; }

.slider a.previousButton {
  left: -10px; }

.slider a.nextButton {
  right: -10px; }

.slider a.previousButton.disabled > svg,
.slider a.nextButton.disabled > svg {
  display: none; }

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden; }

.slide.hidden {
  visibility: hidden; }

.slide.previous {
  left: -100%; }

.slide.current {
  left: 0; }

.slide.next {
  left: 100%; }

.slide.animateIn,
.slide.animateOut {
  transition: all 1.5s ease; }

.slide.animateIn.previous,
.slide.animateIn.next {
  left: 0;
  visibility: visible; }

.slide.animateOut.previous {
  left: 100%; }

.slide.animateOut.next {
  left: -100%; }

/***************************************************/
#carousel-screenshot .feature-item {
  padding: 0; }

#carousel-screenshot a.caption-integrated[data-lightbox] {
  margin: 10px 30px 10px;
  transition: none; }

#carousel-screenshot a[data-lightbox] img {
  transition: none; }

#carousel-screenshot a.caption-integrated > figure {
  height: 250px;
  overflow: hidden;
  margin-top: 0;
  border-radius: 4px; }

#carousel-screenshot polygon {
  fill: #bdbdbd; }

.multilanguage .language-details-info > div {
  margin-bottom: 24px; }
.multilanguage .language-details-info ul li {
  padding-bottom: 8px;
  padding-left: 16px;
  position: relative; }
  .multilanguage .language-details-info ul li::before {
    margin-left: 0;
    position: absolute;
    top: 0;
    left: 0; }

.multilanguage .list--container .bug {
  padding-right: 28px; }

.multilanguage.multilanguage--container {
  padding-bottom: 0;
  position: relative; }
  .multilanguage.multilanguage--container > .page-container > .feature-item {
    padding: 0; }
  .multilanguage.multilanguage--container > .page-container > div .feature-item {
    padding: 0; }

.multilanguage .feature-item .tab-selector.under li:hover {
  border-bottom: 4px solid #b9ddf8;
  border-top: none; }

.multilanguage .feature-item .tab-selector.under li.active,
.multilanguage .feature-item .tab-selector.under li:active {
  border-top: none;
  border-bottom: 4px solid #4c9bd6; }

.multilanguage .feature-item .tab-selector.under li {
  border-top: none;
  border-bottom: 2px solid #f9f9fb; }

.multilanguage--container .list--container > li {
  display: -webkit-flex;
  display: flex;
  padding: 11px !important; }
  .multilanguage--container .list--container > li > img {
    height: 40px;
    width: 40px; }
  .multilanguage--container .list--container > li > span {
    font-size: 16px;
    padding-top: 8px;
    padding-left: 8px; }

.multilanguage .description--container > p {
  margin-bottom: 32px;
  margin-right: 50px; }

.index-page-languages.list-language .col {
  height: 120px; }
  .index-page-languages.list-language .col > img {
    max-height: initial; }

.index-page-languages.list-language .language-details-link {
  width: 120px;
  height: 120px;
  transition: all 0.2s ease;
  border-bottom: 0;
  border-radius: 4px; }
  .index-page-languages.list-language .language-details-link:hover {
    box-shadow: 0 0 0 3px #4c9bd6;
    border-bottom: none; }

.multilanguage .header--label > span {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center; }

/************************************************
    PYTHON / C++ PAGE
************************************************/
.pythonPage .multilanguage .rules-themes,
.cppPage .multilanguage .rules-themes {
  left: 10px;
  top: 40px; }
.pythonPage .multilanguage .header-language .title span,
.cppPage .multilanguage .header-language .title span {
  font-weight: normal; }
.pythonPage .multilanguage .header-language .subtitle,
.cppPage .multilanguage .header-language .subtitle {
  font-weight: 500; }
.pythonPage .multilanguage .feature-item ul li::before,
.cppPage .multilanguage .feature-item ul li::before {
  content: ""; }
.pythonPage .multilanguage .feature-item figure,
.cppPage .multilanguage .feature-item figure {
  margin-top: 0; }
.pythonPage .multilanguage .feature-item .list--container li svg,
.pythonPage .multilanguage .feature-item .list--container li img,
.cppPage .multilanguage .feature-item .list--container li svg,
.cppPage .multilanguage .feature-item .list--container li img {
  width: 24px; }
.pythonPage .multilanguage .feature-item .language-details-info,
.cppPage .multilanguage .feature-item .language-details-info {
  margin-left: 24px; }
  .pythonPage .multilanguage .feature-item .language-details-info .checkList-container,
  .cppPage .multilanguage .feature-item .language-details-info .checkList-container {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 12px; }
    .pythonPage .multilanguage .feature-item .language-details-info .checkList-container img,
    .cppPage .multilanguage .feature-item .language-details-info .checkList-container img {
      width: 24px;
      height: 24px;
      margin-right: 8px; }
  .pythonPage .multilanguage .feature-item .language-details-info .title,
  .cppPage .multilanguage .feature-item .language-details-info .title {
    font-size: 21px; }
.pythonPage .multilanguage .feature-item a.user-case,
.cppPage .multilanguage .feature-item a.user-case {
  background: #fff; }
.pythonPage .multilanguage .feature-item .tab-selector li,
.cppPage .multilanguage .feature-item .tab-selector li {
  padding: 8px 16px; }
.pythonPage .multilanguage .focusBlock,
.cppPage .multilanguage .focusBlock {
  text-align: center;
  margin-bottom: 100px; }
  .pythonPage .multilanguage .focusBlock h2,
  .cppPage .multilanguage .focusBlock h2 {
    font-size: 32px; }
  .pythonPage .multilanguage .focusBlock .descriptions,
  .cppPage .multilanguage .focusBlock .descriptions {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center; }
    .pythonPage .multilanguage .focusBlock .descriptions span,
    .cppPage .multilanguage .focusBlock .descriptions span {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
              align-items: center; }
    .pythonPage .multilanguage .focusBlock .descriptions p,
    .cppPage .multilanguage .focusBlock .descriptions p {
      text-align: left;
      padding: 0 40px; }
      .pythonPage .multilanguage .focusBlock .descriptions p.border,
      .cppPage .multilanguage .focusBlock .descriptions p.border {
        border-right: 1px solid #cfd3d7; }
    .pythonPage .multilanguage .focusBlock .descriptions img,
    .cppPage .multilanguage .focusBlock .descriptions img {
      width: 36px;
      height: 24px;
      margin-left: 8px; }
    .pythonPage .multilanguage .focusBlock .descriptions span,
    .cppPage .multilanguage .focusBlock .descriptions span {
      font-size: 21px; }
.pythonPage .multilanguage .securityBlock,
.pythonPage .multilanguage .buildBlock,
.cppPage .multilanguage .securityBlock,
.cppPage .multilanguage .buildBlock {
  text-align: center;
  margin-bottom: 96px; }
  .pythonPage .multilanguage .securityBlock h2,
  .pythonPage .multilanguage .buildBlock h2,
  .cppPage .multilanguage .securityBlock h2,
  .cppPage .multilanguage .buildBlock h2 {
    font-size: 32px; }
  .pythonPage .multilanguage .securityBlock .hotspotBlock,
  .pythonPage .multilanguage .securityBlock .vulnerabilityBlock,
  .pythonPage .multilanguage .securityBlock .yourStandardBlock,
  .pythonPage .multilanguage .securityBlock .yourBuildBlock,
  .pythonPage .multilanguage .securityBlock .incrementalAnalysisBlock,
  .pythonPage .multilanguage .securityBlock .multiThreadedAnalysisBlock,
  .pythonPage .multilanguage .buildBlock .hotspotBlock,
  .pythonPage .multilanguage .buildBlock .vulnerabilityBlock,
  .pythonPage .multilanguage .buildBlock .yourStandardBlock,
  .pythonPage .multilanguage .buildBlock .yourBuildBlock,
  .pythonPage .multilanguage .buildBlock .incrementalAnalysisBlock,
  .pythonPage .multilanguage .buildBlock .multiThreadedAnalysisBlock,
  .cppPage .multilanguage .securityBlock .hotspotBlock,
  .cppPage .multilanguage .securityBlock .vulnerabilityBlock,
  .cppPage .multilanguage .securityBlock .yourStandardBlock,
  .cppPage .multilanguage .securityBlock .yourBuildBlock,
  .cppPage .multilanguage .securityBlock .incrementalAnalysisBlock,
  .cppPage .multilanguage .securityBlock .multiThreadedAnalysisBlock,
  .cppPage .multilanguage .buildBlock .hotspotBlock,
  .cppPage .multilanguage .buildBlock .vulnerabilityBlock,
  .cppPage .multilanguage .buildBlock .yourStandardBlock,
  .cppPage .multilanguage .buildBlock .yourBuildBlock,
  .cppPage .multilanguage .buildBlock .incrementalAnalysisBlock,
  .cppPage .multilanguage .buildBlock .multiThreadedAnalysisBlock {
    text-align: left; }
    .pythonPage .multilanguage .securityBlock .hotspotBlock hr,
    .pythonPage .multilanguage .securityBlock .vulnerabilityBlock hr,
    .pythonPage .multilanguage .securityBlock .yourStandardBlock hr,
    .pythonPage .multilanguage .securityBlock .yourBuildBlock hr,
    .pythonPage .multilanguage .securityBlock .incrementalAnalysisBlock hr,
    .pythonPage .multilanguage .securityBlock .multiThreadedAnalysisBlock hr,
    .pythonPage .multilanguage .buildBlock .hotspotBlock hr,
    .pythonPage .multilanguage .buildBlock .vulnerabilityBlock hr,
    .pythonPage .multilanguage .buildBlock .yourStandardBlock hr,
    .pythonPage .multilanguage .buildBlock .yourBuildBlock hr,
    .pythonPage .multilanguage .buildBlock .incrementalAnalysisBlock hr,
    .pythonPage .multilanguage .buildBlock .multiThreadedAnalysisBlock hr,
    .cppPage .multilanguage .securityBlock .hotspotBlock hr,
    .cppPage .multilanguage .securityBlock .vulnerabilityBlock hr,
    .cppPage .multilanguage .securityBlock .yourStandardBlock hr,
    .cppPage .multilanguage .securityBlock .yourBuildBlock hr,
    .cppPage .multilanguage .securityBlock .incrementalAnalysisBlock hr,
    .cppPage .multilanguage .securityBlock .multiThreadedAnalysisBlock hr,
    .cppPage .multilanguage .buildBlock .hotspotBlock hr,
    .cppPage .multilanguage .buildBlock .vulnerabilityBlock hr,
    .cppPage .multilanguage .buildBlock .yourStandardBlock hr,
    .cppPage .multilanguage .buildBlock .yourBuildBlock hr,
    .cppPage .multilanguage .buildBlock .incrementalAnalysisBlock hr,
    .cppPage .multilanguage .buildBlock .multiThreadedAnalysisBlock hr {
      margin: 32px 0 24px;
      border-top: 1px solid #cfd3d7;
      border-bottom: 0; }
    .pythonPage .multilanguage .securityBlock .hotspotBlock .list-container,
    .pythonPage .multilanguage .securityBlock .vulnerabilityBlock .list-container,
    .pythonPage .multilanguage .securityBlock .yourStandardBlock .list-container,
    .pythonPage .multilanguage .securityBlock .yourBuildBlock .list-container,
    .pythonPage .multilanguage .securityBlock .incrementalAnalysisBlock .list-container,
    .pythonPage .multilanguage .securityBlock .multiThreadedAnalysisBlock .list-container,
    .pythonPage .multilanguage .buildBlock .hotspotBlock .list-container,
    .pythonPage .multilanguage .buildBlock .vulnerabilityBlock .list-container,
    .pythonPage .multilanguage .buildBlock .yourStandardBlock .list-container,
    .pythonPage .multilanguage .buildBlock .yourBuildBlock .list-container,
    .pythonPage .multilanguage .buildBlock .incrementalAnalysisBlock .list-container,
    .pythonPage .multilanguage .buildBlock .multiThreadedAnalysisBlock .list-container,
    .cppPage .multilanguage .securityBlock .hotspotBlock .list-container,
    .cppPage .multilanguage .securityBlock .vulnerabilityBlock .list-container,
    .cppPage .multilanguage .securityBlock .yourStandardBlock .list-container,
    .cppPage .multilanguage .securityBlock .yourBuildBlock .list-container,
    .cppPage .multilanguage .securityBlock .incrementalAnalysisBlock .list-container,
    .cppPage .multilanguage .securityBlock .multiThreadedAnalysisBlock .list-container,
    .cppPage .multilanguage .buildBlock .hotspotBlock .list-container,
    .cppPage .multilanguage .buildBlock .vulnerabilityBlock .list-container,
    .cppPage .multilanguage .buildBlock .yourStandardBlock .list-container,
    .cppPage .multilanguage .buildBlock .yourBuildBlock .list-container,
    .cppPage .multilanguage .buildBlock .incrementalAnalysisBlock .list-container,
    .cppPage .multilanguage .buildBlock .multiThreadedAnalysisBlock .list-container {
      display: -webkit-flex;
      display: flex;
      margin-bottom: 8px; }
      .pythonPage .multilanguage .securityBlock .hotspotBlock .list-container img,
      .pythonPage .multilanguage .securityBlock .vulnerabilityBlock .list-container img,
      .pythonPage .multilanguage .securityBlock .yourStandardBlock .list-container img,
      .pythonPage .multilanguage .securityBlock .yourBuildBlock .list-container img,
      .pythonPage .multilanguage .securityBlock .incrementalAnalysisBlock .list-container img,
      .pythonPage .multilanguage .securityBlock .multiThreadedAnalysisBlock .list-container img,
      .pythonPage .multilanguage .buildBlock .hotspotBlock .list-container img,
      .pythonPage .multilanguage .buildBlock .vulnerabilityBlock .list-container img,
      .pythonPage .multilanguage .buildBlock .yourStandardBlock .list-container img,
      .pythonPage .multilanguage .buildBlock .yourBuildBlock .list-container img,
      .pythonPage .multilanguage .buildBlock .incrementalAnalysisBlock .list-container img,
      .pythonPage .multilanguage .buildBlock .multiThreadedAnalysisBlock .list-container img,
      .cppPage .multilanguage .securityBlock .hotspotBlock .list-container img,
      .cppPage .multilanguage .securityBlock .vulnerabilityBlock .list-container img,
      .cppPage .multilanguage .securityBlock .yourStandardBlock .list-container img,
      .cppPage .multilanguage .securityBlock .yourBuildBlock .list-container img,
      .cppPage .multilanguage .securityBlock .incrementalAnalysisBlock .list-container img,
      .cppPage .multilanguage .securityBlock .multiThreadedAnalysisBlock .list-container img,
      .cppPage .multilanguage .buildBlock .hotspotBlock .list-container img,
      .cppPage .multilanguage .buildBlock .vulnerabilityBlock .list-container img,
      .cppPage .multilanguage .buildBlock .yourStandardBlock .list-container img,
      .cppPage .multilanguage .buildBlock .yourBuildBlock .list-container img,
      .cppPage .multilanguage .buildBlock .incrementalAnalysisBlock .list-container img,
      .cppPage .multilanguage .buildBlock .multiThreadedAnalysisBlock .list-container img {
        width: 24px;
        height: 24px; }
  .pythonPage .multilanguage .securityBlock .subtitle,
  .pythonPage .multilanguage .buildBlock .subtitle,
  .cppPage .multilanguage .securityBlock .subtitle,
  .cppPage .multilanguage .buildBlock .subtitle {
    font-size: 18px; }
.pythonPage .supportBlock,
.cppPage .supportBlock {
  padding-top: 60px; }
  .pythonPage .supportBlock .list-container,
  .cppPage .supportBlock .list-container {
    display: -webkit-flex;
    display: flex; }
    .pythonPage .supportBlock .list-container img,
    .cppPage .supportBlock .list-container img {
      width: 24px;
      height: 24px; }
  .pythonPage .supportBlock .listSupport,
  .cppPage .supportBlock .listSupport {
    -webkit-justify-content: center;
            justify-content: center; }
    .pythonPage .supportBlock .listSupport > div,
    .cppPage .supportBlock .listSupport > div {
      margin: 0 40px;
      text-align: left; }
      .pythonPage .supportBlock .listSupport > div span,
      .cppPage .supportBlock .listSupport > div span {
        font-size: 21px; }
  .pythonPage .supportBlock .languageBlock,
  .cppPage .supportBlock .languageBlock {
    margin-top: 96px; }
  .pythonPage .supportBlock .subtitle,
  .cppPage .supportBlock .subtitle {
    font-size: 18px; }
.pythonPage a[data-lightbox]:hover img,
.cppPage a[data-lightbox]:hover img {
  box-shadow: none; }
.pythonPage a[data-lightbox] figure:after,
.cppPage a[data-lightbox] figure:after {
  content: " ";
  background-color: rgba(7, 7, 6, 0.3);
  background-image: url("/images/ui/search-white.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  border-radius: 2px;
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: 12px;
  right: 6px;
  transition: all 0.2s ease; }
.pythonPage a[data-lightbox] figure:after,
.cppPage a[data-lightbox] figure:after {
  content: " ";
  background-color: rgba(76, 155, 214, 0.6);
  background-image: url("/images/ui/search-white.svg");
  background-size: 4px;
  background-repeat: no-repeat;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  position: absolute;
  width: 100%;
  height: calc(100% - 5px);
  right: 0;
  top: 0;
  opacity: 0;
  bottom: initial;
  z-index: 9;
  background-position: center;
  transition: all 0.2s ease; }
.pythonPage a[data-lightbox]:hover figure:after,
.cppPage a[data-lightbox]:hover figure:after {
  background-size: 44px;
  opacity: 1;
  bottom: initial; }

@media only screen and (max-width: 1079px) {
  .cppPage .mini-slider a[data-lightbox] img {
    box-shadow: none; }
  .cppPage .mini-slider figure {
    text-align: center; } }
/**********    C++ Page Part    *****************/
.cppPage .multilanguage .supportBlock .languageBlock {
  margin-top: 0; }
.cppPage .multilanguage .supportBlock .buildBlock {
  margin-bottom: 80px; }
  .cppPage .multilanguage .supportBlock .buildBlock .feature-item {
    padding: 0; }
.cppPage .multilanguage .buildSystemBlock .listBuilder {
  text-align: center;
  margin-bottom: 80px; }
  .cppPage .multilanguage .buildSystemBlock .listBuilder img {
    margin: 0 50px; }
.cppPage .multilanguage .buildBlock .yourBuildBlock hr {
  margin: 12px 0; }

/************************************************/
/************************************************
    BEGIN 0.1 MINISLIDER
************************************************/
.mini-slider {
  position: relative;
  display: -webkit-flex !important;
  display: flex !important;
  margin-bottom: 100px; }
  .mini-slider.cpp {
    width: 788px;
    margin: -40px auto 0 auto; }
    .mini-slider.cpp .flex-control-nav {
      width: 100%; }
  .mini-slider .image {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px; }
  .mini-slider .details {
    padding: 10px 20px;
    margin-top: -5px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0 0 0 1px #e6e8ea;
    position: relative; }
    .mini-slider .details em.edition-tag {
      position: absolute;
      right: 16px;
      top: 18px;
      border: 1px solid #4c9bd6;
      padding: 4px;
      line-height: 1; }
      .mini-slider .details em.edition-tag span {
        color: #4c9bd6; }
    .mini-slider .details p {
      font-size: 14px;
      line-height: 24px; }
    .mini-slider .details p,
    .mini-slider .details span {
      color: #070706; }
    .mini-slider .details ul {
      margin-top: 8px;
      display: -webkit-flex;
      display: flex; }
      .mini-slider .details ul li {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
                flex-direction: row;
        margin-right: 16px; }
        .mini-slider .details ul li span {
          width: auto;
          font-style: italic;
          font-size: 12px;
          line-height: 20px; }
        .mini-slider .details ul li svg,
        .mini-slider .details ul li img {
          height: 20px;
          margin-right: 8px; }
          .mini-slider .details ul li svg path,
          .mini-slider .details ul li img path {
            fill: #464646 !important; }
  .mini-slider .flex-direction-nav {
    display: none; }
  .mini-slider .flex-control-paging li a {
    width: 11px;
    height: 11px;
    margin: 0 4px;
    background: transparent;
    border: 1px solid #a0a5a8;
    box-shadow: none;
    transition: all 0.2s ease; }
    .mini-slider .flex-control-paging li a:hover, .mini-slider .flex-control-paging li a.flex-active {
      background: #4c9bd6;
      border: 1px solid #4c9bd6;
      transition: all 0.2s ease; }

.checklist h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 300; }
.checklist ul li {
  padding-bottom: 16px;
  position: relative;
  padding-left: 34px; }
  .checklist ul li svg {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0; }

/************************************************
    END 0.1 MINISLIDER
************************************************/
/************** clean as you code ***************/
.ide-container > img {
  width: 11%;
  margin-right: 24px; }

.title--highlighting {
  color: #8a8c8f; }

.container-align--logos {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline; }
  .container-align--logos > span {
    position: relative;
    top: -18px;
    right: -8px; }
  .container-align--logos > .sonarlint--logo {
    width: 150px; }
  .container-align--logos > .sonarqube--logo {
    width: 200px; }

.align-image--container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end; }

.align--container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center; }

.white-background {
  background: #ffffff; }

.spacing--container {
  padding: 36px; }

.spacer--block {
  margin-bottom: 100px; }

.clear-padding {
  padding: 0 !important; }

.upperCase {
  text-transform: uppercase; }

.alm--container > img,
.alm--container > a img {
  width: 10%;
  margin-right: 16px;
  margin-top: 16px; }

.italic-text {
  font-style: italic; }

.positioning-right {
  position: relative;
  left: 50px; }

.block-with--radius {
  border-radius: 10px; }

.logos-sc-sq {
  width: 80%; }

.new-code-positioning-top {
  position: relative;
  bottom: 30px;
  z-index: 99; }

/***************************************************/
.header--block .header--label {
  text-align: center; }
  .header--block .header--label span {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
            align-items: center;
    margin-left: 8px;
    padding-right: 20px; }

.header--block .feature-header {
  margin-top: 100px;
  margin-bottom: 40px; }

.header--block .feature-header h1 {
  text-align: center; }

.header--block .feature-header h1 > span:last-child::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 32px;
  width: 80%;
  height: 33px;
  opacity: 0.5;
  background-color: #b9ddf8;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%; }

/*********** Github Enterprise User ***************/
.hero-image__size {
  width: 40%;
  margin: 0 auto 30px; }

.spacer-block-top {
  margin-top: 200px; }

.spacer-block-xl-top {
  margin-top: 100px; }

.images--container-with-text {
  display: -webkit-flex;
  display: flex; }
  .images--container-with-text > div {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-direction: column;
            flex-direction: column;
    position: relative;
    margin-right: 26px;
    width: 100%;
    text-align: center; }
    .images--container-with-text > div > img {
      width: 48px; }

.ci-engine--block > img {
  width: 12%;
  margin-right: 16px; }

.quality-gate--container {
  position: relative;
  top: -180px;
  height: 420px; }

.github-quality-gate--block {
  position: relative;
  top: 80px; }

.github-quality-gate-passed--block {
  position: relative;
  top: 150px; }

.overflow-visible {
  overflow: visible; }

.built-in--container {
  margin-top: 120px; }

.auto-issue--block {
  margin: 0 50px; }

.ci-cd-benefits--container {
  margin-top: 150px; }

.transparency--block,
.github-language--block {
  margin-top: 80px; }

a.white--link {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
  a.white--link:hover {
    color: #fff;
    border-bottom: 1px solid #fff; }

.line-height-h1 {
  line-height: 52px !important; }

.built-in--container > div > img {
  border: 1px solid #e6e8ea;
  border-radius: 4px; }

.no-padding-top {
  padding-top: 0 !important; }

.no-padding {
  padding: 0 !important; }

span.edition-tag {
  font-size: 12px;
  background: #63b0ea;
  font-weight: 700; }

@media only screen and (max-width: 1080px) {
  .quality-gate--container,
  .github-quality-gate-passed--block,
  .github-quality-gate--block,
  .bitbucket-find-issue,
  .code-health-bitbucket,
  .issue-block-positioning {
    top: initial !important;
    height: auto; }

  .auto-issue--block {
    margin: 0; }

  .new-code-positioning-top {
    bottom: initial; } }
@media only screen and (max-width: 480px) {
  .bitbucket-code-health--container {
    padding: 24px 0 !important; } }
/*************************************/
/********** DE landing page **********/
.sub-menu--navigation {
  display: inline-block;
  position: relative;
  padding-left: 0; }
  .sub-menu--navigation > ul > li {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
            align-items: center;
    margin-right: 10px; }

.sub-menu--button {
  position: absolute;
  right: 0;
  bottom: 10px; }

.new-styles a.edition-box--container {
  padding: 16px 36px 16px 9px;
  border: 1px solid #e6e8ea;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  position: relative;
  transition: all 0.2s ease-in 0s;
  color: #333333;
  border-radius: 6px;
  cursor: pointer; }
  .new-styles a.edition-box--container > .icon {
    margin: 0 8px;
    width: 160px; }
  .new-styles a.edition-box--container > .arrow {
    margin: 0 8px;
    position: absolute;
    right: 0;
    bottom: 16px; }
  .new-styles a.edition-box--container:hover, .new-styles a.edition-box--container:focus {
    box-shadow: rgba(7, 7, 6, 0.2) 0px 10px 30px;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    color: #070706;
    border-bottom: 1px solid transparent; }

.icon-size--small {
  width: 24px;
  height: 24px; }

.align-items--element {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start; }
  .align-items--element > img {
    margin-right: 4px; }

/*******************************************
  DE/EE pages 
*******************************************/
.feature-header.landing-de-version h1 > span:last-child::before {
  left: 18px; }

span.ee-edition-link {
  color: #4c9bd6; }

.blue-background--edition {
  background: #3490cc;
  color: #fff;
  background: #63b0ea;
  background: linear-gradient(180deg, #63b0ea, #3884be);
  padding: 70px; }

@media only screen and (max-width: 980px) {
  .blue-background--edition {
    padding: 70px 0; } }
a.btn-primary.white {
  background: #fff;
  color: #4c9bd6; }

.trial-edition-navigation {
  border-bottom: 1px solid #e6e8ea; }

.landing-de-version.feature-header,
.landing-ee-version.feature-header {
  margin-bottom: 120px;
  margin-top: 115px; }
.landing-de-version .form-container-edition-pages,
.landing-ee-version .form-container-edition-pages {
  position: absolute;
  right: 0;
  top: -60px;
  padding: 32px;
  background: white;
  border-radius: 11px;
  box-shadow: 0 9px 39px rgba(7, 7, 6, 0.15); }
.landing-de-version .label-edition-tag,
.landing-ee-version .label-edition-tag {
  padding: 10px 26px;
  border-bottom: 4px solid #4c9bd6;
  font-weight: 900;
  font-size: 21px;
  transition: all 0.2s ease-in 0s;
  display: inline; }
  .landing-de-version .label-edition-tag:hover,
  .landing-ee-version .label-edition-tag:hover {
    border-bottom: 4px solid #4c9bd6;
    color: #63b0ea; }
.landing-de-version .label-edition-tag.disable,
.landing-ee-version .label-edition-tag.disable {
  border-bottom: 2px solid #cfd3d7;
  padding-bottom: 11px; }
  .landing-de-version .label-edition-tag.disable:hover,
  .landing-ee-version .label-edition-tag.disable:hover {
    border-bottom: 4px solid #def1ff;
    background: #def1ff;
    color: #63b0ea; }
    .landing-de-version .label-edition-tag.disable:hover .color-edition-name,
    .landing-de-version .label-edition-tag.disable:hover .color-edition,
    .landing-ee-version .label-edition-tag.disable:hover .color-edition-name,
    .landing-ee-version .label-edition-tag.disable:hover .color-edition {
      color: #4c9bd6; }
.landing-de-version .color-edition-name,
.landing-ee-version .color-edition-name {
  color: #070706;
  transition: all 0.2s ease-in 0s; }
.landing-de-version .color-edition,
.landing-ee-version .color-edition {
  color: #8a8c8f;
  font-weight: 500;
  letter-spacing: 2.28px;
  text-transform: uppercase;
  font-size: 12px;
  padding-left: 5px; }
.landing-de-version.feature-item .tab-selector li,
.landing-ee-version.feature-item .tab-selector li {
  padding: 14px; }

#validate-email {
  display: none; }
  #validate-email.error {
    display: inline-block;
    color: #d75a4a;
    transition: all 0.3s ease; }

.form-emaill--container .form-container.error input {
  border: 1px solid #d75a4a;
  background-color: #ff797e26;
  box-shadow: none;
  transition: all 0.3s ease; }

#EditionForm .css-1wy0on6 {
  height: 40px; }

.landing-de-version #EditionForm form .form-select--container .select-form--wrapper div > div > div,
.landing-ee-version #EditionForm form .form-select--container .select-form--wrapper div > div > div {
  display: inline-block; }

@media only screen and (max-width: 1079px) {
  .landing-de-version .form-container-edition-pages,
  .landing-ee-version .form-container-edition-pages {
    position: relative;
    top: initial;
    right: initial;
    max-width: 380px;
    margin: 0 auto; } }
@media only screen and (max-width: 980px) {
  .page-content.trial-edition-navigation.landing-de-version,
  .page-content.trial-edition-navigation.landing-ee-version {
    display: none; } }
@media only screen and (max-width: 490px) {
  .landing-de-version .label-edition-tag,
  .landing-ee-version .label-edition-tag {
    display: -webkit-flex;
    display: flex; } }
/*******************************************
End Internal navigation to DE/EE pages 
*******************************************/
.highlight-language--wrapper > img {
  height: 92px; }

.new-styles a.highlight-language--container {
  border: 1px solid #e6e8ea;
  display: block;
  border-radius: 4px;
  margin: 20px auto 60px;
  position: relative;
  padding: 0 24px 24px 24px;
  transition: all 0.2s ease-in 0s; }
  .new-styles a.highlight-language--container:hover {
    box-shadow: rgba(7, 7, 6, 0.2) 0px 10px 30px;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    color: #070706;
    border-bottom: 1px solid transparent;
    cursor: pointer; }

.new-styles a.highlight-language--container {
  color: initial; }

.sub-menu--navigation > ul > li > a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  color: initial;
  border-bottom: 3px solid transparent;
  padding: 16px 16px 16px 0; }
  .sub-menu--navigation > ul > li > a.active, .sub-menu--navigation > ul > li > a.active-scroll, .sub-menu--navigation > ul > li > a:hover, .sub-menu--navigation > ul > li > a:focus {
    border-bottom: 3px solid #4c9bd6;
    color: initial; }

.sub-menu--navigation.scrollable > .sub-menu--button {
  bottom: 7px; }

.sub-menu--navigation.scrollable > ul > li > a {
  padding: 6px 16px 6px 0;
  text-decoration: none; }

.no-margin-bottom {
  margin-bottom: 0 !important; }

.arrow-language--block {
  position: relative;
  top: 7px; }

#menu-language-list.active {
  border-bottom: 3px solid #4c9bd6; }

.feature-header.landing-ee-version h1 > span:last-child::before {
  left: -14px;
  width: calc(115% - 40px); }

.pdf--block__spacer {
  margin-top: 125px; }

.index-page-languages.list-language-edition > .row.last-small {
  margin: 0 0 24px 83px;
  width: 370px; }

.sub-menu--navigation.ee-version > ul > li {
  margin-right: 0; }

.feature-header.landing-ee-version {
  margin-bottom: 20px; }

.header-image--ee-landing {
  position: relative;
  top: -60px; }

@media only screen and (max-width: 1080px) {
  .sub-menu--navigation.ee-version > ul > li {
    font-size: 15px; } }
/***************************************************/
/********* Maintainability *************************/
.feature-item .tab-selector li.active > .feedback-tab-text,
.feature-item .tab-selector li:active > .feedback-tab-text {
  color: #000000;
  font-weight: normal; }

.feature-item .tab-selector li > .feedback-tab-text {
  color: #8a8c8f;
  font-size: 16px;
  transition-timing-function: ease;
  transition-duration: 0.2s; }

.feature-item .maintainability-tab.tab-selector li.active,
.feature-item .maintainability-tab.tab-selector li:active,
.feature-item .maintainability-tab.tab-selector li.active:hover {
  font-weight: normal;
  border-left: 4px solid #4c9bd6;
  border-bottom: 0; }

.feature-item .maintainability-tab.tab-selector li {
  padding: 16px;
  padding-left: 26px;
  border-left: 4px solid #e6e8ea;
  border-bottom: 0;
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: border-color, font-weight;
  margin-bottom: 30px;
  text-align: left; }

.feature-item .maintainability-tab.tab-selector li:hover {
  border-left: 4px solid #4c9bd6;
  border-bottom: 0;
  color: #4c9bd6; }
  .feature-item .maintainability-tab.tab-selector li:hover .feedback-tab-text {
    color: #4c9bd6; }
  .feature-item .maintainability-tab.tab-selector li:hover span {
    color: #4c9bd6; }

.feature-item .maintainability-tab.tab-selector li.active:hover .feedback-tab-text,
.feature-item .maintainability-tab.tab-selector li.active:hover span {
  color: #000000; }

.feature-item .maintainability-tab.tab-selector li span {
  color: #8a8c8f;
  font-weight: bold;
  transition-timing-function: ease;
  transition-duration: 0.2s; }

.feature-item .maintainability-tab.tab-selector li.active span {
  color: #000000; }

.maintainability-standard--container {
  background: url("../../features/maintainability/index/rules-background.png");
  height: 650px;
  background-position: center;
  background-repeat: no-repeat; }

.header--block.maintainability-page .feature-header h1 > span:last-child::before {
  left: -25px; }

.hero-icon--container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center; }

.display-flex {
  display: -webkit-flex !important;
  display: flex !important; }

.header--block.maintainability-page .feature-header {
  margin-top: 30px; }

.maintainability-page .text-left {
  text-align: left !important; }

.maintainability-tab-item {
  min-height: 250px; }

.feature-item .maintainability-tab.tab-selector li span.tooltip {
  color: #fff;
  font-weight: normal; }

.feature-item .maintainability-tab.tab-selector li.active:hover span.tooltip {
  color: #fff; }

@media only screen and (max-width: 980px) {
  .blue-background .feature-item.get-sq {
    height: auto; }
  .blue-background .feature-item > div {
    display: inline-block; } }
/***************************************************/
.margin-side-auto {
  margin-left: auto;
  margin-right: auto; }

.lts-block-spacer {
  margin-top: 96px; }

/********** Azure DevOps Integration **********/
.quality-gate--container.azure-devops {
  top: 0;
  margin-bottom: 150px; }

.code-health {
  width: 85%;
  position: relative;
  top: -152px; }

.github-quality-gate-passed--block.azure-devops {
  top: 135px; }

.block-image--footer.azure-devops {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center; }
  .block-image--footer.azure-devops > img {
    width: 60%;
    height: 100%; }

.quality-gate--container.azure-devops {
  height: 470px; }

/***************************************************/
/********** Bitbucket Integration **********/
.bitbucket-code-health--container {
  padding: 0 60px 60px 60px; }

.code-health-bitbucket {
  position: relative;
  top: 100px; }

.bitbucket-find-issue {
  position: relative;
  top: 70px; }

.issue-block-positioning {
  top: 135px; }

.issue-block-bitbucket {
  margin-top: 110px; }

.bitbucket-language--block {
  margin-top: 150px; }

/***************************************************/
/********** whats new page form ******************/
.whatsnewFormContainer {
  position: fixed;
  right: 40px;
  bottom: 0;
  background: white;
  z-index: 99999;
  max-width: 320px;
  box-shadow: 0px 3px 28px 1px rgba(7, 7, 6, 0.1);
  border-radius: 5px;
  text-align: center; }
  .whatsnewFormContainer.pythonPage {
    max-width: 340px; }
    .whatsnewFormContainer.pythonPage .news-form--header {
      width: 100%; }

.whats-new-form--disclaimer {
  font-size: 12px;
  line-height: 18px; }

.news-form--container.hide {
  display: none; }

.news-form--container {
  padding: 32px;
  opacity: 0;
  max-height: 0;
  border-top: 6px solid #4c9bd6;
  border-radius: 4px 4px 0 0;
  -webkit-animation: hidePopUp 0.5s forwards;
          animation: hidePopUp 0.5s forwards; }

@-webkit-keyframes hidePopUp {
  from {
    max-height: 450px;
    opacity: 1; }
  to {
    max-height: 0;
    padding: 0;
    opacity: 0;
    border-top: 0; } }

@keyframes hidePopUp {
  from {
    max-height: 450px;
    opacity: 1; }
  to {
    max-height: 0;
    padding: 0;
    opacity: 0;
    border-top: 0; } }
.news-form--container.active {
  opacity: 1;
  -webkit-animation: showPopUp 0.5s forwards;
          animation: showPopUp 0.5s forwards; }

@-webkit-keyframes showPopUp {
  from {
    max-height: 0;
    opacity: 0; }
  to {
    max-height: 450px;
    opacity: 1; } }

@keyframes showPopUp {
  from {
    max-height: 0;
    opacity: 0; }
  to {
    max-height: 450px;
    opacity: 1; } }
.news-form--header {
  background: #4c9bd6;
  padding: 8px 20px;
  width: 320px;
  color: #ffffff;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
  border-radius: 4px 4px 0 0; }
  .news-form--header > img {
    margin: 4px 18px;
    width: 24px;
    height: 24px; }
  .news-form--header > p {
    font-weight: 700;
    margin: 0 !important;
    line-height: 24px !important; }

.page-announcement .news-form--header {
  bottom: -11px; }

.news-form--header.active {
  display: none; }

.whats-new-form--cta {
  width: 100%; }

.form-container input.errors {
  border: 1px solid red; }

.news-form--block__success {
  opacity: 1;
  max-height: 450px;
  border-top: 6px solid #4c9bd6;
  border-radius: 4px 4px 0 0;
  padding: 60px 0; }

.news-form--block__success.hide {
  opacity: 0;
  -webkit-animation: closeBox 0.5s forwards;
          animation: closeBox 0.5s forwards;
  height: 0;
  border-top: 0; }

@-webkit-keyframes closeBox {
  from {
    max-height: 450px;
    opacity: 1; }
  to {
    max-height: 0;
    padding: 0;
    opacity: 0; } }

@keyframes closeBox {
  from {
    max-height: 450px;
    opacity: 1; }
  to {
    max-height: 0;
    padding: 0;
    opacity: 0; } }
.closeCross {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer; }

/********** GitLab Integration **********/
.gitlab-code-health--container {
  height: 460px;
  position: relative;
  bottom: 160px; }

.gitlab-code-health--positioning {
  position: relative;
  top: 90px; }

.gitlab-code-health--block-text {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center; }

.alm-icons--container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center; }
  .alm-icons--container > img {
    width: 24px;
    margin-right: 8px; }

/***************************************************/
/********** Edition box **********/
a.edition-box {
  background: white;
  display: inline-block;
  transition: all 0.2s ease-in 0s;
  padding: 16px 36px 16px 9px;
  border: 1px solid #e6e8ea;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  position: relative;
  transition: all 0.2s ease-in 0s;
  color: #333333;
  border-radius: 6px;
  cursor: pointer; }
  a.edition-box:hover {
    box-shadow: rgba(7, 7, 6, 0.2) 0px 10px 30px;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    color: #070706;
    border-bottom: 1px solid transparent; }

.edition--card__container {
  -webkit-justify-content: center;
          justify-content: center; }

.edition-box--icon {
  padding: 10px; }

.box-discover-edition {
  padding: 10px 67px; }
  .box-discover-edition > span {
    font-weight: bold; }

.separate-edition {
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: 70px;
  border-top: 1px solid #cfd3d7; }
  .separate-edition.quality-gate {
    margin-top: 110px; }

/***************************************************/
/*********** SonarLint Landing Page *****************/
.card-tab-label {
  border: 1px solid #e6e8ea;
  display: -webkit-inline-flex;
  display: inline-flex;
  padding: 16px;
  max-width: 250px;
  border-radius: 4px; }

.sonarlint-sonarqube--wrapper {
  padding: 120px 0 80px; }

.sonarlint-ide--wrapper {
  padding: 120px 0; }

.ide-block {
  -webkit-align-items: center;
          align-items: center; }
  .ide-block > img {
    width: 54px;
    margin-bottom: 16px; }

.quality-security-tool--image {
  position: relative;
  top: 10px; }

/***************************************************/
.common_detail_language .multilanguage--list-container.list-language .multilanguage--listItem {
  width: 80px;
  height: 80px;
  padding: 4px; }

/**************************************************
    Styles for modules on _includes/modules/
**************************************************/
/* General */
iframe {
  border: 0; }

.font-normal {
  font-weight: 400 !important; }

.rounded-image {
  box-shadow: 0 16px 56px rgba(7, 7, 6, 0.15);
  border-radius: 6px; }

@media only screen and (max-width: 980px) {
  .is-responsive .page-container {
    min-width: initial !important;
    max-width: initial !important; } }
@media only screen and (max-width: 768px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  p br {
    display: none; } }
.top-promo-banner {
  background-color: #2d3032; }

/* Start Box Promote Content  */
.module--box-promote-content.blog-block__container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center; }
  .module--box-promote-content.blog-block__container > a {
    margin-bottom: 96px;
    background-color: #fff;
    padding: 16px 8px; }
    .module--box-promote-content.blog-block__container > a p > span {
      color: #4c9bd6; }
.module--box-promote-content .edition-box--container .blog-links__container {
  color: #4c9bd6;
  display: -webkit-flex;
  display: flex;
  margin-top: 4px; }
  .module--box-promote-content .edition-box--container .blog-links__container > img {
    margin-left: 4px; }
.module--box-promote-content .edition-box--container > .icon {
  width: 62px !important;
  height: 62px; }
  .module--box-promote-content .edition-box--container > .icon.video {
    width: 46px !important;
    margin: 0 24px 0 16px; }
  .module--box-promote-content .edition-box--container > .icon.large {
    width: 102px !important;
    height: auto;
    margin: auto 16px; }

/* End Box Promote Content  */
/* Start Module Hero Header  */
.module--hero-header {
  margin-top: 96px; }
  .module--hero-header h1 {
    position: relative; }
    .module--hero-header h1.heading-2, .module--hero-header h1.h2 {
      line-height: 48px !important; }
    .module--hero-header h1 span {
      position: relative;
      display: inline-block; }
    .module--hero-header h1 > span:last-child::before {
      content: "";
      position: absolute;
      bottom: -4px;
      left: -32px;
      width: 80%;
      height: 33px;
      opacity: 0.5;
      background-color: #b9ddf8;
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
      -webkit-transform-origin: 0% 50%;
      transform-origin: 0% 50%; }

@media only screen and (max-width: 960px) {
  .module--hero-header {
    margin-top: 80px; }
    .module--hero-header div:nth-child(2) > img {
      margin-top: 48px; } }
@media only screen and (max-width: 768px) {
  .module--hero-header img.illustration {
    position: relative;
    max-width: 70%;
    margin: 0 auto; } }
/* End Module Hero Header  */
/* Start Module Security Vulnerabilitie */
.module--security-vulnerability .icon-square-large {
  height: 64px; }
.module--security-vulnerability .icons-container img {
  margin: 0 16px 0 0; }

@media only screen and (max-width: 480px) {
  .module--security-vulnerability .icon-square-large {
    height: 32px;
    margin: 0; }
  .module--security-vulnerability .icons-container img {
    margin: 0 16px 16px 0; } }
/* End Module Security Vulnerabilitie */
/* Start Module Youtube with Chapters */
.module--youtube-chapters {
  background: transparent linear-gradient(90deg, #25699d 0%, #13354f 100%) 0% 0% no-repeat padding-box;
  padding: 40px 0; }
  .module--youtube-chapters p,
  .module--youtube-chapters span,
  .module--youtube-chapters h4 {
    color: #fff; }
  .module--youtube-chapters ul {
    margin-left: 24px; }
  .module--youtube-chapters.bg-white {
    background: #fff; }
    .module--youtube-chapters.bg-white p,
    .module--youtube-chapters.bg-white span,
    .module--youtube-chapters.bg-white h3 {
      color: #070706; }
    .module--youtube-chapters.bg-white iframe {
      height: 318px !important; }
  .module--youtube-chapters.bg-white h4 {
    color: #070706; }

@media only screen and (max-width: 980px) {
  .module--youtube-chapters iframe {
    margin-bottom: 48px; }
  .module--youtube-chapters ul {
    margin-left: 0; } }
/* End Module Youtube with Chapters */
/* Start Module ALM Tabs */
.module--alm-tabs .tab-selector,
.module--alm-tabs .second_tab-selector,
.block--langs-tabs .tab-selector,
.block--langs-tabs .second_tab-selector {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400; }
  .module--alm-tabs .tab-selector li,
  .module--alm-tabs .second_tab-selector li,
  .block--langs-tabs .tab-selector li,
  .block--langs-tabs .second_tab-selector li {
    border-bottom: 2px solid #e6e8ea;
    cursor: pointer;
    padding: 12px 0;
    transition-timing-function: ease;
    transition-duration: 0.2s;
    transition-property: border-color, font-weight; }
    .module--alm-tabs .tab-selector li.active, .module--alm-tabs .tab-selector li:focus,
    .module--alm-tabs .second_tab-selector li.active,
    .module--alm-tabs .second_tab-selector li:focus,
    .block--langs-tabs .tab-selector li.active,
    .block--langs-tabs .tab-selector li:focus,
    .block--langs-tabs .second_tab-selector li.active,
    .block--langs-tabs .second_tab-selector li:focus {
      font-weight: 700;
      border-bottom: 2px solid #4c9bd6;
      outline: none; }

.block--langs-tabs li {
  border-top: 2px solid #e6e8ea;
  border-bottom: none !important; }
  .block--langs-tabs li.active, .block--langs-tabs li:focus {
    border-top: 2px solid #4c9bd6;
    border-bottom: none !important; }

.module--alm-tabs {
  padding: 80px 0 0; }

@media only screen and (max-width: 980px) {
  .module--alm-tabs .tab-selector li span,
  .module--alm-tabs .second_tab-selector li span {
    display: none; } }
/* Start Module Image Text */
.module--image-text {
  padding-bottom: 80px; }
  .module--image-text p.with-checklist {
    position: relative;
    padding-left: 32px; }
    .module--image-text p.with-checklist svg {
      position: absolute;
      left: 0;
      top: 0; }

html {
  scroll-behavior: smooth; }

/* Menu Header */
.menu-header {
  position: relative;
  width: 100%;
  z-index: 100;
  border-top: 5px solid #4c9bd6;
  background-color: #ffffff;
  padding: 16px 0;
  box-shadow: 0 15px 33px white; }

.menu-header-white {
  background-color: #fff; }

.menu-header-left {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  position: static; }

.menu-header-right {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse; }
  .menu-header-right .btn-secondary {
    margin: 0; }

.menu-header-logo {
  display: inline-block;
  text-decoration: none;
  height: 44px;
  width: 168px; }

/* Page Header */
.page-header .h,
.page-header .x,
.page-header .btn-download {
  display: none; }

/* Menu Main Navigation */
.menu-header-nav {
  display: -webkit-inline-flex;
  display: inline-flex;
  padding-left: 24px; }
  .menu-header-nav li:first-child:hover .menu-header-nav-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #4c9bd6;
    bottom: -8px;
    left: 0; }
  .menu-header-nav > li.active .menu-header-nav-item {
    color: #4c9bd6;
    outline: none; }
  .menu-header-nav > li .menu-header-nav-item {
    position: relative; }
  .menu-header-nav > li:hover .menu-header-nav-item,
  .menu-header-nav > li .menu-header-nav-item:focus,
  .menu-header-nav > li .menu-header-nav-item:active,
  .menu-header-nav > li .menu-header-nav-item.active {
    color: #4c9bd6;
    outline: none; }
    .menu-header-nav > li:hover .menu-header-nav-item > svg,
    .menu-header-nav > li .menu-header-nav-item:focus > svg,
    .menu-header-nav > li .menu-header-nav-item:active > svg,
    .menu-header-nav > li .menu-header-nav-item.active > svg {
      -webkit-transform: rotateX(180deg);
              transform: rotateX(180deg); }
    .menu-header-nav > li:hover .menu-header-nav-item > .submenu-header, .menu-header-nav > li:hover .menu-header-nav-item ~ .submenu-header,
    .menu-header-nav > li .menu-header-nav-item:focus > .submenu-header,
    .menu-header-nav > li .menu-header-nav-item:focus ~ .submenu-header,
    .menu-header-nav > li .menu-header-nav-item:active > .submenu-header,
    .menu-header-nav > li .menu-header-nav-item:active ~ .submenu-header,
    .menu-header-nav > li .menu-header-nav-item.active > .submenu-header,
    .menu-header-nav > li .menu-header-nav-item.active ~ .submenu-header {
      z-index: 200;
      visibility: visible;
      opacity: 1;
      -webkit-transform: translateY(0px);
              transform: translateY(0px); }

/* Menu Item */
.menu-header-nav-item {
  display: block;
  padding: 16px 16px;
  margin-bottom: -16px;
  color: #070706;
  font-weight: 500;
  text-decoration: none;
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: color; }
  .menu-header-nav-item svg {
    margin-bottom: -1px;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform; }

/* Item with Submenu */
.menu-header-nav-submenu.active:after {
  margin: 8px calc(35% - 8px);
  margin-bottom: -20px; }

/* Submenu Navigation */
.submenu-header {
  position: absolute;
  left: 0;
  display: block !important;
  width: 100%;
  padding-top: 24px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, transform;
  transition-property: visibility, opacity, transform, -webkit-transform; }
  .submenu-header.close {
    display: none !important;
    transition: all 0.3 ease; }

.menu-header-nav-item.active ~ .submenu-header {
  padding-top: 32px; }

.submenu-header-inner {
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #eaeaea;
  box-shadow: 0px 16px 16px -16px rgba(0, 0, 0, 0.3); }
  .submenu-header-inner > .container {
    position: relative !important; }
    .submenu-header-inner > .container .menu-close {
      cursor: pointer;
      position: absolute;
      width: 28px;
      height: 28px;
      top: 20px;
      right: 0;
      opacity: 0.4;
      transition-timing-function: ease;
      transition-duration: 0.3s;
      transition-property: opacity; }
      .submenu-header-inner > .container .menu-close:hover {
        opacity: 1;
        transition-timing-function: ease;
        transition-duration: 0.3s;
        transition-property: opacity; }
      .submenu-header-inner > .container .menu-close svg {
        width: 28px;
        height: 28px; }

/* Submenu Header Nav */
.submenu-header-nav {
  display: -webkit-flex;
  display: flex;
  padding-bottom: 16px; }
  .submenu-header-nav .menu-group {
    width: 33.3333%;
    float: left;
    padding: 37px 0; }
    .submenu-header-nav .menu-group .menu-parent-item a {
      cursor: default; }
      .submenu-header-nav .menu-group .menu-parent-item a:before {
        content: none; }
      .submenu-header-nav .menu-group .menu-parent-item a:hover {
        color: #2d3032; }
      .submenu-header-nav .menu-group .menu-parent-item a span:hover {
        color: #2d3032; }
    .submenu-header-nav .menu-group .menu-parent-item .submenu-header-nav-title:before {
      content: none; }
    .submenu-header-nav .menu-group > li > a,
    .submenu-header-nav .menu-group > li h3 {
      display: -webkit-flex;
      display: flex;
      text-decoration: none;
      padding: 16px 0;
      border-left: 4px solid transparent;
      -webkit-align-items: center;
              align-items: center; }
      .submenu-header-nav .menu-group > li > a > span,
      .submenu-header-nav .menu-group > li h3 > span {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
                flex-direction: column;
        -webkit-align-items: flex-start;
                align-items: flex-start;
        margin-left: 16px; }
      .submenu-header-nav .menu-group > li > a .submenu-header-nav-title,
      .submenu-header-nav .menu-group > li h3 .submenu-header-nav-title {
        position: relative;
        font-size: 16px;
        font-weight: 500;
        color: #4c9bd6;
        padding: 0 8px;
        margin-left: -8px; }
        .submenu-header-nav .menu-group > li > a .submenu-header-nav-title span,
        .submenu-header-nav .menu-group > li h3 .submenu-header-nav-title span {
          position: relative;
          z-index: 10; }
          .submenu-header-nav .menu-group > li > a .submenu-header-nav-title span > svg,
          .submenu-header-nav .menu-group > li h3 .submenu-header-nav-title span > svg {
            width: 16px;
            position: absolute;
            right: -23px;
            top: 1px; }
            .submenu-header-nav .menu-group > li > a .submenu-header-nav-title span > svg path,
            .submenu-header-nav .menu-group > li h3 .submenu-header-nav-title span > svg path {
              fill: #4c9bd6; }
        .submenu-header-nav .menu-group > li > a .submenu-header-nav-title:before,
        .submenu-header-nav .menu-group > li h3 .submenu-header-nav-title:before {
          content: "";
          position: absolute;
          bottom: -4px;
          left: 0;
          width: 100%;
          height: 80%;
          opacity: 0.7;
          background-color: #dcebf7;
          -webkit-transform: scale3d(0, 1, 1);
                  transform: scale3d(0, 1, 1);
          -webkit-transform-origin: 0% 50%;
                  transform-origin: 0% 50%;
          transition-timing-function: ease;
          transition-duration: 0.9s;
          transition-property: -webkit-transform;
          transition-property: transform;
          transition-property: transform, -webkit-transform;
          transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }
    .submenu-header-nav .menu-group > li .submenu-header-nav-desc {
      font-size: 14px;
      font-weight: 400;
      color: #4c9bd6;
      padding-top: 8px; }
    .submenu-header-nav .menu-group > li a {
      width: auto;
      display: inline-block; }
      .submenu-header-nav .menu-group > li a .submenu-header-nav-title,
      .submenu-header-nav .menu-group > li a .submenu-header-nav-desc {
        transition-timing-function: ease;
        transition-duration: 0.2s;
        transition-property: color; }
      .submenu-header-nav .menu-group > li a:hover .submenu-header-nav-title,
      .submenu-header-nav .menu-group > li a:hover .submenu-header-nav-desc, .submenu-header-nav .menu-group > li a.active .submenu-header-nav-title,
      .submenu-header-nav .menu-group > li a.active .submenu-header-nav-desc {
        color: #25699d; }
      .submenu-header-nav .menu-group > li a:hover .submenu-header-nav-title:before, .submenu-header-nav .menu-group > li a.active .submenu-header-nav-title:before {
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1); }
    .submenu-header-nav .menu-group > li h3 .submenu-header-nav-title > span {
      font-size: 21px;
      font-weight: 700; }
    .submenu-header-nav .menu-group .menu-parent-item .submenu-header-nav-title {
      color: #2d3032; }
    .submenu-header-nav .menu-group .menu-parent-item .submenu-header-nav-desc {
      color: #434447;
      line-height: 20px;
      max-width: 320px; }
    .submenu-header-nav .menu-group.primary {
      position: relative;
      padding: 22px 0; }
      .submenu-header-nav .menu-group.primary > li > h3 .submenu-header-nav-title > span {
        font-size: 26px;
        font-weight: 700; }
      .submenu-header-nav .menu-group.primary > li > a {
        padding-left: 50px; }
      .submenu-header-nav .menu-group.primary > hr {
        height: 80%;
        position: absolute;
        top: 40px;
        right: 70px;
        border-right: 1px solid #eaeaea; }
      .submenu-header-nav .menu-group.primary .menu-parent-item.code-security {
        padding-top: 20px; }
  .submenu-header-nav .menu-group:nth-child(3) svg {
    margin-right: 8px; }

/* Menu Header Scroll */
.menu-header-scroll {
  display: block;
  position: fixed;
  z-index: 200;
  width: 100%;
  top: -100px;
  font-size: 16px;
  font-weight: normal;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(7, 7, 6, 0.1);
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: top; }
  .menu-header-scroll .trial-edition-navigation {
    border-bottom: none; }
  .menu-header-scroll li:first-child:hover .menu-header-nav-item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #4c9bd6;
    bottom: 0;
    left: 0; }
  .menu-header-scroll .menu-header-right {
    padding-bottom: 8px; }
  .menu-header-scroll .menu-header-logo {
    padding: 6px 0;
    height: 48px;
    width: 122px; }
  .menu-header-scroll .menu-header-nav .menu-header-nav-item {
    padding: 16px;
    margin-bottom: 0; }
    .menu-header-scroll .menu-header-nav .menu-header-nav-item:hover:before {
      bottom: 0; }
    .menu-header-scroll .menu-header-nav .menu-header-nav-item.active:after {
      margin: 13px 0 -16px;
      width: 100%; }
  .menu-header-scroll .menu-header-nav-item.active ~ .submenu-header {
    padding-top: 16px; }
  .menu-header-scroll .submenu-header {
    padding-top: 0; }

/* Responsive Version */
.is-responsive body {
  overflow-x: hidden;
  min-width: initial; }

@media only screen and (max-width: 980px) {
  html.is-responsive {
    overflow-x: hidden; }

  .is-responsive body:not(.responsive-menu-closed) .x,
  .is-responsive body .btn-download {
    display: block; }
  .is-responsive body.responsive-menu-closed .menu-header-nav {
    display: none; }
  .is-responsive body.responsive-menu-closed .h {
    display: block; }
  .is-responsive body .page-container {
    min-width: initial; }
  .is-responsive body:not(.mobile_submenu_open) .submenu-header {
    opacity: 0 !important;
    display: none !important; }
  .is-responsive body .menu-header-scroll {
    display: none; }
  .is-responsive body #responsive-close-menu {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 13px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .is-responsive body .menu-header-nav > li:hover, .is-responsive body .menu-header-nav > li:hover .menu-header-nav-item,
  .is-responsive body .menu-header-nav > li .menu-header-nav-item:focus,
  .is-responsive body .menu-header-nav > li .menu-header-nav-item:active,
  .is-responsive body .menu-header-nav > li .menu-header-nav-item.active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
    .is-responsive body .menu-header-nav > li:hover > svg, .is-responsive body .menu-header-nav > li:hover .menu-header-nav-item > svg,
    .is-responsive body .menu-header-nav > li .menu-header-nav-item:focus > svg,
    .is-responsive body .menu-header-nav > li .menu-header-nav-item:active > svg,
    .is-responsive body .menu-header-nav > li .menu-header-nav-item.active > svg {
      -webkit-transform: rotateX(0deg);
              transform: rotateX(0deg); }
  .is-responsive body:not(.responsive-menu-closed) .page-content {
    margin-top: 400px; }
  .is-responsive body:not(.responsive-menu-closed) .menu-header-nav > li:hover > svg,
  .is-responsive body:not(.responsive-menu-closed) .menu-header-nav > li .menu-header-nav-item:focus > svg,
  .is-responsive body:not(.responsive-menu-closed) .menu-header-nav > li .menu-header-nav-item:active > svg,
  .is-responsive body:not(.responsive-menu-closed) .menu-header-nav > li .menu-header-nav-item.active > svg {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg); }
  .is-responsive body:not(.responsive-menu-closed).mobile_submenu_open .page-content {
    margin-top: 1040px; }
  .is-responsive body:not(.responsive-menu-closed).mobile_submenu_open .menu-header-nav > li .menu-header-nav-item > svg {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg); }

  .is-responsive .mobile_submenu_open .submenu-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: white;
    z-index: 2;
    position: relative; }
  .is-responsive .mobile_submenu_open .submenu-header-inner {
    box-shadow: none;
    margin: 0; }
  .is-responsive .mobile_submenu_open .menu-header-nav > li:first-child {
    min-height: 752px; }
  .is-responsive .menu-header {
    max-width: 100%; }
    .is-responsive .menu-header .menu-header-nav {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      display: block;
      background-color: white;
      padding: 4px 0 32px 0;
      box-shadow: 0px 16px 16px -16px rgba(0, 0, 0, 0.3); }
      .is-responsive .menu-header .menu-header-nav li:first-child a:before {
        display: none; }
      .is-responsive .menu-header .menu-header-nav > li {
        display: inline-block;
        width: calc(100% - 40px);
        padding: 16px 0 24px 0;
        margin: 0 20px;
        border-bottom: 1px solid #eaeaea; }
        .is-responsive .menu-header .menu-header-nav > li.btn-download {
          border-bottom: none;
          padding: 32px 0 0 0; }
      .is-responsive .menu-header .menu-header-nav .menu-header-nav-item {
        font-size: 18px;
        padding: 14px 0 19px 0; }
        .is-responsive .menu-header .menu-header-nav .menu-header-nav-item svg {
          float: right; }
    .is-responsive .menu-header .submenu-header .submenu-header-inner > .container {
      max-width: 100%;
      padding: 0; }
    .is-responsive .menu-header .submenu-header .submenu-header-inner .menu-close {
      display: none; }
    .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav {
      display: block; }
      .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group,
      .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-parent-item {
        width: 100%;
        float: none; }
      .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group {
        padding: 8px 0 0;
        width: 100%; }
        .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group > li > h3 {
          padding: 16px 0 8px 0; }
          .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group > li > h3 > span {
            margin-left: 0; }
          .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group > li > h3 > svg {
            margin-left: -8px; }
          .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group > li > h3 .submenu-header-nav-title > span {
            font-size: 21px; }
        .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group > li > a {
          padding: 12px 0 12px 0;
          -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
          .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group > li > a:focus, .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group > li > a:visited {
            background-color: rgba(0, 0, 0, 0); }
          .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group > li > a > span {
            margin-left: 0; }
        .is-responsive .menu-header .submenu-header .submenu-header-inner .submenu-header-nav .menu-group.primary > hr {
          display: none; }
    .is-responsive .menu-header .menu-header-right {
      display: none; }
  .is-responsive .page-wrapper.hello-visible {
    margin-top: 69px; } }
@media only screen and (max-width: 1079px) {
  .submenu-header-nav .menu-group.primary > hr {
    display: none !important; }

  .submenu-header-inner .container {
    max-width: 100%; } }
.page-footer {
  color: #fff;
  background-color: #0b3c62; }
  .page-footer a.no-underline {
    border-bottom: none; }
  .page-footer .subscribeContainer {
    padding: 24px;
    background-color: rgba(7, 7, 6, 0.2); }
    .page-footer .subscribeContainer .subscribeTitle {
      font-size: 18px;
      font-weight: bold; }
    .page-footer .subscribeContainer .subscribeDescription {
      font-size: 12px;
      font-style: italic; }

.page-footer-nav {
  padding: 40px 0; }

.page-footer-copyright {
  line-height: 16px;
  font-size: 12px;
  text-align: center;
  background-color: rgba(7, 7, 6, 0.2);
  padding: 24px 0; }

.page-footer-logo,
.page-footer-social {
  display: inline-block;
  margin-top: -13px;
  margin-bottom: 16px; }

.page-footer-social a {
  color: rgba(121, 198, 255, 0.7);
  margin-right: 8px;
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: color; }
  .page-footer-social a :hover,
  .page-footer-social a :focus,
  .page-footer-social a :active {
    color: #79c6ff; }
.page-footer-social:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 22px;
  margin-left: 16px;
  margin-right: 16px;
  background-color: #fff;
  opacity: 0.1; }

.page-footer-company {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400; }
  .page-footer-company a {
    color: rgba(121, 198, 255, 0.7); }
    .page-footer-company a:hover {
      color: #79c6ff; }

.page-footer-nav h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px; }
.page-footer-nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
          align-items: flex-start; }
.page-footer-nav li {
  position: relative;
  display: inline-block;
  padding: 0 4px;
  margin: 0 -4px 8px; }
  .page-footer-nav li > a {
    position: relative;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    z-index: 10;
    border-bottom: none;
    transition-timing-function: ease;
    transition-duration: 0.2s;
    transition-property: color; }
    .page-footer-nav li > a:hover, .page-footer-nav li > a:active, .page-footer-nav li > a:focus {
      color: #fff;
      border-bottom: none; }

.grid {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: stretch;
          align-items: stretch;
  margin: 0 -15px;
  padding: 50px 0; }

.grid-two-column {
  margin: 0; }
  .grid-two-column .grid-item {
    width: 50%; }

.grid-item {
  width: 33.3333333333%;
  padding: 0 15px 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
          align-items: stretch; }

.grid-item--no-padding {
  padding: 0; }

.grid-item-footer {
  margin-top: 10px; }

.card {
  display: block;
  width: 100%;
  margin: 0 10px;
  border: 1px solid #cfd3d7;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(7, 7, 6, 0.1);
  box-sizing: border-box;
  background-color: #fff;
  color: #4c9bd6;
  overflow: hidden;
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: box-shadow, -webkit-transform;
  transition-property: transform, box-shadow;
  transition-property: transform, box-shadow, -webkit-transform; }
  .card:hover {
    box-shadow: 0 10px 30px rgba(7, 7, 6, 0.2);
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px); }
  .card-title {
    margin-bottom: 8px;
    padding: 25px;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px; }
  .card-image {
    display: block;
    line-height: 0; }
  .card-body-text {
    margin-bottom: 8px;
    padding: 25px; }
  .card-footer {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    padding: 8px 16px;
    font-size: 15px;
    border-top: 1px solid #cfd3d7; }
    .card-footer .muted {
      font-size: 12px; }

a.card {
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: box-shadow, -webkit-transform;
  transition-property: transform, box-shadow;
  transition-property: transform, box-shadow, -webkit-transform; }

button.btn,
a.btn,
div.btn {
  display: inline-block;
  height: 44px;
  line-height: 40px;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap; }
  button.btn:focus,
  a.btn:focus,
  div.btn:focus {
    outline: none; }
  button.btn:active,
  a.btn:active,
  div.btn:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25); }
  button.btn + .btn,
  a.btn + .btn,
  div.btn + .btn {
    margin-left: 10px; }
  button.btn svg,
  a.btn svg,
  div.btn svg {
    width: 24px;
    height: 24px;
    vertical-align: text-bottom; }
    button.btn svg path,
    a.btn svg path,
    div.btn svg path {
      fill: currentColor; }
button.btn-red,
a.btn-red,
div.btn-red {
  border: none;
  background-color: #4c9bd6;
  color: #fff !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); }
  button.btn-red:hover, button.btn-red:focus,
  a.btn-red:hover,
  a.btn-red:focus,
  div.btn-red:hover,
  div.btn-red:focus {
    background-color: #3b92d2; }
button.btn-red-outlined,
a.btn-red-outlined,
div.btn-red-outlined {
  border: 1px solid #4c9bd6;
  color: #4c9bd6; }
  button.btn-red-outlined:hover, button.btn-red-outlined:focus,
  a.btn-red-outlined:hover,
  a.btn-red-outlined:focus,
  div.btn-red-outlined:hover,
  div.btn-red-outlined:focus {
    background-color: #4c9bd6;
    color: #fff; }
button.btn-red-filled,
a.btn-red-filled,
div.btn-red-filled {
  border: 1px solid #fff;
  background-color: #4c9bd6;
  color: #fff; }
  button.btn-red-filled:hover, button.btn-red-filled:focus,
  a.btn-red-filled:hover,
  a.btn-red-filled:focus,
  div.btn-red-filled:hover,
  div.btn-red-filled:focus {
    background-color: #fff;
    color: #4c9bd6; }
button.btn-opacity,
a.btn-opacity,
div.btn-opacity {
  opacity: 0.4; }
  button.btn-opacity:hover, button.btn-opacity:focus, button.btn-opacity:active,
  a.btn-opacity:hover,
  a.btn-opacity:focus,
  a.btn-opacity:active,
  div.btn-opacity:hover,
  div.btn-opacity:focus,
  div.btn-opacity:active {
    opacity: 0.65; }
button.btn-black-outlined,
a.btn-black-outlined,
div.btn-black-outlined {
  border: 1px solid #191919;
  background-color: transparent;
  color: #191919; }
  button.btn-black-outlined:hover, button.btn-black-outlined:focus,
  a.btn-black-outlined:hover,
  a.btn-black-outlined:focus,
  div.btn-black-outlined:hover,
  div.btn-black-outlined:focus {
    background-color: #191919;
    color: #fff; }
button.btn-disabled,
a.btn-disabled,
div.btn-disabled {
  opacity: 0.2;
  cursor: default; }
button.btn-primary, button.btn-download,
a.btn-primary,
a.btn-download,
div.btn-primary,
div.btn-download {
  color: #fff;
  background-color: #4c9bd6;
  border: 1px solid #4c9bd6; }
  button.btn-primary:focus, button.btn-primary:hover, button.btn-download:focus, button.btn-download:hover,
  a.btn-primary:focus,
  a.btn-primary:hover,
  a.btn-download:focus,
  a.btn-download:hover,
  div.btn-primary:focus,
  div.btn-primary:hover,
  div.btn-download:focus,
  div.btn-download:hover {
    background-color: #63b0ea;
    border: 1px solid #63b0ea;
    color: #fff; }
  button.btn-primary svg, button.btn-download svg,
  a.btn-primary svg,
  a.btn-download svg,
  div.btn-primary svg,
  div.btn-download svg {
    width: 24px;
    height: 24px; }
button.btn-primary-outlined,
a.btn-primary-outlined,
div.btn-primary-outlined {
  color: #4c9bd6;
  background: transparent;
  border: 1px solid #4c9bd6; }
  button.btn-primary-outlined:hover,
  a.btn-primary-outlined:hover,
  div.btn-primary-outlined:hover {
    background-color: #25699d;
    border: 1px solid #25699d;
    color: #fff; }
button.btn-primary-white,
a.btn-primary-white,
div.btn-primary-white {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff; }
  button.btn-primary-white:hover, button.btn-primary-white:focus,
  a.btn-primary-white:hover,
  a.btn-primary-white:focus,
  div.btn-primary-white:hover,
  div.btn-primary-white:focus {
    background-color: #fff;
    border: 2px solid #fff;
    color: #25699d; }
button.btn-secondary,
a.btn-secondary,
div.btn-secondary {
  border: 1px solid #4c9bd6;
  color: #4c9bd6;
  background: transparent;
  height: 32px;
  line-height: 32px;
  padding: 0 8px;
  font-size: 16px;
  margin-top: 27px;
  margin-right: 21px; }
  button.btn-secondary:hover,
  a.btn-secondary:hover,
  div.btn-secondary:hover {
    background: #4c9bd6;
    color: #fff; }
button.btn-secondary-white,
a.btn-secondary-white,
div.btn-secondary-white {
  border: 1px solid #fff;
  background-color: #fff;
  color: #25699d; }
  button.btn-secondary-white:hover, button.btn-secondary-white:focus,
  a.btn-secondary-white:hover,
  a.btn-secondary-white:focus,
  div.btn-secondary-white:hover,
  div.btn-secondary-white:focus {
    background-color: #63b0ea;
    border: 1px solid #63b0ea;
    color: #fff; }
button.btn-medium,
a.btn-medium,
div.btn-medium {
  height: 32px;
  line-height: 32px;
  padding: 0 8px;
  font-size: 16px; }
  button.btn-medium > svg,
  a.btn-medium > svg,
  div.btn-medium > svg {
    width: 18px;
    height: 18px; }
button.btn-nav,
a.btn-nav,
div.btn-nav {
  color: #4c9bd6;
  font-weight: 500;
  text-decoration: none;
  border-bottom: none !important;
  padding: 10px;
  margin: -10px; }
  button.btn-nav:hover, button.btn-nav:focus,
  a.btn-nav:hover,
  a.btn-nav:focus,
  div.btn-nav:hover,
  div.btn-nav:focus {
    border-bottom: none !important;
    color: #25699d; }
    button.btn-nav:hover:after, button.btn-nav:focus:after,
    a.btn-nav:hover:after,
    a.btn-nav:focus:after,
    div.btn-nav:hover:after,
    div.btn-nav:focus:after {
      background-image: url("/images/ui/arrows-dark.svg");
      background-position: 8px -2px; }
  button.btn-nav:after,
  a.btn-nav:after,
  div.btn-nav:after {
    content: " ";
    background-image: url("/images/ui/arrows.svg"), url("/images/ui/arrows-dark.svg");
    background-position: 4px -2px;
    padding-right: 34px;
    background-size: 24px;
    background-repeat: no-repeat; }
button.btn-download,
a.btn-download,
div.btn-download {
  position: relative;
  padding-left: 36px; }
  button.btn-download:before,
  a.btn-download:before,
  div.btn-download:before {
    content: " ";
    background-image: url(/images/ui/download.svg);
    background-repeat: no-repeat;
    position: absolute;
    height: 24px;
    width: 24px;
    margin-left: -32px;
    top: 8px; }
  button.btn-download.btn-medium,
  a.btn-download.btn-medium,
  div.btn-download.btn-medium {
    padding-left: 40px; }
    button.btn-download.btn-medium:before,
    a.btn-download.btn-medium:before,
    div.btn-download.btn-medium:before {
      top: 2px; }
button .btn.disabled, button.disabled:hover, button.disabled:active, button.disabled:focus,
a .btn.disabled,
a.disabled:hover,
a.disabled:active,
a.disabled:focus,
div .btn.disabled,
div.disabled:hover,
div.disabled:active,
div.disabled:focus {
  background-color: #e6e8ea !important;
  border: 1px solid #e6e8ea !important;
  box-shadow: none !important;
  color: #65666a !important;
  cursor: initial !important; }
@media (hover: hover) {
  button.btn,
  a.btn,
  div.btn {
    transition-timing-function: ease;
    transition-duration: 0.2s;
    transition-property: color, background-color, border-color, opacity; }
  button.btn-nav,
  a.btn-nav,
  div.btn-nav {
    transition-timing-function: ease;
    transition-duration: 0.2s;
    transition-property: color, background-color, border-color, opacity; }
    button.btn-nav:after,
    a.btn-nav:after,
    div.btn-nav:after {
      transition-timing-function: ease;
      transition-duration: 0.2s;
      transition-property: background-position; } }

#download > .dark-background {
  padding-bottom: 250px;
  margin-bottom: -280px; }
#download .downloads-logo {
  min-width: 79px; }
#download div.downloads-separated {
  display: -webkit-flex;
  display: flex; }
  #download div.downloads-separated > div {
    position: relative;
    padding: 0 24px; }
    #download div.downloads-separated > div > p {
      margin-bottom: -4px; }
    #download div.downloads-separated > div:first-child {
      padding-left: 0 !important; }
    #download div.downloads-separated > div:last-child {
      padding-right: 0 !important; }
    #download div.downloads-separated > div:not(:first-child):before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      margin-top: 4px;
      width: 1px;
      height: 16px;
      background-color: #cfd3d7; }
    #download div.downloads-separated > div span.text-mention {
      color: #434447; }
#download p.downloads-separated > :not(:first-child):before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #cfd3d7;
  margin: -2px 4px; }
#download .downloads-community .bg-blue800,
#download .downloads-developer .bg-blue800,
#download .downloads-enterprise .bg-blue800,
#download .downloads-data-center .bg-blue800 {
  background-color: #174f7b;
  border: 1px solid #174f7b;
  color: #fff; }
  #download .downloads-community .bg-blue800:hover,
  #download .downloads-developer .bg-blue800:hover,
  #download .downloads-enterprise .bg-blue800:hover,
  #download .downloads-data-center .bg-blue800:hover {
    background-color: #25699d;
    border: 1px solid #25699d; }
#download .downloads-community .edition-highlight,
#download .downloads-developer .edition-highlight,
#download .downloads-enterprise .edition-highlight,
#download .downloads-data-center .edition-highlight {
  color: #3ec92c; }
#download .downloads-community ul li,
#download .downloads-developer ul li,
#download .downloads-enterprise ul li,
#download .downloads-data-center ul li {
  margin-top: 12px; }
#download .downloads-community .downloads-editions-container,
#download .downloads-developer .downloads-editions-container,
#download .downloads-enterprise .downloads-editions-container,
#download .downloads-data-center .downloads-editions-container {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e6e8ea;
  z-index: 1;
  padding: 20px 20px 28px;
  height: 856px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-flex: 1;
          flex: 1; }
  #download .downloads-community .downloads-editions-container h2 > img,
  #download .downloads-developer .downloads-editions-container h2 > img,
  #download .downloads-enterprise .downloads-editions-container h2 > img,
  #download .downloads-data-center .downloads-editions-container h2 > img {
    display: block;
    margin: 4px 0 16px 2px; }
  #download .downloads-community .downloads-editions-container .text-line-height,
  #download .downloads-developer .downloads-editions-container .text-line-height,
  #download .downloads-enterprise .downloads-editions-container .text-line-height,
  #download .downloads-data-center .downloads-editions-container .text-line-height {
    line-height: 1.2; }
  #download .downloads-community .downloads-editions-container .download-link-position,
  #download .downloads-developer .downloads-editions-container .download-link-position,
  #download .downloads-enterprise .downloads-editions-container .download-link-position,
  #download .downloads-data-center .downloads-editions-container .download-link-position {
    position: absolute;
    bottom: -50px;
    color: #25699d; }
    #download .downloads-community .downloads-editions-container .download-link-position:after,
    #download .downloads-developer .downloads-editions-container .download-link-position:after,
    #download .downloads-enterprise .downloads-editions-container .download-link-position:after,
    #download .downloads-data-center .downloads-editions-container .download-link-position:after {
      background-image: url(/images/ui/arrows-dark.svg); }
  #download .downloads-community .downloads-editions-container .btn-container,
  #download .downloads-developer .downloads-editions-container .btn-container,
  #download .downloads-enterprise .downloads-editions-container .btn-container,
  #download .downloads-data-center .downloads-editions-container .btn-container {
    margin-top: auto;
    text-align: center; }
  #download .downloads-community .downloads-editions-container .accept-terms-overlay,
  #download .downloads-developer .downloads-editions-container .accept-terms-overlay,
  #download .downloads-enterprise .downloads-editions-container .accept-terms-overlay,
  #download .downloads-data-center .downloads-editions-container .accept-terms-overlay {
    opacity: 0;
    visibility: hidden;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 24px;
    background: rgba(7, 7, 6, 0.94);
    color: white;
    padding: 20px;
    height: 100%;
    max-width: 290px;
    border-radius: 4px;
    z-index: 4;
    transition-timing-function: ease;
    transition-duration: 0.3s;
    transition-property: opacity; }
    #download .downloads-community .downloads-editions-container .accept-terms-overlay.open,
    #download .downloads-developer .downloads-editions-container .accept-terms-overlay.open,
    #download .downloads-enterprise .downloads-editions-container .accept-terms-overlay.open,
    #download .downloads-data-center .downloads-editions-container .accept-terms-overlay.open {
      opacity: 1;
      visibility: visible;
      display: block;
      transition-timing-function: ease;
      transition-duration: 0.3s;
      transition-property: opacity; }
    #download .downloads-community .downloads-editions-container .accept-terms-overlay p span,
    #download .downloads-developer .downloads-editions-container .accept-terms-overlay p span,
    #download .downloads-enterprise .downloads-editions-container .accept-terms-overlay p span,
    #download .downloads-data-center .downloads-editions-container .accept-terms-overlay p span {
      text-transform: capitalize; }
    #download .downloads-community .downloads-editions-container .accept-terms-overlay .accept-terms-close,
    #download .downloads-developer .downloads-editions-container .accept-terms-overlay .accept-terms-close,
    #download .downloads-enterprise .downloads-editions-container .accept-terms-overlay .accept-terms-close,
    #download .downloads-data-center .downloads-editions-container .accept-terms-overlay .accept-terms-close {
      cursor: pointer; }
    #download .downloads-community .downloads-editions-container .accept-terms-overlay .accept-terms-submit,
    #download .downloads-developer .downloads-editions-container .accept-terms-overlay .accept-terms-submit,
    #download .downloads-enterprise .downloads-editions-container .accept-terms-overlay .accept-terms-submit,
    #download .downloads-data-center .downloads-editions-container .accept-terms-overlay .accept-terms-submit {
      position: absolute;
      top: 160px;
      left: 50px;
      width: 180px;
      color: #fff;
      border-color: #fff; }
      #download .downloads-community .downloads-editions-container .accept-terms-overlay .accept-terms-submit:hover,
      #download .downloads-developer .downloads-editions-container .accept-terms-overlay .accept-terms-submit:hover,
      #download .downloads-enterprise .downloads-editions-container .accept-terms-overlay .accept-terms-submit:hover,
      #download .downloads-data-center .downloads-editions-container .accept-terms-overlay .accept-terms-submit:hover {
        background-color: #fff;
        color: #070706; }
  #download .downloads-community .downloads-editions-container .dce-download-button,
  #download .downloads-developer .downloads-editions-container .dce-download-button,
  #download .downloads-enterprise .downloads-editions-container .dce-download-button,
  #download .downloads-data-center .downloads-editions-container .dce-download-button {
    margin-top: 3px; }
#download .downloads-community .no-docker-command,
#download .downloads-developer .no-docker-command,
#download .downloads-enterprise .no-docker-command,
#download .downloads-data-center .no-docker-command {
  margin-top: 63px; }
#download .downloads-community .docker_dl {
  position: absolute;
  left: -29px;
  top: 244px;
  text-decoration: none;
  border: 0; }
#download .downloads-community .downloads-editions-container {
  border: 1px solid #e6e8ea;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: relative; }
  #download .downloads-community .downloads-editions-container .OpenSourceMention {
    width: calc(100% + 2px);
    height: 35px;
    color: #3ec92c;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 14px; }
#download .download-community__ajustment {
  position: absolute;
  left: -50px; }
#download .downloads-developer .downloads-editions-container {
  position: relative; }
#download .downloads-developer .downloads-separated > div {
  padding: 0 16px; }
  #download .downloads-developer .downloads-separated > div:before {
    background-color: rgba(255, 255, 255, 0.2); }
#download .downloads-lts {
  display: inline-block;
  padding: 24px;
  border: 1px solid #cfd3d7;
  border-radius: 6px; }
  #download .downloads-lts p {
    font-size: 18px;
    font-weight: 700; }
  #download .downloads-lts .downloads-dropdown {
    display: -webkit-flex;
    display: flex; }
    #download .downloads-lts .downloads-dropdown > .btn-download {
      -webkit-flex: 1;
              flex: 1; }
#download .downloads-dropdown-action {
  position: relative;
  border-radius: 0 3px 3px 0;
  margin-left: -8px;
  padding: 0 16px;
  border-left: 1px solid #fff; }
  #download .downloads-dropdown-action > svg {
    width: 16px;
    transition-timing-function: ease;
    transition-duration: 0.4s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform; }
  #download .downloads-dropdown-action.btn-medium {
    margin-left: -6px;
    padding: 0 8px; }
    #download .downloads-dropdown-action.btn-medium > .downloads-dropdown-submenu {
      width: 218px; }
    #download .downloads-dropdown-action.btn-medium .downloads-dropdown-submenu-nav > li > a {
      padding: 4px 16px 4px 8px; }
#download .downloads-dropdown-submenu {
  position: absolute;
  display: block !important;
  z-index: 200;
  width: 261px;
  padding-top: 4px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  transition-timing-function: ease;
  transition-duration: 0.3s;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, transform;
  transition-property: visibility, opacity, transform, -webkit-transform; }
#download .downloads-dropdown-action.open {
  background-color: #25699d;
  border-color: #25699d; }
  #download .downloads-dropdown-action.open > svg {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg); }
  #download .downloads-dropdown-action.open .downloads-dropdown-submenu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
#download .downloads-dropdown-submenu-inner {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 16px rgba(7, 7, 6, 0.1);
  border-radius: 5px; }
#download .downloads-dropdown-submenu-nav {
  padding-top: 8px;
  padding-bottom: 8px; }
  #download .downloads-dropdown-submenu-nav > li > a {
    display: block;
    color: #070706;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    padding: 4px 16px;
    border-bottom: none;
    transition-timing-function: ease;
    transition-duration: 0.2s;
    transition-property: color, background-color; }
    #download .downloads-dropdown-submenu-nav > li > a:hover {
      color: #4c9bd6;
      background-color: #f9f9fb; }
#download #downloads-all-versions {
  border: 1px solid #cfd3d7;
  border-radius: 6px;
  padding: 24px;
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: border-color; }
  #download #downloads-all-versions > p {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
    transition-timing-function: ease;
    transition-duration: 0.2s;
    transition-property: color; }
  #download #downloads-all-versions.open > p > svg {
    display: none; }
  #download #downloads-all-versions:not(.open) {
    cursor: pointer; }
    #download #downloads-all-versions:not(.open):hover {
      border-color: #4c9bd6; }
      #download #downloads-all-versions:not(.open):hover > p {
        color: #4c9bd6; }
    #download #downloads-all-versions:not(.open) > ul {
      display: none; }
  #download #downloads-all-versions > ul > li {
    margin: 24px 0 0; }
    #download #downloads-all-versions > ul > li:not(:last-of-type) {
      border-bottom: 1px solid #cfd3d7;
      padding-bottom: 24px; }
    #download #downloads-all-versions > ul > li > div {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: nowrap;
              flex-wrap: nowrap;
      margin: 0; }
      #download #downloads-all-versions > ul > li > div h5 {
        -webkit-flex: 0 0 160px;
                flex: 0 0 160px; }
      #download #downloads-all-versions > ul > li > div .downloads-all-versions-desc {
        -webkit-flex: 1;
                flex: 1; }
      #download #downloads-all-versions > ul > li > div .downloads-dropdown {
        margin-left: 40px; }

@media only screen and (max-width: 1130px) {
  #download .downloads-community .downloads-editions-container,
  #download .downloads-developer .downloads-editions-container,
  #download .downloads-enterprise .downloads-editions-container,
  #download .downloads-data-center .downloads-editions-container {
    height: 926px; } }
/********         request trial DE page        **********/
#download .page-content.request-trial-edition {
  overflow: visible; }

#download .downloads-community strong.text-highlight {
  font-weight: bold; }

#download .request-trial-edition .downloads-community {
  border-radius: 11px;
  background-color: #fff;
  box-shadow: 0 9px 39px rgba(7, 7, 6, 0.15);
  z-index: 1;
  padding: 32px 40px;
  padding-bottom: 87px; }
  #download .request-trial-edition .downloads-community.download-community__ajustment {
    top: 32px; }

#download .request-trial-edition .downloads-developer {
  padding: 32px;
  padding-bottom: 16px; }

.request-trial--title, h2.request-trial-pricing-details--title {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  color: #070706;
  margin-bottom: 32px; }

.request-trial-developer--title {
  margin-top: 24px;
  margin-bottom: 32px;
  font-size: 36px;
  line-height: 42px;
  font-weight: 700; }

#download .request-trial-developer .can-do {
  margin-bottom: 24px;
  margin-top: 8px; }
#download .request-trial-developer .can-do > li {
  padding-left: 32px;
  margin-top: 8px; }

#download .request-trial-edition .downloads-developer {
  border-radius: 11px;
  background-color: #174f7b;
  color: #fff; }

#download .request-trial-edition .downloads-enterprise {
  border-radius: 11px;
  background-color: #174f7b;
  color: #fff; }

#download > .dark-background.request-trial-edition {
  padding-bottom: 96px;
  margin-bottom: 0; }

#download > .request-trial-edition .form-container input {
  font-family: "Roboto"; }

h2.request-trial-pricing-details--title {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 48px; }

h3.request-trial-pricing-details--subtitle {
  font-size: 21px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 8px; }

#PricingDetails table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px; }

#PricingDetails td,
#PricingDetails th {
  border-bottom: 1px solid #dddddd;
  text-align: left;
  padding-top: 4px;
  padding-bottom: 4px; }

.form-name-wrapper {
  display: -webkit-flex;
  display: flex; }

.custom-arrow {
  right: -8px !important; }

.firstname {
  padding-left: 0 !important; }

.lastname {
  padding-right: 0 !important; }

.request-trial--submit-button {
  margin-left: 0 !important;
  margin-top: 16px !important; }

.request-trial {
  padding-top: 48px; }

.request-trial-pricing-details--left-col {
  padding-right: 48px; }

.request-trial-pricing-details--right-col {
  padding-right: 16px;
  padding-left: 16px; }

.request-trial--wrapper {
  display: -webkit-flex;
  display: flex; }

.price-select-helper {
  top: 40px; }

#instance_running {
  width: auto;
  height: auto;
  margin-top: 16px; }

/* The container */
.form-checkbox--wrapper {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-top: 16px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #2d3032; }

/* Hide the browser's default checkbox */
.form-checkbox--wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #cfd3d7; }

/* On mouse-over, add a grey background color */
.form-checkbox--wrapper:hover input ~ .checkmark {
  border: 1px solid #8a8c8f; }

/* When the checkbox is checked, add a blue background */
.form-checkbox--wrapper input:checked ~ .checkmark {
  background-color: #4c9bd6; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.form-checkbox--wrapper input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.form-checkbox--wrapper .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 7px;
  border: 1px solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

/********************************************************/
/*************** Alms section in DE block *****************/
.alm-trial-page--block {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center; }
  .alm-trial-page--block > img {
    margin-right: 4px; }

.alm-trial-page--container {
  display: -webkit-flex;
  display: flex; }
  .alm-trial-page--container > div.column {
    margin: 15px 20px 0 28px; }

/********************************************************/
.styled .breadcrumb {
  margin-top: -50px;
  margin-left: -20px;
  padding-bottom: 20px; }
  .styled .breadcrumb li {
    position: initial;
    margin-top: 0;
    padding-left: 0; }
    .styled .breadcrumb li:before {
      background: none; }

.breadcrumb {
  padding-top: 1em;
  list-style: none;
  font-size: 80%;
  padding-bottom: 1px; }
  .breadcrumb li {
    display: inline; }
    .breadcrumb li:first-child a {
      text-decoration: none; }
    .breadcrumb li:first-child svg {
      width: 15px;
      height: 20px;
      fill: #434447;
      top: 5px;
      margin: 0; }
    .breadcrumb li svg {
      display: inline;
      fill: #8a8c8f;
      height: 11px;
      width: 11px;
      margin: 0 6px;
      position: relative;
      top: 2px; }
    .breadcrumb li a {
      color: #4c9bd6;
      text-decoration: underline; }
      .breadcrumb li a :active,
      .breadcrumb li a :hover,
      .breadcrumb li a :focus {
        color: #b6b6b6; }

.hello {
  position: absolute;
  height: 48px;
  top: 0;
  width: 100%;
  z-index: 10000;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-align-content: center;
          align-content: center;
  -webkit-justify-content: space-between;
          justify-content: space-between; }
  .hello svg {
    width: 24px;
    fill: white;
    transition-timing-function: ease;
    transition-duration: 0.2s;
    position: relative;
    left: 4px; }
  .hello .btn-nav-hello_bar {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    font-weight: 500;
    text-decoration: none;
    padding-left: 16px; }
    .hello .btn-nav-hello_bar:hover svg {
      left: 8px; }
  .hello > div {
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: center;
            align-items: center;
    padding-top: 5px; }
    .hello > div > h3,
    .hello > div > span,
    .hello > div > a {
      display: inline-block;
      font-weight: 400; }
    .hello > div > span.label {
      padding: 6px;
      border-radius: 4px;
      font-weight: 500;
      background: #63b0ea;
      font-size: 14px;
      text-transform: uppercase;
      margin-right: 0; }
    .hello > div > span {
      margin: 0 1em; }
    .hello > div > .btn-outlined {
      border: 1px solid #191919;
      background-color: transparent;
      color: #191919; }
      .hello > div > .btn-outlined:hover, .hello > div > .btn-outlined:focus {
        background-color: #191919;
        color: #fff; }
  .hello .hello-close {
    display: block;
    float: right;
    width: 48px;
    height: 48px;
    margin: 0;
    position: relative;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease; }
    .hello .hello-close svg {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 15px;
      height: 15px; }
    .hello .hello-close:hover {
      opacity: 1; }

.page-wrapper.hello-visible {
  margin-top: 48px; }

@media only screen and (max-width: 980px) {
  .is-responsive .hello {
    height: 69px; }
    .is-responsive .hello > div {
      display: inline-block;
      font-size: 14px;
      width: 100%; }
      .is-responsive .hello > div > span {
        margin-left: 19px; }
        .is-responsive .hello > div > span:not(.label) {
          width: 100%; }
        .is-responsive .hello > div > span.label {
          padding: 2px 6px;
          margin-bottom: 4px;
          margin-top: 4px; }
    .is-responsive .hello .btn-nav-hello_bar {
      margin-left: 3px; }
    .is-responsive .hello .hello-close {
      margin: 12px 8px 0 0; } }
@media only screen and (max-width: 534px) {
  .is-responsive .hello {
    height: 83px; }
    .is-responsive .hello > div {
      padding-top: 2px; }
      .is-responsive .hello > div > span.label {
        font-size: 12px; }
      .is-responsive .hello > div > span:not(.label) {
        line-height: 18px;
        width: 70%; }
    .is-responsive .hello .hello-close {
      margin-top: 19px; }
  .is-responsive .page-wrapper.hello-visible {
    margin-top: 82px; } }
@media only screen and (max-width: 480px) {
  .is-responsive .hello > div > span:not(.label) {
    line-height: 18px;
    width: 300px; } }
@media only screen and (max-width: 380px) {
  .is-responsive .hello .btn-nav-hello_bar {
    font-size: 12px; }
  .is-responsive .hello > div > span.label {
    font-size: 12px; }
  .is-responsive .hello > div > span:not(.label) {
    width: calc(100% - 50px);
    font-size: 12px; } }
.edition-tag {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  border-radius: 2px;
  padding: 3px;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  position: relative; }
  .edition-tag.developer {
    color: #4c9bd6;
    border: 1px solid #4c9bd6; }
    .edition-tag.developer.label {
      border: 1px solid #4c9bd6;
      background: white;
      text-transform: capitalize;
      border-radius: 4px;
      cursor: pointer; }
  .edition-tag.code-review {
    background-color: #c99916;
    border: 1px solid #c99916;
    color: #fff; }
  .edition-tag.vulnerabilities {
    background-color: #d75a4a;
    border: 1px solid #d75a4a;
    color: #fff; }
  .edition-tag.enterprise {
    color: #c72b28;
    border: 1px solid #c72b28; }
    .edition-tag.enterprise.label {
      border: 1px solid #c72b28;
      background: white;
      text-transform: capitalize;
      border-radius: 4px;
      cursor: pointer; }
  .edition-tag.developer, .edition-tag.enterprise {
    font-weight: 700; }
  .edition-tag.data-center {
    color: #7a8ba5;
    border: 1px solid #7a8ba5; }
  .edition-tag:not(.full):hover {
    color: white; }
    .edition-tag:not(.full):hover > .tooltip {
      display: block; }
    .edition-tag:not(.full):hover.developer {
      background-color: #4c9bd6;
      border: 1px solid #4c9bd6; }
    .edition-tag:not(.full):hover.enterprise {
      background-color: #c72b28;
      border: 1px solid #c72b28; }
    .edition-tag:not(.full):hover.data-center {
      background-color: #7a8ba5;
      border: 1px solid #7a8ba5; }
  .edition-tag.full {
    color: #fff !important;
    background-color: #4c9bd6;
    border: 1px solid #4c9bd6; }
    .edition-tag.full.gray {
      color: #2d3032 !important;
      background-color: #e6e8ea;
      border: 1px solid #e6e8ea; }
    .edition-tag.full.green {
      color: #fff !important;
      background-color: #3ec92c;
      border: 1px solid #3ec92c; }
    .edition-tag.full.dark-gray {
      color: #fff !important;
      background-color: #65666a;
      border: 1px solid #65666a; }
      .edition-tag.full.dark-gray.download-page {
        border-radius: 0; }
  .edition-tag.big {
    font-size: 16px;
    line-height: 12px;
    padding: 8px; }
  .edition-tag.label {
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 4px;
    background-color: #0b3c62;
    border: 1px solid #0b3c62; }

.feature {
  padding: 10px 0px 20px 0px; }
  .feature:before, .feature:after {
    display: table;
    content: "";
    line-height: 0; }
  .feature:after {
    clear: both; }
  .feature:nth-child(odd) {
    background-color: none; }
  .feature:last-child {
    border-bottom: none; }
  .feature .page-container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
    width: 960px;
    border-bottom: 1px solid rgba(207, 211, 215, 0.5);
    padding: 0px 0px 42px 0px; }
    .feature .page-container.no-border {
      border-bottom: none; }
    .feature .page-container.index {
      width: 100%;
      border-bottom: none;
      padding-left: 20px;
      padding-right: 20px; }

/* row 2 */
.feature-main {
  -webkit-flex-basis: 50%;
          flex-basis: 50%;
  padding-right: 30px; }
  .feature-main.full-width {
    -webkit-flex-basis: 100%;
            flex-basis: 100%; }
  .feature-main h2 {
    font-size: 21px;
    font-weight: 700;
    color: #070706;
    text-transform: none; }
  .feature-main h3 {
    font-size: 26px;
    font-weight: 400;
    color: #4c9bd6;
    text-transform: none; }
  .feature-main p {
    font-size: 16px;
    font-weight: 300;
    color: #262626; }
  .feature-main .padding-txt-left {
    padding-left: 30px; }

.feature-main-intro {
  -webkit-flex-basis: 50%;
          flex-basis: 50%; }
  .feature-main-intro h4 {
    font-size: 25px;
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 20px; }

.feature-image img {
  max-width: 460px; }

.half-half {
  -webkit-flex-basis: calc(50% - 60px / 2);
          flex-basis: calc(50% - 60px / 2);
  -webkit-align-self: stretch;
          align-self: stretch;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between; }
  .half-half p {
    margin-top: 0px; }
  .half-half .btn-secondary {
    margin-top: 15px;
    margin-right: 0px; }

.feature-header {
  margin-top: 135px;
  margin-bottom: 120px; }
  .feature-header.middle-text-bloc {
    margin-top: 80px;
    margin-bottom: 80px; }
  .feature-header h1 {
    position: relative;
    font-weight: 900;
    margin-bottom: 32px; }
    .feature-header h1 span {
      position: relative;
      z-index: 10; }
    .feature-header h1.heading-2 > span {
      display: inline-block; }
    .feature-header h1 > span:last-child::before {
      content: "";
      position: absolute;
      bottom: -4px;
      left: -32px;
      width: calc(100% - 40px);
      height: 33px;
      opacity: 0.5;
      background-color: #b9ddf8;
      -webkit-transform: scale3d(1, 1, 1);
              transform: scale3d(1, 1, 1);
      -webkit-transform-origin: 0% 50%;
              transform-origin: 0% 50%; }
  .feature-header h6 {
    margin-bottom: 8px; }
  .feature-header p {
    font-size: 21px;
    line-height: 26px;
    font-weight: 400; }
  .feature-header .main-image {
    position: relative;
    box-shadow: 0 18px 40px rgba(7, 7, 6, 0.2);
    border-radius: 6px; }
  .feature-header .background-image {
    position: absolute;
    left: 68px;
    bottom: -54px;
    border: 1px solid #cfd3d7;
    border-radius: 7px; }
  .feature-header .illustration {
    position: absolute;
    left: -50px;
    border-radius: 7px;
    max-width: 130%; }
  .feature-header .action-description {
    position: relative; }
    .feature-header .action-description .animated-down-arrow {
      top: 400%; }

.animated-down-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  .animated-down-arrow span {
    display: block;
    width: 10px;
    height: 010px;
    border-bottom: 3px solid #4c9bd6;
    border-right: 3px solid #4c9bd6;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin: -10px;
    -webkit-animation: animate 2s infinite;
            animation: animate 2s infinite; }
  .animated-down-arrow span:nth-child(2) {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s; }
  .animated-down-arrow span:nth-child(3) {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s; }
@-webkit-keyframes animate {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(-20px, -20px);
            transform: rotate(45deg) translate(-20px, -20px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(20px, 20px);
            transform: rotate(45deg) translate(20px, 20px); } }
@keyframes animate {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(-20px, -20px);
            transform: rotate(45deg) translate(-20px, -20px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(20px, 20px);
            transform: rotate(45deg) translate(20px, 20px); } }
.feature-item {
  padding-top: 100px;
  padding-bottom: 100px; }
  .feature-item.no-padding {
    padding-bottom: 0; }
  .feature-item figure {
    position: relative;
    margin-top: 48px; }
  .feature-item label {
    color: #4c9bd6;
    text-transform: uppercase;
    font-weight: 700; }
  .feature-item ul {
    list-style: none; }
  .feature-item ul li::before {
    content: "\2022";
    color: #327bb3;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em; }
  .feature-item ul.reset-list-style li::before {
    content: none;
    color: #327bb3;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em; }
  .feature-item .new-rules {
    font-weight: 700;
    color: #3ec92c !important; }
  .feature-item .icon-square-large {
    height: 64px; }
  .feature-item .icon-square-normal {
    height: 48px; }
  .feature-item .icon-square-small {
    height: 16px; }
  .feature-item .alm-logo .btn-nav {
    display: inline-block; }
  .feature-item .alm-logo p {
    font-weight: 500; }
  .feature-item .alm-logo .logo {
    min-height: 94px; }
  .feature-item .alm-logo img {
    width: 68px; }
  .feature-item .round-logo {
    display: -webkit-inline-flex;
    display: inline-flex;
    position: relative;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    background-color: #fff;
    height: 136px;
    width: 136px;
    margin-bottom: 24px;
    border-radius: 68px;
    box-shadow: 0 13px 36px rgba(7, 7, 6, 0.1);
    transition-timing-function: ease;
    transition-duration: 0.2s;
    transition-property: "box-shadow"; }
    .feature-item .round-logo:hover {
      box-shadow: 0 23px 36px rgba(7, 7, 6, 0.3); }
      .feature-item .round-logo:hover ~ .tooltip {
        display: block;
        top: initial;
        font-size: 14px;
        width: 140px;
        left: calc(50% - 70px); }
  .feature-item .dots {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    font-size: 44px;
    line-height: 42px;
    margin-top: -42px;
    color: #2d3032;
    opacity: 0.3; }
    .feature-item .dots:after {
      content: "..."; }
  .feature-item .rounded-image {
    box-shadow: 0 16px 56px rgba(7, 7, 6, 0.15);
    border-radius: 6px; }
  .feature-item .tab-selector {
    font-size: 21px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: -1px;
    cursor: pointer; }
    .feature-item .tab-selector li {
      padding: 16px;
      border-bottom: 2px solid #e6e8ea;
      transition-timing-function: ease;
      transition-duration: 0.2s;
      transition-property: border-color, font-weight; }
      .feature-item .tab-selector li::before {
        display: none !important; }
      .feature-item .tab-selector li:hover {
        border-bottom: 2px solid #b9ddf8;
        color: #25699d; }
      .feature-item .tab-selector li:focus {
        color: #070706; }
      .feature-item .tab-selector li.active, .feature-item .tab-selector li:active {
        font-weight: 700;
        border-bottom: 2px solid #4c9bd6;
        outline: none; }
    .feature-item .tab-selector.under li {
      border-bottom: none;
      border-top: 2px solid #e6e8ea; }
      .feature-item .tab-selector.under li:hover {
        border-top: 2px solid #b9ddf8;
        color: #25699d; }
      .feature-item .tab-selector.under li:focus {
        color: #070706; }
      .feature-item .tab-selector.under li.active, .feature-item .tab-selector.under li:active {
        border-bottom: none;
        border-top: 2px solid #4c9bd6;
        color: #070706; }
  .feature-item .auto-tab-selector {
    position: relative;
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: -1px;
    cursor: pointer; }
    .feature-item .auto-tab-selector li {
      padding: 16px;
      transition-timing-function: ease;
      transition-duration: 0.2s;
      transition-property: font-weight, color; }
      .feature-item .auto-tab-selector li .auto-tab-border {
        position: relative;
        margin: 16px 4px 0;
        width: 100%;
        height: 4px;
        background-color: #e6e8ea;
        border-radius: 4px;
        transition-timing-function: ease;
        transition-duration: 0.2s;
        transition-property: background-color; }
        .feature-item .auto-tab-selector li .auto-tab-border:after {
          content: "";
          display: block;
          width: 0%;
          height: 4px;
          background-color: #4c9bd6;
          transition-timing-function: ease;
          transition-duration: 0.5s;
          transition-property: width; }
      .feature-item .auto-tab-selector li:hover {
        color: #25699d; }
        .feature-item .auto-tab-selector li:hover .auto-tab-border {
          background-color: #b9ddf8; }
      .feature-item .auto-tab-selector li:focus {
        color: #070706; }
      .feature-item .auto-tab-selector li.active, .feature-item .auto-tab-selector li:active {
        font-weight: 700;
        outline: none; }
    .feature-item .auto-tab-selector.auto-change li.active .auto-tab-border:after {
      transition: 8s width linear;
      width: 100%; }
    .feature-item .auto-tab-selector:not(.auto-change) li.active .auto-tab-border {
      background-color: #4c9bd6; }
  .feature-item.get-sq {
    height: 700px; }
    .feature-item.get-sq.annoucement {
      height: 390px; }
    .feature-item.get-sq > div {
      height: 100%; }
    .feature-item.get-sq .first-image {
      position: absolute;
      right: 60px;
      top: 320px;
      box-shadow: 0 23px 49px rgba(7, 7, 6, 0.4);
      z-index: 10; }
    .feature-item.get-sq .second-image {
      position: relative;
      top: 100px; }
    .feature-item.get-sq .third-image {
      position: relative;
      top: 190px;
      left: 70px; }
  .feature-item a.user-case {
    color: #070706;
    border: 1px solid #cfd3d7;
    border-radius: 5px;
    padding: 32px;
    box-shadow: 0 1px 1px rgba(7, 7, 6, 0.1);
    margin-bottom: 16px;
    transition-timing-function: ease;
    transition-duration: 0.2s;
    transition-property: box-shadow, -webkit-transform;
    transition-property: box-shadow, transform;
    transition-property: box-shadow, transform, -webkit-transform; }
    .feature-item a.user-case.dark-blue {
      color: #fff;
      background: #0b3c62;
      border: 1px solid #2d3032; }
    .feature-item a.user-case:hover {
      box-shadow: 0 10px 30px rgba(7, 7, 6, 0.2);
      -webkit-transform: translateY(-4px);
              transform: translateY(-4px); }
      .feature-item a.user-case:hover span {
        color: #25699d; }
    .feature-item a.user-case h6 {
      font-weight: 900; }
    .feature-item a.user-case span {
      font-weight: 700;
      color: #4c9bd6; }
    .feature-item a.user-case .rules {
      font-weight: 400;
      font-size: 16px;
      color: #8a8c8f; }

@media only screen and (max-width: 980px) {
  .feature-item {
    padding: 40px 0; } }
/*    security page in features style */
.security-feedback-container {
  min-height: 390px; }

/***************************************/
.index-page {
  font-weight: 400;
  background: url("/index/bg-bottom.svg") bottom center repeat-x;
  background-size: 1800px auto; }
  .index-page .page-container {
    margin-bottom: 140px; }
  .index-page h2 {
    text-align: center;
    font-size: 36px;
    line-height: 42px;
    max-width: 670px;
    margin: auto; }
  .index-page .intro-text {
    margin: 24px auto;
    max-width: 690px;
    text-align: center;
    font-size: 21px;
    line-height: 26px; }
  .index-page .btn {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center; }
  @media only screen and (min-width: 980px) {
    .index-page .recommended-reading h6 {
      height: 90px; }
    .index-page .recommended-reading p {
      height: 110px; } }

.index-page-header {
  padding-top: 80px;
  background: url("/index/bg-top.svg") top center repeat-x;
  background-size: 1565px auto;
  text-align: center; }
  .index-page-header h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 50px; }
    .index-page-header h1 .h1-small {
      display: block;
      font-size: 36px;
      font-weight: 400; }
  .index-page-header .latest-release {
    margin: 24px auto 0 auto; }
    .index-page-header .latest-release img {
      margin-right: 4px;
      -webkit-transform: translateY(15%);
              transform: translateY(15%); }
    .index-page-header .latest-release a {
      text-decoration: none;
      font-weight: 500; }
  .index-page-header .page-container {
    margin-bottom: 0; }

.index-page-cci h3 {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 32px; }
.index-page-cci .col {
  padding-left: 64px;
  padding-right: 48px;
  font-size: 18px;
  line-height: 26px; }
  .index-page-cci .col .icon {
    width: 58px;
    margin-left: -66px;
    float: left;
    margin-top: -7px; }
.index-page-cci .intro-text {
  margin-bottom: 64px; }

.index-page-languages {
  margin-bottom: 100px;
  text-align: center; }
  .index-page-languages .intro-text {
    max-width: 920px;
    font-size: 18px;
    line-height: 26px; }
  .index-page-languages .btn-nav {
    font-size: 18px; }
  .index-page-languages #see-more-languages {
    position: relative;
    margin: 32px 0;
    padding-right: 28px;
    color: #4c9bd6;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    background: transparent;
    border: 0;
    overflow: hidden;
    cursor: pointer; }
    .index-page-languages #see-more-languages svg {
      position: absolute;
      width: 18px;
      top: 0;
      right: 0; }
    .index-page-languages #see-more-languages:hover {
      color: #25699d; }
      .index-page-languages #see-more-languages:hover svg path {
        fill: #25699d; }
  .index-page-languages #languages-more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease; }
    .index-page-languages #languages-more.show {
      max-height: 1000px; }
  .index-page-languages .row {
    max-width: 840px;
    -webkit-justify-content: space-around;
            justify-content: space-around;
    margin: 24px auto 0 auto; }
  .index-page-languages.list-language-edition > .row {
    max-width: 980px;
    -webkit-justify-content: space-around;
            justify-content: space-around;
    margin: 24px auto 0 auto; }
  .index-page-languages.list-language-edition > .row.last {
    max-width: 730px; }
  .index-page-languages .col {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-flex: 0 0 120px;
            flex: 0 0 120px;
    height: 100px; }
    .index-page-languages .col img {
      max-height: 60px;
      display: block;
      margin: auto; }
    .index-page-languages .col.text-logo img {
      max-width: 70px; }
    .index-page-languages .col.flex-logo img {
      height: 42px;
      width: 42px; }
    .index-page-languages .col.typescript img {
      max-width: 90px; }
    .index-page-languages .col .language-label {
      color: #8a8c8f;
      font-size: 18px;
      line-height: 26px; }

.index-page-workflow {
  padding: 0 !important;
  position: relative;
  z-index: 1; }
  .index-page-workflow h2,
  .index-page-workflow .intro-text {
    text-align: left; }
  .index-page-workflow .btn-nav {
    font-size: 18px; }
  .index-page-workflow .box {
    position: relative;
    margin-right: 16px;
    padding: 40px;
    background: white;
    border-radius: 8px; }
    .index-page-workflow .box::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      border-radius: 8px;
      box-shadow: 0 0 55px #cfd3d7; }
    .index-page-workflow .box h3 {
      margin: 24px 0;
      font-size: 26px;
      line-height: 32px; }
    .index-page-workflow .box p {
      margin-bottom: 24px; }
    .index-page-workflow .box .box-icon {
      height: 32px;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
              align-items: center; }
    .index-page-workflow .box .col {
      text-align: center; }

.alms .row {
  padding: 0 0 2px 0; }
.alms .no-link {
  padding: 6px 0;
  font-weight: 500; }
.alms > div > img {
  max-height: 32px; }
.alms img {
  float: left;
  height: auto;
  width: 36px; }
.alms a.btn-nav:after {
  background-position: -3px 3px;
  padding-bottom: 8px; }
.alms a.btn-nav:hover:after {
  background-position: 1px 3px;
  padding-bottom: 8px; }
.alms p {
  float: left;
  margin: 0 !important;
  padding: 4px 8px;
  font-size: 18px; }

.index-page-editions {
  margin-top: 190px;
  text-align: center; }
  .index-page-editions > div > h2 {
    text-align: center; }
  .index-page-editions h3 {
    font-size: 26px;
    line-height: 32px; }
  .index-page-editions .row {
    max-width: 1000px;
    margin: 0 auto;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .index-page-editions .col {
    position: relative; }
    .index-page-editions .col:last-of-type .edition {
      border-right: 0; }
    .index-page-editions .col span {
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
      color: #8a8c8f;
      letter-spacing: 4px; }
  .index-page-editions span.free-open-source {
    font-size: 14px;
    font-weight: 700;
    color: #28a745;
    letter-spacing: 0; }
  .index-page-editions .btn {
    margin-top: 64px; }
  .index-page-editions .cardLink-edition--homepage {
    margin-top: 44px; }

.edition--card {
  border-radius: 5px;
  padding: 30px;
  text-align: left; }
  .edition--card.community {
    background: #ffffff;
    box-shadow: 0px 3px 28px 1px rgba(7, 7, 6, 0.1);
    margin-right: 20px; }
  .edition--card .btn-nav {
    position: absolute;
    bottom: 40px; }
  .edition--card .data-center--link {
    border: 0;
    font-weight: 500;
    position: absolute;
    bottom: 40px;
    font-size: 18px;
    display: -webkit-flex;
    display: flex; }
    .edition--card .data-center--link:hover {
      border: 0; }
  .edition--card .homepage--external-link {
    margin-left: 8px; }

.lts-link {
  display: block;
  color: #2d3032;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 2px 10px 2px;
  border-radius: 2px;
  margin: 0 auto;
  width: 50%;
  text-align: center;
  border: 1px solid #cfd3d7; }
  .lts-link:hover {
    background-color: rgba(207, 211, 215, 0.5);
    transition: all 0.1s ease-in;
    border: 1px solid rgba(207, 211, 215, 0.5); }
  .lts-link em {
    font-weight: 700;
    font-style: normal;
    text-decoration: underline;
    padding-left: 10px; }

.tag-new {
  background-color: #c99916;
  padding: 4px 7px 4px 7px;
  border-radius: 2px;
  color: #fff;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 400; }

/* Responsive Version in Homepage */
@media only screen and (max-width: 980px) {
  .is-home .page-container {
    min-width: initial !important;
    max-width: initial !important; }
  .is-home .index-page-languages .language-details-link {
    width: 100px;
    height: 100px; }
  .is-home .index-page-editions .col {
    min-width: 100%; }
    .is-home .index-page-editions .col .edition {
      border: none; }
  .is-home .index-page .page-container {
    margin-bottom: 30px; }
  .is-home .index-page-header h1 {
    line-height: 68px; }
  .is-home .index-page-cci .col {
    margin-bottom: 30px;
    min-width: 100%; }
  .is-home .index-page-workflow h2,
  .is-home .index-page-workflow .intro-text {
    text-align: center; }
  .is-home .index-page-workflow .no-gutters > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: initial;
    margin: 0 20px 0 20px;
    -webkit-flex: initial; }
  .is-home .index-page-workflow .box {
    margin-right: 0;
    width: 100%;
    margin: 30px 20px 30px 0; }
    .is-home .index-page-workflow .box:nth-child(2) {
      margin-right: 0; }
  .is-home .edition--card .btn-nav,
  .is-home .edition--card .data-center--link {
    bottom: 0; } }
@media only screen and (max-width: 600px) {
  .is-home .index-page-workflow .no-gutters > [class*="col-"] {
    margin-bottom: 30px; }
  .is-home .index-page-workflow .box {
    margin-right: 0;
    width: 100%;
    min-width: 100%;
    margin: 16px 0; } }
.lts-page header {
  background-color: #f9f9fb;
  padding-bottom: 44px; }
  .lts-page header .subtitle {
    font-weight: 400; }
  .lts-page header h1 {
    font-size: 44px;
    font-weight: 100;
    color: #4c9bd6;
    padding-top: 44px;
    padding-bottom: 22px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    text-align: center; }
  .lts-page header .page-container > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    max-width: 960px;
    margin: 0 auto; }
    .lts-page header .page-container > ul > li {
      display: block;
      width: 31.5%;
      border-radius: 5px;
      border: 1px solid #cfd3d7;
      box-shadow: 0 0 2px 1px rgba(7, 7, 6, 0.1);
      background-color: #fff;
      padding: 16px 33px 22px;
      line-height: 2; }
      .lts-page header .page-container > ul > li h3 {
        font-weight: 400;
        font-size: 21px; }
      .lts-page header .page-container > ul > li h4 {
        font-weight: 300;
        font-size: 11px;
        border-bottom: 1px solid #cfd3d7;
        margin-top: 11px;
        margin-bottom: 4px; }
      .lts-page header .page-container > ul > li > ul {
        line-height: 1.6; }
        .lts-page header .page-container > ul > li > ul > li > a {
          text-decoration: none;
          font-weight: 400; }
          .lts-page header .page-container > ul > li > ul > li > a:hover {
            border-bottom: 1px solid #25699d; }
.lts-page main section {
  position: relative; }
  .lts-page main section h2 {
    font-size: 36px;
    font-weight: 100;
    margin: 44px auto 22px auto;
    text-align: center; }
  .lts-page main section a[id] {
    position: absolute;
    top: -99px; }
    .lts-page main section a[id]:target + article, .lts-page main section a[id]:target + figure {
      background-color: rgba(207, 211, 215, 0.2); }
      .lts-page main section a[id]:target + article h3, .lts-page main section a[id]:target + figure h3 {
        font-weight: 500; }
      .lts-page main section a[id]:target + article p, .lts-page main section a[id]:target + article figcaption, .lts-page main section a[id]:target + figure p, .lts-page main section a[id]:target + figure figcaption {
        font-weight: 400; }
  .lts-page main section article,
  .lts-page main section figure {
    border-radius: 5px;
    padding: 22px; }
    .lts-page main section article h3,
    .lts-page main section figure h3 {
      font-size: 21px;
      font-weight: 400;
      margin-bottom: 11px; }
    .lts-page main section article img,
    .lts-page main section figure img {
      box-sizing: content-box;
      border: 1px solid #cfd3d7;
      border-radius: 3px;
      box-shadow: 0 0 2px 1px rgba(7, 7, 6, 0.1); }
.lts-page .subtitle {
  font-weight: 300;
  font-size: 21px;
  display: block;
  text-align: center;
  margin: 0 auto 33px auto;
  line-height: 1.3; }
.lts-page .external {
  text-decoration: none;
  border-bottom: 1px solid rgba(76, 155, 214, 0.3);
  position: relative;
  margin-bottom: 11px;
  display: inline-block; }
  .lts-page .external:after {
    display: none;
    width: 15px;
    height: 15px;
    position: absolute;
    right: -1.2em;
    top: 0; }
  .lts-page .external:hover {
    border-bottom-color: #25699d; }
    .lts-page .external:hover:after {
      display: block; }
.lts-page p,
.lts-page figcaption {
  margin-bottom: 11px;
  line-height: 1.4; }
.lts-page .deep-code-analysis {
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(207, 211, 215, 0.5); }
  .lts-page .deep-code-analysis .page-container {
    max-width: 1000px;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .lts-page .deep-code-analysis article {
    width: 47%;
    display: inline-block; }
.lts-page .greater-insights {
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(207, 211, 215, 0.5); }
  .lts-page .greater-insights .page-container {
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .lts-page .greater-insights figure {
    width: 390px; }
    .lts-page .greater-insights figure img {
      margin-top: 5px;
      margin-bottom: 11px;
      max-width: unset; }
.lts-page .integrated-robust .page-container {
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between; }
  .lts-page .integrated-robust .page-container article {
    margin-bottom: 44px; }
  .lts-page .integrated-robust .page-container figure {
    display: inline-block;
    width: 48%;
    max-width: 50%; }
    .lts-page .integrated-robust .page-container figure img {
      margin-bottom: 11px; }
  .lts-page .integrated-robust .page-container article {
    display: inline-block;
    width: 30%;
    max-width: 33%; }
.lts-page #download {
  padding-top: 33px;
  padding-bottom: 44px;
  background-color: #f9f9fb;
  text-align: center; }
  .lts-page #download > h2 {
    font-size: 36px;
    font-weight: 100;
    margin: 0 auto 11px auto;
    text-align: center; }
  .lts-page #download > .btn {
    margin-bottom: 22px; }

.lts-page header .page-container {
  padding-top: 32px; }

.page-launch header {
  background-color: #f9f9fb;
  padding-bottom: 66px;
  padding-top: 26px; }
  .page-launch header .subtitle {
    font-weight: 400; }
  .page-launch header .subtitle-header {
    font-size: 26px;
    text-align: center;
    line-height: 1.3;
    max-width: 780px;
    margin: auto; }
  .page-launch header h1 {
    font-size: 55px;
    font-weight: 100;
    color: #4c9bd6;
    padding-top: 22px;
    padding-bottom: 22px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    text-align: center; }
  .page-launch header .page-container > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    max-width: 960px;
    margin: 0 auto; }
    .page-launch header .page-container > ul > li {
      display: block;
      width: 31.5%;
      border-radius: 5px;
      border: 1px solid #cfd3d7;
      box-shadow: 0 0 2px 1px rgba(7, 7, 6, 0.1);
      background-color: #fff;
      padding: 16px 33px 22px;
      line-height: 2; }
      .page-launch header .page-container > ul > li h3 {
        font-weight: 400;
        font-size: 21px; }
      .page-launch header .page-container > ul > li h4 {
        font-weight: 300;
        font-size: 11px;
        border-bottom: 1px solid #cfd3d7;
        margin-top: 11px;
        margin-bottom: 4px; }
      .page-launch header .page-container > ul > li > ul {
        line-height: 1.6; }
        .page-launch header .page-container > ul > li > ul > li > a {
          text-decoration: none;
          font-weight: 400; }
          .page-launch header .page-container > ul > li > ul > li > a:hover {
            border-bottom: 1px solid #25699d; }
.page-launch main section {
  position: relative; }
  .page-launch main section h2 {
    font-size: 36px;
    font-weight: 500;
    margin: 44px auto 22px auto;
    text-align: center; }
  .page-launch main section a[id] {
    position: absolute;
    top: -99px; }
    .page-launch main section a[id]:target + article, .page-launch main section a[id]:target + figure {
      background-color: rgba(207, 211, 215, 0.2); }
      .page-launch main section a[id]:target + article h3, .page-launch main section a[id]:target + figure h3 {
        font-weight: 500; }
      .page-launch main section a[id]:target + article p, .page-launch main section a[id]:target + article figcaption, .page-launch main section a[id]:target + figure p, .page-launch main section a[id]:target + figure figcaption {
        font-weight: 400; }
  .page-launch main section article,
  .page-launch main section figure {
    border-radius: 5px;
    padding: 22px; }
    .page-launch main section article h3,
    .page-launch main section figure h3 {
      font-size: 21px;
      font-weight: 400;
      margin-bottom: 11px; }
    .page-launch main section article img,
    .page-launch main section figure img {
      box-sizing: content-box;
      border: 1px solid #cfd3d7;
      border-radius: 3px;
      box-shadow: 0 0 2px 1px rgba(7, 7, 6, 0.1); }
.page-launch .subtitle {
  font-weight: 300;
  font-size: 18px;
  display: block;
  text-align: center;
  margin: 0 auto 33px auto;
  line-height: 1.5; }
.page-launch .external {
  text-decoration: none;
  border-bottom: 1px solid rgba(76, 155, 214, 0.3);
  position: relative;
  margin-bottom: 11px;
  display: inline-block; }
  .page-launch .external:after {
    display: none;
    width: 15px;
    height: 15px;
    position: absolute;
    right: -1.2em;
    top: 0; }
  .page-launch .external:hover {
    border-bottom-color: #25699d; }
    .page-launch .external:hover:after {
      display: block; }
.page-launch p,
.page-launch figcaption {
  margin-bottom: 11px;
  line-height: 1.4; }
.page-launch .go-code {
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(207, 211, 215, 0.5); }
  .page-launch .go-code .language-logos {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin: 33px auto;
    -webkit-justify-content: center;
            justify-content: center;
    -webkit-align-items: center;
            align-items: center; }
    .page-launch .go-code .language-logos > img {
      margin: 0; }
      .page-launch .go-code .language-logos > img + img {
        margin-left: 66px; }
  .page-launch .go-code .subtitle {
    margin: 0 auto;
    padding-bottom: 6px; }
  .page-launch .go-code .page-container {
    max-width: 1000px;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .page-launch .go-code figure {
    padding: 18px 0 11px 0;
    margin: 0 auto; }
  .page-launch .go-code img {
    display: block; }
  .page-launch .go-code .caption-center {
    text-align: center;
    margin: 0 auto;
    padding-top: 25px;
    font-size: 14px; }
.page-launch .external-analyzer {
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(207, 211, 215, 0.5); }
  .page-launch .external-analyzer .page-container {
    max-width: 800px;
    min-width: 800px;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .page-launch .external-analyzer figure,
  .page-launch .external-analyzer article {
    padding: 22px 22px 22px 0; }
  .page-launch .external-analyzer img {
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .page-launch .external-analyzer .subtitle {
    padding: 0 20px 0 20px; }
  .page-launch .external-analyzer article {
    width: 47%;
    display: inline-block; }
.page-launch .rules-php-developer {
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(207, 211, 215, 0.5); }
  .page-launch .rules-php-developer .page-container {
    max-width: 800px;
    min-width: 1196px;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .page-launch .rules-php-developer figure,
  .page-launch .rules-php-developer article {
    padding: 22px 22px 22px 0; }
  .page-launch .rules-php-developer img {
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .page-launch .rules-php-developer .subtitle {
    padding: 0 190px 0 190px; }
  .page-launch .rules-php-developer article {
    width: 47%;
    display: inline-block; }
.page-launch .security {
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(207, 211, 215, 0.5); }
  .page-launch .security .page-container {
    max-width: 800px;
    min-width: 800px;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin: auto;
    min-width: 0; }
  .page-launch .security figure {
    padding: 22px 0 30px 0; }
  .page-launch .security article {
    padding: 11px 0 11px 0; }
  .page-launch .security img {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .page-launch .security .subtitle {
    padding: 0 20px 0 20px; }
  .page-launch .security article {
    width: 47%;
    display: inline-block; }
.page-launch .pull-request-analyze .page-container {
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between; }
  .page-launch .pull-request-analyze .page-container article {
    margin-bottom: 44px; }
  .page-launch .pull-request-analyze .page-container .subtitle {
    padding: 0 100px 0 100px; }
  .page-launch .pull-request-analyze .page-container figure {
    display: inline-block;
    width: 48%;
    max-width: 50%;
    padding-bottom: 40px; }
    .page-launch .pull-request-analyze .page-container figure h3 {
      text-align: center;
      margin-bottom: 14px; }
    .page-launch .pull-request-analyze .page-container figure figcaption {
      text-align: center; }
    .page-launch .pull-request-analyze .page-container figure img {
      margin-bottom: 11px; }
  .page-launch .pull-request-analyze .page-container article {
    display: inline-block;
    width: 30%;
    max-width: 33%; }
.page-launch .ux-improve {
  border-top: 1px solid rgba(207, 211, 215, 0.5); }
  .page-launch .ux-improve h2 {
    min-width: 600px; }
  .page-launch .ux-improve .page-container {
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
    .page-launch .ux-improve .page-container .subtitle {
      padding: 0 100px 0 100px; }
    .page-launch .ux-improve .page-container article {
      margin-bottom: 44px; }
    .page-launch .ux-improve .page-container figure {
      display: inline-block;
      width: 48%;
      max-width: 50%; }
      .page-launch .ux-improve .page-container figure img {
        margin-bottom: 11px; }
    .page-launch .ux-improve .page-container article {
      display: inline-block;
      width: 30%;
      max-width: 33%; }
.page-launch #download {
  padding-top: 33px;
  padding-bottom: 44px;
  background-color: #f9f9fb;
  text-align: center; }
  .page-launch #download > h2 {
    font-size: 36px;
    font-weight: 100;
    margin: 0 auto 11px auto;
    text-align: center; }
  .page-launch #download > .btn {
    margin-bottom: 22px; }
  .page-launch #download .btn-nav {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 8px; }

.lts-7-9 .feature-header {
  margin-bottom: 200px; }
  .lts-7-9 .feature-header h1 > span:last-child::before {
    left: 32px; }
.lts-7-9 .languages img {
  padding: 0 20px; }
.lts-7-9 .languages img.ruby {
  width: 180px; }
.lts-7-9 .languages [data-edition] img {
  padding: 40px 20px; }

.annoucement-page .hero_header {
  background: #f9f9fb;
  margin: 0 0 80px; }

.intro-announcement {
  max-width: 820px; }

.annoucement-page section.product-container {
  max-width: 900px;
  margin: 48px auto 0; }
  .annoucement-page section.product-container > h2 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 34px; }
  .annoucement-page section.product-container > h3 {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 0; }
  .annoucement-page section.product-container > span {
    margin: 0 0 18px;
    display: block; }
  .annoucement-page section.product-container > div {
    margin-bottom: 48px; }
    .annoucement-page section.product-container > div > h2 {
      margin: 0 0 18px;
      font-size: 26px;
      line-height: 34px; }
    .annoucement-page section.product-container > div > h3 {
      font-size: 21px;
      font-weight: 400;
      margin-bottom: 0; }
    .annoucement-page section.product-container > div > span {
      display: block; }
    .annoucement-page section.product-container > div > img {
      width: 80px; }
  .annoucement-page section.product-container .feature-item {
    padding-top: 0; }

.annoucement-page .language-update--container {
  color: #070706;
  border: 1px solid #cfd3d7;
  border-radius: 5px;
  padding: 4px 32px 32px 42px;
  margin-bottom: 16px;
  width: 100%;
  height: 100%; }
  .annoucement-page .language-update--container > div {
    display: -webkit-flex;
    display: flex; }
    .annoucement-page .language-update--container > div > img {
      width: 100px;
      height: 100px;
      position: relative;
      left: -30px; }
    .annoucement-page .language-update--container > div > svg {
      width: 100px;
      height: 100px;
      position: relative;
      left: -30px; }
    .annoucement-page .language-update--container > div > div {
      position: absolute;
      right: 30px;
      top: 40px; }

.annoucement-page .share {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  float: left; }
  .annoucement-page .share > ul li {
    color: #4c9bd6; }
    .annoucement-page .share > ul li > a {
      border-bottom: 0; }
      .annoucement-page .share > ul li > a > svg {
        width: 40px;
        fill: #4c9bd6;
        border: 1px solid;
        padding: 8px;
        border-radius: 4px; }
        .annoucement-page .share > ul li > a > svg:hover {
          background: #4c9bd6;
          fill: white;
          border: 1px solid #4c9bd6; }

.annoucement-page .round-image {
  border-radius: 6px; }

.annoucement-page .container {
  max-width: 1050px; }

.card-item {
  height: 100%; }

/* One card with two language images */
.two-langs-same-card.card-item img:nth-child(2) {
  border-left: 1px solid #999;
  margin-left: 4px; }

.two-langs-same-card.card-item .all_editions > a {
  margin-left: 4px; }

.annoucement-page .two-langs-same-card.card-item > .language-update--container > div {
  margin: 10px; }

.annoucement-page .two-langs-same-card.card-item > .language-update--container > div > img {
  width: 86px; }

.annoucement-page .two-langs-same-card.card-item > .language-update--container > div > div {
  top: 55px; }

.page-announcement header {
  background-color: #f9f9fb;
  padding-bottom: 66px;
  padding-top: 26px; }
  .page-announcement header .subtitle {
    font-weight: 400; }
  .page-announcement header .subtitle-header {
    font-size: 26px;
    text-align: center;
    line-height: 1.3;
    max-width: 780px;
    margin: auto; }
  .page-announcement header h1 {
    font-size: 55px;
    font-weight: 100;
    color: #4c9bd6;
    padding-top: 26px;
    padding-bottom: 22px;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    text-align: center; }
  .page-announcement header ul,
  .page-announcement header li {
    list-style: red; }
  .page-announcement header .page-container > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    max-width: 960px;
    margin: 0 auto; }
    .page-announcement header .page-container > ul > li {
      display: block;
      width: 31.5%;
      border-radius: 5px;
      border: 1px solid #cfd3d7;
      box-shadow: 0 0 2px 1px rgba(7, 7, 6, 0.1);
      background-color: #fff;
      padding: 16px 33px 22px;
      line-height: 2; }
      .page-announcement header .page-container > ul > li h3 {
        font-weight: 400;
        font-size: 21px; }
      .page-announcement header .page-container > ul > li h4 {
        font-weight: 300;
        font-size: 11px;
        border-bottom: 1px solid #cfd3d7;
        margin-top: 11px;
        margin-bottom: 4px; }
      .page-announcement header .page-container > ul > li h6 {
        font-size: 12px;
        font-weight: bold; }
      .page-announcement header .page-container > ul > li > ul {
        line-height: 1.6; }
        .page-announcement header .page-container > ul > li > ul > li > a {
          text-decoration: none;
          font-weight: 400; }
          .page-announcement header .page-container > ul > li > ul > li > a:hover {
            border-bottom: 1px solid #25699d; }
.page-announcement main section {
  position: relative; }
  .page-announcement main section h2 {
    font-size: 36px;
    font-weight: 500;
    margin: 44px auto 22px auto;
    text-align: center;
    width: 900px; }
  .page-announcement main section a[id] {
    position: absolute;
    top: -99px; }
    .page-announcement main section a[id]:target + article, .page-announcement main section a[id]:target + figure {
      background-color: rgba(207, 211, 215, 0.2); }
      .page-announcement main section a[id]:target + article h3, .page-announcement main section a[id]:target + figure h3 {
        font-weight: 500; }
      .page-announcement main section a[id]:target + article p, .page-announcement main section a[id]:target + article figcaption, .page-announcement main section a[id]:target + figure p, .page-announcement main section a[id]:target + figure figcaption {
        font-weight: 400; }
  .page-announcement main section article,
  .page-announcement main section figure {
    border-radius: 5px;
    padding: 22px; }
    .page-announcement main section article h3,
    .page-announcement main section figure h3 {
      font-size: 21px;
      font-weight: 400;
      margin-bottom: 11px; }
    .page-announcement main section article img,
    .page-announcement main section figure img {
      box-sizing: content-box;
      border: 1px solid #cfd3d7;
      border-radius: 3px;
      box-shadow: 0 0 2px 1px rgba(7, 7, 6, 0.1); }
.page-announcement .subtitle {
  font-weight: 300;
  font-size: 18px;
  display: block;
  text-align: center;
  margin: 0 auto 33px auto;
  line-height: 1.5; }
.page-announcement .image-left-no-shadow {
  border: none;
  box-shadow: none; }
  .page-announcement .image-left-no-shadow img {
    margin: 0;
    margin-left: 0;
    margin-right: 0; }
.page-announcement .external {
  text-decoration: none;
  border-bottom: 1px solid rgba(76, 155, 214, 0.3);
  position: relative;
  margin-bottom: 11px;
  display: inline-block; }
  .page-announcement .external:after {
    display: none;
    width: 15px;
    height: 15px;
    position: absolute;
    right: -1.2em;
    top: 0; }
  .page-announcement .external:hover {
    border-bottom-color: #25699d; }
    .page-announcement .external:hover:after {
      display: block; }
.page-announcement p,
.page-announcement figcaption {
  margin-bottom: 11px;
  line-height: 1.4; }
.page-announcement .image-title {
  display: inline !important;
  vertical-align: middle; }
.page-announcement .screenshot-center {
  margin: 0 auto;
  display: block; }
.page-announcement .screenshot-small {
  margin: 0 auto;
  display: block;
  padding: 22px 0 22px 0; }
.page-announcement .caption-center {
  text-align: center;
  margin: 0 auto;
  padding-top: 25px;
  font-size: 14px; }
.page-announcement .subtitle {
  margin: 0 auto;
  padding-bottom: 6px;
  max-width: 780px; }
.page-announcement .no-shadow {
  box-shadow: none;
  border: none; }
.page-announcement .one-column {
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(207, 211, 215, 0.5); }
  .page-announcement .one-column .page-container {
    max-width: 1000px;
    padding: 0;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .page-announcement .one-column figure {
    margin: 0 auto; }
  .page-announcement .one-column img {
    display: block;
    margin-left: auto;
    margin-right: auto; }
.page-announcement .two-columns {
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(207, 211, 215, 0.5); }
  .page-announcement .two-columns .page-container {
    max-width: 800px;
    min-width: 920px;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .page-announcement .two-columns img {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .page-announcement .two-columns article {
    width: 50%;
    display: inline-block; }
.page-announcement .three-columns {
  border-top: 1px solid rgba(207, 211, 215, 0.5); }
  .page-announcement .three-columns .page-container {
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
    .page-announcement .three-columns .page-container .subtitle {
      padding: 0 100px 0 100px;
      max-width: none;
      margin-bottom: 30px; }
    .page-announcement .three-columns .page-container figure {
      display: inline-block;
      width: 48%;
      max-width: 50%; }
      .page-announcement .three-columns .page-container figure img {
        margin-bottom: 11px; }
    .page-announcement .three-columns .page-container article {
      display: inline-block;
      width: 30%;
      max-width: 33%; }
.page-announcement .bullet-image article {
  padding: 11px; }
.page-announcement .bullet-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: none;
  padding-right: 7px;
  border: none;
  vertical-align: middle;
  padding-bottom: 3px; }
.page-announcement .bullet-image ul,
.page-announcement .bullet-image li,
.page-announcement .bullet-image ol {
  list-style-type: disc;
  margin: 0 0 7px 27px;
  line-height: 21px; }
.page-announcement .spacer {
  padding-bottom: 44px; }
.page-announcement #download {
  padding-top: 33px;
  padding-bottom: 44px;
  background-color: #f9f9fb;
  text-align: center; }
  .page-announcement #download > h2 {
    font-size: 36px;
    font-weight: 100;
    margin: 0 auto 11px auto;
    text-align: center; }
  .page-announcement #download > .btn {
    margin-bottom: 11px; }
  .page-announcement #download .btn-nav {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px; }

.outdated-version--block {
  position: relative;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #c99916;
  max-width: 900px;
  margin: 50px auto 0;
  padding: 10px;
  border-radius: 4px;
  background: #ffefbc;
  -webkit-align-items: center;
          align-items: center; }
  .outdated-version--block p {
    margin: 0; }

span.old-version--tag {
  background: #c99916;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  margin-right: 24px; }

a.old-version--link {
  color: #9b7713;
  font-weight: bold;
  border: 0;
  position: absolute;
  right: 4px;
  margin: 0; }
  a.old-version--link:hover {
    color: #9b7713;
    border: 0; }

a.old-version--link.btn-nav:after {
  background-image: url(/images/ui/arrow-black.svg); }

/* LTS Version */
.outdated-version--block.lts {
  border: 1px solid #4b9bd6;
  background: #dceefb; }
  .outdated-version--block.lts span.old-version--tag {
    background: #478abf;
    padding: 2px 10px; }
  .outdated-version--block.lts p {
    font-weight: 500; }
  .outdated-version--block.lts a.old-version--link,
  .outdated-version--block.lts a.old-version--link:hover {
    color: #347cab; }
  .outdated-version--block.lts a.old-version--link.btn-nav:after {
    background-image: url(/images/ui/arrows-dark.svg); }

.logos .page-container {
  width: 960px;
  padding: 0;
  margin-bottom: 20px; }
.logos .grid-two-column, .logos.grid-two-column {
  padding: 30px 0 50px 0; }
.logos .card {
  font-family: "Roboto", sans-serif;
  text-align: left;
  color: #2d3032;
  border-bottom-color: #cfd3d7;
  text-decoration: none; }
  .logos .card svg path {
    fill: #4c9bd6; }
  .logos .card .muted {
    -webkit-flex: 1;
            flex: 1;
    text-align: right;
    margin-right: 8px; }
  .logos .card:hover, .logos .card:focus {
    color: #2d3032;
    border-bottom-color: #cfd3d7; }
.logos .grid-item:first-child .card {
  margin-left: 0;
  margin-right: 8px; }
.logos .grid-item:last-child .card {
  margin-right: 0;
  margin-left: 8px; }
.logos .muted {
  color: #434447; }

.page-content .logos .grid-item {
  display: block; }
  .page-content .logos .grid-item:first-child {
    padding-left: 0; }
.page-content .logos-can-do h3, .page-content .logos-cannot-do h3 {
  margin-bottom: 25px;
  font-size: 21px;
  line-height: 32px;
  font-weight: 700; }
.page-content .logos-can-do ul, .page-content .logos-cannot-do ul {
  padding-left: 0; }
  .page-content .logos-can-do ul li, .page-content .logos-cannot-do ul li {
    padding-left: 28px;
    margin-top: 0;
    margin-bottom: 8px;
    background-repeat: no-repeat;
    background-size: 24px; }
    .page-content .logos-can-do ul li:before, .page-content .logos-cannot-do ul li:before {
      display: none; }
.page-content .logos-can-do h3 {
  color: #3ec92c; }
.page-content .logos-can-do li {
  background-image: url(/images/ui/new-styles/check-valid500.svg); }
.page-content .logos-cannot-do {
  padding-left: 8px; }
  .page-content .logos-cannot-do h3 {
    color: #d75a4a; }
  .page-content .logos-cannot-do li {
    background-position: 0 -1px;
    background-image: url(/images/ui/new-styles/cross-error500.svg); }

.box-download-logos {
  width: 320px;
  background: #ffffff;
  box-shadow: 0 9px 39px rgba(7, 7, 6, 0.15);
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 70px;
  right: 60px;
  border-radius: 8px; }
  .box-download-logos > span {
    color: #8a8c8f; }
  .box-download-logos > a {
    margin-bottom: 8px;
    margin-top: 0; }

.header--container {
  position: relative;
  margin-bottom: 60px;
  padding-top: 50px;
  margin-left: 40px; }

.annoucement-page .page-container section {
  margin-top: 40px; }

.annoucement-page .page-container section h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  margin: 0px 0px 18px; }

.annoucement-page.logos section.gitlab-container > div {
  margin-bottom: 0; }

.logos .muted {
  color: #a0a5a8;
  font-size: 12px; }

.annoucement-page.logos section.gitlab-container.logos-section {
  margin-top: 80px; }

.annoucement-page.logos section.gitlab-container.logos-section-small {
  margin-top: 20px; }

.annoucement-page section.gitlab-container.headings > h3 {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 34px;
  font-weight: 600; }

.annoucement-page section.gitlab-container.headings {
  margin-top: 12px; }

.edition-tooltip {
  position: absolute;
  display: none;
  padding: 8px;
  color: #fff;
  font-size: 12px;
  border-radius: 2px;
  background: #2d3032; }
  .edition-tooltip::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    right: calc(50% - 5px);
    top: -5px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background: #2d3032; }
  .edition-tooltip.edition-tooltip-show {
    display: block;
    -webkit-animation: fadeInTooltip 0.2s ease-in;
            animation: fadeInTooltip 0.2s ease-in; }
@-webkit-keyframes fadeInTooltip {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    margin-top: -10px; }
  100% {
    display: block;
    opacity: 1;
    margin-top: 0; } }
@keyframes fadeInTooltip {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    margin-top: -10px; }
  100% {
    display: block;
    opacity: 1;
    margin-top: 0; } }
[data-edition] {
  position: relative;
  border-radius: 8px;
  transition: all 0.1s ease-in; }
  [data-edition]::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 18px;
    right: 18px;
    border: 2px solid #4c9bd6;
    border-radius: 50%;
    background: white;
    transition: all 0.2s ease-in; }
  [data-edition]:hover {
    background-color: #f9f9fb; }
    [data-edition]:hover::before {
      background: #4c9bd6; }

#whats-new {
  margin-top: 32px;
  margin-bottom: 48px; }

.whats-new-item {
  color: #070706;
  font-weight: 400; }
  .whats-new-item h2 {
    font-size: 21px;
    line-height: 26px;
    font-weight: 400; }

.whats-new-item.lts {
  padding-right: 60px;
  margin-right: -60px;
  border-radius: 0 0 12px 12px;
  background-color: rgba(185, 221, 248, 0.2); }
  .whats-new-item.lts .whats-new-content {
    padding-bottom: 30px; }

.whats-new-item.lts_spacer--blue {
  padding-right: 60px;
  margin-right: -60px;
  border-radius: 12px 12px 0 0;
  background-color: rgba(185, 221, 248, 0.2);
  padding-bottom: 18px; }

.whats-new-item.lts_spacer {
  margin-bottom: 16px; }

.spacer {
  border-left: 1px solid #cfd3d7;
  margin: -22px;
  padding-top: 40px;
  padding-bottom: 10px; }

.spacer--blue {
  border-left: 1px solid #cfd3d7;
  margin: -22px;
  padding-top: 40px;
  padding-bottom: 10px; }

.whats-new-content {
  margin-top: -2px;
  padding-top: 26px;
  margin-left: -22px;
  padding-left: 22px;
  margin-bottom: -4px;
  padding-bottom: 88px;
  border-left: 1px solid #cfd3d7; }
  .whats-new-content .btn-nav {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700; }

.whats-new-sq-version {
  font-weight: 700; }
  .whats-new-sq-version > span {
    padding: 5px 10px;
    background: #434447;
    border-radius: 4px;
    color: #ffffff; }
  .whats-new-sq-version:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    margin-left: 8px;
    margin-right: 8px;
    background-color: #cfd3d7; }

.whats-new-date {
  display: inline-block;
  font-size: 12px;
  line-height: 26px;
  color: #8a8c8f;
  font-style: italic; }
  .whats-new-date:after {
    content: "";
    display: inline-block;
    border: 2px solid #4c9bd6;
    border-radius: 11px;
    height: 11px;
    width: 11px;
    margin-left: 16px;
    vertical-align: middle; }

.whats-new-story {
  padding: 16px; }
  .whats-new-story h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 8px; }
  .whats-new-story p {
    font-size: 16px;
    line-height: 24px; }

.whats-new-main-story {
  padding: 24px;
  box-shadow: 0px 3px 28px 1px rgba(7, 7, 6, 0.1);
  border-radius: 5px;
  box-sizing: border-box;
  background: #ffffff; }
  .whats-new-main-story h3 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 900;
    margin-bottom: 16px; }
  .whats-new-main-story figcaption {
    display: inline-block;
    font-size: 16px;
    line-height: 24px; }
  .whats-new-main-story figure,
  .whats-new-main-story figcaption {
    margin-bottom: 8px;
    position: relative; }

.whats-new-footer div {
  margin-left: -22px;
  padding-left: 22px;
  margin-top: 16px;
  height: 16px;
  border-left: 1px solid #cfd3d7; }
.whats-new-footer div:first-child {
  margin-top: 24px;
  height: 24px; }
.whats-new-footer div:last-child {
  height: 8px; }

.page-content.form-page.editions-form-success {
  background: #f9f9fb; }

.header--wrapper {
  background: white;
  margin: auto;
  margin-top: 32px;
  margin-bottom: 40px;
  padding: 32px 64px;
  border-radius: 8px;
  box-shadow: 2px 3px 27px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 680px; }

.header--wrapper img {
  max-width: 200px;
  padding-bottom: 20px; }

.description--wrapper {
  text-align: center; }

.navigation--button {
  display: inline-block;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  margin-right: 4px;
  height: 48px;
  padding: 0 16px;
  font-size: 18px;
  color: #4c9bd6;
  border: none;
  background: transparent;
  padding: 7px 8px;
  text-decoration: none;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto; }
  .navigation--button svg {
    width: 24px;
    height: 24px;
    transition: all 0.1s ease;
    vertical-align: top;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
    .navigation--button svg path {
      fill: currentColor; }
  .navigation--button:hover {
    color: #25699d; }
    .navigation--button:hover svg {
      -webkit-transform: translateX(4px);
              transform: translateX(4px); }
      .navigation--button:hover svg path {
        fill: #25699d; }

.step--wrapper > div,
.step--wrapper__numbers > div {
  text-align: center;
  position: relative; }

.step--wrapper,
.step--wrapper__numbers {
  max-width: 1000px;
  margin: auto;
  margin-bottom: 128px; }

.step--wrapper__numbers {
  margin-top: 32px;
  margin-bottom: 16px; }

.step--wrapper > div > h3 {
  font-size: 21px;
  line-height: 26px;
  font-weight: 700; }

.step--wrapper__numbers > div > h3 {
  border: 1px solid #4c9bd6;
  display: inline-block;
  border-radius: 16px;
  width: 32px;
  height: 32px;
  background: #4c9bd6;
  color: #fff;
  font-size: 12px;
  padding-top: 6px; }

.step--wrapper__numbers > div > hr {
  position: absolute;
  width: 85%;
  left: 190px;
  top: 15px;
  border: 1px solid #e6e8ea; }

.step--wrapper > div > p {
  width: 250px;
  margin: auto;
  margin-top: 8px;
  margin-bottom: 16px;
  font-weight: 400; }

.display-1 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 16px; }

.display-highlight {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400; }

.display-6 {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400;
  max-width: 500px;
  margin: auto; }

.mention {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase; }

.subscribeFormWrapper {
  margin: auto 0;
  position: relative;
  overflow: hidden; }
  .subscribeFormWrapper .subscribeFooterForm {
    border-radius: 5px;
    text-align: center; }
    .subscribeFormWrapper .subscribeFooterForm form {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
              align-items: center; }
      .subscribeFormWrapper .subscribeFooterForm form .form-container {
        width: 320px;
        margin-right: 8px; }
    .subscribeFormWrapper .subscribeFooterForm button {
      width: 150px; }
    .subscribeFormWrapper .subscribeFooterForm .successFormSubmit {
      position: absolute;
      top: -40px;
      display: -webkit-flex;
      display: flex; }
      .subscribeFormWrapper .subscribeFooterForm .successFormSubmit > img {
        width: 24px;
        height: 24px;
        margin-right: 8px; }
    .subscribeFormWrapper .subscribeFooterForm .successFormSubmit.active {
      -webkit-animation: showSuccessMessage 0.2s forwards;
              animation: showSuccessMessage 0.2s forwards; }
@-webkit-keyframes showSuccessMessage {
  from {
    top: -40px; }
  to {
    top: 10px; } }
@keyframes showSuccessMessage {
  from {
    top: -40px; }
  to {
    top: 10px; } }
    .subscribeFormWrapper .subscribeFooterForm .subscribeFieldForm {
      position: relative; }
    .subscribeFormWrapper .subscribeFooterForm .subscribeFieldForm.active {
      -webkit-animation: hideFieldForm 0.2s forwards;
              animation: hideFieldForm 0.2s forwards; }
@-webkit-keyframes hideFieldForm {
  from {
    top: 0; }
  to {
    top: 50px; } }
@keyframes hideFieldForm {
  from {
    top: 0; }
  to {
    top: 50px; } }
@media only screen and (max-width: 980px) {
  .subscribeFormWrapper {
    max-width: 100%;
    -webkit-flex: unset;
            flex: unset; }

  .subscribeDescFormWrapper {
    max-width: 100%;
    -webkit-flex: unset;
            flex: unset;
    margin: 0; } }
.success-download.background {
  background: #f9f9fb; }
.success-download .header {
  margin: 80px 0 50px; }
  .success-download .header h1 {
    font-size: 36px; }
  .success-download .header p {
    font-size: 21px; }
.success-download span.tag-promo {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 2px 7px;
  border-radius: 2px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold; }
  .success-download span.tag-promo.newUserTag {
    background: #c99916;
    color: #f9f9fb; }
  .success-download span.tag-promo.upgradeTag {
    background: #b9ddf8;
    color: #0b3c62; }
  .success-download span.tag-promo.deTag {
    background: #174f7b;
    color: #fff; }
.success-download .success-community .new-user {
  padding: 32px !important; }
.success-download .success-community .upgrade {
  padding: 32px !important; }
.success-download .success-community .alms > div {
  margin-left: 40px; }
.success-download .success-community .alms > div > div > img {
  width: 32px; }
.success-download .success-community .alms > div > div p {
  font-size: 16px;
  font-weight: 700;
  padding: 4px 8px 4px 4px; }
.success-download .success-community .alms .btn {
  width: calc(100% - 16px);
  margin-left: 8px; }
.success-download .info-container {
  margin-bottom: 50px; }
  .success-download .info-container .new-user {
    background: #fff;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    left: -8px;
    padding: 40px 40px 24px 40px;
    border: 1px solid #e6e8ea; }
    .success-download .info-container .new-user img {
      width: 200px;
      height: 170px; }
    .success-download .info-container .new-user h3 {
      font-size: 26px; }
    .success-download .info-container .new-user .request-trial {
      font-size: 12px;
      padding-top: 24px; }
  .success-download .info-container .upgrade {
    background: #fff;
    border-radius: 4px;
    padding: 40px;
    border: 1px solid #e6e8ea; }
    .success-download .info-container .upgrade h3 {
      font-size: 26px; }
.success-download .subscribeFormWrapper {
  margin: auto; }
.success-download .subscribeFooterForm {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center; }
.success-download .subscribeFormWrapper .subscribeFooterForm form .form-container {
  width: 300px;
  margin-right: 8px; }
.success-download .successFormSubmit {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center; }
  .success-download .successFormSubmit h6 {
    font-size: 18px;
    font-weight: 500;
    color: #3ec92c; }
.success-download .subscribeDescription {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2; }
.success-download .disclaimer {
  font-size: 12px;
  margin-top: 8px; }
.success-download .subscribeContainer {
  margin: 60px 0 60px; }
.success-download .link-download {
  text-decoration: none;
  color: #4c9bd6;
  border-bottom: 1px solid rgba(76, 155, 214, 0.3);
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: border-color, color; }
  .success-download .link-download:hover {
    border-bottom: 1px solid #25699d;
    color: #25699d; }
.success-download .loading-download {
  width: 32px;
  height: 32px;
  margin-right: 8px; }
.success-download .downloadTextContainer {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center; }

/*
 * jQuery FlexSlider v2.7.2
 * https://www.woocommerce.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: "flexslider-icon", sans-serif;
  src: url("../../fonts/flexslider-icon.eot");
  src: url("../../fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("../../fonts/flexslider-icon.woff") format("woff"), url("../../fonts/flexslider-icon.ttf") format("truetype"), url("../../fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal; }
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none; }

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0; }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; }

.flexslider .slides img {
  width: 100%;
  display: block; }

.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .flexslider .slides {
  display: block; }

* html .flexslider .slides {
  height: 1%; }

.no-js .flexslider .slides > li:first-child {
  display: block; }

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  zoom: 1;
  border-radius: 4px;
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2); }

.flexslider .slides {
  zoom: 1; }

.flexslider .slides img {
  height: auto;
  -moz-user-select: none; }

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

@-moz-document url-prefix() {
  .loading .flex-viewport {
    max-height: none; } }
.carousel li {
  margin-right: 5px; }

.flex-direction-nav {
  *height: 0; }

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out; }

.flex-direction-nav a:before {
  font-family: "flexslider-icon", sans-serif;
  font-size: 40px;
  display: inline-block;
  content: "\f001";
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3); }

.flex-direction-nav a.flex-next:before {
  content: "\f002"; }

.flex-direction-nav .flex-prev {
  left: -50px; }

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right; }

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px; }

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1; }

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px; }

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1; }

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1; }

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000; }

.flex-pauseplay a:before {
  font-family: "flexslider-icon", sans-serif;
  font-size: 20px;
  display: inline-block;
  content: "\f004"; }

.flex-pauseplay a:hover {
  opacity: 1; }

.flex-pauseplay a.flex-play:before {
  content: "\f003"; }

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center; }

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1; }

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  border-radius: 20px; }

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7); }

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  cursor: pointer;
  -moz-user-select: none;
  transition: all 1s ease; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px; }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px; } }
