/* font */
@font-face {
  font-family: "DIN Regular";
  src: url(../font/din-regular.eot);
  src: url(../font/din-regular.eot?#iefix) format("embedded-opentype"), url(../font/din-regular.woff) format("woff"), url(../font/din-regular.ttf) format("truetype"), url(../font/din-regular.svg#DINRegular) format("svg");
  font-style: normal;
  font-stretch: normal;
  font-weight: 400; }

@font-face {
  font-family: "DIN Light";
  src: url(../font/din-light.eot);
  src: url(../font/din-light.eot?#iefix) format("embedded-opentype"), url(../font/din-light.woff) format("woff"), url(../font/din-light.ttf) format("truetype"), url(../font/din-light.svg#DINLight) format("svg");
  font-style: normal;
  font-stretch: normal;
  font-weight: 300; }

@font-face {
  font-family: "DIN Medium";
  src: url(../font/din-medium.eot);
  src: url(../font/din-medium.eot?#iefix) format("embedded-opentype"), url(../font/din-medium.woff) format("woff"), url(../font/din-medium.ttf) format("truetype"), url(../font/din-medium.svg#DINMedium) format("svg");
  font-style: normal;
  font-stretch: normal;
  font-weight: 500; }

@font-face {
  font-family: "DIN Black";
  src: url(../font/din-black.eot);
  src: url(../font/din-black.eot?#iefix) format("embedded-opentype"), url(../font/din-black.woff) format("woff"), url(../font/din-black.ttf) format("truetype"), url(../font/din-black.svg#DINBlack) format("svg");
  font-style: normal;
  font-stretch: normal;
  font-weight: 900; }

/* hidden */
.hidden {
  display: none !important;
  visibility: hidden; }

/* visuallyhidden */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
  .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto; }

/* invisible */
.invisible {
  visibility: hidden; }

/* transformed-table */
.transformed-table {
  display: table;
  height: 100%;
  width: 100%; }
  .transformed-table--row {
    display: table-row; }
  .transformed-table--cell {
    display: table-cell;
    vertical-align: middle; }

/* visible */
.visible-desktop,
.visible-desktop-table-row,
.visible-desktop-table-cell,
.visible-mobile,
.visible-mobile-table-cell,
.visible-mobile-table-row {
  display: none !important; }

/* tablet - desktop */
@media (min-width: 768px) {
  .visible-desktop {
    display: block !important; }
  .visible-desktop-table {
    display: table !important; }
  .visible-desktop-table-row {
    display: table-row !important; }
  .visible-desktop-table-cell {
    display: table-cell !important; } }

/* mobile */
@media (max-width: 767px) {
  .visible-mobile {
    display: block !important; }
  .visible-mobile-table {
    display: table !important; }
  .visible-mobile-table-row {
    display: table-row !important; }
  .visible-mobile-table-cell {
    display: table-cell !important; } }

/* fade */
@keyframes ngdialog-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes ngdialog-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/* ngdialog */
.ngdialog {
  bottom: 0;
  left: 0;
  padding: 0 10px;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  white-space: nowrap;
  z-index: 2147483647;
  -webkit-overflow-scrolling: touch; }
  .ngdialog:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .ngdialog-overlay, .ngdialog-content {
    backface-visibility: hidden;
    animation: ngdialog-fadein 0.4s; }
  .ngdialog-closing .ngdialog-overlay,
  .ngdialog-closing .ngdialog-content {
    animation: ngdialog-fadeout 0.4s; }
  .ngdialog-overlay {
    background: rgba(0, 0, 0, 0.7);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1; }
  .ngdialog-content {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    display: inline-block;
    overflow: auto;
    max-height: 90%;
    position: relative;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    z-index: 2; }
  .ngdialog-close {
    background-color: #d1d3d4;
    border-radius: 0 5px 0 0;
    bottom: 0;
    color: #249ad2;
    cursor: pointer;
    font-size: 30px;
    line-height: 2;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 35px; }
    .ngdialog-close:after {
      content: '\D7'; }
  .ngdialog-header, .ngdialog-body {
    position: relative; }
  .ngdialog-header {
    background-color: #e9eaeb;
    border-radius: 5px 5px 0 0;
    z-index: 2; }
    .ngdialog-header:after {
      border-color: transparent;
      border-style: solid;
      border-top-color: #e9eaeb;
      content: "";
      top: 100%;
      height: 0;
      pointer-events: none;
      position: absolute;
      width: 0; }
  .ngdialog-body {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    z-index: 1; }
  .ngdialog-title {
    color: #001e49;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-transform: uppercase; }

/* tablet - desktop */
@media (min-width: 768px) {
  .ngdialog-content {
    width: 640px; }
  .ngdialog-header {
    padding: 20px 70px 20px 35px; }
  .ngdialog-body {
    padding: 40px 35px; }
  .ngdialog-header:after {
    border-width: 15px;
    left: 20px; }
  .ngdialog-title {
    font-family: "DIN Medium", sans-serif;
    font-size: 21px; } }

/* mobile */
@media (max-width: 767px) {
  .ngdialog-content {
    max-width: 480px;
    width: 100%; }
  .ngdialog-header {
    padding: 20px 55px 20px 20px; }
    .ngdialog-header:after {
      border-width: 10px;
      left: 15px; }
  .ngdialog-body {
    padding: 20px; }
  .ngdialog-title {
    font-family: "DIN Regular", sans-serif;
    font-size: 18px; } }

/* global */
html {
  background-color: #e9eaeb;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.25; }

img {
  vertical-align: top; }

a {
  color: #249ad2;
  text-decoration: none; }
  .no-touch a:hover {
    color: #334b6d; }

a,
input,
button {
  box-sizing: border-box;
  outline: 0;
  transition-property: color, background-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-out; }

input,
button {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 0; }

input[type='date'], input[type='time'] {
  -webkit-appearance: none; }

/* wrapper */
.wrapper {
  overflow: hidden;
  position: relative; }

/* container */
.container {
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  .container:after, .container:before {
    content: "";
    display: table; }
  .container:after {
    clear: both; }

/* header */
.header {
  background-color: #001e49;
  color: #fff; }
  .header-title, .header-link {
    position: relative; }
  .header-title {
    font-family: "DIN Regular", sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-transform: uppercase; }
  .header-link {
    color: #fff;
    display: block;
    float: left; }
    .no-touch .header-link:hover {
      color: #ffd715; }
    .header-link img {
      left: 0;
      position: absolute;
      top: 0;
      width: auto; }
    .header-link span {
      display: block; }

/* footer */
.footer {
  background-color: #001e49;
  color: #fff;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  z-index: 2; }
  .footer a {
    color: #fff; }

/* content */
/* tablet - desktop */
@media (min-width: 768px) {
  .header {
    padding: 25px 0; }
    .header-title {
      font-size: 24px;
      height: 80px;
      left: -4px;
      line-height: 1; }
    .header-link {
      padding-left: 100px;
      padding-top: 28px; }
      .header-link img {
        height: 80px; }
  .footer {
    padding: 35px 0; }
    .footer a,
    .footer span {
      display: inline-block; }
    .no-touch .footer a:hover {
      color: #249ad2; }
    .footer span {
      color: #334b6d;
      margin: 0 18px;
      position: relative;
      top: -1px; }
  .main {
    padding: 55px 0; }
    .landingpage .main {
      padding-top: 35px; }
  .aside,
  .toolbox {
    float: right; }
  .aside {
    width: 200px; }
  .toolbox {
    width: 320px; }
  .content {
    float: left; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 740px; }
  .content {
    width: 520px; }
    .landingpage .content {
      width: 380px; } }

/* desktop */
@media (min-width: 1024px) {
  .container {
    width: 800px; }
    .landingpage .container {
      width: 880px; }
  .content {
    width: 560px; }
    .landingpage .content {
      width: 500px; } }

/* mobile */
@media (max-width: 767px) {
  .container {
    max-width: 480px; }
  .header {
    padding: 15px 10px; }
    .header-title {
      font-size: 16px;
      height: 40px;
      left: -2px;
      line-height: 1.0625; }
    .header-link {
      padding-left: 50px;
      padding-top: 12px; }
      .header-link img {
        height: 40px; }
  .footer {
    border-top: #334b6d solid 1px; }
    .footer a,
    .footer span {
      display: block; }
    .footer a {
      padding: 12px 0; }
      .no-touch .footer a:hover {
        background-color: #334b6d;
        color: #fff; }
    .footer span {
      background-color: #334b6d;
      height: 1px;
      overflow: hidden;
      text-indent: -9999px; }
  .main {
    padding: 30px 10px; }
    .landingpage .main {
      padding-top: 25px; } }

/* form */
.form-label, .form-radio, .form-checkbox {
  color: #77787b;
  font-size: 18px; }

.form-input {
  border: #d1d3d4 solid 1px;
  border-radius: 5px;
  color: #77787b;
  height: 45px;
  padding: 10px;
  width: 100%; }
  .form-input.gray {
    background-color: #efeeee; }
    .form-input.gray:focus {
      background-color: #fff; }
  .form-input.white {
    background-color: #fff; }
  .form-input.error {
    border-color: #bf1e1e;
    color: #bf1e1e; }

.form-label {
  box-sizing: border-box;
  display: inline-block;
  margin-bottom: 15px; }

.form-radio, .form-checkbox, .form-select {
  position: relative; }

.form-radio, .form-checkbox {
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
  padding-left: 28px;
  overflow: hidden;
  vertical-align: top; }
  .form-radio:first-child, .form-checkbox:first-child {
    margin-left: 0; }
  .form-radio.full, .form-checkbox.full {
    display: block;
    margin-top: 10px;
    margin-left: 0; }
    .form-radio.full:first-child, .form-checkbox.full:first-child {
      margin-top: 0; }
  .form-radio input, .form-checkbox input {
    left: -9999px;
    opacity: 0;
    position: absolute;
    top: 0; }
  .form-radio:after, .form-radio:before, .form-checkbox:after, .form-checkbox:before {
    content: "";
    position: absolute; }
  .form-radio:after, .form-checkbox:after {
    background-color: #efeeee;
    border: #d1d3d4 solid 1px;
    display: block;
    height: 18px;
    left: 0;
    top: 0;
    width: 18px;
    z-index: 1; }
  .form-radio:before, .form-checkbox:before {
    background-color: #249ad2;
    display: none;
    height: 12px;
    left: 4px;
    top: 4px;
    width: 12px;
    z-index: 2; }
  .form-radio.checked:before, .form-checkbox.checked:before {
    display: block; }

.form-radio:after, .form-radio:before {
  border-radius: 50%; }

.form-select {
  z-index: 2; }
  .form-select:after {
    background-color: #fff;
    content: "";
    display: none;
    height: 1px;
    margin-top: -1px;
    overflow: hidden;
    position: absolute;
    right: 1px;
    top: 100%;
    width: 43px;
    z-index: 3; }
  .form-select select {
    left: -9999px;
    opacity: 0;
    position: absolute;
    top: 0; }
  .form-select-input {
    border: #d1d3d4 solid 1px;
    border-radius: 5px;
    color: #77787b;
    height: 23px;
    line-height: 23px;
    overflow: hidden;
    padding: 10px 55px 10px 10px;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .error .form-select-input {
      color: #bf1e1e;
      border: #bf1e1e solid 1px; }
  .form-select-button, .form-select-list {
    position: absolute; }
  .form-select-button {
    background-color: #fff;
    border: #d1d3d4 solid 1px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    overflow: hidden;
    right: 0;
    top: 0;
    width: 43px;
    z-index: 2; }
    .error .form-select-button {
      border: #bf1e1e solid 1px; }
    .form-select-button img {
      height: auto;
      width: 100%; }
      .form-select-button img.down {
        display: block; }
      .form-select-button img.up {
        display: none; }
  .form-select-list {
    background-color: #fff;
    border-style: solid;
    border-color: #d1d3d4;
    border-width: 0 1px 1px;
    border-radius: 0 0 5px 5px;
    display: none;
    left: 0;
    list-style: none;
    margin: 0;
    max-height: 204px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    right: 0;
    top: 100%;
    z-index: 1; }
  .form-select-item {
    border-top: #e9eaeb solid 1px;
    color: #77787b;
    cursor: pointer;
    margin: 0;
    overflow: hidden;
    padding: 10px;
    position: relative;
    text-align: left; }
    .form-select-item:first-child {
      border-top: 0; }
    .no-touch .form-select-item:hover, .form-select-item.selected {
      background-color: #e9eaeb; }
    .form-select-item img,
    .form-select-item span {
      display: block; }
    .form-select-item img {
      height: auto;
      left: 6px;
      margin-top: -11px;
      position: absolute;
      top: 50%;
      width: 18px; }
    .form-select-item span {
      padding-left: 20px; }
  .form-select.active {
    z-index: 3; }
    .form-select.active:after {
      display: block; }
  .form-select.active .form-select-input {
    border-radius: 5px 5px 0 0; }
  .form-select.active .form-select-button {
    border-radius: 0 5px 0 0; }
    .form-select.active .form-select-button img.down {
      display: none; }
    .form-select.active .form-select-button img.up {
      display: block; }
  .form-select.active .form-select-list {
    display: block; }
  .form-select.white .form-select-input {
    background-color: #fff; }
  .form-select.gray .form-select-input {
    background-color: #efeeee; }
  .form-select.dark .form-select-input {
    background-color: #fff;
    color: #000; }
  .form-select.dark .form-select-button {
    background-color: #939598; }
  .form-select.small:after {
    display: none; }
  .form-select.small .form-select-input {
    padding-top: 0;
    padding-right: 45px;
    padding-bottom: 0; }
  .form-select.small .form-select-button {
    width: 35px;
    height: 25px;
    border: 0; }
    .form-select.small .form-select-button img {
      position: relative;
      top: -5px; }
  .form-select.small .form-select-item {
    padding-top: 5px;
    padding-bottom: 5px; }

.form-group {
  margin-top: 15px; }
  .form-group:after, .form-group:before {
    content: "";
    display: table; }
  .form-group:after {
    clear: both; }
  .form-group:first-child {
    margin-top: 0; }

.form-inline--button {
  background-color: #249ad2;
  border: 0;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-family: "DIN Regular", sans-serif;
  font-size: 16px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  text-transform: uppercase;
  width: 45px; }
  .no-touch .form-inline--button:hover {
    background-color: #334b6d; }

.form-message {
  font-size: 12px;
  margin-top: 5px; }
  .form-message.success {
    color: #249ad2; }
  .form-message.error {
    color: #bf1e1e; }
  .form-message p {
    margin: 0;
    padding: 0; }

.form-info {
  border-bottom: #efeeee solid 1px;
  color: #77787b;
  padding-bottom: 20px; }
  .form-info p {
    margin: 15px 0 0;
    padding: 0; }
    .form-info p:first-child {
      margin-top: 0; }
  .form-info em {
    color: #001e49;
    font-style: normal; }
  .form-info strong {
    font-size: 18px;
    font-weight: normal; }

/* tablet - desktop */
@media (min-width: 768px) {
  .form-inline .form-input,
  .form-inline .form-select {
    float: left; }
  .form-inline .form-select {
    margin: 0 10px;
    width: 270px; }
  .form-label.multilines {
    line-height: 1; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .form-inline .form-input {
    width: 133px; } }

/* desktop */
@media (min-width: 1024px) {
  .form-inline .form-input {
    width: 143px; } }

/* mobile */
@media (max-width: 767px) {
  .form-input, .form-label, .form-radio, .form-checkbox {
    font-size: 16px; }
  .form-select-input {
    font-size: 16px; }
  .form-label {
    display: block;
    margin-bottom: 5px;
    padding-right: 20px; }
  .form-inline--button {
    width: 100%; }
  .form-inline .form-select {
    margin: 15px 0; } }

/* button */
.button {
  text-align: center; }
  .button a,
  .button button {
    background-color: #334b6d;
    border-radius: 5px;
    border-right-color: #001e49;
    border-right-style: solid;
    color: #fff;
    display: inline-block;
    font-family: "DIN Regular", sans-serif;
    line-height: 1.15;
    margin-top: 15px;
    position: relative;
    text-transform: uppercase;
    vertical-align: top; }
    .button a:first-child,
    .button button:first-child {
      margin-top: 0; }
    .no-touch .button a:hover, .no-touch
    .button button:hover {
      background-color: #001e49;
      color: #fff; }
    .button a.full,
    .button button.full {
      display: block;
      width: 100%; }
    .button a.outline,
    .button button.outline {
      background-color: #e9eaeb;
      border-right-color: #334b6d;
      box-shadow: inset 0 0 0 1px #334b6d;
      color: #334b6d; }
      .no-touch .button a.outline:hover, .no-touch
      .button button.outline:hover {
        background-color: #334b6d;
        color: #fff; }
    .button a.important,
    .button button.important {
      background-color: #bf1e1e;
      border-right-color: #6f1919; }
  .button img {
    position: absolute;
    top: 50%;
    right: -42px;
    margin-top: -11px;
    width: auto;
    height: 21px; }
  .button em {
    font-style: normal; }
  .button strong {
    font-weight: normal; }

/* tablet - desktop */
@media (min-width: 768px) {
  .button {
    margin-top: 30px; }
    .button a,
    .button button {
      border-right-width: 55px;
      font-size: 21px;
      padding: 20px;
      min-width: 270px; }
      .button a.full,
      .button button.full {
        padding-left: 10px;
        padding-right: 10px; }
      .button a.medium,
      .button button.medium {
        font-size: 18px; }
      .button a.small,
      .button button.small {
        font-size: 17px; } }

/* mobile */
@media (max-width: 767px) {
  .button {
    margin-top: 20px; }
    .button a,
    .button button {
      border-right-width: 55px;
      font-size: 19px;
      padding: 15px;
      min-width: 240px; }
      .button a.full,
      .button button.full {
        padding-left: 5px;
        padding-right: 5px; }
      .button a.medium, .button a.small,
      .button button.medium,
      .button button.small {
        font-size: 15px; }
    .button em {
      display: none; }
    .button strong {
      display: block;
      margin-top: 2px; } }

/* paging */
.paging {
  height: 45px;
  margin-top: 15px;
  overflow: hidden;
  text-align: center; }
  .paging-next a, .paging-prev a {
    border: #d1d3d4 solid 1px;
    border-radius: 5px;
    display: block; }
    .no-touch .paging-next a:hover, .no-touch .paging-prev a:hover {
      background-color: #efeeee; }
  .paging-next img, .paging-prev img {
    height: 43px;
    width: auto; }
  .paging-next {
    float: right; }
  .paging-prev {
    float: left; }
  .paging-item {
    line-height: 45px;
    overflow: hidden; }
    .paging-item a,
    .paging-item span {
      display: inline-block; }
    .paging-item a {
      color: #939598; }
      .no-touch .paging-item a:hover {
        color: #77787b; }
    .paging-item span {
      color: #249ad2; }

/* tablet - desktop */
@media (min-width: 768px) {
  .paging-item {
    font-size: 24px; }
    .paging-item a,
    .paging-item span {
      margin: 0 -3px;
      padding: 0 10px; } }

/* mobile */
@media (max-width: 767px) {
  .paging-item {
    font-size: 20px; }
    .paging-item a,
    .paging-item span {
      margin: 0 -2px;
      padding: 0 5px; } }

/* browser */
.browser {
  text-align: center; }
  .browser-title {
    color: #249ad2;
    font-family: "DIN Medium", sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-transform: uppercase; }
    .browser-title em {
      display: block;
      font-family: "DIN Black", sans-serif;
      font-style: normal; }
  .browser-description {
    color: #334b6d;
    margin-top: 20px; }
    .browser-description p {
      margin: 0;
      padding: 0; }
  .browser-list ul,
  .browser-list li {
    margin: 0;
    padding: 0; }
  .browser-list ul {
    list-style: none; }
  .browser-item {
    background-color: #fff;
    border: #d1d3d4 solid 1px;
    display: block;
    padding: 20px 10px; }
    .no-touch .browser-item:hover {
      background-color: #eef8f9; }
    .browser-item img {
      height: 100px;
      width: auto; }
    .browser-item strong {
      color: #249ad2;
      display: block;
      font-size: 21px;
      font-weight: normal;
      line-height: 1;
      margin-top: 15px; }
    .browser-item span {
      color: #334b6d;
      font-size: 14px; }

/* tablet - desktop */
@media (min-width: 768px) {
  .browser-title {
    font-size: 26px; }
  .browser-description {
    font-size: 21px; }
    .browser-description span {
      display: block; }
  .browser-list {
    margin-top: 30px; }
    .browser-list ul:after, .browser-list ul:before {
      content: "";
      display: table; }
    .browser-list ul:after {
      clear: both; }
    .browser-list li {
      float: left;
      padding: 0 10px; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .browser-list li {
    width: 165px; } }

/* desktop */
@media (min-width: 1024px) {
  .browser-list li {
    width: 180px; } }

/* mobile */
@media (max-width: 767px) {
  .browser-title {
    font-size: 22px; }
  .browser-description {
    font-size: 18px; }
  .browser-list {
    margin-top: 20px; }
    .browser-list li {
      padding: 10px 0; }
  .browser-item {
    margin-left: auto;
    margin-right: auto;
    max-width: 200px; } }

/* landing */
.landing-banner {
  background-color: #fff;
  overflow: hidden;
  position: relative; }
  .landing-banner img {
    height: auto;
    left: 50%;
    position: absolute; }
  .landingpage .landing-banner {
    border-bottom: #249ad2 solid 3px; }

.landing-intro {
  background-color: #fff;
  background-image: url(../img/bg-intro.jpg);
  background-repeat: no-repeat; }
  .landing-intro--description {
    font-family: "DIN Medium", sans-serif;
    line-height: 1;
    text-align: center;
    text-transform: uppercase; }
    .landing-intro--description p {
      background-color: rgba(255, 255, 255, 0.85); }
      .oldie .landing-intro--description p {
        background-color: #fff; }
    .landing-intro--description em,
    .landing-intro--description strong {
      color: #249ad2; }
    .landing-intro--description em {
      font-style: normal; }
    .landing-intro--description strong {
      font-weight: normal; }
    .landing-intro--description span {
      color: #001e49;
      display: block; }
  .landing-intro--indicator {
    position: absolute;
    bottom: 0; }
    .landing-intro--indicator img {
      width: auto; }
    .landing-intro--indicator:after, .landing-intro--indicator:before {
      background-color: #e9eaeb;
      border-top-color: #249ad2;
      border-top-style: solid;
      bottom: 0;
      content: "";
      position: absolute;
      top: 0;
      width: 2000px; }
    .landing-intro--indicator:after {
      left: 100%; }
    .landing-intro--indicator:before {
      right: 100%; }

.landing-media {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2; }
  .landingpage .landing-media {
    background-color: #eef8f9; }
  .landing-media.active {
    background-color: #000; }
  .landing-media.active .landing-media--wrapper:after,
  .landing-media.active .landing-media--body,
  .landing-media.active .landing-media--image {
    display: none; }
  .landing-media.active .landing-media--video {
    display: block; }
  .landing-media--wrapper {
    overflow: hidden;
    position: relative; }
    .landing-media--wrapper:after {
      background-color: rgba(0, 0, 0, 0.5);
      bottom: 0;
      content: "";
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2; }
      .oldie .landing-media--wrapper:after {
        background-image: url(../img/bg-media-mask.png); }
  .landing-media--video, .landing-media--image {
    bottom: 0;
    left: 50%;
    position: absolute;
    top: 0; }
  .landing-media--video {
    display: none;
    z-index: 2; }
    .landing-media--video iframe {
      background-color: #000;
      border: 0;
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
  .landing-media--image {
    z-index: 1; }
    .landing-media--image img {
      height: 100%;
      width: auto; }
    .landing-media--image iframe {
      border: 0;
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
  .landing-media--body {
    color: #fff;
    position: relative;
    text-align: center;
    z-index: 3; }
  .landing-media--title, .landing-media--button {
    font-family: "DIN Regular", sans-serif;
    text-transform: uppercase; }
    .landing-media--title span, .landing-media--button span {
      display: block; }
  .landing-media--title {
    line-height: 1.1875;
    font-weight: normal;
    margin: 0;
    padding: 0 15px;
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.75); }
    .landing-media--title em {
      font-family: "DIN Black", sans-serif;
      font-style: normal; }
  .landing-media--button {
    color: #fff;
    display: inline-block;
    line-height: 1; }
    .no-touch .landing-media--button:hover {
      color: #ffd715; }
    .landing-media--button span {
      font-size: 28px;
      margin-top: 30px; }
    .landing-media--button img {
      height: auto; }
  .landing-media--download {
    background-color: #fff;
    position: relative; }
    .landing-media--download a {
      background-color: #249ad2;
      color: #fff;
      display: block;
      font-family: "DIN Regular", sans-serif;
      font-size: 18px;
      line-height: 1;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      text-transform: uppercase;
      width: 90.625%; }
      .no-touch .landing-media--download a:hover {
        background-color: #334b6d;
        color: #fff; }
      .landing-media--download a:after {
        border: transparent solid 8px;
        border-top-color: #fff;
        content: "";
        height: 0;
        left: 50%;
        margin-left: -8px;
        pointer-events: none;
        position: absolute;
        top: 0;
        width: 0; }
    .landing-media--download img {
      height: auto;
      position: absolute;
      width: 25px; }
    .landing-media--download span {
      font-size: 14px;
      text-transform: none; }

.landing-expert {
  background-color: #e9eaeb;
  position: relative;
  z-index: 1; }
  .landing-expert:after {
    background-image: url(../img/bg-connector-3.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    top: 0; }
  .landing-expert--title {
    color: #001e49;
    font-family: "DIN Medium", sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0 20px 0 50px;
    text-transform: uppercase; }
    .landing-expert--title em {
      color: #249ad2;
      font-style: normal;
      line-height: 1; }
    .landing-expert--title span {
      display: block; }
  .landing-expert--list {
    color: #334b6d;
    font-weight: bold; }
    .landing-expert--list ul,
    .landing-expert--list li {
      margin: 0;
      padding: 0; }
    .landing-expert--list ul {
      list-style: none; }
    .landing-expert--list li {
      margin-top: 15px;
      position: relative; }
      .landing-expert--list li:first-child {
        margin-top: 0; }
      .landing-expert--list li:after {
        background-image: url(../img/bg-right-arrow.png);
        content: "";
        height: 20px;
        left: 0;
        position: absolute;
        top: 0;
        width: 20px; }

.landing-group {
  position: relative; }

.landing-summary {
  position: relative; }
  .landing-summary--wrapper, .landing-summary--header, .landing-summary--body {
    position: relative; }
  .landing-summary--wrapper:after {
    background-color: #249ad2;
    bottom: -55px;
    content: "";
    left: 0;
    position: absolute;
    width: 1px;
    z-index: -1; }
  .landing-summary--body {
    line-height: 1.625;
    color: #334b6d; }
    .landing-summary--body ul,
    .landing-summary--body li {
      margin: 0;
      padding: 0; }
    .landing-summary--body ul {
      list-style: none; }
    .landing-summary--body li {
      margin-top: 15px;
      position: relative; }
      .landing-summary--body li:first-child {
        margin-top: 0; }
      .landing-summary--body li:after {
        content: "";
        position: absolute;
        top: 0; }
    .landing-summary--body span {
      color: #249ad2; }
  .landing-summary--title {
    color: #249ad2;
    font-family: "DIN Regular", sans-serif;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase; }
    .landing-summary--title em,
    .landing-summary--title span {
      display: block; }
    .landing-summary--title em {
      font-family: "DIN Black", sans-serif;
      font-style: normal; }
    .landing-summary--title span {
      margin-top: 5px; }
  .landing-summary--icon {
    position: absolute; }
    .landing-summary--icon img {
      height: auto; }

.landing-feature {
  position: relative; }
  .landing-feature:after, .landing-feature:before {
    background-color: #e9eaeb;
    content: "";
    position: absolute; }
  .landing-feature:after {
    height: 10px;
    top: 55px;
    width: 10px; }
  .landing-feature:before {
    height: 110px;
    top: -45px;
    width: 110px; }
  .landing-feature.odd:after {
    background-image: url(../img/bg-connector-1-right.png);
    right: 0; }
  .landing-feature.odd:before {
    background-image: url(../img/bg-connector-2-left.png);
    left: -7px; }
  .landing-feature.even:after {
    background-image: url(../img/bg-connector-1-left.png);
    left: 0; }
  .landing-feature.even:before {
    background-image: url(../img/bg-connector-2-right.png);
    right: -7px; }
  .landing-feature--wrapper, .landing-feature--header, .landing-feature--body {
    position: relative; }
  .landing-feature--wrapper:after {
    background-color: #249ad2;
    content: "";
    position: absolute;
    top: 55px;
    width: 1px;
    z-index: -1; }
  .landing-feature.odd .landing-feature--wrapper:after,
  .landing-feature.even .landing-feature--wrapper:after {
    bottom: -55px; }
  .landing-feature.odd .landing-feature--wrapper:after {
    right: 0; }
  .landing-feature.even .landing-feature--wrapper:after {
    left: 0; }
  .landing-feature.last .landing-feature--wrapper:after {
    background-image: url(../img/bg-connector-4.png);
    background-position: center bottom;
    background-repeat: no-repeat; }
  .landing-feature--body {
    line-height: 1.625;
    color: #334b6d; }
    .landing-feature--body p,
    .landing-feature--body ul,
    .landing-feature--body li {
      margin: 0;
      padding: 0; }
      .landing-feature--body p:first-child,
      .landing-feature--body ul:first-child,
      .landing-feature--body li:first-child {
        margin-top: 0; }
    .landing-feature--body p {
      margin-top: 25px; }
    .landing-feature--body ul {
      margin-top: 20px;
      list-style: none; }
    .landing-feature--body li {
      margin-top: 15px;
      position: relative; }
      .landing-feature--body li:after {
        background-image: url(../img/bg-check.png);
        content: "";
        height: 20px;
        position: absolute;
        width: 20px; }
    .landing-feature--body span {
      color: #249ad2; }
  .landing-feature--title {
    color: #249ad2;
    font-family: "DIN Regular", sans-serif;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    text-align: center;
    text-transform: uppercase; }
    .landing-feature--title em,
    .landing-feature--title span {
      display: block; }
    .landing-feature--title em {
      font-family: "DIN Black", sans-serif;
      font-style: normal; }
    .landing-feature--title span {
      margin-top: 5px; }
  .landing-feature--index {
    position: relative;
    min-height: 110px;
    margin-bottom: 15px;
    text-align: center; }
    .landing-feature--index:after {
      background-color: #249ad2;
      content: "";
      height: 1px;
      left: 0;
      overflow: hidden;
      position: absolute;
      right: 0;
      top: 55px;
      z-index: -1; }
    .landing-feature--index img {
      height: auto;
      width: 110px; }
    .landing-feature--index span {
      background-color: #e9eaeb;
      border: #249ad2 solid 1px;
      border-radius: 50%;
      color: #249ad2;
      font-family: "DIN Regular", sans-serif;
      font-size: 26px;
      height: 31px;
      left: 50%;
      line-height: 32px;
      margin-left: -97px;
      margin-top: -16px;
      position: absolute;
      top: 50%;
      width: 31px; }
  .landing-feature--note {
    color: #334b6d;
    font-size: 12px;
    font-style: italic;
    line-height: 1.625;
    margin-top: 15px; }
    .landing-feature--note p {
      position: relative;
      margin: 0;
      padding: 10px 0; }
    .landing-feature--note span {
      position: absolute;
      top: 5px;
      left: -15px;
      font-style: normal; }
  .landing-feature--item {
    font-weight: bold;
    text-align: center; }
    .landing-feature--item strong {
      color: #001e49;
      display: block;
      font-size: 60px;
      line-height: 1; }
    .landing-feature--item sup {
      font-size: 30px;
      font-weight: normal;
      top: -0.75em; }

.landing-form--description {
  color: #77787b;
  line-height: 1.25; }

.landing-form--body {
  background-color: #efeeee;
  border: #d1d3d4 solid 1px;
  border-radius: 5px;
  height: 23px;
  position: relative; }

.landing-form--input {
  background-color: transparent;
  color: #77787b;
  width: 100%; }

.landing-form--button {
  background-color: #001e49;
  border-radius: 0 5px 5px 0;
  position: absolute;
  right: -1px;
  top: -1px; }
  .landing-form--button img {
    width: auto; }
  .no-touch .landing-form--button:hover {
    background-color: #249ad2; }

.landing-extras {
  border-top: #d1d3d4 solid 1px;
  text-align: center; }
  .landing-extras--title {
    color: #001e49;
    font-family: "DIN Regular", sans-serif;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-transform: uppercase; }
  .landing-extras--icon {
    margin-bottom: 10px;
    text-align: center; }
    .landing-extras--icon img {
      height: auto;
      max-width: 152px; }
  .landing-extras--description {
    color: #77787b;
    font-size: 14px;
    line-height: 1.375; }
    .landing-extras--description p {
      margin: 0 0 5px;
      padding: 0; }
    .landing-extras--description strong {
      color: #334b6d; }

.landing-note {
  color: #576882;
  font-size: 12px;
  position: relative;
  z-index: 3; }
  .landing-note p {
    margin: 0;
    padding: 0; }
  .generic .landing-note {
    background-color: #fff; }

.landing-back {
  position: relative;
  z-index: 4; }
  .landing-back a {
    background-color: #001e49;
    border-radius: 5px 5px 0 0;
    bottom: 0;
    left: 50%;
    margin-left: -25px;
    padding-bottom: 5px;
    padding-top: 10px;
    position: fixed;
    text-align: center;
    width: 50px; }
    .landing-back a.absoluted {
      position: absolute; }
  .landing-back img {
    height: auto;
    width: 22px; }

.landing-section--title {
  color: #249ad2;
  line-height: 1.125;
  margin: 0;
  padding: 0; }

.landing-section--body {
  color: #576882;
  line-height: 1.4; }
  .landing-section--body p {
    margin: 0;
    padding: 0; }

.landing-subsection--title {
  color: #249ad2;
  line-height: 1.1667;
  margin: 0;
  padding: 0; }

.landing-subsection--body {
  color: #576882; }
  .landing-subsection--body p,
  .landing-subsection--body ul,
  .landing-subsection--body li {
    margin: 0;
    padding: 0; }
  .landing-subsection--body p {
    margin-top: 20px; }
    .landing-subsection--body p:first-child {
      margin-top: 0; }
  .landing-subsection--body ul {
    list-style: none; }
  .landing-subsection--body li {
    margin-top: 15px;
    position: relative; }
    .landing-subsection--body li:after {
      background-image: url(../img/bg-check.png);
      content: "";
      height: 20px;
      position: absolute;
      width: 20px; }
  .landing-subsection--body .special {
    color: #001e49;
    display: block;
    font-size: 28px;
    line-height: 1;
    position: relative; }

.landing-subsection--icon {
  background-color: #249ad2;
  border-radius: 50%;
  display: block;
  height: 70px;
  width: 70px; }

.landing-extrasection {
  margin-top: 35px;
  text-align: center; }
  .landing-extrasection--title {
    color: #001e49;
    margin: 0;
    padding: 0; }
  .landing-extrasection--body {
    color: #576882;
    font-size: 18px;
    margin-top: 10px; }
    .landing-extrasection--body p {
      margin: 0;
      padding: 0; }
  .landing-extrasection--icon {
    background-color: #249ad2;
    border-radius: 50%;
    display: block;
    height: 70px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 70px; }

.landing-moresection {
  margin-top: 50px;
  position: relative;
  text-align: center; }
  .landing-moresection--title {
    color: #249ad2;
    line-height: 1;
    margin: 0;
    padding: 0; }
  .landing-moresection--body {
    color: #576882;
    font-size: 18px; }
    .landing-moresection--body p {
      margin: 0;
      padding: 0; }
    .landing-moresection--body strong {
      color: #001e49;
      display: block;
      font-size: 2em;
      line-height: 1;
      margin-bottom: 8px; }
    .landing-moresection--body .small {
      color: #334b6d;
      font-size: 12px;
      margin-top: 2px; }

/* tablet - desktop */
@media (min-width: 768px) {
  .landing-banner {
    height: 370px; }
    .landing-banner img {
      bottom: 15px;
      top: 15px;
      width: 1024px; }
    .generic .landing-banner,
    .offer .landing-banner {
      height: 283px; }
    .subscription .landing-banner {
      height: 349px; }
      .subscription .landing-banner img {
        bottom: 0;
        top: 0; }
  .landing-intro {
    background-position: center bottom; }
    .landing-intro--description {
      width: 420px;
      padding-top: 60px;
      padding-bottom: 80px; }
      .landing-intro--description p {
        margin: 0;
        padding: 25px 0; }
      .landing-intro--description strong {
        font-size: 36px; }
      .landing-intro--description em {
        font-size: 30px; }
      .landing-intro--description span {
        margin: 10px 0;
        font-size: 24px; }
    .landing-intro--indicator {
      bottom: 0;
      left: -18px;
      height: 20px; }
      .landing-intro--indicator img {
        height: 20px; }
      .landing-intro--indicator:after, .landing-intro--indicator:before {
        border-top-width: 3px; }
  .landing-media--wrapper {
    height: 394px; }
  .landing-media--image {
    margin-left: -512px;
    width: 1024px; }
  .landing-media--body {
    padding: 50px 0; }
  .landing-media--title {
    font-size: 32px; }
  .landing-media--button {
    margin-top: 55px; }
    .landing-media--button img {
      width: 80px; }
  .landing-media--download {
    padding: 20px 0; }
    .landing-media--download a {
      max-width: 480px;
      padding: 27px 50px 27px 95px; }
    .landing-media--download img {
      left: 60px;
      top: 20px; }
  .landing-expert {
    padding-bottom: 80px;
    padding-top: 50px; }
    .landing-expert:after {
      height: 68px;
      left: 50%;
      width: 38px; }
    .landing-expert--title {
      font-size: 34px; }
      .landing-expert--title em {
        font-size: 46px; }
      .landing-expert--title span {
        padding-left: 80px; }
    .landing-expert--list {
      margin-top: 30px;
      padding: 0 125px; }
      .landing-expert--list li {
        padding-left: 35px; }
    .landing-expert--button {
      margin-top: 50px; }
      .landing-expert--button .button {
        margin-top: 0; }
        .landing-expert--button .button:after, .landing-expert--button .button:before {
          content: "";
          display: table; }
        .landing-expert--button .button:after {
          clear: both; }
        .landing-expert--button .button a {
          float: left;
          font-size: 15px;
          margin-left: 20px;
          margin-top: 0;
          width: 380px; }
          .landing-expert--button .button a:first-child {
            margin-left: 0; }
        .landing-expert--button .button img {
          height: 28px;
          margin-top: -14px;
          right: -46px; }
  .landing-summary--wrapper {
    padding-bottom: 50px; }
    .landing-summary--wrapper:after {
      top: -55px; }
  .landing-summary--body {
    font-size: 16px; }
  .landing-summary--title {
    font-size: 28px; }
    .landing-summary--title span {
      font-size: 18px; }
  .landing-feature--wrapper {
    padding-bottom: 50px; }
  .landing-feature--body {
    font-size: 16px;
    margin-top: 30px; }
    .landing-feature--body li {
      padding-left: 40px; }
      .landing-feature--body li:after {
        top: 3px;
        left: 10px; }
  .landing-feature--title {
    font-size: 28px;
    padding: 0; }
    .landing-feature--title span {
      font-size: 18px; }
  .landing-feature--row {
    padding-bottom: 25px;
    padding-top: 10px; }
    .landing-feature--row:after, .landing-feature--row:before {
      content: "";
      display: table; }
    .landing-feature--row:after {
      clear: both; }
  .landing-feature--column {
    width: 50%; }
    .landing-feature--column.left {
      float: left; }
    .landing-feature--column.right {
      float: right; }
  .landing-form--description, .landing-form--input {
    font-size: 18px; }
  .landing-form--body {
    margin-top: 20px;
    padding: 15px 70px 15px 15px; }
  .landing-form--button img {
    height: 55px; }
  .landing-extras {
    padding: 55px 0; }
    .landing-extras--title {
      font-size: 24px;
      margin-bottom: 35px; }
    .landing-extras--body {
      padding: 0 10px; }
      .landing-extras--body:after, .landing-extras--body:before {
        content: "";
        display: table; }
      .landing-extras--body:after {
        clear: both; }
    .landing-extras--description {
      float: left;
      width: 200px; }
  .generic .landing-note {
    padding: 15px 0 50px; }
  .offer .landing-note,
  .subscription .landing-note {
    padding: 40px 0 25px; }
  .landing-section {
    padding-bottom: 20px; }
    .landing-section--body {
      font-size: 20px;
      margin-top: 10px;
      padding-left: 40px;
      position: relative; }
    .landing-section--icon {
      height: auto;
      left: -5px;
      position: absolute;
      top: -7px;
      width: 33px; }
  .landing-subsection {
    margin-top: 50px;
    position: relative; }
    .landing-subsection--title {
      padding-left: 85px; }
      .landing-subsection--title.single-line {
        line-height: 70px;
        min-height: 70px;
        padding-top: 0; }
    .landing-subsection--body {
      font-size: 18px;
      margin-top: 25px; }
      .landing-subsection--body li {
        padding-left: 40px; }
        .landing-subsection--body li:after {
          left: 10px;
          top: 2px; }
      .landing-subsection--body .special {
        top: -2px; }
    .landing-subsection--icon {
      left: 0;
      position: absolute;
      top: 0; }
  .landing-extrasection--title {
    font-size: 20px; }
  .landing-moresection {
    border-top: #d1d3d4 solid 1px;
    padding-bottom: 20px;
    padding-top: 30px; }
    .landing-moresection:after, .landing-moresection:before {
      border-color: transparent;
      border-style: solid;
      content: "";
      height: 0;
      left: 50%;
      pointer-events: none;
      position: absolute;
      top: -1px;
      width: 0; }
    .landing-moresection:after {
      border-top-color: #e9eaeb;
      border-width: 10px;
      margin-left: -10px; }
    .landing-moresection:before {
      border-top-color: #d1d3d4;
      border-width: 11px;
      margin-left: -11px; }
    .landing-moresection--group:after, .landing-moresection--group:before {
      content: "";
      display: table; }
    .landing-moresection--group:after {
      clear: both; }
    .landing-moresection--column {
      margin-top: 30px; }
      .landing-moresection--column.left {
        float: left; }
      .landing-moresection--column.right {
        float: right; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .landing-banner img {
    margin-left: -440px; }
  .landing-media--video {
    margin-left: -370px;
    width: 740px; }
  .landing-expert:after {
    margin-left: -370px; }
  .landing-expert--button .button a {
    width: 360px; }
  .landing-summary--body {
    margin-top: 30px;
    padding: 0 30px; }
    .landing-summary--body li:after {
      background-image: url(../img/bg-pin.png);
      height: 20px;
      left: -40px;
      width: 20px; }
  .landing-summary--icon {
    left: -20px;
    top: 0px; }
    .landing-summary--icon img {
      width: 40px; }
  .landing-feature--body, .landing-feature--note {
    padding: 0 30px; }
  .landing-feature--row {
    margin-left: -30px;
    margin-right: -30px; }
  .landing-feature--item {
    padding: 0 8px; }
  .landing-extras--title {
    padding: 0 100px; }
  .landing-extras--description {
    padding: 0 20px; }
  .landing-section--title {
    font-size: 32px; }
  .landing-subsection--title {
    font-size: 24px;
    min-height: 64px;
    padding-top: 6px; }
  .landing-moresection--title {
    font-size: 30px; }
  .landing-moresection--column {
    width: 48%; } }

/* desktop */
@media (min-width: 1024px) {
  .landing-banner img {
    margin-left: -512px; }
  .landing-intro--description {
    padding-left: 40px; }
  .landing-media--video {
    margin-left: -512px;
    width: 1024px; }
  .landing-expert:after {
    margin-left: -400px; }
  .landing-expert--button {
    padding: 0 10px; }
    .landing-expert--button .button a {
      width: 380px; }
  .landing-summary--body {
    margin-top: 40px;
    padding: 0 40px; }
    .landing-summary--body li {
      padding-top: 3px; }
      .landing-summary--body li:after {
        background-image: url(../img/bg-pin-large.png);
        height: 28px;
        left: -54px;
        width: 28px; }
  .landing-summary--icon {
    left: -55px;
    top: -25px; }
    .landing-summary--icon img {
      width: 110px; }
  .landing-feature--body, .landing-feature--note {
    padding: 0 40px; }
  .landing-feature--row {
    margin-left: -40px;
    margin-right: -40px; }
  .landing-feature--item {
    padding: 0 18px; }
  .landing-extras--title {
    padding: 0 120px; }
  .landing-extras--description {
    padding: 0 30px; }
  .landing-section--title {
    font-size: 36px; }
    .landing-section--title span {
      display: block; }
  .landing-subsection--title {
    font-size: 28px;
    min-height: 68px;
    padding-top: 2px; }
  .landing-moresection--title {
    font-size: 30px; }
    .landing-moresection--title span {
      display: block; }
  .landing-moresection--column {
    width: 45%; } }

/* mobile */
@media (max-width: 767px) {
  .landing-banner {
    height: 110px; }
    .landing-banner img {
      bottom: 10px;
      margin-left: -180px;
      top: 10px;
      width: 360px; }
    .generic .landing-banner,
    .offer .landing-banner {
      height: 161px; }
    .subscription .landing-banner {
      height: 241px; }
  .landing-contact {
    background-color: #e9eaeb;
    padding: 8px 10px; }
    .landing-contact--title {
      color: #249ad2;
      float: right;
      font-family: "DIN Regular", sans-serif;
      font-size: 16px;
      font-weight: normal;
      margin: 0;
      padding: 0 210px 0 0;
      text-transform: uppercase; }
    .landing-contact--link {
      position: absolute;
      right: 0;
      top: 0;
      width: 200px; }
      .landing-contact--link a {
        background-color: #ffd715;
        border-right: #e5c113 solid 45px;
        border-radius: 5px;
        color: #000;
        display: block;
        font-family: "DIN Regular", sans-serif;
        font-size: 21px;
        height: 45px;
        line-height: 45px;
        position: relative;
        text-align: center;
        text-transform: uppercase; }
        .landing-contact--link a img {
          height: 19px;
          position: absolute;
          right: -32px;
          top: 12px;
          width: auto; }
        .landing-contact--link a span {
          display: block;
          padding: 0 5px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap; }
        .no-touch .landing-contact--link a:hover {
          background-color: #e5c113; }
  .landing-button {
    background-color: #249ad2;
    background-image: url(../img/bg-currency.png);
    background-position: left center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    padding: 8px 10px;
    position: relative;
    z-index: 2; }
    .landing-button a {
      background-color: #001e49;
      border-radius: 5px;
      color: #fff;
      display: block;
      float: right;
      font-family: "DIN Regular", sans-serif;
      font-size: 18px;
      height: 45px;
      line-height: 45px;
      overflow: hidden;
      text-align: center;
      text-transform: uppercase;
      width: 200px; }
      .landing-button a img {
        height: 13px;
        vertical-align: baseline;
        width: auto; }
      .no-touch .landing-button a:hover {
        color: #ffd715; }
  .landing-intro {
    background-position: 65% bottom;
    background-size: auto 100%; }
    .landing-intro--description {
      padding-bottom: 135px;
      padding-top: 15px; }
      .landing-intro--description p {
        width: 290px;
        margin: 0 auto;
        padding: 10px 0; }
      .landing-intro--description strong {
        font-size: 24px; }
      .landing-intro--description em {
        font-size: 18px; }
      .landing-intro--description span {
        margin-top: 3px;
        margin-bottom: 5px;
        font-size: 20px; }
    .landing-intro--indicator {
      left: 50%;
      margin-left: -9px;
      height: 10px; }
      .landing-intro--indicator img {
        height: 10px; }
      .landing-intro--indicator:after, .landing-intro--indicator:before {
        border-top-width: 2px; }
  .landing-media--wrapper {
    height: 287px; }
  .landing-media--video {
    margin-left: -160px;
    width: 320px; }
  .landing-media--image {
    margin-left: -320px;
    width: 640px; }
  .landing-media--body {
    padding: 20px 0; }
  .landing-media--title {
    font-size: 24px; }
  .landing-media--button {
    margin-top: 30px; }
    .landing-media--button img {
      width: 60px; }
  .landing-media--download {
    padding: 15px 0; }
    .landing-media--download a {
      max-width: 320px;
      padding: 19px 15px 19px 55px; }
    .landing-media--download img {
      left: 15px;
      top: 20px; }
  .landing-expert {
    padding-bottom: 40px;
    padding-top: 25px; }
    .landing-expert:after {
      height: 34px;
      left: 15px;
      width: 20px; }
    .landing-expert--title {
      font-size: 26px; }
      .landing-expert--title em {
        font-size: 30px; }
      .landing-expert--title span em {
        display: block; }
    .landing-expert--list, .landing-expert--button {
      margin-top: 20px;
      padding: 0 15px; }
    .landing-expert--list li {
      padding-left: 30px; }
    .landing-expert--button .button {
      margin-top: 0; }
      .landing-expert--button .button a {
        border-right-width: 55px;
        font-size: 15px;
        line-height: 1.2;
        margin-left: auto;
        margin-right: auto;
        max-width: 480px;
        padding: 10px 15px;
        text-align: left; }
      .landing-expert--button .button img {
        height: 28px;
        margin-top: -14px;
        right: -46px; }
  .landing-group {
    padding: 0 5px; }
    .landing-group:after {
      right: 5px; }
    .landing-group:before {
      left: 5px; }
  .landing-summary--wrapper {
    padding-bottom: 45px; }
    .landing-summary--wrapper:after {
      top: 65px; }
  .landing-summary--body {
    font-size: 14px;
    margin-top: 20px;
    padding: 0 20px; }
    .landing-summary--body li:after {
      background-image: url(../img/bg-pin.png);
      height: 20px;
      left: -30px;
      width: 20px; }
  .landing-summary--title {
    font-size: 24px; }
    .landing-summary--title span {
      font-size: 14px; }
  .landing-summary--icon {
    left: -15px;
    top: 63px; }
    .landing-summary--icon img {
      width: 30px; }
  .landing-feature--wrapper {
    padding-bottom: 45px; }
  .landing-feature--body {
    padding: 0 20px; }
  .landing-feature--body {
    font-size: 14px;
    margin-top: 20px; }
    .landing-feature--body li {
      padding-left: 30px; }
      .landing-feature--body li:after {
        top: 0;
        left: 0; }
  .landing-feature--title {
    font-size: 24px;
    padding: 0 10px; }
    .landing-feature--title span {
      font-size: 14px; }
  .landing-feature--note {
    padding: 0 30px; }
  .landing-feature--row {
    padding: 0 15px; }
  .landing-feature--column {
    margin-top: 30px; }
    .landing-feature--column:first-child {
      margin-top: 0; }
  .landing-form--description, .landing-form--input {
    font-size: 16px; }
  .landing-form--body {
    margin-top: 15px;
    padding: 10px 55px 10px 10px; }
  .landing-form--button img {
    height: 45px; }
  .landing-extras {
    padding: 30px 10px; }
    .landing-extras--title {
      font-size: 20px; }
    .landing-extras--description {
      margin-top: 25px;
      padding: 0 20px; }
      .landing-extras--description:first-child {
        margin-top: 0; }
  .landing-note {
    padding: 10px 30px 60px;
    text-align: center; }
  .landing-back {
    height: 35px; }
    .generic .landing-back,
    .subscription .landing-back {
      background-color: #fff; }
    .offer .landing-back {
      background-color: #e9eaeb; }
  .landing-section, .landing-subsection, .landing-extrasection, .landing-moresection {
    padding: 0 5px; }
  .landing-section {
    padding-bottom: 25px;
    position: relative;
    text-align: center; }
    .landing-section:after {
      background-color: #d1d3d4;
      bottom: 0;
      content: "";
      height: 1px;
      left: 50%;
      margin-left: -400px;
      overflow: hidden;
      position: absolute;
      width: 800px; }
    .landing-section--title {
      font-size: 28px; }
    .landing-section--body {
      font-size: 18px;
      margin-top: 5px; }
    .landing-section--icon {
      display: none; }
  .landing-subsection {
    margin-top: 30px; }
    .landing-subsection--title {
      font-size: 24px;
      text-align: center; }
    .landing-subsection--body {
      font-size: 16px;
      margin-top: 20px; }
      .landing-subsection--body li {
        padding-left: 30px; }
        .landing-subsection--body li:after {
          left: 0;
          top: 0; }
      .landing-subsection--body .special {
        top: -4px; }
    .landing-subsection--icon {
      margin-bottom: 10px;
      margin-left: auto;
      margin-right: auto; }
  .landing-extrasection--title {
    font-size: 22px; }
  .landing-moresection {
    background-color: #fff;
    padding-bottom: 10px;
    padding-top: 35px; }
    .landing-moresection:after, .landing-moresection:before {
      content: "";
      left: 50%;
      position: absolute; }
    .landing-moresection:after {
      border: transparent solid 10px;
      border-top-color: #e9eaeb;
      height: 0;
      margin-left: -10px;
      pointer-events: none;
      top: 0;
      width: 0; }
    .landing-moresection:before {
      background-color: #fff;
      bottom: -30px;
      margin-left: -400px;
      top: 0;
      width: 800px;
      z-index: -1; }
    .landing-moresection--title {
      font-size: 28px; }
    .landing-moresection--body {
      padding: 0 15px; }
    .landing-moresection--column {
      margin-top: 20px; } }

@media (max-width: 479px) {
  .landing-contact--title {
    height: 39px;
    line-height: 1;
    padding-top: 6px; }
    .landing-contact--title span {
      display: block; } }

@media (min-width: 480px) and (max-width: 767px) {
  .landing-contact--title {
    height: 45px;
    line-height: 45px; } }

/* toolbar */
.toolbar-button {
  background-color: #e9eaeb;
  border-color: #d1d3d4;
  border-style: solid; }
  .toolbar-button img {
    height: 45px;
    width: auto; }
  .toolbar-button--group {
    max-height: 0;
    overflow: hidden;
    text-align: center;
    transition: max-height 0.4s ease-out; }
  .no-touch .toolbar-button:hover {
    background-color: rgba(255, 255, 255, 0.2); }

.toolbar-toggle {
  display: block;
  float: left;
  margin-top: -15px;
  text-align: center;
  width: 100px; }
  .toolbar-toggle--group {
    position: relative; }
    .toolbar-toggle--group:after {
      bottom: 0;
      content: "";
      left: 50%;
      margin-left: -400px;
      position: absolute;
      top: 0;
      width: 800px;
      z-index: 1; }
  .toolbar-toggle--wrapper {
    margin: 0 auto;
    position: relative;
    width: 300px;
    z-index: 2; }
    .toolbar-toggle--wrapper:after, .toolbar-toggle--wrapper:before {
      content: "";
      display: table; }
    .toolbar-toggle--wrapper:after {
      clear: both; }
  .toolbar-toggle--icon, .toolbar-toggle--label {
    display: block; }
  .toolbar-toggle--icon {
    background-color: #249ad2;
    border: #e9eaeb solid 2px;
    border-radius: 50%;
    height: 16px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 15px 0;
    width: 46px; }
    .toolbar-toggle--icon img {
      display: none;
      height: 100%;
      width: auto; }
    .toolbar-toggle--icon .white {
      display: inline; }
    .toolbar-toggle--icon .blue {
      display: none; }
  .toolbar-toggle--label {
    color: #249ad2;
    font-size: 12px;
    line-height: 1;
    margin-top: 8px;
    overflow: hidden;
    text-transform: uppercase;
    transition: max-height 0.4s ease-out; }
    .toolbar-toggle--label span {
      display: block; }
  .toolbar-toggle.active .toolbar-toggle--icon {
    background-color: #e9eaeb;
    height: 26px;
    padding: 10px 0; }
    .toolbar-toggle.active .toolbar-toggle--icon .white {
      display: none; }
    .toolbar-toggle.active .toolbar-toggle--icon .blue {
      display: inline; }

.toolbar-section {
  margin: 0 auto;
  max-width: 270px; }
  .toolbar-section--title {
    color: #249ad2;
    font-family: "DIN Regular", sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-transform: uppercase; }
  .toolbar-section--body {
    line-height: 1.125;
    margin-top: 8px; }
    .toolbar-section--body p {
      margin: 0;
      padding: 0; }

.toolbar-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out; }
  .toolbar-wrapper.active {
    max-height: 250px; }

.toolbar.active .toolbar-button--group {
  max-height: 50px; }

.toolbar-top {
  background-color: #e9eaeb;
  border-top: #001e49 solid 15px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3); }

.toolbar-top .toolbar-toggle--group {
  padding-bottom: 15px; }
  .toolbar-top .toolbar-toggle--group:after {
    background-color: #e9eaeb; }

.toolbar-top .toolbar-button {
  border-radius: 5px 5px 0 0;
  border-width: 1px 1px 0; }

.toolbar-top .toolbar-section {
  padding: 0 25px 20px; }

.toolbar-top .toolbar-toggle--label {
  max-height: 30px; }

.toolbar-top.active .toolbar-toggle--label {
  max-height: 0; }

.toolbar-bottom {
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.3); }

.toolbar-bottom .toolbar-toggle--group {
  padding-bottom: 24px; }
  .toolbar-bottom .toolbar-toggle--group:after {
    background-color: #001e49; }

.toolbar-bottom .toolbar-button {
  border-radius: 0 0 5px 5px;
  border-width: 0 1px 1px; }

.toolbar-bottom .toolbar-section {
  padding: 18px 25px 35px; }

.toolbar-bottom .toolbar-toggle--icon {
  border-color: #e9eaeb; }

.toolbar-bottom.active {
  background-color: #e9eaeb; }

.toolbar-bottom.active .toolbar-toggle--icon {
  border-color: #e9eaeb; }

/* toolbox */
.toolbox.right .toolbox-contact,
.toolbox.right .toolbox-subscription {
  border-radius: 5px;
  margin-bottom: 35px; }

.toolbox.bottom {
  bottom: 100%;
  left: 50%;
  margin-left: -160px;
  position: absolute;
  width: 320px;
  z-index: 1; }

.toolbox-contact, .toolbox-subscription {
  padding: 20px; }
  .toolbox-contact--body, .toolbox-subscription--body {
    margin-top: 20px; }
  .toolbox-contact--title, .toolbox-subscription--title {
    font-family: "DIN Regular", sans-serif;
    font-size: 26px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    position: relative;
    text-transform: uppercase; }
    .toolbox-contact--title img, .toolbox-subscription--title img {
      position: absolute;
      width: auto; }

.toolbox-contact {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  .toolbox-contact--body {
    color: #576882;
    text-align: center; }
  .toolbox-contact--title {
    color: #249ad2;
    height: 36px;
    line-height: 36px;
    padding-left: 50px; }
    .toolbox-contact--title img {
      height: 36px;
      left: 0;
      top: 0; }

.toolbox-subscription {
  background-color: #249ad2; }
  .toolbox-subscription--body {
    color: #fff; }
  .toolbox-subscription--title {
    color: #fff;
    line-height: 1;
    padding-left: 60px; }
    .toolbox-subscription--title img {
      height: 45px;
      left: 0;
      top: 4px; }
    .toolbox-subscription--title span {
      display: block; }

.toolbox-description p, .toolbox-note p {
  margin: 0;
  padding: 0; }

.toolbox-description span, .toolbox-note span {
  display: block; }

.toolbox-description {
  font-size: 18px;
  line-height: 1.1111; }

.toolbox-note {
  font-size: 14px;
  line-height: 1.1429; }

.toolbox-link {
  padding: 10px 0; }
  .toolbox-link a {
    background-color: #ffd715;
    border-radius: 5px;
    border-right: #e5c113 solid 60px;
    color: #001e49;
    display: block;
    font-family: "DIN Regular", sans-serif;
    font-size: 28px;
    height: 60px;
    line-height: 60px;
    position: relative;
    text-align: center;
    text-transform: uppercase; }
    .toolbox-link a img {
      height: 26px;
      position: absolute;
      right: -43px;
      top: 17px;
      width: auto; }
    .toolbox-link a span {
      display: block;
      padding: 0 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .no-touch .toolbox-link a:hover {
      background-color: #e5c113; }

.toolbox-list {
  font-size: 18px;
  line-height: 1.1111; }
  .toolbox-list sup {
    font-size: 50%;
    top: -0.75em; }
  .toolbox-list ul,
  .toolbox-list li {
    margin: 0;
    padding: 0; }
  .toolbox-list ul {
    list-style: none; }
  .toolbox-list li {
    margin-top: 10px;
    padding-left: 21px;
    position: relative; }
    .toolbox-list li:first-child {
      margin-top: 0; }
    .toolbox-list li:after {
      background-image: url(../img/bg-blue-arrow.png);
      content: "";
      height: 11px;
      left: 0;
      position: absolute;
      top: 5px;
      width: 15px; }

.toolbox-form {
  margin-top: 15px; }
  .toolbox-form--input, .toolbox-form--button, .toolbox-form--note, .toolbox-form--message {
    display: block; }
  .toolbox-form--input, .toolbox-form--button {
    width: 100%; }
  .toolbox-form--input, .toolbox-form--note {
    color: #001e49;
    font-size: 14px; }
  .toolbox-form--input {
    background-color: #e9eaeb;
    border: #939598 solid 1px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.5);
    padding: 15px 10px; }
    .toolbox-form--input:focus {
      background-color: #fff; }
    .toolbox-form--input.error {
      border-color: #bf1e1e;
      box-shadow: inset 0 0 4px rgba(191, 30, 30, 0.5); }
  .toolbox-form--button {
    background-color: #001e49;
    border-radius: 5px;
    color: #fff;
    font-family: "DIN Regular", sans-serif;
    font-size: 22px;
    margin-top: 10px;
    padding: 15px 0 15px 55px;
    position: relative;
    text-align: left;
    text-transform: uppercase; }
    .no-touch .toolbox-form--button:hover {
      background-color: #334b6d; }
    .toolbox-form--button img {
      height: 17px;
      left: 20px;
      position: absolute;
      top: 20px;
      width: auto; }
  .toolbox-form--note, .toolbox-form--message {
    margin-top: 5px; }
  .toolbox-form--message {
    font-size: 12px;
    font-style: normal; }

.toolbox-info {
  font-size: 11px;
  margin-top: 10px; }
  .toolbox-info p {
    margin: 0;
    padding: 0; }

.toolbox-toggle {
  border-radius: 5px;
  color: #fff;
  display: block;
  font-family: "DIN Medium", sans-serif;
  font-size: 15px;
  line-height: 1;
  padding: 10px 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 145px; }
  .toolbox-toggle span {
    display: block; }
  .toolbox-toggle:after {
    content: "";
    display: none;
    height: 10px;
    left: 0;
    position: absolute;
    right: 0;
    top: -10px; }
  .toolbox-toggle.left {
    float: left; }
  .toolbox-toggle.right {
    float: right; }
  .toolbox-toggle.blue {
    background-color: #249ad2; }
    .toolbox-toggle.blue:after {
      background-color: #249ad2; }
  .toolbox-toggle.gray {
    background-color: #576882; }
    .toolbox-toggle.gray:after {
      background-color: #fff; }
  .toolbox-toggle.active {
    border-radius: 0 0 5px 5px;
    margin-left: -5px;
    margin-right: -5px;
    width: 155px; }
    .toolbox-toggle.active:after {
      display: block; }
    .toolbox-toggle.active.gray {
      background-color: #fff;
      color: #576882; }
  .toolbox-toggle--group {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 300px;
    z-index: 2; }
    .toolbox-toggle--group:after, .toolbox-toggle--group:before {
      content: "";
      display: table; }
    .toolbox-toggle--group:after {
      clear: both; }

.toolbox-section {
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  max-height: 0;
  overflow: hidden; }
  .toolbox-section.active {
    max-height: 500px;
    transition: max-height 0.4s ease-out; }

/* tablet - desktop */
@media (min-width: 768px) {
  .landingpage .toolbox.right {
    left: 50%;
    position: absolute; }
    .landingpage .toolbox.right.fixed {
      position: fixed;
      top: 18px !important; }
  .generic .toolbox.right,
  .offer .toolbox.right {
    top: -303px; }
  .subscription .toolbox.right {
    top: -369px; }
  .toolbox-wrapper {
    height: 0;
    overflow: hidden; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .landingpage .toolbox.right {
    margin-left: 50px; } }

/* desktop */
@media (min-width: 1024px) {
  .landingpage .toolbox.right {
    margin-left: 120px; } }

/* mobile */
@media (max-width: 767px) {
  .toolbox-wrapper {
    background-color: #001e49;
    padding: 10px 0;
    position: relative;
    z-index: 5; } }

/* aside */
.aside-section, .aside-info, .aside-note {
  border-top: #334b6d solid 1px;
  margin-top: 30px; }

.aside-info {
  border-bottom: #334b6d solid 1px; }

.aside-section:first-child {
  border-top: 0;
  margin-top: 0; }

.aside-section--header {
  padding: 12px 0; }

.aside-section--body {
  line-height: 1.125; }
  .aside-section--body p {
    margin: 0;
    padding: 0; }

.aside-section--title {
  color: #249ad2;
  font-family: "DIN Regular", sans-serif;
  font-size: 18px;
  font-weight: normal;
  height: 36px;
  margin: 0;
  padding: 0 0 0 40px;
  position: relative;
  text-transform: uppercase; }
  .aside-section--title.single-line {
    line-height: 36px; }
  .aside-section--title.multiple-line {
    line-height: 1; }
  .aside-section--title img {
    height: 28px;
    left: 2px;
    margin-top: -14px;
    position: absolute;
    top: 50%;
    width: auto; }
  .aside-section--title span {
    display: block; }

.aside-section--description {
  color: #77787b;
  margin-top: 10px; }

.aside-section--link, .aside-section--form {
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px; }

.aside-section--link {
  max-width: 270px; }
  .aside-section--link a {
    border-radius: 5px;
    border-right-style: solid;
    border-right-width: 45px;
    display: block;
    font-family: "DIN Regular", sans-serif;
    height: 45px;
    line-height: 45px;
    position: relative;
    text-align: center;
    text-transform: uppercase; }
    .aside-section--link a img {
      height: 19px;
      position: absolute;
      right: -32px;
      top: 12px;
      width: auto; }
    .aside-section--link a span {
      display: block;
      padding: 0 5px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .aside-section--link a.tiny {
      font-size: 12px; }
    .aside-section--link a.small {
      font-size: 15px; }
    .aside-section--link a.medium {
      font-size: 21px; }
    .aside-section--link a.yellow {
      background-color: #ffd715;
      border-right-color: #e5c113;
      color: #000; }
      .no-touch .aside-section--link a.yellow:hover {
        background-color: #e5c113; }
    .aside-section--link a.blue {
      background-color: #334b6d;
      border-right-color: #001e49;
      color: #fff; }
      .no-touch .aside-section--link a.blue:hover {
        background-color: #001e49; }

.aside-section--form {
  background-color: #fff;
  border: #d1d3d4 solid 1px;
  border-radius: 5px;
  height: 23px;
  max-width: 205px;
  overflow: hidden;
  position: relative;
  padding: 10px 55px 10px 10px; }
  .aside-section--form.error {
    border-color: #bf1e1e;
    color: #bf1e1e; }
  .aside-section--form---input {
    background-color: #fff;
    color: #939598;
    font-size: 18px;
    width: 100%; }
  .aside-section--form---button {
    background-color: #939598;
    border-radius: 0 5px 5px 0;
    color: #fff;
    font-family: "DIN Regular", sans-serif;
    font-size: 16px;
    height: 45px;
    position: absolute;
    right: -1px;
    text-transform: uppercase;
    top: -1px;
    width: 45px; }
    .no-touch .aside-section--form---button:hover {
      background-color: #77787b; }
  .aside-section--form.error .aside-section--form---button {
    background-color: #bf1e1e; }

.aside-button {
  margin-top: 25px; }
  .aside-button a {
    background-color: #001e49;
    border: #249ad2 solid 1px;
    border-radius: 50%;
    color: #fff;
    display: block;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 180px; }
    .no-touch .aside-button a:hover {
      color: #ffd715; }
    .aside-button a:after, .aside-button a:before {
      border-radius: 50%;
      content: "";
      position: absolute; }
    .aside-button a:after {
      border: #249ad2 solid 3px;
      height: 162px;
      left: 5px;
      top: 5px;
      width: 162px;
      z-index: 1; }
    .aside-button a:before {
      background-color: #249ad2;
      bottom: 30px;
      height: 44px;
      left: 67px;
      width: 44px;
      z-index: 2; }
    .aside-button a img {
      bottom: 45px;
      height: auto;
      left: 79px;
      position: absolute;
      width: 20px;
      z-index: 3; }
    .aside-button a span {
      display: block;
      font-family: "DIN Regular", sans-serif;
      font-size: 24px;
      line-height: 1;
      padding: 40px 20px 0;
      position: relative;
      z-index: 4; }

.aside-block {
  padding-top: 30px;
  text-align: center;
  padding-bottom: 30px; }
  .aside-block--title {
    position: relative;
    margin: 0;
    padding: 0 0 0 37px;
    font-family: "DIN Regular", sans-serif;
    font-size: 18px;
    font-weight: normal;
    text-transform: uppercase;
    color: #249ad2; }
    .aside-block--title img {
      position: absolute;
      left: 20px;
      width: auto;
      height: 27px; }
    .aside-block--title span {
      display: block;
      margin-top: 1px; }
    .aside-block--title.single-line {
      line-height: 1.5; }
      .aside-block--title.single-line img {
        top: 0; }
    .aside-block--title.multiple-line {
      line-height: 1; }
      .aside-block--title.multiple-line img {
        top: 5px; }
  .aside-block--summary, .aside-block--description {
    margin-top: 10px;
    padding: 0 5px; }
    .aside-block--summary p, .aside-block--description p {
      margin: 0;
      padding: 5px 0; }
    .aside-block--summary em, .aside-block--description em {
      font-style: normal;
      font-weight: bold;
      color: #249ad2; }
  .aside-block--summary strong {
    color: #001e49; }
  .aside-block--description {
    color: #77787b; }

.aside-note {
  padding: 20px 0;
  font-size: 12px;
  font-style: italic;
  line-height: 1.625; }
  .aside-note p {
    position: relative;
    margin: 0;
    padding: 5px 0 5px 15px; }
  .aside-note span {
    position: absolute;
    top: 0;
    left: 0;
    font-style: normal; }

/* tablet - desktop */
@media (min-width: 768px) {
  .aside.fixed {
    left: 50%;
    position: fixed;
    top: 73px;
    z-index: 1; }
  .aside-section--summary, .aside-section--description {
    padding: 0 5px;
    text-align: center; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .aside.fixed {
    margin-left: 170px; } }

/* desktop */
@media (min-width: 1024px) {
  .aside.fixed {
    margin-left: 200px; } }

/* mobile */
@media (max-width: 767px) {
  .aside.gap {
    padding: 0 35px; } }

/* content */
.content-header {
  background-color: #001e49;
  border-radius: 5px 5px 0 0;
  color: #fff;
  position: relative; }
  .content-header:after {
    border-color: transparent;
    border-style: solid;
    border-top-color: #001e49;
    content: "";
    top: 100%;
    height: 0;
    pointer-events: none;
    position: absolute;
    width: 0; }
  .content-header.without-arrow {
    background-color: #167bbf; }
    .content-header.without-arrow:after {
      display: none; }

.content-body {
  background-color: #fff;
  border: #d1d3d4 solid 1px;
  border-top-width: 0;
  border-radius: 0 0 5px 5px; }

.content-title {
  font-weight: normal;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-transform: uppercase; }
  .content-title em {
    font-style: normal; }

.content.without-header .content-header {
  display: none; }

.content.without-header .content-body {
  border-top-width: 1px;
  border-radius: 5px; }

.content-tab {
  line-height: 1;
  text-align: center;
  text-transform: uppercase; }
  .content-tab ol,
  .content-tab li.old {
    cursor: pointer; }
  .content-tab ol,
  .content-tab li {
    margin: 0;
    padding: 0; }
  .content-tab ol {
    position: relative;
    list-style: none; }
  .content-tab li {
    position: relative;
    border-style: solid;
    border-width: 1px 1px 1px 0; }
    .content-tab li:after {
      position: absolute;
      top: -1px;
      left: -6px;
      bottom: -1px;
      width: 6px;
      background-image: url(../img/bg-gradient-3.png);
      background-repeat: repeat-y;
      content: ""; }
    .content-tab li:first-child:after {
      display: none; }
    .content-tab li.i1 {
      border-radius: 5px 0 0 0; }
    .content-tab li.i5 {
      border-radius: 0 5px 0 0; }
    .content-tab li.new, .content-tab li.old {
      position: absolute;
      top: 0;
      background-color: #e9eaeb; }
      .content-tab li.new span, .content-tab li.old span {
        display: none; }
    .content-tab li.new {
      background-color: #e9eaeb;
      border-color: #d1d3d4;
      color: #167bbf; }
    .content-tab li.old {
      background-color: #001e49;
      border-color: #001e49;
      color: #fff; }
    .content-tab li.active {
      background-color: #167bbf;
      border-color: #167bbf;
      color: #fff; }
  .content-tab strong {
    font-weight: normal; }
  .content-tab em {
    font-style: normal; }

/* tablet - desktop */
@media (min-width: 768px) {
  .content-header {
    padding: 20px 25px; }
    .content-header:after {
      border-width: 15px;
      left: 12px; }
  .content-title {
    font-family: "DIN Medium", sans-serif;
    font-size: 21px; }
    .content-title em {
      display: block; }
  .content-body {
    padding: 25px; }
  .content-tab {
    font-family: "DIN Medium", sans-serif;
    font-size: 21px; }
    .content-tab ol.t1 {
      padding-right: 160px; }
      .content-tab ol.t1 .i2 {
        right: 120px; }
      .content-tab ol.t1 .i3 {
        right: 80px; }
      .content-tab ol.t1 .i4 {
        right: 40px; }
      .content-tab ol.t1 .i5 {
        right: 0; }
    .content-tab ol.t2 {
      padding-left: 40px;
      padding-right: 120px; }
      .content-tab ol.t2 .i1 {
        left: 0; }
      .content-tab ol.t2 .i3 {
        right: 80px; }
      .content-tab ol.t2 .i4 {
        right: 40px; }
      .content-tab ol.t2 .i5 {
        right: 0; }
    .content-tab ol.t3 {
      padding-left: 80px;
      padding-right: 80px; }
      .content-tab ol.t3 .i1 {
        left: 0; }
      .content-tab ol.t3 .i2 {
        left: 40px; }
      .content-tab ol.t3 .i4 {
        right: 40px; }
      .content-tab ol.t3 .i5 {
        right: 0; }
    .content-tab ol.t4 {
      padding-left: 120px;
      padding-right: 40px; }
      .content-tab ol.t4 .i1 {
        left: 0; }
      .content-tab ol.t4 .i2 {
        left: 40px; }
      .content-tab ol.t4 .i3 {
        left: 80px; }
      .content-tab ol.t4 .i5 {
        right: 0; }
    .content-tab ol.t5 {
      padding-left: 160px; }
      .content-tab ol.t5 .i1 {
        left: 0; }
      .content-tab ol.t5 .i2 {
        left: 40px; }
      .content-tab ol.t5 .i3 {
        left: 80px; }
      .content-tab ol.t5 .i4 {
        left: 120px; }
    .content-tab li {
      padding-top: 17px;
      padding-bottom: 18px; }
      .content-tab li.new, .content-tab li.old {
        width: 39px; }
    .content-tab strong {
      font-size: 24px; } }

/* mobile */
@media (max-width: 767px) {
  .content-header {
    padding: 15px 20px; }
  .content-body {
    padding: 20px 15px; }
  .content-header:after {
    border-width: 10px;
    left: 12px; }
  .content-title {
    font-family: "DIN Regular", sans-serif;
    font-size: 18px; }
  .content-tab {
    font-size: 15px;
    font-family: "DIN Regular", sans-serif; }
    .content-tab ol.t1 {
      padding-right: 120px; }
      .content-tab ol.t1 .i2 {
        right: 90px; }
      .content-tab ol.t1 .i3 {
        right: 60px; }
      .content-tab ol.t1 .i4 {
        right: 30px; }
      .content-tab ol.t1 .i5 {
        right: 0; }
    .content-tab ol.t2 {
      padding-left: 30px;
      padding-right: 90px; }
      .content-tab ol.t2 .i1 {
        left: 0; }
      .content-tab ol.t2 .i3 {
        right: 60px; }
      .content-tab ol.t2 .i4 {
        right: 30px; }
      .content-tab ol.t2 .i5 {
        right: 0; }
    .content-tab ol.t3 {
      padding-left: 60px;
      padding-right: 60px; }
      .content-tab ol.t3 .i1 {
        left: 0; }
      .content-tab ol.t3 .i2 {
        left: 30px; }
      .content-tab ol.t3 .i4 {
        right: 30px; }
      .content-tab ol.t3 .i5 {
        right: 0; }
    .content-tab ol.t4 {
      padding-left: 90px;
      padding-right: 30px; }
      .content-tab ol.t4 .i1 {
        left: 0; }
      .content-tab ol.t4 .i2 {
        left: 30px; }
      .content-tab ol.t4 .i3 {
        left: 60px; }
      .content-tab ol.t4 .i5 {
        right: 0; }
    .content-tab ol.t5 {
      padding-left: 120px; }
      .content-tab ol.t5 .i1 {
        left: 0; }
      .content-tab ol.t5 .i2 {
        left: 30px; }
      .content-tab ol.t5 .i3 {
        left: 60px; }
      .content-tab ol.t5 .i4 {
        left: 90px; }
    .content-tab li {
      padding-top: 15px;
      padding-bottom: 16px; }
      .content-tab li.new, .content-tab li.old {
        width: 29px; }
    .content-tab em {
      display: none; } }

/* result */
.result-description {
  color: #77787b; }
  .result-description p {
    margin: 0;
    padding: 0; }
  .result-description a img {
    height: 20px;
    vertical-align: middle;
    width: auto; }

.result-map, .result-list {
  border: #d1d3d4 solid 1px; }

.result-map {
  overflow: hidden;
  height: 316px; }
  .result-map img {
    height: auto;
    width: 100%; }

.result-list ul,
.result-list li {
  margin: 0;
  padding: 0; }

.result-list ul {
  list-style: none; }

.result-list li {
  border-top: #d1d3d4 solid 1px; }
  .result-list li:first-child {
    border-top: 0; }
  .result-list li:nth-child(even) {
    background-color: #efeeee; }

.result-list a,
.result-list strong,
.result-list span {
  display: block; }

.result-list a {
  color: #77787b;
  padding: 20px 65px 20px 20px;
  position: relative; }
  .result-list a:after, .result-list a:before {
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 45px; }
  .result-list a:after {
    background-color: rgba(147, 149, 152, 0.3);
    transition: background-color 0.2s ease-out;
    z-index: 1; }
  .result-list a:before {
    background-image: url(../img/bg-line-1.png);
    z-index: 2; }
  .result-list a .blue {
    display: inline; }
  .result-list a .white {
    display: none; }
  .no-touch .result-list a:hover .blue {
    display: none; }
  .no-touch .result-list a:hover .white {
    display: inline; }
  .no-touch .result-list a:hover:after {
    background-color: #249ad2; }

.result-list strong {
  color: #249ad2;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 2px; }

.result-list span {
  font-size: 16px;
  line-height: 1.375; }

.result-list img {
  height: auto;
  margin-top: -10px;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 25px;
  z-index: 3; }

.result-toggle {
  background-color: #e9eaeb;
  color: #249ad2;
  font-family: "DIN Regular", sans-serif;
  font-size: 16px;
  float: left;
  height: 43px;
  line-height: 43px;
  padding-left: 43px;
  position: relative;
  text-transform: uppercase;
  width: 50%; }
  .result-toggle img {
    height: 43px;
    left: 0;
    position: absolute;
    top: 0;
    width: auto; }
    .result-toggle img.blue {
      display: block; }
    .result-toggle img.white {
      display: none; }
  .result-toggle.active {
    background-color: #249ad2;
    color: #fff; }
    .result-toggle.active img.blue {
      display: none; }
    .result-toggle.active img.white {
      display: block; }
  .result-toggle--group {
    border: 1px solid #249ad2;
    border-radius: 5px;
    margin: 15px 0;
    overflow: hidden; }

/* tablet - desktop */
@media (min-width: 768px) {
  .result-map, .result-list {
    margin-top: 40px; } }

/* mobile */
@media (max-width: 767px) {
  .result-map, .result-list {
    margin-left: -21px;
    margin-right: -21px;
    margin-top: 20px; } }

/* pricing */
.pricing-caption {
  padding: 15px 0;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #249ad2; }

.pricing-description, .pricing-confirmation {
  color: #334b6d; }
  .pricing-description p, .pricing-confirmation p {
    margin: 0;
    padding: 0; }

.pricing-description p {
  margin-top: 15px; }
  .pricing-description p:first-child {
    margin-top: 0; }

.pricing-confirmation {
  font-size: 16px;
  margin-bottom: -10px;
  text-align: center; }

.pricing-table {
  position: relative; }
  .pricing-table table {
    border: 0;
    width: 100%;
    color: #808184; }
  .pricing-table tr.package-1 {
    background-color: #f7f7f7; }
  .pricing-table tr.package-2 {
    background-color: #efeff0; }
  .pricing-table tr.package-3 {
    background-color: #e8e8e9; }
  .pricing-table th,
  .pricing-table td {
    position: relative;
    border: #d1d3d4 solid 1px;
    font-weight: normal;
    text-align: center;
    vertical-align: middle; }
    .pricing-table th.empty,
    .pricing-table td.empty {
      border: 0; }
  .pricing-table--label span, .pricing-table--package span {
    display: block; }
  .pricing-table--label {
    font-size: 18px; }
  .pricing-table--package {
    color: #77787b;
    font-size: 14px;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 2; }
    .pricing-table--package strong,
    .pricing-table--package em {
      color: #249ad2; }
    .pricing-table--package strong {
      display: block;
      font-size: 28px;
      font-weight: normal;
      line-height: 1; }
    .pricing-table--package em {
      font-size: 12px;
      font-style: normal;
      text-transform: uppercase; }
    .pricing-table--package.active,
    .no-touch .pricing-table--package:hover {
      background-color: #249ad2;
      color: #fff; }
      .pricing-table--package.active strong,
      .pricing-table--package.active em,
      .no-touch .pricing-table--package:hover strong,
      .no-touch .pricing-table--package:hover em {
        color: inherit; }
  .pricing-table--item span {
    display: block;
    padding: 5px 0; }
  .pricing-table--item strong,
  .pricing-table--item em,
  .pricing-table--item big {
    color: #249ad2; }
  .pricing-table--item em {
    font-style: normal; }
  .pricing-table--item big {
    font-size: 26px;
    line-height: 1; }
  .pricing-table--note {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: left;
    background-color: #fff; }
    .pricing-table--note:after {
      position: absolute;
      top: 20px;
      bottom: 20px;
      left: 20px;
      width: 1px;
      pointer-events: none;
      background-color: #ffd715;
      content: ""; }
    .pricing-table--note h4,
    .pricing-table--note p {
      margin: 0;
      padding: 5px 0 5px 20px; }
    .pricing-table--note h4 {
      font-size: 18px;
      font-weight: normal; }
    .pricing-table--note p {
      line-height: 1.125; }
  .pricing-table--status img {
    width: 20px;
    height: auto; }
  .pricing-table--dropdown {
    padding: 15px 0; }
    .pricing-table--dropdown---text {
      padding: 5px 0; }
    .pricing-table--dropdown---body {
      width: 100px;
      margin: 0 auto; }
  .pricing-table--option {
    padding: 10px 0; }
  .pricing-table--checkbox {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 10px 0;
    cursor: pointer;
    text-align: right;
    color: #249ad2;
    border-top: #d1d3d4 solid 1px; }
    .pricing-table--checkbox:first-child {
      border-top: 0; }
    .pricing-table--checkbox input {
      left: -9999px;
      opacity: 0;
      position: absolute;
      top: 0; }
    .pricing-table--checkbox:after, .pricing-table--checkbox:before {
      position: absolute;
      top: 10px;
      pointer-events: none;
      border-radius: 5px;
      content: ""; }
    .pricing-table--checkbox:after {
      z-index: 1;
      width: 18px;
      height: 18px;
      background-color: #fff;
      border: #249ad2 solid 1px; }
    .pricing-table--checkbox:before {
      z-index: 2;
      display: none;
      width: 20px;
      height: 20px;
      background-image: url(../img/bg-checked.png);
      background-position: center center;
      background-repeat: no-repeat; }
    .pricing-table--checkbox.checked:after {
      background-color: #249ad2; }
    .pricing-table--checkbox.checked:before {
      display: block; }

.pricing-content {
  color: #808184; }

.pricing-title {
  color: #334b6d;
  font-weight: normal;
  margin: 0;
  padding: 0; }

.pricing-info {
  line-height: 1.5; }
  .pricing-info p {
    margin-bottom: 0;
    padding: 0; }
    .pricing-info p:first-child {
      margin-top: 0; }
  .pricing-info blockquote {
    color: #334b6d;
    padding: 0 20px;
    position: relative; }
    .pricing-info blockquote:before, .pricing-info blockquote:after {
      color: #001e49;
      display: block;
      font-size: 80px;
      position: absolute; }
    .pricing-info blockquote:before {
      content: "\2018";
      left: 0;
      top: -30px; }
    .pricing-info blockquote:after {
      content: "\2019";
      bottom: -65px;
      right: 0; }
    .pricing-info blockquote p {
      font-style: italic;
      line-height: 1.5;
      margin: 0;
      padding: 0; }

.pricing-download ul,
.pricing-download li {
  margin: 0;
  padding: 0; }

.pricing-download ul {
  list-style: none; }

.pricing-download li {
  border-top: #efeeee solid 1px; }
  .pricing-download li:first-child {
    border-top: 0; }

.pricing-download a {
  display: block;
  font-family: "DIN Medium", sans-serif;
  font-size: 14px;
  padding-bottom: 4px;
  padding-left: 28px;
  padding-top: 4px;
  position: relative;
  text-transform: uppercase; }

.pricing-download span {
  text-transform: none; }

.pricing-download img {
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  width: 18px; }

.pricing-button {
  margin-top: 20px;
  height: 50px;
  overflow: hidden; }
  .pricing-button a {
    position: relative;
    float: right;
    padding: 8px 0;
    font-family: "DIN Medium", sans-serif;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    background-color: #fff;
    border: #249ad2 solid 1px;
    border-radius: 5px;
    color: #249ad2; }
    .pricing-button a.active {
      background-color: #249ad2;
      color: #fff; }
      .pricing-button a.active img.a1 {
        display: block; }
      .pricing-button a.active img.a2 {
        display: none; }
  .pricing-button span {
    display: block;
    margin-bottom: 4px; }
  .pricing-button img {
    position: absolute;
    top: 50%;
    width: auto; }
    .pricing-button img.a1 {
      left: 9px;
      display: none; }
    .pricing-button img.a2 {
      left: 14px;
      display: block; }

/* tablet - desktop */
@media (min-width: 768px) {
  .pricing-description {
    font-size: 18px; }
  .pricing-caption, .pricing-confirmation, .pricing-table {
    margin-top: 30px; }
  .pricing-caption {
    margin-bottom: -30px; }
  .pricing-table:after {
    background-color: transparent;
    bottom: 0;
    box-shadow: 1px 0 10px rgba(0, 0, 0, 0.2);
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    right: 0;
    top: 106px;
    z-index: 1; }
  .pricing-table th.column,
  .pricing-table td.column {
    height: 105px; }
  .pricing-table--type {
    padding: 20px 0;
    font-size: 18px; }
    .pricing-table--type span {
      display: block; }
  .pricing-table--package, .pricing-table--item {
    padding: 30px 0; }
  .pricing-table--slider {
    padding: 70px 15px 20px; }
  .pricing-table--icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 15px;
    height: auto; }
  .pricing-table--checkbox {
    padding-right: 50px; }
    .pricing-table--checkbox:after, .pricing-table--checkbox:before {
      right: 15px; }
  .pricing-title {
    font-size: 21px; }
  .pricing-info {
    font-size: 16px;
    margin-top: 20px; }
    .pricing-info p {
      margin-top: 20px; }
    .pricing-info blockquote {
      float: left;
      margin: 20px 35px 20px 0;
      width: 195px; }
  .pricing-download {
    margin-top: 30px; }
    .pricing-download li {
      padding: 15px 35px; }
  .pricing-button a {
    width: 168px;
    margin-right: 20px; }
    .pricing-button a:first-child {
      margin-right: 0; }
  .pricing-button img.a1 {
    height: 14px;
    margin-top: -7px; }
  .pricing-button img.a2 {
    height: 22px;
    margin-top: -11px; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .pricing-caption {
    padding-left: 136px; }
  .pricing-table:after {
    left: 136px; }
  .pricing-table th.column,
  .pricing-table td.column {
    width: 165px; } }

/* desktop */
@media (min-width: 1024px) {
  .pricing-caption {
    padding-left: 156px; }
  .pricing-table:after {
    left: 155px; }
  .pricing-table th.column,
  .pricing-table td.column {
    width: 175px; } }

/* mobile */
@media (max-width: 767px) {
  .pricing-description {
    font-size: 16px; }
  .pricing-caption, .pricing-confirmation, .pricing-table {
    margin-top: 20px; }
  .pricing-caption {
    margin-bottom: -20px; }
  .pricing-table {
    margin-left: -21px;
    margin-right: -21px;
    overflow: hidden; }
    .pricing-table th.column,
    .pricing-table td.column {
      height: 95px;
      width: 50%; }
    .pricing-table td.gap {
      padding-top: 45px; }
    .pricing-table td.double-gap {
      padding-top: 70px; }
    .pricing-table--option .pricing-button a {
      float: inherit;
      display: inline-block; }
    .pricing-table--type {
      background-color: #808184;
      color: #fff;
      font-size: 16px;
      height: 45px;
      line-height: 45px;
      margin-bottom: -45px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      width: 210px;
      z-index: 3; }
      .pricing-table--type:after, .pricing-table--type:before {
        content: "";
        position: absolute; }
      .pricing-table--type:after {
        border: transparent solid 8px;
        border-top-color: #808184;
        height: 0;
        left: 50%;
        margin-left: -8px;
        pointer-events: none;
        top: 100%;
        width: 0; }
      .pricing-table--type:before {
        background-image: url(../img/bg-line-2.png);
        height: 5px;
        left: -100%;
        right: -100%;
        top: 0; }
      .pricing-table--type.double-line {
        width: 190px;
        height: 40px;
        line-height: 1.25;
        padding: 15px 10px;
        margin-bottom: -70px; }
      .pricing-table--type img {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 15px;
        height: auto; }
      .pricing-table--type.triple-line {
        width: 190px;
        height: 60px;
        line-height: 1.25;
        padding: 15px 10px;
        margin-bottom: -90px; }
    .pricing-table--package, .pricing-table--item {
      padding: 30px 0; }
    .pricing-table--slider {
      padding-top: 80px;
      padding-bottom: 30px; }
    .pricing-table--status {
      padding: 20px 0; }
    .pricing-table--checkbox {
      padding-right: 30px; }
      .pricing-table--checkbox-actions {
        display: inline; }
      .pricing-table--checkbox:after, .pricing-table--checkbox:before {
        right: 5px; }
  .pricing-title {
    font-size: 18px; }
  .pricing-info {
    font-size: 15px;
    margin-top: 15px; }
    .pricing-info p {
      margin-top: 15px; }
    .pricing-info blockquote {
      display: block;
      margin: 15px 0; }
  .pricing-download {
    margin-top: 15px; }
    .pricing-download li {
      padding: 10px 15px; }
  .pricing-button {
    margin-right: -5px;
    margin-left: -5px; }
    .pricing-button a {
      width: 134px;
      margin-right: 10px;
      padding-left: 20px; }
      .pricing-button a:first-child {
        margin-right: 0; }
    .pricing-button img.a1 {
      height: 12px;
      margin-top: -6px; }
    .pricing-button img.a2 {
      height: 20px;
      margin-top: -10px; } }

/* confirm */
.confirm-description {
  color: #334b6d;
  padding-bottom: 10px; }
  .confirm-description p {
    margin: 0;
    padding: 0; }

.confirm-info {
  margin-bottom: 15px; }
  .confirm-info dl {
    margin: 0;
    padding: 0; }
  .confirm-info dt,
  .confirm-info dd {
    margin: 0;
    box-sizing: border-box; }
  .confirm-info dt {
    color: #77787b; }
  .confirm-info dd {
    color: #001e49; }
  .confirm-info--item {
    border-bottom: #efeeee solid 1px;
    overflow: hidden;
    padding: 12px 0; }

.confirm-link {
  position: relative; }
  .confirm-link img {
    vertical-align: middle; }

.confirm-form .form-label.normal {
  margin-top: 0; }

.confirm-question {
  color: #77787b; }
  .confirm-question--label {
    display: block; }
  .confirm-question--method {
    margin: 15px 0;
    overflow: hidden; }

.confirm-note {
  color: #77787b;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 20px; }
  .confirm-note p {
    margin: 0;
    padding: 0; }

.confirm-privacy {
  color: #77787b;
  font-size: 14px;
  position: relative; }
  .confirm-privacy:after {
    background-color: #ffd715;
    bottom: 4px;
    content: "";
    left: 0;
    position: absolute;
    width: 1px; }
  .confirm-privacy--icon {
    position: absolute;
    top: 0; }
    .confirm-privacy--icon img {
      width: auto; }
  .confirm-privacy--title {
    font-weight: normal;
    line-height: 1;
    margin: 0;
    text-transform: uppercase; }
  .confirm-privacy--content {
    margin-top: 5px; }
    .confirm-privacy--content p {
      margin: 0;
      padding: 0; }

.confirm-badge {
  background-color: #249ad2;
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase; }
  .confirm-badge:after {
    border: transparent solid 6px;
    content: "";
    height: 0;
    pointer-events: none;
    position: absolute;
    width: 0; }
  .confirm-badge em {
    font-style: normal; }
  .confirm-badge strong {
    font-size: 1.75em; }
    .confirm-badge strong span {
      font-size: 0.7619em; }

/* tablet - desktop */
@media (min-width: 768px) {
  .confirm-description, .confirm-info, .confirm-question {
    font-size: 18px; }
  .confirm-info dt,
  .confirm-info dd {
    float: left; }
  .confirm-info dt {
    padding-right: 10px;
    text-align: right;
    width: 25%; }
  .confirm-info dd {
    width: 75%; }
  .confirm-form {
    margin: 40px 0 30px; }
    .confirm-form .form-label, .confirm-form .form-input-group, .confirm-form .form-radio-group {
      float: left; }
    .confirm-form .form-label {
      margin-top: 11px;
      margin-bottom: 0;
      padding-right: 10px;
      text-align: right;
      width: 25%; }
      .confirm-form .form-label.multilines {
        margin-top: 4px; }
    .confirm-form .form-input-group, .confirm-form .form-radio-group {
      width: 75%; }
    .confirm-form.alt {
      margin-top: 0; }
      .confirm-form.alt .form-label {
        font-size: 16px;
        padding-right: 0;
        text-align: left;
        width: 35%; }
        .confirm-form.alt .form-label.multilines {
          line-height: 1.125;
          margin-top: 3px; }
      .confirm-form.alt .form-input-group, .confirm-form.alt .form-radio-group {
        width: 65%; }
  .confirm-question--method {
    padding-left: 120px; }
    .confirm-question--method > label,
    .confirm-question--method .form-radio-group {
      float: left; }
    .confirm-question--method > label {
      text-align: right;
      padding-right: 10px;
      width: 100px; }
    .confirm-question--method.alt {
      padding-left: 0; }
      .confirm-question--method.alt > label {
        width: 220px; }
  .confirm-privacy {
    margin: 40px 0;
    padding: 0 30px; }
    .confirm-privacy:after {
      top: 40px; }
    .confirm-privacy--icon {
      left: -16px; }
      .confirm-privacy--icon img {
        height: 32px; }
    .confirm-privacy--title {
      padding: 9px 0; } }

/* mobile - tablet */
@media (max-width: 1023px) {
  .confirm-badge {
    background-image: url(../img/bg-gradient-2.png);
    background-position: center top;
    background-repeat: repeat-x;
    padding: 15px 0;
    position: relative; }
    .confirm-badge:after {
      border-bottom-color: #249ad2;
      bottom: 100%;
      left: 50%;
      margin-left: -6px; }
    .confirm-badge em {
      display: inline-block; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .confirm-badge {
    margin: 0 -25px; }
    .confirm-badge em {
      margin-right: 20px; } }

/* desktop */
@media (min-width: 1024px) {
  .confirm-badge {
    background-image: url(../img/bg-gradient-1.png);
    background-position: right center;
    background-repeat: repeat-y;
    border-radius: 5px 0 0 5px;
    margin-left: -499px;
    padding: 15px 0 25px;
    position: fixed;
    left: 50%;
    top: 367px;
    width: 100px;
    z-index: 20; }
    .confirm-badge:after {
      border-left-color: #249ad2;
      left: 100%;
      margin-top: -6px;
      top: 50%; }
    .confirm-badge strong {
      display: block;
      margin-top: 5px; } }

/* mobile */
@media (max-width: 767px) {
  .confirm-description, .confirm-info, .confirm-question {
    font-size: 16px; }
  .confirm-info {
    margin-left: -20px;
    margin-right: -20px; }
    .confirm-info--item {
      padding: 10px 20px; }
  .confirm-form {
    margin: 12px 0 20px; }
    .confirm-form.alt {
      margin-top: 0; }
  .confirm-question--method .form-radio-group {
    margin-top: 5px; }
  .confirm-privacy {
    margin: 25px 0;
    padding: 0 0 0 25px; }
    .confirm-privacy:after {
      top: 36px; }
    .confirm-privacy--icon {
      left: -14px; }
      .confirm-privacy--icon img {
        height: 28px; }
    .confirm-privacy--title {
      padding: 7px 0; }
  .confirm-badge {
    margin: 0 -20px; }
    .confirm-badge em {
      margin-right: 10px; } }

/* message */
.message {
  border-bottom: #efeeee solid 1px;
  color: #334b6d;
  font-family: "DIN Regular", sans-serif;
  text-align: center; }
  .message p {
    margin: 0;
    padding: 0; }
  .message em {
    font-style: normal;
    color: #001e49; }

/* tablet - desktop */
@media (min-width: 768px) {
  .message {
    font-size: 26px;
    line-height: 1;
    padding-bottom: 10px; }
    .message p {
      padding-bottom: 20px; }
    .message span {
      display: block; } }

/* mobile */
@media (max-width: 767px) {
  .message {
    font-size: 20px;
    line-height: 1;
    padding-bottom: 5px; }
    .message p {
      padding-bottom: 15px; } }

/* cookie */
.cookie {
  background-color: #334b6d;
  color: #fff;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100; }
  .cookie-icon, .cookie-button {
    position: absolute; }
  .cookie-button {
    background-color: #249ad2;
    border-radius: 5px;
    color: #fff;
    text-align: center; }
  .cookie-message a {
    color: #fff;
    text-decoration: underline; }
    .no-touch .cookie-message a:hover {
      color: #ffd715; }

/* tablet - desktop */
@media (min-width: 768px) {
  .cookie-icon, .cookie-button {
    top: 20px; }
  .cookie-icon {
    left: 0; }
  .cookie-button {
    font-size: 2em;
    right: 0; }
  .cookie-message {
    font-family: "DIN Regular", sans-serif;
    padding-top: 20px;
    padding-bottom: 30px; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .cookie-icon, .cookie-button {
    height: 35px;
    width: 35px; }
  .cookie-button {
    line-height: 35px; }
  .cookie-message {
    font-size: 18px;
    padding-right: 55px;
    padding-left: 55px; } }

/* desktop */
@media (min-width: 1024px) {
  .cookie-icon, .cookie-button {
    height: 40px;
    width: 40px; }
  .cookie-button {
    line-height: 40px; }
  .cookie-message {
    font-size: 20px;
    padding-right: 60px;
    padding-left: 60px; } }

/* mobile */
@media (max-width: 767px) {
  .cookie-icon, .cookie-button {
    height: 25px;
    top: 15px;
    width: 25px; }
  .cookie-icon {
    left: 10px; }
  .cookie-button {
    font-size: 1.25em;
    line-height: 27px;
    right: 10px; }
  .cookie-message {
    font-family: "DIN Light", sans-serif;
    font-size: 14px;
    padding: 15px 45px 20px; } }

/* back */
.back {
  margin-bottom: 15px; }
  .back a {
    background-color: #249ad2;
    border-radius: 5px;
    border-left-color: #167bbf;
    border-left-style: solid;
    color: #fff;
    display: block;
    font-family: "DIN Regular", sans-serif;
    position: relative;
    text-align: center;
    text-transform: uppercase; }
    .back a img {
      position: absolute;
      top: 50%;
      width: auto; }
    .no-touch .back a:hover {
      background-color: #167bbf; }

/* tablet - desktop */
@media (min-width: 768px) {
  .back {
    margin-top: -40px; }
    .back a {
      border-left-width: 45px;
      font-size: 18px;
      height: 45px;
      line-height: 45px;
      width: 160px; }
      .back a img {
        height: 19px;
        margin-top: -10px;
        left: -35px; } }

/* mobile */
@media (max-width: 767px) {
  .back {
    margin-top: -15px; }
    .back a {
      border-left-width: 35px;
      font-size: 16px;
      height: 35px;
      line-height: 35px;
      width: 130px; }
      .back a img {
        height: 13px;
        margin-top: -7px;
        left: -26px; } }

/* project */
.project-step {
  border-top: #efeeee solid 1px;
  color: #001e49;
  text-align: center; }
  .project-step--title, .project-step--list,
  .project-step--list li {
    margin: 0;
    padding: 0; }
  .project-step--title {
    font-family: "DIN Regular", sans-serif;
    font-weight: normal;
    line-height: 1.2;
    text-transform: uppercase; }
  .project-step--list {
    list-style: none; }
    .project-step--list li {
      margin-top: 15px; }
    .project-step--list span {
      color: #249ad2;
      display: block; }
      .project-step--list span:after {
        content: "\2002\2014"; }
      .project-step--list span:before {
        content: "\2014\2002"; }

.project-note {
  color: #77787b; }
  .project-note p {
    margin: 0;
    padding: 0; }

.project-group {
  margin: 0 -10px;
  overflow: hidden; }
  .project-group:after, .project-group:before {
    content: "";
    display: table; }
  .project-group:after {
    clear: both; }
  .project-group--item {
    float: left; }

.project-item {
  background-color: #e9eaeb;
  border: #d1d3d4 solid 1px;
  color: #001e49;
  padding: 0 20px 30px;
  position: relative;
  z-index: 2; }
  .project-item--wrapper {
    padding: 35px 10px 0;
    position: relative;
    z-index: 1; }
    .project-item--wrapper:after {
      background-color: #e9eaeb;
      border: #d1d3d4 solid 1px;
      content: "";
      border-radius: 50%;
      height: 90px;
      left: 50%;
      margin-left: -46px;
      position: absolute;
      top: 10px;
      width: 90px; }
  .project-item--icon {
    background-color: #e9eaeb;
    border-radius: 50%;
    height: 80px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -25px;
    overflow: hidden;
    padding: 5px;
    position: relative;
    text-align: center;
    width: 80px; }
    .project-item--icon img {
      background-color: #334b6d;
      border-radius: 50%;
      height: auto;
      width: 100%; }
  .project-item--title {
    font-family: "DIN Regular", sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.15;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase; }
  .project-item--body {
    margin-top: 25px; }
    .project-item--body p {
      margin: 0;
      padding: 0; }

.project-download a {
  background-color: #249ad2;
  color: #fff;
  display: block;
  font-family: "DIN Regular", sans-serif;
  line-height: 1;
  position: relative;
  text-transform: uppercase; }
  .no-touch .project-download a:hover {
    background-color: #334b6d;
    color: #fff; }
  .project-download a:after {
    border: transparent solid 8px;
    border-top-color: #fff;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -8px;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 0; }

.project-download img {
  height: auto;
  position: absolute;
  width: 25px; }

.project-download span {
  text-transform: none; }

.project-info {
  border-top: #e9eaeb solid 1px;
  color: #001e49;
  font-family: "DIN Regular", sans-serif;
  font-size: 18px;
  line-height: 1;
  padding-top: 30px;
  text-align: center;
  text-transform: uppercase; }

.project-description {
  color: #77787b; }
  .project-description.line-top {
    border-top: #efeeee solid 1px;
    padding-top: 30px; }
  .project-description.line-bottom {
    border-bottom: #efeeee solid 1px;
    padding-bottom: 30px; }
  .project-description h3,
  .project-description p,
  .project-description ul,
  .project-description li {
    margin: 0;
    padding: 0; }
  .project-description h3 {
    color: #334b6d;
    font-family: "DIN Regular", sans-serif;
    font-weight: normal;
    line-height: 1;
    text-transform: uppercase; }
  .project-description p,
  .project-description li {
    margin-top: 15px; }
  .project-description ul {
    list-style: none;
    padding: 0 10px; }
  .project-description li {
    padding-left: 35px;
    position: relative; }
    .project-description li:after {
      background-image: url(../img/bg-check.png);
      content: "";
      height: 20px;
      left: 0;
      position: absolute;
      top: 0;
      width: 20px; }

.project-package {
  font-family: "DIN Regular", sans-serif;
  overflow: hidden;
  text-align: center; }
  .project-package:after, .project-package:before {
    content: "";
    display: table; }
  .project-package:after {
    clear: both; }
  .project-package--group:after, .project-package--group:before {
    content: "";
    display: table; }
  .project-package--group:after {
    clear: both; }
  .project-package--title {
    color: #001e49;
    font-size: 17px;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding: 1em 0;
    position: relative;
    text-transform: uppercase; }
    .project-package--title:after {
      border: transparent solid 8px;
      border-top-color: #fff;
      content: "";
      height: 0;
      left: 50%;
      margin-left: -8px;
      pointer-events: none;
      position: absolute;
      top: 100%;
      width: 0; }
  .project-package--item {
    line-height: 1; }
    .project-package--item span,
    .project-package--item em {
      font-size: 17px;
      text-transform: uppercase; }
    .project-package--item em {
      font-style: normal; }
    .project-package--item strong {
      font-size: 36px;
      font-weight: normal; }
      .project-package--item strong em {
        font-size: 0.6667em; }
    .project-package--item.i1 {
      background-color: #167bbf;
      color: #fff; }
    .project-package--item.i2 {
      background-color: #249ad2;
      color: #fff; }
    .project-package--item.i3 {
      background-color: #e9eaeb;
      color: #167bbf; }

/* tablet - desktop */
@media (min-width: 768px) {
  .project-step {
    margin-top: 15px;
    padding-top: 30px; }
    .project-step--title {
      font-size: 24px; }
    .project-step--list {
      font-size: 18px; }
  .project-note {
    font-size: 14px;
    margin-top: 20px; }
  .project-group--item {
    width: 50%; }
  .project-item--wrapper {
    margin-top: 10px; }
  .project-download {
    padding: 45px 0 25px; }
    .project-download a {
      font-size: 18px;
      padding: 20px 60px 20px 95px; }
    .project-download img {
      left: 60px;
      top: 20px; }
  .project-description h3 {
    font-size: 21px; }
  .project-package--enterprise {
    float: left;
    width: 66.66666666666667%; }
  .project-package--salary {
    float: right;
    width: 33.33333333333333%; }
  .project-package--group .project-package--item {
    float: left;
    width: 50%; }
  .project-package--item {
    padding: 1.25em 0; }
    .project-package--item span em,
    .project-package--item strong {
      display: block; }
    .project-package--item strong {
      margin-bottom: 20px;
      margin-top: 15px; } }

/* mobile */
@media (max-width: 767px) {
  .project-step {
    margin-top: 10px;
    padding-top: 20px; }
    .project-step--title {
      font-size: 20px; }
  .project-note {
    font-size: 12px;
    margin-top: 15px; }
  .project-group--item {
    width: 100%; }
  .project-item--wrapper {
    margin-top: 5px; }
  .project-download {
    padding: 35px 0; }
    .project-download a {
      font-size: 16px;
      padding: 20px 20px 20px 60px; }
    .project-download img {
      left: 20px;
      top: 20px; }
  .project-description h3 {
    font-size: 19px; }
  .project-package--item {
    padding: 1.75em 0; }
    .project-package--item span {
      display: block;
      margin-bottom: 10px; }
    .project-package--item strong {
      display: inline-block;
      margin-right: 5px; } }

/* upload */
.upload-description {
  color: #77787b; }
  .upload-description strong {
    color: #334b6d;
    font-size: 1.125em;
    font-weight: normal; }
  .upload-description p {
    margin: 10px 0 0;
    padding: 0; }
    .upload-description p:first-child {
      margin-top: 0; }

.upload-zone {
  background-color: #e9eaeb;
  border: #808184 dotted 1px;
  color: #001e49;
  position: relative;
  z-index: 2; }
  .upload-zone--wrapper {
    padding-top: 45px;
    position: relative;
    z-index: 1; }
    .upload-zone--wrapper:after {
      background-color: #e9eaeb;
      border: #808184 solid 1px;
      content: "";
      border-radius: 50%;
      height: 90px;
      left: 50%;
      margin-left: -46px;
      position: absolute;
      top: 20px;
      width: 90px; }
  .upload-zone--icon {
    background-color: #e9eaeb;
    border-radius: 50%;
    height: 80px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -25px;
    overflow: hidden;
    padding: 5px;
    position: relative;
    text-align: center;
    width: 80px; }
    .upload-zone--icon img {
      background-color: #334b6d;
      border-radius: 50%;
      height: auto;
      width: 100%; }
  .upload-zone--body {
    margin-top: 25px;
    text-align: center;
    text-transform: uppercase; }
    .upload-zone--body p {
      margin: 20px 0 0;
      padding: 0; }
      .upload-zone--body p:first-child {
        margin-top: 0; }
    .upload-zone--body strong {
      font-family: "DIN Regular", sans-serif;
      font-weight: normal; }
    .upload-zone--body a {
      text-decoration: underline; }

.upload-note {
  color: #77787b;
  font-size: 14px;
  margin-top: 10px; }
  .upload-note p,
  .upload-note ul,
  .upload-note li {
    margin: 0;
    padding: 0; }
  .upload-note ul {
    list-style: none; }
  .upload-note li {
    padding-left: 10px;
    position: relative; }
    .upload-note li:after {
      content: "-";
      left: 0;
      position: absolute;
      top: 0; }

.upload-group {
  margin-top: 30px; }

.upload-item {
  border: #d1d3d4 solid 1px;
  margin-top: 8px;
  padding: 12px;
  position: relative; }
  .upload-item:first-child {
    margin-top: 0; }
  .upload-item--close {
    position: absolute;
    right: 6px;
    top: 9px; }
    .upload-item--close img {
      height: 24px;
      width: auto; }
  .upload-item--name {
    color: #334b6d;
    font-size: 14px; }
    .upload-item--name a {
      text-decoration: underline; }
  .upload-item--bar {
    background-color: #e9eaeb;
    border: #e9eaeb solid 2px;
    display: none;
    height: 6px;
    overflow: hidden;
    position: relative; }
  .upload-item.uploading .upload-item--bar {
    display: block; }
  .upload-item--progress {
    background-color: #249ad2;
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    text-indent: -9999px;
    top: 0;
    width: 0; }

.upload-list, .upload-info--group {
  border-top: #efeeee solid 1px;
  padding-top: 25px;
  margin-top: 35px; }

.upload-list h3,
.upload-list ul,
.upload-list li {
  margin: 0;
  padding: 0; }

.upload-list h3 {
  color: #001e49;
  font-family: "DIN Regular", sans-serif;
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase; }

.upload-list ul {
  list-style: none; }

.upload-list li {
  padding: 5px 0; }

.upload-list a {
  display: block;
  padding: 6px 0 6px 36px;
  position: relative;
  text-decoration: underline; }

.upload-list img {
  left: 0;
  position: absolute;
  top: 50%;
  width: auto;
  height: 32px;
  margin-top: -16px; }

.upload-info {
  color: #77787b; }
  .upload-info--group:after, .upload-info--group:before {
    content: "";
    display: table; }
  .upload-info--group:after {
    clear: both; }
  .upload-info h3,
  .upload-info p {
    margin: 0;
    padding: 0; }
  .upload-info h3 {
    color: #001e49;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px; }
  .upload-info a {
    display: block;
    padding: 6px 0 6px 36px;
    position: relative;
    text-decoration: underline; }
  .upload-info img {
    left: 0;
    position: absolute;
    top: 50%;
    width: auto;
    height: 32px;
    margin-top: -16px; }

/* tablet - desktop */
@media (min-width: 768px) {
  .upload-zone {
    padding: 0 40px 60px; }
    .upload-zone--body {
      font-size: 18px; }
      .upload-zone--body a {
        font-size: 14px; }
  .upload-note ul {
    padding-left: 40px; }
  .upload-item.uploading .upload-item--name {
    padding-right: 210px; }
  .upload-item.completed .upload-item--name {
    padding-right: 36px; }
  .upload-item--bar {
    position: absolute;
    right: 36px;
    top: 16px;
    width: 160px; }
  .upload-list ul {
    margin-top: 15px;
    padding: 0 40px; }
  .upload-info {
    float: left;
    width: 50%; } }

/* mobile */
@media (max-width: 767px) {
  .upload-zone {
    padding: 0 20px 40px; }
  .upload-note ul {
    padding-left: 20px; }
  .upload-item--name {
    padding-right: 24px; }
  .upload-item--bar {
    margin-top: 8px; }
  .upload-list ul {
    margin-top: 10px; }
  .upload-info {
    margin-top: 25px; }
    .upload-info:first-child {
      margin-top: 0; } }

/* info */
.info-container {
  position: relative; }

.info-box, .info-body, .info-close {
  position: absolute; }

.info-body, .info-close {
  display: none; }

.info-box {
  z-index: 10; }

.info-box.active .info-body,
.info-box.active .info-close {
  display: block; }

.info-body {
  background-color: #fff;
  box-shadow: 0 0 29px rgba(0, 0, 0, 0.45);
  border: #ffd715 solid 2px;
  color: #808184;
  font-size: 14px;
  right: 25px;
  top: -45px;
  z-index: 1; }
  .info-body p {
    margin: 0;
    padding: 0; }
  .info-body:after, .info-body:before {
    border-color: transparent;
    border-style: solid;
    content: "";
    height: 0;
    left: 100%;
    pointer-events: none;
    position: absolute;
    top: 50px;
    width: 0; }
  .info-body:after {
    border-left-color: #fff;
    border-width: 5px;
    margin-top: -5px; }
  .info-body:before {
    border-left-color: #ffd715;
    border-width: 8px;
    margin-top: -8px; }

.info-close {
  background-color: #ffd715;
  border: #ffd715 solid 6px;
  height: 30px;
  right: 11px;
  top: -55px;
  width: 30px;
  z-index: 2; }

.info-open {
  background-color: #fff;
  border: 0;
  height: 15px;
  width: 15px; }

.info-button {
  border-radius: 50%;
  margin: 0;
  outline: 0;
  padding: 0; }
  .info-button img {
    height: 100%;
    vertical-align: top;
    width: auto; }

/* tablet - desktop */
@media (min-width: 768px) {
  .info-body {
    padding: 18px;
    width: 320px; }
  .info-box {
    top: 50%;
    right: -20px;
    margin-top: -7px; } }

/* mobile */
@media (max-width: 767px) {
  .info-box {
    right: 0;
    top: -21px; }
    .option-header .info-box {
      top: 3px; }
  .info-body {
    padding: 15px;
    width: 225px; } }

/* slider */
.slider {
  border-color: #efeeee;
  border-style: solid;
  border-width: 1px 0;
  margin-bottom: 30px;
  padding: 35px 0; }
  .slider-header {
    margin-bottom: 70px; }
  .slider-title {
    color: #001e49;
    font-family: "DIN Regular", sans-serif;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-transform: uppercase; }
  .slider-item {
    position: relative;
    height: 12px;
    padding: 3px 60px;
    line-height: 1; }
    .slider-item--min, .slider-item--max, .slider-item--drag, .slider-item--index {
      position: absolute; }
    .slider-item--min, .slider-item--max {
      color: #77787b;
      top: 0;
      font-size: 18px;
      width: 50px; }
    .slider-item--min {
      left: 0;
      padding-right: 10px;
      text-align: right; }
    .slider-item--max {
      right: 0;
      padding-left: 10px;
      text-align: left; }
    .slider-item--bar {
      background-color: #e9eaeb;
      border: #e9eaeb solid 3px;
      border-radius: 10px;
      height: 6px;
      position: relative; }
    .slider-item--progress {
      background-color: #249ad2;
      border-radius: 5px;
      bottom: 0;
      left: 0;
      overflow: hidden;
      position: absolute;
      text-indent: -9999px;
      top: 0;
      width: 0; }
    .slider-item--index, .slider-item--drag {
      left: 0;
      transform: translateX(-50%); }
    .slider-item--index {
      background-color: #249ad2;
      border-radius: 5px;
      bottom: 29px;
      color: #fff;
      font-size: 18px;
      padding: 10px 8px;
      text-align: center; }
      .slider-item--index:after {
        border: transparent solid 6px;
        border-top-color: #249ad2;
        content: "";
        height: 0;
        left: 50%;
        margin-left: -6px;
        pointer-events: none;
        position: absolute;
        top: 100%;
        width: 0; }
    .slider-item--drag {
      background-color: #fff;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
      border-radius: 50%;
      cursor: pointer;
      height: 30px;
      top: -12px;
      width: 30px; }
      .slider-item--drag img {
        height: auto;
        width: 100%; }

/* tablet - desktop */
@media (min-width: 768px) {
  .slider-title {
    font-size: 21px; } }

/* mobile */
@media (max-width: 767px) {
  .slider-title {
    font-size: 19px; } }

sim-slider {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 4px;
  margin: 30px 0 15px 0;
  vertical-align: middle; }
  sim-slider span {
    position: absolute;
    display: inline-block;
    white-space: nowrap; }
    sim-slider span.rangeSlider-bubble {
      background-color: #249ad2;
      border-radius: 5px;
      bottom: 29px;
      color: #fff;
      font-size: 18px;
      padding: 10px 8px;
      text-align: center; }
      sim-slider span.rangeSlider-bubble:after {
        border: transparent solid 6px;
        border-top-color: #249ad2;
        content: "";
        height: 0;
        left: 50%;
        margin-left: -6px;
        pointer-events: none;
        position: absolute;
        top: 100%;
        width: 0; }
      sim-slider span.rangeSlider-bubble.rangeSlider-selection {
        top: 16px; }
      sim-slider span.rangeSlider-bubble.rangeSlider-limit {
        color: #77787b;
        background-color: #fff;
        right: 0px; }
        sim-slider span.rangeSlider-bubble.rangeSlider-limit:first-child {
          left: 0px;
          right: inherit; }
        sim-slider span.rangeSlider-bubble.rangeSlider-limit:after {
          color: #77787b;
          background-color: #fff;
          border-style: none; }

input[type="range"]:focus + .rangeSlider .rangeSlider__handle {
  box-shadow: 0 0 8px rgba(142, 68, 173, 0.9); }

.rangeSlider__buffer {
  z-index: 1;
  position: absolute;
  top: 3px;
  height: 14px;
  background: #2c3e50;
  border-radius: 10px; }

.rangeSlider, .rangeSlider__fill {
  display: block;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px; }

.rangeSlider {
  position: relative;
  background: #7f8c8d; }

.rangeSlider__horizontal {
  height: 6px;
  width: 100%; }

.rangeSlider__vertical {
  height: 100%;
  width: 20px; }

.rangeSlider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4; }

.rangeSlider__fill {
  background: #249ad2;
  position: absolute;
  z-index: 2; }

.rangeSlider__fill__horizontal {
  height: 100%;
  top: 0;
  left: 0; }

.rangeSlider__fill__vertical {
  width: 100%;
  bottom: 0;
  left: 0; }

.rangeSlider__handle {
  border: 1px solid #ccc;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 3;
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.42);
  border-radius: 50%; }

.rangeSlider__handle__horizontal {
  top: -13px; }

.rangeSlider__handle__vertical {
  left: -10px;
  bottom: 0; }

.rangeSlider__handle:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12)); }

/* option */
.option {
  border-top: #efeeee solid 1px;
  padding: 35px 0; }
  .option-title {
    color: #001e49;
    font-family: "DIN Regular", sans-serif;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-transform: uppercase; }
  .option-item {
    background-color: #fff;
    border: #d1d3d4 solid 1px;
    border-radius: 5px 5px 0 0;
    margin-top: 30px;
    overflow: hidden; }
    .option-item.active {
      border-color: #249ad2;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.35); }
    .option-item.active .option-item--header {
      background-color: #249ad2;
      color: #fff; }
      .option-item.active .option-item--header:after {
        border-top-color: #249ad2; }
    .option-item.active .option-item--icon {
      background-color: #fff;
      box-shadow: none; }
      .option-item.active .option-item--icon img.white {
        display: none; }
      .option-item.active .option-item--icon img.blue {
        display: block; }
    .option-item--header {
      border-bottom: #249ad2 solid 1px;
      color: #249ad2;
      position: relative;
      text-transform: uppercase;
      cursor: pointer; }
      .option-item--header:after, .option-item--header:before {
        border-color: transparent;
        border-style: solid;
        content: "";
        height: 0;
        pointer-events: none;
        position: absolute;
        top: 100%;
        width: 0; }
      .option-item--header:after {
        border-top-color: #fff;
        border-width: 10px;
        margin-left: -10px; }
      .option-item--header:before {
        border-top-color: #249ad2;
        border-width: 11px;
        margin-left: -11px; }
    .option-item--body {
      color: #77787b; }
    .option-item--icon {
      background-color: #249ad2;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
      height: 40px;
      position: absolute;
      right: 10px;
      top: 10px;
      width: 40px; }
      .option-item--icon img,
      .option-item--icon strong {
        position: absolute; }
      .option-item--icon img {
        height: auto;
        right: 8px;
        top: 11px;
        width: 24px; }
        .option-item--icon img.white {
          display: block; }
        .option-item--icon img.blue {
          display: none; }
      .option-item--icon strong {
        font-size: 12px;
        font-weight: normal;
        line-height: 1.1667;
        right: 48px;
        top: 6px;
        white-space: nowrap; }
      .option-item--icon span {
        display: block; }
    .option-item--title {
      font-family: "DIN Regular", sans-serif;
      font-weight: normal;
      line-height: 1;
      margin: 0;
      padding: 0; }
    .option-item--description {
      color: #249ad2;
      font-size: 18px; }
      .option-item--description p {
        margin: 0;
        padding: 0; }
    .option-item--button {
      margin-top: 20px; }
      .option-item--button a {
        border: #d1d3d4 solid 1px;
        border-radius: 5px;
        display: block;
        font-size: 12px;
        line-height: 1.1667;
        max-width: 300px;
        padding: 12px 0;
        text-align: center;
        text-transform: uppercase; }
        .no-touch .option-item--button a:hover {
          background-color: #d1d3d4; }
  .option-accordion {
    border-bottom: #d1d3d4 solid 1px;
    color: #77787b;
    margin-top: 20px; }
    .option-accordion--title {
      font-size: 16px;
      font-weight: normal;
      margin: 0 0 8px;
      padding: 0;
      text-transform: uppercase; }
    .option-accordion--item {
      border-top: #d1d3d4 solid 1px;
      cursor: pointer;
      padding-bottom: 10px;
      padding-right: 40px;
      padding-top: 10px;
      position: relative; }
      .option-accordion--item:after {
        background-color: #e9eaeb;
        border-radius: 50%;
        color: #249ad2;
        content: "+";
        font-size: 24px;
        height: 24px;
        line-height: 24px;
        position: absolute;
        right: 0;
        text-align: center;
        top: 8px;
        width: 24px; }
      .option-accordion--item p {
        margin: 0;
        max-height: 20px;
        overflow: hidden;
        padding: 0;
        text-overflow: ellipsis;
        white-space: nowrap; }
      .option-accordion--item.active:after {
        content: "-"; }
      .option-accordion--item.active p {
        max-height: none;
        text-overflow: initial;
        white-space: normal; }

/* tablet - desktop */
@media (min-width: 768px) {
  .option-title {
    font-size: 21px; }
  .option-item--header {
    padding: 20px; }
    .option-item--header:after, .option-item--header:before {
      left: 30px; }
  .option-item--body {
    padding: 30px 20px; }
  .option-item--title {
    font-size: 21px; }
  .option-item--button a {
    margin: 0 auto;
    width: 70%; } }

/* mobile */
@media (max-width: 767px) {
  .option-title {
    font-size: 19px; }
  .option-item--header {
    padding: 15px; }
    .option-item--header:after, .option-item--header:before {
      left: 25px; }
  .option-item--body {
    padding: 20px 15px; }
  .option-item--title {
    font-size: 19px;
    padding-top: 45px; }
  .option-item--button span {
    display: block; } }

/* loader */
.loader-mask, .loader-wrapper {
  display: none;
  transition: opacity 0.2s ease-out; }
  .loader-mask.active, .loader-wrapper.active {
    display: block; }

.loader-mask {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  left: 0;
  right: 0;
  z-index: 2147483646; }
  .oldie .loader-mask {
    background-image: url(../img/bg-mask.png); }

.loader-wrapper {
  position: fixed;
  background-color: #fff;
  border: #001e49 solid 1px;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: #001e49;
  left: 50%;
  overflow: hidden;
  padding-bottom: 60px;
  padding-top: 55px;
  text-align: center;
  z-index: 2147483647; }
  .loader-wrapper:after, .loader-wrapper:before {
    background-image: url(../img/bg-arrow.png);
    background-repeat: no-repeat;
    content: "";
    height: 30px;
    left: 50%;
    margin-left: -15px;
    position: absolute;
    width: 30px; }
  .loader-wrapper:after {
    background-position: center top;
    bottom: 0; }
  .loader-wrapper:before {
    background-position: center bottom;
    top: 0; }

.loader-message {
  padding: 0 10px; }
  .loader-message p {
    margin: 0;
    padding: 0; }
  .loader-message strong {
    display: block;
    font-weight: normal;
    margin-top: 4px;
    text-transform: uppercase; }

.loader-icon {
  margin-top: 13px; }
  .loader-icon img {
    height: auto;
    width: 90px; }

/* tablet - desktop */
@media (min-width: 768px) {
  .loader-mask {
    bottom: 85px;
    top: 130px; }
  .loader-wrapper {
    margin-left: -320px;
    top: 260px;
    width: 640px; }
  .loader-message {
    font-size: 21px; } }

/* mobile */
@media (max-width: 767px) {
  .loader-mask {
    bottom: 200px;
    top: 70px; }
  .loader-wrapper {
    margin-left: -150px;
    top: 170px;
    width: 300px; }
  .loader-message {
    font-size: 14px; } }

/* simulator */
.simulator-info, .simulator-note {
  color: #334b6d; }

.simulator-note, .simulator-bottomline {
  font-size: 14px; }
  .simulator-note p, .simulator-bottomline p {
    margin: 0;
    padding: 0; }

.simulator-info {
  line-height: 1.375; }
  .simulator-info p {
    margin: 1.375em 0 0;
    padding: 0; }
    .simulator-info p:first-child {
      margin-top: 0; }

.simulator-note {
  margin-bottom: 20px; }

.simulator-bottomline {
  margin-top: 20px;
  color: #808184; }

.simulator-list {
  margin-top: 20px; }
  .simulator-list ul,
  .simulator-list li {
    margin: 0;
    padding: 0; }
  .simulator-list ul {
    list-style: none; }
  .simulator-list a {
    position: relative;
    display: block;
    line-height: 1.25;
    text-decoration: underline; }
  .simulator-list img {
    position: absolute;
    top: 50%;
    left: 0;
    width: auto; }

.simulator-description {
  color: #334b6d; }
  .simulator-description p {
    margin: 0;
    padding: 0; }

.simulator-button {
  margin-top: 30px; }
  .simulator-button a {
    position: relative;
    display: block;
    width: 200px;
    height: 44px;
    overflow: hidden;
    margin: 0 auto;
    padding-right: 44px;
    font-family: "DIN Regular", sans-serif;
    font-size: 14px;
    line-height: 44px;
    background-color: #334b6d;
    border-radius: 5px;
    color: #fff; }
    .simulator-button a span {
      display: block;
      text-align: center;
      text-transform: uppercase; }
    .simulator-button a img {
      position: absolute;
      top: 0;
      right: 0;
      width: auto;
      height: 44px;
      background-color: #001e49; }
    .simulator-button a.large {
      width: 240px;
      font-size: 12px; }
    .no-touch .simulator-button a:hover {
      background-color: #001e49; }

.simulator-section {
  background-color: #fff;
  border-radius: 5px 5px 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35); }
  .simulator-section--header {
    position: relative;
    background-color: #249ad2;
    border-radius: 5px 5px 0 0;
    color: #fff; }
    .simulator-section--header:after {
      position: absolute;
      top: 100%;
      width: 0;
      height: 0;
      pointer-events: none;
      border-color: #249ad2 transparent transparent;
      border-style: solid;
      border-width: 10px;
      content: ""; }
  .simulator-section--body {
    border: #249ad2 solid 1px;
    border-top: 0; }
  .simulator-section--title {
    margin: 0;
    padding: 0;
    font-family: "DIN Regular", sans-serif;
    font-weight: normal;
    line-height: 1; }
    .simulator-section--title sup {
      top: -1em;
      font-size: 0.5em; }
  .simulator-section--close {
    position: absolute;
    top: 7px;
    right: 7px;
    background-color: #fff;
    border-radius: 5px; }
    .simulator-section--close img {
      height: auto; }
    .no-touch .simulator-section--close:hover {
      background-color: #334b6d; }

.simulator-form--group {
  position: relative;
  margin-top: 15px; }
  .simulator-form--group:first-child {
    margin-top: 0; }
  .simulator-form--group.gap {
    padding: 5px 0; }

.simulator-form--label {
  display: block;
  color: #77787b; }
  .simulator-form--label.special {
    color: #001e49; }

.simulator-form--input .form-radio {
  font-size: 16px; }

.simulator-form--icon {
  position: absolute;
  width: 15px;
  height: 15px;
  overflow: hidden;
  background-color: transparent; }
  .simulator-form--icon img {
    width: 100%;
    height: auto; }

.simulator-form--info {
  display: none;
  margin-top: 5px;
  padding-left: 15px;
  font-size: 14px;
  border-left: #ffd715 solid 1px;
  color: #77787b; }
  .simulator-form--info.active {
    display: block; }
  .simulator-form--info h4,
  .simulator-form--info p {
    margin: 0;
    padding: 0; }
  .simulator-form--info h4 {
    font-size: 1em;
    font-weight: normal; }
  .simulator-form--info p {
    margin-top: 5px; }

.simulator-form--title {
  margin: 25px 0 0;
  padding: 0;
  font-size: 1em;
  font-weight: bold;
  color: #249ad2; }

.simulator-form--description {
  margin-top: 20px;
  color: #001e49; }
  .simulator-form--description p {
    margin: 0;
    padding: 0; }

.simulator-form .simulator-button {
  margin-top: 20px;
  padding-bottom: 20px; }

.simulator-confirm--group {
  margin-top: 15px; }
  .simulator-confirm--group:first-child {
    margin-top: 0; }

.simulator-confirm--label {
  display: block;
  line-height: 1.125;
  color: #77787b; }

.simulator-confirm--input {
  margin-top: 10px; }
  .simulator-confirm--input .form-radio {
    min-height: 23px;
    font-size: 18px;
    line-height: 23px; }
    .simulator-confirm--input .form-radio:after {
      top: 2px; }
    .simulator-confirm--input .form-radio:before {
      top: 6px; }

/* tablet - desktop */
@media (min-width: 768px) {
  .simulator-list li {
    padding: 10px 35px; }
  .simulator-list a {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px; }
  .simulator-list img {
    height: 40px;
    margin-top: -20px; }
  .simulator-description {
    font-size: 18px; }
    .simulator-description span {
      display: block; }
  .simulator-section {
    margin-top: 30px; }
    .simulator-section--header {
      padding: 10px 20px; }
      .simulator-section--header:after {
        left: 20px; }
    .simulator-section--title {
      font-size: 22px; }
    .simulator-section--close img {
      width: 28px; }
  .simulator-form, .simulator-confirm {
    padding: 25px; }
  .simulator-form--group {
    padding-left: 170px; }
  .simulator-form--label {
    position: absolute;
    left: 0;
    width: 155px;
    text-align: right; }
    .simulator-form--label span {
      display: block; }
    .simulator-form--label.one-line {
      top: 0;
      height: 45px;
      line-height: 45px; }
    .simulator-form--label.two-line {
      top: 2px; }
    .simulator-form--label.three-line {
      top: -8px; }
    .simulator-form--label.special {
      font-size: 18px;
      text-align: left;
      white-space: nowrap; }
  .simulator-form.i2 {
    padding-top: 10px;
    padding-right: 0;
    padding-bottom: 20px;
    padding-left: 0; }
  .simulator-form.i2 .simulator-form--group {
    padding-left: 140px; }
  .simulator-form.i2 .simulator-form--label {
    width: 125px; }
  .simulator-form.i2.thin {
    padding-top: 0; }
  .simulator-form.i2.thin .simulator-form--group {
    margin-top: 0;
    margin-bottom: -10px; }
  .simulator-form.i3 {
    padding: 0 20px; }
  .simulator-form--input .form-radio-group {
    height: 32px;
    padding-top: 13px; }
    .simulator-form--input .form-radio-group.center {
      text-align: center; }
  .simulator-form--icon {
    top: 15px;
    right: -20px; }
  .simulator-form--info {
    margin-left: -170px; }
  .simulator-confirm--input.small {
    padding-left: 30%; }
  .simulator-confirm--input.medium {
    padding-left: 45%; } }

/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .simulator-form.i2.thin .simulator-form--label {
    width: 225px; } }

/* desktop */
@media (min-width: 1024px) {
  .simulator-form.i2.thin .simulator-form--label {
    width: 245px; } }

/* mobile */
@media (max-width: 767px) {
  .simulator-list li {
    padding: 5px 0; }
  .simulator-list a {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 36px; }
  .simulator-list img {
    height: 32px;
    margin-top: -16px; }
  .simulator-section {
    margin-top: 20px; }
    .simulator-section--header {
      padding: 10px 15px; }
      .simulator-section--header:after {
        left: 15px; }
    .simulator-section--title {
      font-size: 18px; }
    .simulator-section--close img {
      width: 24px; }
  .simulator-form, .simulator-confirm {
    padding: 25px 15px; }
  .simulator-form.i1 {
    padding-right: 0;
    padding-left: 0; }
  .simulator-form.i2 {
    padding-right: 0;
    padding-left: 0; }
  .simulator-form.i2.thin {
    padding-top: 5px;
    padding-bottom: 15px; }
  .simulator-form.i2.thin .simulator-form--group {
    margin-top: 10px; }
  .simulator-form.i3 {
    padding: 0; }
  .simulator-form--label {
    margin-bottom: 5px;
    padding-right: 20px; }
  .simulator-form--input .form-radio-group {
    padding: 5px 0; }
  .simulator-form--icon {
    top: 4px;
    right: 0; } }

textarea {
  box-sizing: border-box;
  resize: none; }

textarea.form-input {
  height: 100px; }

.groupama {
  /* fade */
  /* ngdialog */
  /* global */
  /* header */
  /* footer */
  /* tablet - desktop */
  /* mobile */
  /* form */
  /* button */
  /* paging */
  /* browser */
  /* landing */
  /* tablet - desktop */
  /* mobile */
  /* toolbar */
  /* toolbox */
  /* mobile */
  /* aside */
  /* content */
  /* result */
  /* pricing */
  /* tablet - desktop */
  /* mobile */
  /* confirm */
  /* mobile - tablet */
  /* desktop */
  /* message */
  /* cookie */
  /* back */
  /* project */
  /* upload */
  /* info */
  /* slider */
  /* option */
  /* loader */
  /* simulator */ }
  .groupama .ngdialog-overlay {
    background: rgba(0, 0, 0, 0.7); }
  .groupama .ngdialog-content {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
  .groupama .ngdialog-close {
    background-color: #d1d3d4;
    color: #11594b; }
  .groupama .ngdialog-header {
    background-color: #e9eaeb; }
    .groupama .ngdialog-header:after {
      border-top-color: #e9eaeb; }
  .groupama .ngdialog-body {
    background-color: #fff; }
  .groupama .ngdialog-title {
    color: #11594b; }
  .groupama html {
    background-color: #e9eaeb;
    color: #000; }
  .groupama a {
    color: #11594b; }
    .no-touch .groupama a:hover {
      color: #50A743; }
  .groupama .header {
    background-color: #11594b;
    color: #fff; }
    .groupama .header-link {
      color: #fff; }
      .no-touch .groupama .header-link:hover {
        color: #ff9d00; }
  .groupama .footer {
    background-color: #11594b;
    color: #fff; }
    .groupama .footer a {
      color: #fff; }
  @media (min-width: 768px) {
    .no-touch .groupama .footer a:hover {
      color: #11594b; }
    .groupama .footer span {
      color: #50A743; } }
  @media (max-width: 767px) {
    .groupama .footer {
      border-top-color: #50A743; }
      .no-touch .groupama .footer a:hover {
        background-color: #50A743;
        color: #fff; }
      .groupama .footer span {
        background-color: #50A743; } }
  .groupama .form-label, .groupama .form-radio, .groupama .form-checkbox {
    color: #77787b; }
  .groupama .form-input {
    border-color: #d1d3d4;
    color: #77787b; }
    .groupama .form-input.gray {
      background-color: #efeeee; }
      .groupama .form-input.gray:focus {
        background-color: #fff; }
    .groupama .form-input.white {
      background-color: #fff; }
    .groupama .form-input.error {
      border-color: #bf1e1e;
      color: #bf1e1e; }
  .groupama .form-radio:after, .groupama .form-checkbox:after {
    background-color: #efeeee;
    border-color: #d1d3d4; }
  .groupama .form-radio:before, .groupama .form-checkbox:before {
    background-color: #11594b; }
  .groupama .form-select:after {
    background-color: #fff; }
  .groupama .form-select-input {
    border-color: #d1d3d4;
    color: #77787b; }
    .error .groupama .form-select-input {
      color: #bf1e1e;
      border-color: #bf1e1e; }
  .groupama .form-select-button {
    background-color: #fff;
    border-color: #d1d3d4; }
    .error .groupama .form-select-button {
      border-color: #bf1e1e; }
  .groupama .form-select-list {
    background-color: #fff;
    border-color: #d1d3d4; }
  .groupama .form-select-item {
    border-top-color: #e9eaeb;
    color: #77787b; }
    .no-touch .groupama .form-select-item:hover, .groupama .form-select-item.selected {
      background-color: #e9eaeb; }
  .groupama .form-select.white .groupama .form-select-input {
    background-color: #fff; }
  .groupama .form-select.gray .groupama .form-select-input {
    background-color: #efeeee; }
  .groupama .form-select.dark .groupama .form-select-input {
    background-color: #fff;
    color: #000; }
  .groupama .form-select.dark .groupama .form-select-button {
    background-color: #939598; }
  .groupama .form-inline--button {
    background-color: #11594b;
    color: #fff; }
  .groupama .form-message.success {
    color: #11594b; }
  .groupama .form-message.error {
    color: #bf1e1e; }
  .groupama .form-info {
    border-bottom-color: #efeeee;
    color: #77787b; }
    .groupama .form-info em {
      color: #11594b; }
  .groupama .button a,
  .groupama .button button {
    background-color: #50A743;
    border-right-color: #11594b;
    color: #fff; }
    .no-touch .groupama .button a:hover, .no-touch
    .groupama .button button:hover {
      background-color: #11594b;
      color: #fff; }
    .groupama .button a.outline,
    .groupama .button button.outline {
      background-color: #e9eaeb;
      border-right-color: #50A743;
      box-shadow: inset 0 0 0 1px #50A743;
      color: #50A743; }
      .no-touch .groupama .button a.outline:hover, .no-touch
      .groupama .button button.outline:hover {
        background-color: #50A743;
        color: #fff; }
    .groupama .button a.important,
    .groupama .button button.important {
      background-color: #bf1e1e;
      border-right-color: #6f1919; }
  .groupama .paging-next a, .groupama .paging-prev a {
    border-color: #d1d3d4; }
    .no-touch .groupama .paging-next a:hover, .no-touch .groupama .paging-prev a:hover {
      background-color: #efeeee; }
  .groupama .paging-item a {
    color: #939598; }
    .no-touch .groupama .paging-item a:hover {
      color: #77787b; }
  .groupama .paging-item span {
    color: #11594b; }
  .groupama .browser-title {
    color: #11594b; }
  .groupama .browser-description {
    color: #50A743; }
  .groupama .browser-item {
    background-color: #fff;
    border-color: #d1d3d4; }
    .no-touch .groupama .browser-item:hover {
      background-color: #84d571; }
    .groupama .browser-item strong {
      color: #11594b; }
    .groupama .browser-item span {
      color: #50A743; }
  .groupama .landing-banner {
    background-color: #fff; }
    .landingpage .groupama .landing-banner {
      border-bottom-color: #11594b; }
  .groupama .landing-intro {
    background-color: #fff; }
    .groupama .landing-intro--description p {
      background-color: rgba(255, 255, 255, 0.85); }
      .oldie .groupama .landing-intro--description p {
        background-color: #fff; }
    .groupama .landing-intro--description em,
    .groupama .landing-intro--description strong {
      color: #11594b; }
    .groupama .landing-intro--description span {
      color: #11594b; }
    .groupama .landing-intro--indicator:after, .groupama .landing-intro--indicator:before {
      background-color: #e9eaeb;
      border-top-color: #11594b; }
  .groupama .landing-media {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); }
    .landingpage .groupama .landing-media {
      background-color: #84d571; }
    .groupama .landing-media.active {
      background-color: #000; }
    .groupama .landing-media--wrapper:after {
      background-color: rgba(0, 0, 0, 0.5); }
    .groupama .landing-media--video iframe {
      background-color: #000; }
    .groupama .landing-media--body {
      color: #fff; }
    .groupama .landing-media--title {
      text-shadow: 0 0 16px rgba(0, 0, 0, 0.75); }
    .groupama .landing-media--button {
      color: #fff; }
      .no-touch .groupama .landing-media--button:hover {
        color: #ff9d00; }
    .groupama .landing-media--download {
      background-color: #fff; }
      .groupama .landing-media--download a {
        background-color: #11594b;
        color: #fff; }
        .no-touch .groupama .landing-media--download a:hover {
          background-color: #50A743;
          color: #fff; }
        .groupama .landing-media--download a:after {
          border-top-color: #fff; }
  .groupama .landing-expert {
    background-color: #e9eaeb; }
    .groupama .landing-expert--title {
      color: #11594b; }
      .groupama .landing-expert--title em {
        color: #11594b; }
    .groupama .landing-expert--list {
      color: #50A743; }
  .groupama .landing-summary--wrapper:after {
    background-color: #11594b; }
  .groupama .landing-summary--body {
    color: #50A743; }
    .groupama .landing-summary--body span {
      color: #11594b; }
  .groupama .landing-summary--title {
    color: #11594b; }
  .groupama .landing-feature:after, .groupama .landing-feature:before {
    background-color: #e9eaeb; }
  .groupama .landing-feature--wrapper:after {
    background-color: #11594b; }
  .groupama .landing-feature--body {
    color: #50A743; }
    .groupama .landing-feature--body span {
      color: #11594b; }
  .groupama .landing-feature--title {
    color: #11594b; }
  .groupama .landing-feature--index:after {
    background-color: #11594b; }
  .groupama .landing-feature--index span {
    background-color: #e9eaeb;
    border-color: #11594b;
    color: #11594b; }
  .groupama .landing-feature--note {
    color: #50A743; }
  .groupama .landing-feature--item strong {
    color: #11594b; }
  .groupama .landing-form--description {
    color: #77787b; }
  .groupama .landing-form--body {
    background-color: #efeeee;
    border-color: #d1d3d4; }
  .groupama .landing-form--input {
    color: #77787b; }
  .groupama .landing-form--button {
    background-color: #11594b; }
    .no-touch .groupama .landing-form--button:hover {
      background-color: #11594b; }
  .groupama .landing-extras {
    border-top-color: #d1d3d4; }
    .groupama .landing-extras--title {
      color: #11594b; }
    .groupama .landing-extras--description {
      color: #77787b; }
      .groupama .landing-extras--description strong {
        color: #50A743; }
  .groupama .landing-note {
    color: #62bf4c; }
    .generic .groupama .landing-note {
      background-color: #fff; }
  .groupama .landing-back a {
    background-color: #11594b; }
  .groupama .landing-section--title {
    color: #11594b; }
  .groupama .landing-section--body {
    color: #62bf4c; }
  .groupama .landing-subsection--title {
    color: #11594b; }
  .groupama .landing-subsection--body {
    color: #62bf4c; }
    .groupama .landing-subsection--body .special {
      color: #11594b; }
  .groupama .landing-subsection--icon {
    background-color: #11594b; }
  .groupama .landing-extrasection--title {
    color: #11594b; }
  .groupama .landing-extrasection--body {
    color: #62bf4c; }
  .groupama .landing-extrasection--icon {
    background-color: #11594b; }
  .groupama .landing-moresection--title {
    color: #11594b; }
  .groupama .landing-moresection--body {
    color: #62bf4c; }
    .groupama .landing-moresection--body strong {
      color: #11594b; }
    .groupama .landing-moresection--body .small {
      color: #50A743; }
  @media (min-width: 768px) {
    .groupama .landing-moresection {
      border-top-color: #d1d3d4; }
      .groupama .landing-moresection:after {
        border-top-color: #e9eaeb; }
      .groupama .landing-moresection:before {
        border-top-color: #d1d3d4; } }
  @media (max-width: 767px) {
    .groupama .landing-contact {
      background-color: #e9eaeb; }
      .groupama .landing-contact--title {
        color: #11594b; }
      .groupama .landing-contact--link a {
        background-color: #ff9d00;
        border-right-color: #FF7400;
        color: #fff; }
        .no-touch .groupama .landing-contact--link a:hover {
          background-color: #FF7400; }
    .groupama .landing-button {
      background-color: #11594b;
      box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3); }
      .groupama .landing-button a {
        background-color: #11594b;
        color: #fff; }
        .no-touch .groupama .landing-button a:hover {
          color: #ff9d00; }
    .generic .groupama .landing-back,
    .subscription .groupama .landing-back {
      background-color: #fff; }
    .offer .groupama .landing-back {
      background-color: #e9eaeb; }
    .groupama .landing-section:after {
      background-color: #d1d3d4; }
    .groupama .landing-moresection {
      background-color: #fff; }
      .groupama .landing-moresection:after {
        border-top-color: #e9eaeb; }
      .groupama .landing-moresection:before {
        background-color: #fff; } }
  .groupama .toolbar-button {
    background-color: #e9eaeb;
    border-color: #d1d3d4; }
    .no-touch .groupama .toolbar-button:hover {
      background-color: rgba(255, 255, 255, 0.2); }
  .groupama .toolbar-toggle--icon {
    background-color: #11594b;
    border-color: #e9eaeb; }
  .groupama .toolbar-toggle--label {
    color: #11594b; }
  .groupama .toolbar-toggle.active .groupama .toolbar-toggle--icon {
    background-color: #e9eaeb; }
  .groupama .toolbar-section--title {
    color: #11594b; }
  .groupama .toolbar-top {
    background-color: #e9eaeb;
    border-top-color: #11594b;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3); }
  .groupama .toolbar-top .groupama .toolbar-toggle--group:after {
    background-color: #e9eaeb; }
  .groupama .toolbar-bottom {
    box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.3); }
  .groupama .toolbar-bottom .groupama .toolbar-toggle--group:after {
    background-color: #11594b; }
  .groupama .toolbar-bottom .groupama .toolbar-toggle--icon {
    border-color: #e9eaeb; }
  .groupama .toolbar-bottom.active {
    background-color: #e9eaeb; }
  .groupama .toolbar-bottom.active .groupama .toolbar-toggle--icon {
    border-color: #e9eaeb; }
  .groupama .toolbox-contact {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
    .groupama .toolbox-contact--body {
      color: #62bf4c; }
    .groupama .toolbox-contact--title {
      color: #11594b; }
  .groupama .toolbox-subscription {
    background-color: #11594b; }
    .groupama .toolbox-subscription--body {
      color: #fff; }
    .groupama .toolbox-subscription--title {
      color: #fff; }
  .groupama .toolbox-link a {
    background-color: #ff9d00;
    border-right-color: #FF7400;
    color: #11594b; }
    .no-touch .groupama .toolbox-link a:hover {
      background-color: #FF7400; }
  .groupama .toolbox-form--input, .groupama .toolbox-form--note {
    color: #11594b;
    font-size: 14px; }
  .groupama .toolbox-form--input {
    background-color: #e9eaeb;
    border-color: #939598;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.5); }
    .groupama .toolbox-form--input:focus {
      background-color: #fff; }
    .groupama .toolbox-form--input.error {
      border-color: #bf1e1e;
      box-shadow: inset 0 0 4px rgba(191, 30, 30, 0.5); }
  .groupama .toolbox-form--button {
    background-color: #11594b;
    color: #fff; }
    .no-touch .groupama .toolbox-form--button:hover {
      background-color: #50A743; }
  .groupama .toolbox-toggle {
    color: #fff; }
    .groupama .toolbox-toggle.blue {
      background-color: #11594b; }
      .groupama .toolbox-toggle.blue:after {
        background-color: #11594b; }
    .groupama .toolbox-toggle.gray {
      background-color: #62bf4c; }
      .groupama .toolbox-toggle.gray:after {
        background-color: #fff; }
    .groupama .toolbox-toggle.active.gray {
      background-color: #fff;
      color: #62bf4c; }
  .groupama .toolbox-section {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  @media (max-width: 767px) {
    .groupama .toolbox-wrapper {
      background-color: #11594b; } }
  .groupama .aside-section, .groupama .aside-info, .groupama .aside-note {
    border-color: #50A743; }
  .groupama .aside-info {
    border-bottom: #50A743; }
  .groupama .aside-section--title {
    color: #11594b; }
  .groupama .aside-section--description {
    color: #77787b; }
  .groupama .aside-section--link a.yellow {
    background-color: #ff9d00;
    border-right-color: #FF7400;
    color: #fff; }
    .no-touch .groupama .aside-section--link a.yellow:hover {
      background-color: #FF7400; }
  .groupama .aside-section--link a.blue {
    background-color: #50A743;
    border-right-color: #11594b;
    color: #fff; }
    .no-touch .groupama .aside-section--link a.blue:hover {
      background-color: #11594b; }
  .groupama .aside-section--form {
    background-color: #fff;
    border-color: #d1d3d4; }
    .groupama .aside-section--form.error {
      border-color: #bf1e1e;
      color: #bf1e1e; }
    .groupama .aside-section--form---input {
      background-color: #fff;
      color: #939598; }
    .groupama .aside-section--form---button {
      background-color: #939598;
      color: #fff; }
      .no-touch .groupama .aside-section--form---button:hover {
        background-color: #77787b; }
    .groupama .aside-section--form.error .groupama .aside-section--form---button {
      background-color: #bf1e1e; }
  .groupama .aside-button a {
    background-color: #11594b;
    border-color: #11594b;
    color: #fff; }
    .no-touch .groupama .aside-button a:hover {
      color: #ff9d00; }
    .groupama .aside-button a:after {
      border-color: #11594b; }
    .groupama .aside-button a:before {
      background-color: #11594b; }
  .groupama .aside-block--title {
    color: #11594b; }
  .groupama .aside-block--summary em, .groupama .aside-block--description em {
    color: #11594b; }
  .groupama .aside-block--summary strong {
    color: #11594b; }
  .groupama .aside-block--description {
    color: #77787b; }
  .groupama .content-header {
    background-color: #11594b;
    color: #fff; }
    .groupama .content-header:after {
      border-top-color: #11594b; }
    .groupama .content-header.without-arrow {
      background-color: #488c38; }
  .groupama .content-body {
    background-color: #fff;
    border-color: #d1d3d4; }
  .groupama .content-tab li.new, .groupama .content-tab li.old {
    background-color: #e9eaeb; }
  .groupama .content-tab li.new {
    background-color: #e9eaeb;
    border-color: #d1d3d4;
    color: #488c38; }
  .groupama .content-tab li.old {
    background-color: #11594b;
    border-color: #11594b;
    color: #fff; }
  .groupama .content-tab li.active {
    background-color: #488c38;
    border-color: #488c38;
    color: #fff; }
  .groupama .result-description {
    color: #77787b; }
  .groupama .result-map, .groupama .result-list {
    border-color: #d1d3d4; }
  .groupama .result-list li {
    border-top-color: #d1d3d4; }
    .groupama .result-list li:nth-child(even) {
      background-color: #efeeee; }
  .groupama .result-list a {
    color: #77787b; }
    .groupama .result-list a:after {
      background-color: rgba(147, 149, 152, 0.3); }
    .no-touch .groupama .result-list a:hover:after {
      background-color: #11594b; }
  .groupama .result-list strong {
    color: #11594b; }
  .groupama .result-toggle {
    background-color: #e9eaeb;
    color: #11594b; }
    .groupama .result-toggle.active {
      background-color: #11594b;
      color: #fff; }
    .groupama .result-toggle--group {
      border-color: #11594b; }
  .groupama .pricing-caption {
    color: #11594b; }
  .groupama .pricing-description, .groupama .pricing-confirmation {
    color: #50A743; }
  .groupama .pricing-table table {
    color: #808184; }
  .groupama .pricing-table tr.package-1 {
    background-color: #f7f7f7; }
  .groupama .pricing-table tr.package-2 {
    background-color: #efeff0; }
  .groupama .pricing-table tr.package-3 {
    background-color: #e8e8e9; }
  .groupama .pricing-table th,
  .groupama .pricing-table td {
    border-color: #d1d3d4; }
  .groupama .pricing-table--package {
    color: #77787b; }
    .groupama .pricing-table--package strong,
    .groupama .pricing-table--package em {
      color: #11594b; }
    .groupama .pricing-table--package.active,
    .no-touch .groupama .pricing-table--package:hover {
      background-color: #11594b;
      color: #fff; }
  .groupama .pricing-table--item strong,
  .groupama .pricing-table--item em,
  .groupama .pricing-table--item big {
    color: #11594b; }
  .groupama .pricing-table--note {
    background-color: #fff; }
    .groupama .pricing-table--note:after {
      background-color: #ff9d00; }
  .groupama .pricing-table--checkbox {
    color: #11594b;
    border-top-color: #d1d3d4; }
    .groupama .pricing-table--checkbox:after {
      background-color: #fff;
      border-color: #11594b; }
    .groupama .pricing-table--checkbox.checked:after {
      background-color: #11594b; }
  .groupama .pricing-content {
    color: #808184; }
  .groupama .pricing-title {
    color: #50A743; }
  .groupama .pricing-info blockquote {
    color: #50A743; }
    .groupama .pricing-info blockquote:before, .groupama .pricing-info blockquote:after {
      color: #11594b; }
  .groupama .pricing-download li {
    border-top-color: #efeeee; }
  .groupama .pricing-button a {
    background-color: #fff;
    border-color: #11594b;
    color: #11594b; }
    .groupama .pricing-button a.active {
      background-color: #11594b;
      color: #fff; }
  @media (min-width: 768px) {
    .groupama .pricing-table:after {
      box-shadow: 1px 0 10px rgba(0, 0, 0, 0.2); } }
  @media (max-width: 767px) {
    .groupama .pricing-table--type {
      background-color: #808184;
      color: #fff; }
      .groupama .pricing-table--type:after {
        border-top-color: #808184; } }
  .groupama .confirm-description {
    color: #50A743; }
  .groupama .confirm-info dt {
    color: #77787b; }
  .groupama .confirm-info dd {
    color: #11594b; }
  .groupama .confirm-info--item {
    border-bottom-color: #efeeee; }
  .groupama .confirm-question {
    color: #77787b; }
  .groupama .confirm-note {
    color: #77787b; }
  .groupama .confirm-privacy {
    color: #77787b; }
    .groupama .confirm-privacy:after {
      background-color: #ff9d00; }
  .groupama .confirm-badge {
    background-color: #11594b;
    color: #fff; }
  @media (max-width: 1023px) {
    .groupama .confirm-badge:after {
      border-bottom-color: #11594b; } }
  @media (min-width: 1024px) {
    .groupama .confirm-badge:after {
      border-left-color: #11594b; } }
  .groupama .message {
    border-bottom-color: #efeeee;
    color: #50A743; }
    .groupama .message em {
      color: #11594b; }
  .groupama .cookie {
    background-color: #50A743;
    color: #fff; }
    .groupama .cookie-button {
      background-color: #11594b;
      color: #fff; }
    .groupama .cookie-message a {
      color: #fff; }
      .no-touch .groupama .cookie-message a:hover {
        color: #ff9d00; }
  .groupama .back a {
    background-color: #11594b;
    border-left-color: #488c38;
    color: #fff; }
    .no-touch .groupama .back a:hover {
      background-color: #488c38; }
  .groupama .project-step {
    border-top-color: #efeeee;
    color: #11594b; }
    .groupama .project-step--list span {
      color: #11594b; }
  .groupama .project-note {
    color: #77787b; }
  .groupama .project-item {
    background-color: #e9eaeb;
    border-color: #d1d3d4;
    color: #11594b; }
    .groupama .project-item--wrapper:after {
      background-color: #e9eaeb;
      border-color: #d1d3d4; }
    .groupama .project-item--icon {
      background-color: #e9eaeb; }
      .groupama .project-item--icon img {
        background-color: #50A743; }
  .groupama .project-download a {
    background-color: #11594b;
    color: #fff; }
    .no-touch .groupama .project-download a:hover {
      background-color: #50A743;
      color: #fff; }
    .groupama .project-download a:after {
      border-top-color: #fff; }
  .groupama .project-info {
    border-top-color: #e9eaeb;
    color: #11594b; }
  .groupama .project-description {
    color: #77787b; }
    .groupama .project-description.line-top {
      border-top-color: #efeeee; }
    .groupama .project-description.line-bottom {
      border-bottom-color: #efeeee; }
    .groupama .project-description h3 {
      color: #50A743; }
  .groupama .project-package--title {
    color: #11594b; }
    .groupama .project-package--title:after {
      border-top-color: #fff; }
  .groupama .project-package--item.i1 {
    background-color: #488c38;
    color: #fff; }
  .groupama .project-package--item.i2 {
    background-color: #11594b;
    color: #fff; }
  .groupama .project-package--item.i3 {
    background-color: #e9eaeb;
    color: #488c38; }
  .groupama .upload-description {
    color: #77787b; }
    .groupama .upload-description strong {
      color: #50A743; }
  .groupama .upload-zone {
    background-color: #e9eaeb;
    border-color: #808184;
    color: #11594b; }
    .groupama .upload-zone--wrapper:after {
      background-color: #e9eaeb;
      border-color: #808184; }
    .groupama .upload-zone--icon {
      background-color: #e9eaeb; }
      .groupama .upload-zone--icon img {
        background-color: #50A743; }
  .groupama .upload-note {
    color: #77787b; }
  .groupama .upload-item {
    border-color: #d1d3d4; }
    .groupama .upload-item--name {
      color: #50A743; }
    .groupama .upload-item--bar {
      background-color: #e9eaeb;
      border-color: #e9eaeb; }
    .groupama .upload-item--progress {
      background-color: #11594b; }
  .groupama .upload-list, .groupama .upload-info--group {
    border-top-color: #efeeee; }
  .groupama .upload-list h3 {
    color: #11594b; }
  .groupama .upload-info {
    color: #77787b; }
    .groupama .upload-info h3 {
      color: #11594b; }
  .groupama .info-body {
    background-color: #fff;
    box-shadow: 0 0 29px rgba(0, 0, 0, 0.45);
    border-color: #ff9d00;
    color: #808184; }
    .groupama .info-body:after {
      border-left-color: #fff; }
    .groupama .info-body:before {
      border-left-color: #ff9d00; }
  .groupama .info-close {
    background-color: #ff9d00;
    border-color: #ff9d00; }
  .groupama .info-open {
    background-color: #fff; }
  .groupama .slider {
    border-color: #efeeee; }
    .groupama .slider-title {
      color: #11594b; }
    .groupama .slider-item--min, .groupama .slider-item--max {
      color: #77787b; }
    .groupama .slider-item--bar {
      background-color: #e9eaeb;
      border-color: #e9eaeb; }
    .groupama .slider-item--progress {
      background-color: #11594b; }
    .groupama .slider-item--index {
      background-color: #11594b;
      color: #fff; }
      .groupama .slider-item--index:after {
        border-top-color: #11594b; }
    .groupama .slider-item--drag {
      background-color: #fff;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.4); }
  .groupama sim-slider span.rangeSlider-bubble {
    color: #fff;
    background-color: #11594b; }
    .groupama sim-slider span.rangeSlider-bubble:after {
      border-top-color: #11594b; }
    .groupama sim-slider span.rangeSlider-bubble.rangeSlider-limit {
      background-color: #fff;
      color: #62bf4c; }
      .groupama sim-slider span.rangeSlider-bubble.rangeSlider-limit:after {
        color: #62bf4c;
        background-color: #fff; }
  .groupama .rangeSlider__buffer {
    background: #2c3e50; }
  .groupama .rangeSlider {
    background: #7f8c8d; }
  .groupama .rangeSlider__fill {
    background: #11594b; }
  .groupama .rangeSlider__handle {
    border-color: #ccc;
    background: white; }
  .groupama .option {
    border-top-color: #efeeee; }
    .groupama .option-title {
      color: #11594b; }
    .groupama .option-item {
      background-color: #fff;
      border-color: #d1d3d4; }
      .groupama .option-item.active {
        border-color: #11594b;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.35); }
      .groupama .option-item.active .groupama .option-item--header {
        background-color: #11594b;
        color: #fff; }
        .groupama .option-item.active .groupama .option-item--header:after {
          border-top-color: #11594b; }
      .groupama .option-item.active .groupama .option-item--icon {
        background-color: #fff; }
      .groupama .option-item--header {
        border-bottom-color: #11594b;
        color: #11594b; }
        .groupama .option-item--header:after {
          border-top-color: #fff; }
        .groupama .option-item--header:before {
          border-top-color: #11594b; }
      .groupama .option-item--body {
        color: #77787b; }
      .groupama .option-item--icon {
        background-color: #11594b;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.35); }
      .groupama .option-item--description {
        color: #11594b; }
      .groupama .option-item--button a {
        border-color: #d1d3d4; }
    .groupama .option-accordion {
      border-bottom-color: #d1d3d4;
      color: #77787b; }
      .groupama .option-accordion--item {
        border-top-color: #d1d3d4; }
        .groupama .option-accordion--item:after {
          background-color: #e9eaeb;
          color: #11594b; }
  .groupama .loader-mask {
    background-color: rgba(255, 255, 255, 0.9); }
  .groupama .loader-wrapper {
    background-color: #fff;
    border-color: #11594b;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    color: #11594b; }
  .groupama .simulator-info, .groupama .simulator-note {
    color: #50A743; }
  .groupama .simulator-bottomline {
    color: #808184; }
  .groupama .simulator-description {
    color: #50A743; }
  .groupama .simulator-button a {
    background-color: #50A743;
    color: #fff; }
    .groupama .simulator-button a img {
      background-color: #11594b; }
    .no-touch .groupama .simulator-button a:hover {
      background-color: #11594b; }
  .groupama .simulator-section {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35); }
    .groupama .simulator-section--header {
      background-color: #11594b;
      color: #fff; }
      .groupama .simulator-section--header:after {
        border-color: #11594b transparent transparent; }
    .groupama .simulator-section--body {
      border-color: #11594b; }
    .groupama .simulator-section--close {
      background-color: #fff; }
      .no-touch .groupama .simulator-section--close:hover {
        background-color: #50A743; }
  .groupama .simulator-form--label {
    color: #77787b; }
    .groupama .simulator-form--label.special {
      color: #11594b; }
  .groupama .simulator-form--info {
    border-left-color: #ff9d00;
    color: #77787b; }
  .groupama .simulator-form--title {
    color: #11594b; }
  .groupama .simulator-form--description {
    color: #11594b; }
  .groupama .simulator-confirm--label {
    color: #77787b; }
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
/*# sourceMappingURL=app.15e817.css.map*/