@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,400;1,600&display=swap);/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(/support/images/icons/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(/support/images/icons/default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(/support/images/icons/preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }
html,
body,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
img,
pre,
form,
fieldset {
  margin: 0;
  padding: 0; }

img,
fieldset {
  border: 0; }

body,
html {
  height: 100%;
  width: 100%; }

body {
  background-color: #FFF;
  color: #172B4D;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857142857143;
  letter-spacing: -0.005em;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  text-decoration-skip: ink; }

p,
ul,
ol,
dl,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
form,
table {
  margin: 12px 0 0 0; }

a {
  color: #0052CC;
  text-decoration: none; }

a:hover {
  color: #0065FF;
  text-decoration: underline; }

a:active {
  color: #0747A6; }

a:focus {
  outline: 2px solid #4C9AFF;
  outline-offset: 2px; }

h1 {
  font-size: 2.07142857em;
  font-style: inherit;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.10344828;
  margin-top: 40px; }

h2 {
  font-size: 1.71428571em;
  font-style: inherit;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.16666667;
  margin-top: 28px; }

h3 {
  font-size: 1.42857143em;
  font-style: inherit;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.2;
  margin-top: 28px; }

h4 {
  font-size: 1.14285714em;
  font-style: inherit;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.006em;
  margin-top: 24px; }

h5 {
  font-size: 1em;
  font-style: inherit;
  font-weight: 600;
  line-height: 1.14285714;
  letter-spacing: -0.003em;
  margin-top: 16px; }

h6 {
  color: #5E6C84;
  font-size: 0.85714286em;
  font-weight: 600;
  line-height: 1.33333333;
  margin-top: 20px;
  text-transform: uppercase; }

ul,
ol,
dl {
  padding-left: 40px; }

[dir="rtl"]ul,
[dir="rtl"]ol,
[dir="rtl"]dl {
  padding-left: 0;
  padding-right: 40px; }

dd,
dd + dt,
li + li {
  margin-top: 4px; }

ul ul:not(:first-child),
ol ul:not(:first-child),
ul ol:not(:first-child),
ol ol:not(:first-child) {
  margin-top: 4px; }

p:first-child,
ul:first-child,
ol:first-child,
dl:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
blockquote:first-child,
pre:first-child,
form:first-child,
table:first-child {
  margin-top: 0; }

blockquote,
q {
  color: inherit; }

blockquote {
  border: none;
  padding-left: 40px; }

[dir="rtl"] blockquote {
  padding-left: 0;
  padding-right: 40px; }

blockquote::before,
q:before {
  content: "\201C"; }

blockquote::after,
q::after {
  content: "\201D"; }

blockquote::before {
  float: left;
  margin-left: -1em;
  text-align: right;
  width: 1em; }

[dir="rtl"] blockquote::before {
  float: right;
  margin-right: -1em;
  text-align: left; }

blockquote > :last-child {
  display: inline-block; }

small {
  color: #5E6C84;
  font-size: 0.85714286em;
  font-weight: normal;
  line-height: 1.33333333;
  margin-top: 16px; }

code,
kbd {
  font-family: "SFMono-Medium", "SF Mono", "Segoe UI Mono", "Roboto Mono", "Ubuntu Mono", Menlo, Courier, monospace; }

var,
address,
dfn,
cite {
  font-style: italic; }

abbr {
  border-bottom: 1px #ccc dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  width: 100%; }

thead,
tbody,
tfoot {
  border-bottom: 2px solid #DFE1E6; }

td,
th {
  border: none;
  padding: 4px 8px;
  text-align: left; }

th {
  vertical-align: top; }

td:first-child,
th:first-child {
  padding-left: 0; }

td:last-child,
th:last-child {
  padding-right: 0; }

caption {
  font-size: 1.42857143em;
  font-style: inherit;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.2;
  margin-top: 28px;
  margin-bottom: 8px;
  text-align: left; }

template {
  display: none; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block; }

@-moz-document url-prefix() {
  img {
    font-size: 0; }
  img:-moz-broken {
    font-size: inherit; } }

.assistive {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.ak-button {
  align-items: baseline;
  box-sizing: border-box;
  border-radius: 3px;
  border-width: 0;
  display: inline-flex;
  font-style: normal;
  font-size: inherit;
  height: 2.28571429em;
  line-height: 2.28571429em;
  margin: 0;
  outline: none;
  padding: 0 8px;
  text-align: center;
  transition: background 0.1s ease-out, box-shadow 0.15s cubic-bezier(0.47, 0.03, 0.49, 1.38);
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }

.ak-button:hover {
  cursor: pointer;
  transition: background 0s ease-out, box-shadow 0.15s cubic-bezier(0.47, 0.03, 0.49, 1.38); }

.ak-button:active {
  transition-duration: 0s; }

.ak-button:focus {
  outline: none;
  transition-duration: 0s, 0.2s; }

.ak-button[disabled] {
  cursor: not-allowed; }

.ak-button__appearance-default {
  background: rgba(9, 30, 66, 0.04);
  color: #505F79;
  text-decoration: none; }

.ak-button__appearance-default:hover {
  background: rgba(9, 30, 66, 0.08); }

.ak-button__appearance-default:active {
  background: rgba(179, 212, 255, 0.6);
  color: #0052CC; }

.ak-button__appearance-default:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__appearance-default[disabled],
.ak-button__appearance-default[disabled]:active,
.ak-button__appearance-default[disabled]:hover {
  background: rgba(9, 30, 66, 0.04);
  color: #A5ADBA;
  text-decoration: none; }

.ak-button__appearance-default[disabled]:focus,
.ak-button__appearance-default[disabled]:active:focus,
.ak-button__appearance-default[disabled]:hover:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__appearance-subtle {
  background: none;
  color: #505F79;
  text-decoration: none; }

.ak-button__appearance-subtle:hover {
  background: rgba(9, 30, 66, 0.08); }

.ak-button__appearance-subtle:active {
  background: rgba(179, 212, 255, 0.6);
  color: #0052CC; }

.ak-button__appearance-subtle:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__appearance-subtle[disabled],
.ak-button__appearance-subtle[disabled]:active,
.ak-button__appearance-subtle[disabled]:hover {
  background: rgba(9, 30, 66, 0.04);
  color: #A5ADBA;
  text-decoration: none; }

.ak-button__appearance-subtle[disabled]:focus,
.ak-button__appearance-subtle[disabled]:active:focus,
.ak-button__appearance-subtle[disabled]:hover:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__appearance-primary {
  background: #0052CC;
  color: #FFFFFF;
  text-decoration: none; }

.ak-button__appearance-primary:hover {
  background: #0065FF; }

.ak-button__appearance-primary:active {
  background: #0747A6;
  color: #FFFFFF; }

.ak-button__appearance-primary:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__appearance-primary[disabled],
.ak-button__appearance-primary[disabled]:active,
.ak-button__appearance-primary[disabled]:hover {
  background: #0052CC;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none; }

.ak-button__appearance-primary[disabled]:focus,
.ak-button__appearance-primary[disabled]:active:focus,
.ak-button__appearance-primary[disabled]:hover:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__appearance-link {
  background: none;
  color: #0052CC;
  text-decoration: none; }

.ak-button__appearance-link:hover {
  background: none;
  color: #0065FF;
  text-decoration: underline; }

.ak-button__appearance-link:active {
  text-decoration: none;
  background: none;
  color: #0747A6; }

.ak-button__appearance-link:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__appearance-link[disabled],
.ak-button__appearance-link[disabled]:active,
.ak-button__appearance-link[disabled]:hover {
  background: none;
  color: #A5ADBA;
  text-decoration: none; }

.ak-button__appearance-link[disabled]:focus,
.ak-button__appearance-link[disabled]:active:focus,
.ak-button__appearance-link[disabled]:hover:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__appearance-subtle-link {
  background: none;
  color: #42526E;
  text-decoration: none; }

.ak-button__appearance-subtle-link:hover {
  background: none;
  color: #0065FF;
  text-decoration: underline; }

.ak-button__appearance-subtle-link:active {
  text-decoration: none;
  background: none;
  color: #0747A6; }

.ak-button__appearance-subtle-link:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__appearance-subtle-link[disabled],
.ak-button__appearance-subtle-link[disabled]:active,
.ak-button__appearance-subtle-link[disabled]:focus {
  background: none;
  color: #A5ADBA;
  text-decoration: none; }

.ak-button__appearance-subtle-link[disabled]:focus,
.ak-button__appearance-subtle-link[disabled]:active:focus,
.ak-button__appearance-subtle-link[disabled]:focus:focus {
  box-shadow: 0 0 0 2px rgba(38, 132, 255, 0.6); }

.ak-button__spacing-compact {
  height: 1.71428571em;
  line-height: 1.71428571em; }

.ak-button__spacing-none {
  height: auto;
  line-height: normal;
  padding: 0; }

.ak-button::-moz-focus-inner {
  border: 0;
  margin: 0;
  padding: 0; }

ak-grid {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 960px;
  padding: 0 8px;
  position: relative; }

ak-grid[layout="fluid"] {
  max-width: 100%; }

ak-grid-column {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  margin: 0 8px;
  max-width: calc(100% - 16px);
  min-width: calc(99.9999% / 12 - 16px);
  word-wrap: break-word; }

ak-grid-column[size="1"] {
  flex-basis: calc(99.9999% / 12 * 1 - 16px);
  max-width: calc(99.9999% / 12 * 1 - 16px); }

ak-grid-column[size="2"] {
  flex-basis: calc(99.9999% / 12 * 2 - 16px);
  max-width: calc(99.9999% / 12 * 2 - 16px); }

ak-grid-column[size="3"] {
  flex-basis: calc(99.9999% / 12 * 3 - 16px);
  max-width: calc(99.9999% / 12 * 3 - 16px); }

ak-grid-column[size="4"] {
  flex-basis: calc(99.9999% / 12 * 4 - 16px);
  max-width: calc(99.9999% / 12 * 4 - 16px); }

ak-grid-column[size="5"] {
  flex-basis: calc(99.9999% / 12 * 5 - 16px);
  max-width: calc(99.9999% / 12 * 5 - 16px); }

ak-grid-column[size="6"] {
  flex-basis: calc(99.9999% / 12 * 6 - 16px);
  max-width: calc(99.9999% / 12 * 6 - 16px); }

ak-grid-column[size="7"] {
  flex-basis: calc(99.9999% / 12 * 7 - 16px);
  max-width: calc(99.9999% / 12 * 7 - 16px); }

ak-grid-column[size="8"] {
  flex-basis: calc(99.9999% / 12 * 8 - 16px);
  max-width: calc(99.9999% / 12 * 8 - 16px); }

ak-grid-column[size="9"] {
  flex-basis: calc(99.9999% / 12 * 9 - 16px);
  max-width: calc(99.9999% / 12 * 9 - 16px); }

ak-grid-column[size="10"] {
  flex-basis: calc(99.9999% / 12 * 10 - 16px);
  max-width: calc(99.9999% / 12 * 10 - 16px); }

ak-grid-column[size="11"] {
  flex-basis: calc(99.9999% / 12 * 11 - 16px);
  max-width: calc(99.9999% / 12 * 11 - 16px); }

ak-grid-column[size="12"] {
  flex-basis: calc(100% - 16px);
  max-width: calc(100% - 16px); }

.ak-field-toggle {
  display: inline-block;
  overflow: hidden;
  position: relative;
  user-select: none; }

.ak-field-toggle > label {
  background-clip: content-box;
  background-color: #97A0AF;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2041%20(35326)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3EDone%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%2224-x-20%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22editor-24x20%2Feditor-done%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22check%22%20transform%3D%22translate(2.000000%2C%204.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M3.16564164%2C6.89951467%20C2.97539446%2C6.70637871%202.66546153%2C6.7078825%202.47552459%2C6.90070352%20L1.18248183%2C8.21338031%20C0.991587885%2C8.40717286%200.989942114%2C8.7197019%201.18758597%2C8.92034685%20L6.67982192%2C14.4959789%20C6.8735348%2C14.6926332%207.18853946%2C14.691685%207.38390826%2C14.4933496%20L18.4834996%2C3.22521804%20C18.6786429%2C3.02711165%2018.6811307%2C2.70844326%2018.4911937%2C2.51562224%20L17.1981509%2C1.20294545%20C17.007257%2C1.0091529%2016.6982277%2C1.0086748%2016.502939%2C1.2069289%20L7.38013805%2C10.4682537%20C7.18707701%2C10.6642463%206.87069672%2C10.6608286%206.68609713%2C10.473426%20L3.16564164%2C6.89951467%20Z%22%20id%3D%22Path-3%22%3E%3C%2Fpath%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"), url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2041.2%20(35397)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3ECancel%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Experiments%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22cancel-icon%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M13.3635%2C11.94925%20C13.7545%2C12.34025%2013.7545%2C12.97225%2013.3635%2C13.36325%20C13.1685%2C13.55825%2012.9125%2C13.65625%2012.6565%2C13.65625%20C12.4005%2C13.65625%2012.1445%2C13.55825%2011.9495%2C13.36325%20L9.8285%2C11.24225%20L7.7065%2C13.36325%20C7.5115%2C13.55825%207.2555%2C13.65625%206.9995%2C13.65625%20C6.7435%2C13.65625%206.4885%2C13.55825%206.2925%2C13.36325%20C5.9025%2C12.97225%205.9025%2C12.34025%206.2925%2C11.94925%20L8.4135%2C9.82825%20L6.2925%2C7.70725%20C5.9025%2C7.31625%205.9025%2C6.68325%206.2925%2C6.29325%20C6.6835%2C5.90225%207.3165%2C5.90225%207.7065%2C6.29325%20L9.8285%2C8.41425%20L11.9495%2C6.29325%20C12.3405%2C5.90225%2012.9725%2C5.90225%2013.3635%2C6.29325%20C13.7545%2C6.68325%2013.7545%2C7.31625%2013.3635%2C7.70725%20L11.2425%2C9.82825%20L13.3635%2C11.94925%20Z%22%20id%3D%22Error-Icon%22%3E%3C%2Fpath%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-repeat: no-repeat;
  border: 2px solid transparent;
  color: transparent;
  cursor: pointer;
  display: inline-block;
  padding: 2px;
  text-indent: -9999px;
  transition: background-color 0.2s, border-color 0.2s; }

.ak-field-toggle > label::before {
  background: white;
  content: "";
  cursor: pointer;
  display: block;
  transition: transform 0.2s; }

.ak-field-toggle > input {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0; }

.ak-field-toggle > input:checked + label {
  background-color: #36B37E; }

.ak-field-toggle > input:disabled + label {
  background-color: #f3f4f5;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2041%20(35326)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3EDone%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%2224-x-20%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22editor-24x20%2Feditor-done%22%20fill%3D%22%23A1DCC4%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22check%22%20transform%3D%22translate(2.000000%2C%204.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M3.16564164%2C6.89951467%20C2.97539446%2C6.70637871%202.66546153%2C6.7078825%202.47552459%2C6.90070352%20L1.18248183%2C8.21338031%20C0.991587885%2C8.40717286%200.989942114%2C8.7197019%201.18758597%2C8.92034685%20L6.67982192%2C14.4959789%20C6.8735348%2C14.6926332%207.18853946%2C14.691685%207.38390826%2C14.4933496%20L18.4834996%2C3.22521804%20C18.6786429%2C3.02711165%2018.6811307%2C2.70844326%2018.4911937%2C2.51562224%20L17.1981509%2C1.20294545%20C17.007257%2C1.0091529%2016.6982277%2C1.0086748%2016.502939%2C1.2069289%20L7.38013805%2C10.4682537%20C7.18707701%2C10.6642463%206.87069672%2C10.6608286%206.68609713%2C10.473426%20L3.16564164%2C6.89951467%20Z%22%20id%3D%22Path-3%22%3E%3C%2Fpath%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"), url("data:image/svg+xml;charset=UTF-8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2041.2%20(35397)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3ECancel%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Experiments%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22cancel-icon%22%20fill%3D%22%23AFB6C2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M13.3635%2C11.94925%20C13.7545%2C12.34025%2013.7545%2C12.97225%2013.3635%2C13.36325%20C13.1685%2C13.55825%2012.9125%2C13.65625%2012.6565%2C13.65625%20C12.4005%2C13.65625%2012.1445%2C13.55825%2011.9495%2C13.36325%20L9.8285%2C11.24225%20L7.7065%2C13.36325%20C7.5115%2C13.55825%207.2555%2C13.65625%206.9995%2C13.65625%20C6.7435%2C13.65625%206.4885%2C13.55825%206.2925%2C13.36325%20C5.9025%2C12.97225%205.9025%2C12.34025%206.2925%2C11.94925%20L8.4135%2C9.82825%20L6.2925%2C7.70725%20C5.9025%2C7.31625%205.9025%2C6.68325%206.2925%2C6.29325%20C6.6835%2C5.90225%207.3165%2C5.90225%207.7065%2C6.29325%20L9.8285%2C8.41425%20L11.9495%2C6.29325%20C12.3405%2C5.90225%2012.9725%2C5.90225%2013.3635%2C6.29325%20C13.7545%2C6.68325%2013.7545%2C7.31625%2013.3635%2C7.70725%20L11.2425%2C9.82825%20L13.3635%2C11.94925%20Z%22%20id%3D%22Error-Icon%22%3E%3C%2Fpath%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  cursor: not-allowed; }

.ak-field-toggle > input:disabled + label::before {
  background-color: #AFB6C2;
  cursor: not-allowed; }

.ak-field-toggle > input:checked:disabled + label {
  background-color: #35B885; }

.ak-field-toggle > input:checked:disabled + label::before {
  background-color: #A1DCC4; }

.ak-field-toggle > input:focus {
  outline: none; }

.ak-field-toggle > input:focus + label {
  border-color: #4C9AFF; }

.ak-field-toggle__size-large > label {
  background-position: 5px 4px, 23px 4px;
  background-size: 16px 16px, 16px 16px;
  border-radius: 20px;
  height: 20px;
  width: 40px; }

.ak-field-toggle__size-large > label::before {
  background: white;
  border-radius: 16px;
  content: "";
  display: block;
  height: 16px;
  margin-left: 2px;
  margin-top: 2px;
  width: 16px; }

.ak-field-toggle__size-large > input:checked + label::before {
  transform: translate(20px, 0); }

.ak-field-toggle__size-default > label {
  background-position: 5px 4px, 19px 4px;
  background-size: 12px 12px, 12px 12px;
  border-radius: 16px;
  height: 16px;
  width: 32px; }

.ak-field-toggle__size-default > label::before {
  background: white;
  border-radius: 12px;
  content: "";
  display: block;
  height: 12px;
  margin-left: 2px;
  margin-top: 2px;
  width: 12px; }

.ak-field-toggle__size-default > input:checked + label::before {
  transform: translate(16px, 0); }

a[href][data-ak-tooltip],
button[data-ak-tooltip] {
  overflow: visible;
  position: relative; }

a[href][data-ak-tooltip]:hover::after,
button[data-ak-tooltip]:hover::after,
a[href][data-ak-tooltip]:focus::after,
button[data-ak-tooltip]:focus::after {
  background-color: #091E42;
  border-radius: 3px;
  box-sizing: border-box;
  color: white;
  content: attr(data-ak-tooltip);
  display: inline-block;
  font-size: 12px;
  line-height: 1.33333333;
  max-width: 420px;
  overflow: hidden;
  padding: 2px 8px;
  pointer-events: none;
  position: absolute;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 10000; }

a[href][data-ak-tooltip][data-ak-tooltip-position="top"]::after,
button[data-ak-tooltip][data-ak-tooltip-position="top"]::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px); }

a[href][data-ak-tooltip][data-ak-tooltip-position="right"]::after,
button[data-ak-tooltip][data-ak-tooltip-position="right"]::after {
  left: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(8px); }

a[href][data-ak-tooltip][data-ak-tooltip-position="bottom"]::after,
button[data-ak-tooltip][data-ak-tooltip-position="bottom"]::after {
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(8px); }

a[href][data-ak-tooltip][data-ak-tooltip-position="left"]::after,
button[data-ak-tooltip][data-ak-tooltip-position="left"]::after {
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  right: 100%; }

.ak-field-group {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 20px 0 0 0; }

.ak-field-group > label,
.ak-field-group > legend {
  color: #6B778C;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  margin-bottom: 6px; }

.ak-field-group > legend {
  float: left;
  width: 100%; }

.ak-field-text,
.ak-field-date,
.ak-field-search,
.ak-field-email,
.ak-field-url,
.ak-field-tel,
.ak-field-number,
.ak-field-month,
.ak-field-week,
.ak-field-time,
.ak-field-datetime-local,
.ak-field-password,
.ak-field-select,
.ak-field-textarea {
  background-color: #F4F5F7;
  border-radius: 5px;
  border: 1px solid #DFE1E6;
  box-shadow: none;
  box-sizing: border-box;
  color: #172B4D;
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  max-width: 100%;
  outline: none;
  padding: 9px 7px;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  width: 100%; }

.ak-field-text:hover,
.ak-field-date:hover,
.ak-field-search:hover,
.ak-field-email:hover,
.ak-field-url:hover,
.ak-field-tel:hover,
.ak-field-number:hover,
.ak-field-month:hover,
.ak-field-week:hover,
.ak-field-time:hover,
.ak-field-datetime-local:hover,
.ak-field-password:hover,
.ak-field-select:hover,
.ak-field-textarea:hover {
  background-color: #EBECF0;
  border-color: #DFE1E6; }

.ak-field-text:focus,
.ak-field-date:focus,
.ak-field-search:focus,
.ak-field-email:focus,
.ak-field-url:focus,
.ak-field-tel:focus,
.ak-field-number:focus,
.ak-field-month:focus,
.ak-field-week:focus,
.ak-field-time:focus,
.ak-field-datetime-local:focus,
.ak-field-password:focus,
.ak-field-select:focus,
.ak-field-textarea:focus {
  background-color: #FFFFFF;
  border-color: #4C9AFF;
  border-width: 2px;
  padding: 8px 6px; }

.ak-field-text:focus:invalid,
.ak-field-date:focus:invalid,
.ak-field-search:focus:invalid,
.ak-field-email:focus:invalid,
.ak-field-url:focus:invalid,
.ak-field-tel:focus:invalid,
.ak-field-number:focus:invalid,
.ak-field-month:focus:invalid,
.ak-field-week:focus:invalid,
.ak-field-time:focus:invalid,
.ak-field-datetime-local:focus:invalid,
.ak-field-password:focus:invalid,
.ak-field-select:focus:invalid,
.ak-field-textarea:focus:invalid,
.ak-field-text:focus:out-of-range,
.ak-field-date:focus:out-of-range,
.ak-field-search:focus:out-of-range,
.ak-field-email:focus:out-of-range,
.ak-field-url:focus:out-of-range,
.ak-field-tel:focus:out-of-range,
.ak-field-number:focus:out-of-range,
.ak-field-month:focus:out-of-range,
.ak-field-week:focus:out-of-range,
.ak-field-time:focus:out-of-range,
.ak-field-datetime-local:focus:out-of-range,
.ak-field-password:focus:out-of-range,
.ak-field-select:focus:out-of-range,
.ak-field-textarea:focus:out-of-range {
  border-color: #DE350B; }

.ak-field-text[disabled],
.ak-field-date[disabled],
.ak-field-search[disabled],
.ak-field-email[disabled],
.ak-field-url[disabled],
.ak-field-tel[disabled],
.ak-field-number[disabled],
.ak-field-month[disabled],
.ak-field-week[disabled],
.ak-field-time[disabled],
.ak-field-datetime-local[disabled],
.ak-field-password[disabled],
.ak-field-select[disabled],
.ak-field-textarea[disabled],
.ak-field-text[disabled]:hover,
.ak-field-date[disabled]:hover,
.ak-field-search[disabled]:hover,
.ak-field-email[disabled]:hover,
.ak-field-url[disabled]:hover,
.ak-field-tel[disabled]:hover,
.ak-field-number[disabled]:hover,
.ak-field-month[disabled]:hover,
.ak-field-week[disabled]:hover,
.ak-field-time[disabled]:hover,
.ak-field-datetime-local[disabled]:hover,
.ak-field-password[disabled]:hover,
.ak-field-select[disabled]:hover,
.ak-field-textarea[disabled]:hover {
  background-color: #F4F5F7;
  border-color: #F4F5F7;
  color: #C1C7D0;
  cursor: not-allowed; }

.ak-field-text::-webkit-input-placeholder,
.ak-field-date::-webkit-input-placeholder,
.ak-field-search::-webkit-input-placeholder,
.ak-field-email::-webkit-input-placeholder,
.ak-field-url::-webkit-input-placeholder,
.ak-field-tel::-webkit-input-placeholder,
.ak-field-number::-webkit-input-placeholder,
.ak-field-month::-webkit-input-placeholder,
.ak-field-week::-webkit-input-placeholder,
.ak-field-time::-webkit-input-placeholder,
.ak-field-datetime-local::-webkit-input-placeholder,
.ak-field-password::-webkit-input-placeholder,
.ak-field-select::-webkit-input-placeholder,
.ak-field-textarea::-webkit-input-placeholder {
  color: #7A869A; }

.ak-field-text::-moz-placeholder,
.ak-field-date::-moz-placeholder,
.ak-field-search::-moz-placeholder,
.ak-field-email::-moz-placeholder,
.ak-field-url::-moz-placeholder,
.ak-field-tel::-moz-placeholder,
.ak-field-number::-moz-placeholder,
.ak-field-month::-moz-placeholder,
.ak-field-week::-moz-placeholder,
.ak-field-time::-moz-placeholder,
.ak-field-datetime-local::-moz-placeholder,
.ak-field-password::-moz-placeholder,
.ak-field-select::-moz-placeholder,
.ak-field-textarea::-moz-placeholder {
  color: #7A869A; }

.ak-field-text:-ms-input-placeholder,
.ak-field-date:-ms-input-placeholder,
.ak-field-search:-ms-input-placeholder,
.ak-field-email:-ms-input-placeholder,
.ak-field-url:-ms-input-placeholder,
.ak-field-tel:-ms-input-placeholder,
.ak-field-number:-ms-input-placeholder,
.ak-field-month:-ms-input-placeholder,
.ak-field-week:-ms-input-placeholder,
.ak-field-time:-ms-input-placeholder,
.ak-field-datetime-local:-ms-input-placeholder,
.ak-field-password:-ms-input-placeholder,
.ak-field-select:-ms-input-placeholder,
.ak-field-textarea:-ms-input-placeholder {
  color: #7A869A; }

.ak-field-text:-moz-placeholder,
.ak-field-date:-moz-placeholder,
.ak-field-search:-moz-placeholder,
.ak-field-email:-moz-placeholder,
.ak-field-url:-moz-placeholder,
.ak-field-tel:-moz-placeholder,
.ak-field-number:-moz-placeholder,
.ak-field-month:-moz-placeholder,
.ak-field-week:-moz-placeholder,
.ak-field-time:-moz-placeholder,
.ak-field-datetime-local:-moz-placeholder,
.ak-field-password:-moz-placeholder,
.ak-field-select:-moz-placeholder,
.ak-field-textarea:-moz-placeholder {
  color: #7A869A; }

.ak-field-textarea {
  overflow: auto; }

.ak-field-search {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield; }

.ak-field-search::-webkit-search-decoration {
  -webkit-appearance: none; }

.ak-field-color {
  background-color: #F4F5F7;
  border-radius: 5px;
  border: 1px solid #DFE1E6;
  box-sizing: border-box;
  height: 40px;
  padding: 7px 5px;
  transition: border-color 0.2s ease-in-out; }

.ak-field-color:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: #4C9AFF;
  border-width: 2px;
  padding: 6px 4px; }

.ak-field-color:focus:invalid {
  border-color: #DE350B; }

.ak-field-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none; }

.ak-field-select > optgroup[label] {
  color: #5E6C84;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571428571429; }

.ak-field-select > optgroup[label] > option {
  color: #172B4D; }

.ak-field-select > option {
  color: #172B4D; }

.ak-field-select:not([multiple]) {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%203.8.3%20(29802)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3EExpand%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Icons%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22expand%22%20fill%3D%22currentColor%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20transform%3D%22translate(6.000000%2C%208.000000)%22%20id%3D%22Path-6%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M6.58397485%2C0.375962279%20L3.58397485%2C2.37596228%20L4.41602515%2C2.37596228%20L1.41602515%2C0.375962279%20C1.07137863%2C0.146197935%200.605726624%2C0.239328336%200.375962279%2C0.583974853%20C0.146197935%2C0.928621369%200.239328336%2C1.39427338%200.583974853%2C1.62403772%20L3.58397485%2C3.62403772%20L4%2C3.90138782%20L4.41602515%2C3.62403772%20L7.41602515%2C1.62403772%20C7.76067166%2C1.39427338%207.85380207%2C0.928621369%207.62403772%2C0.583974853%20C7.39427338%2C0.239328336%206.92862137%2C0.146197935%206.58397485%2C0.375962279%20L6.58397485%2C0.375962279%20Z%22%3E%3C%2Fpath%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");
  background-position-x: calc(100% - 7px);
  background-position-y: center;
  background-repeat: no-repeat;
  padding-right: 35px; }

.ak-field-select:not([multiple]):focus {
  padding-right: 34px;
  background-position-x: calc(100% - 6px); }

.ak-field-select[multiple] {
  overflow-y: auto;
  padding: 1px; }

.ak-field-select[multiple] > option {
  box-sizing: border-box;
  line-height: 1.428571428571429;
  height: 24px;
  padding: 2px 6px; }

.ak-field-select[multiple] > option:checked {
  background-color: #DFE1E6;
  color: inherit; }

.ak-field-select[multiple]:focus {
  padding: 0; }

.ak-field-select[multiple]:focus > option:checked {
  background-color: #4C9AFF;
  color: white; }

.ak-field-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000; }

.ak-field-select::-ms-expand {
  display: none; }

.ak-field-checkbox {
  clear: both;
  position: relative; }

.ak-field-checkbox > input[type="checkbox"] {
  position: absolute;
  outline: none;
  width: 12px;
  margin: 0 8px;
  opacity: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%); }

.ak-field-checkbox > input[type="checkbox"] + label {
  box-sizing: border-box;
  display: block;
  padding: 4px 4px 4px 32px;
  position: relative;
  width: 100%; }

.ak-field-checkbox > input[type="checkbox"] + label::after {
  background: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%3Crect%20width%3D%2212%22%20height%3D%2212%22%20rx%3D%222%22%20fill%3D%22%23F4F5F7%22%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E%0A") no-repeat 0 0;
  border-color: transparent;
  border-radius: 5px;
  border-style: solid;
  border-width: 2px;
  content: '';
  height: 12px;
  left: 8px;
  position: absolute;
  transition: border-color 0.2s ease-in-out;
  top: 7px;
  width: 12px; }

.ak-field-checkbox > input[type="checkbox"]:focus + label::after {
  border-color: #4C9AFF; }

.ak-field-checkbox > input[type="checkbox"]:not([disabled]) + label:hover::after {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%3Crect%20width%3D%2212%22%20height%3D%2212%22%20rx%3D%222%22%20fill%3D%22%23DFE1E6%22%3E%3C%2Frect%3E%0A%3C%2Fsvg%3E%0A"); }

.ak-field-checkbox > input[type="checkbox"][disabled] + label {
  opacity: 0.5; }

.ak-field-checkbox > input[type="checkbox"]:checked + label::after {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%3Crect%20width%3D%2212%22%20height%3D%2212%22%20rx%3D%222%22%20fill%3D%22%230052CC%22%3E%3C%2Frect%3E%0A%20%20%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M9.374%204.914L5.456%208.832a.769.769%200%200%201-1.088%200L2.626%207.091a.769.769%200%201%201%201.088-1.089L4.912%207.2l3.374-3.374a.769.769%200%201%201%201.088%201.088%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E%0A"); }

.ak-field-checkbox > input[type="checkbox"]:checked:not([disabled]) + label:hover::after {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%3Crect%20width%3D%2212%22%20height%3D%2212%22%20rx%3D%222%22%20fill%3D%22%230747A6%22%3E%3C%2Frect%3E%0A%20%20%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M9.374%204.914L5.456%208.832a.769.769%200%200%201-1.088%200L2.626%207.091a.769.769%200%201%201%201.088-1.089L4.912%207.2l3.374-3.374a.769.769%200%201%201%201.088%201.088%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E%0A"); }

.ak-field-radio {
  clear: both;
  position: relative; }

.ak-field-radio > input[type="radio"] {
  position: absolute;
  outline: none;
  width: 12px;
  margin: 0 8px;
  opacity: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%); }

.ak-field-radio > input[type="radio"] + label {
  box-sizing: border-box;
  display: block;
  padding: 4px 4px 4px 32px;
  position: relative;
  width: 100%; }

.ak-field-radio > input[type="radio"] + label::after {
  background: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%3Ccircle%20fill%3D%22%23F4F5F7%22%20cx%3D%226%22%20cy%3D%226%22%20r%3D%226%22%3E%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat 0 0;
  border-color: transparent;
  border-radius: 50%;
  border-style: solid;
  border-width: 2px;
  content: '';
  height: 12px;
  left: 8px;
  position: absolute;
  transition: border-color 0.2s ease-in-out;
  top: 7px;
  width: 12px; }

.ak-field-radio > input[type="radio"]:focus + label::after {
  border-color: #4C9AFF; }

.ak-field-radio > input[type="radio"]:not([disabled]) + label:hover::after {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%3Ccircle%20fill%3D%22%23DFE1E6%22%20cx%3D%226%22%20cy%3D%226%22%20r%3D%226%22%3E%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A"); }

.ak-field-radio > input[type="radio"][disabled] + label {
  opacity: 0.5; }

.ak-field-radio > input[type="radio"]:checked + label::after {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%3Ccircle%20fill%3D%22%230052CC%22%20cx%3D%226%22%20cy%3D%226%22%20r%3D%226%22%3E%3C%2Fcircle%3E%0A%20%20%3Ccircle%20fill%3D%22%23FFFFFF%22%20cx%3D%226%22%20cy%3D%226%22%20r%3D%222%22%3E%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A"); }

.ak-field-radio > input[type="radio"]:checked:not([disabled]) + label:hover::after {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%20standalone%3D%22no%22%3F%3E%0A%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%3Ccircle%20fill%3D%22%230747A6%22%20cx%3D%226%22%20cy%3D%226%22%20r%3D%226%22%3E%3C%2Fcircle%3E%0A%20%20%3Ccircle%20fill%3D%22%23FFFFFF%22%20cx%3D%226%22%20cy%3D%226%22%20r%3D%222%22%3E%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A"); }

.ak-field__width-xsmall {
  max-width: 80px; }

.ak-field__width-small {
  max-width: 160px; }

.ak-field__width-medium {
  max-width: 240px; }

.ak-field__width-large {
  max-width: 344px; }

.ak-field__width-xlarge {
  max-width: 496px; }

* {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: normal; }

h1, h2, h3, h4, h5, p, b, i, em, mark, small, del, ins, sub, sup {
  color: #1a1a1a; }

h1 {
  color: #404040;
  font-weight: 500;
  font-size: 2rem;
  line-height: 3rem; }

h2 {
  color: #404040;
  font-weight: 500;
  font-size: 24px;
  line-height: 3rem; }

h3 {
  color: #404040;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5rem; }

em, em > * {
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.25rem;
  font-style: italic !important; }

p, b, i, mark, del, ins {
  font-size: 1rem;
  line-height: 1.67;
  font-weight: normal !important; }

strong {
  font-weight: bold; }

a {
  color: #8686e0;
  font-weight: 600; }

.main-panel__content a {
  color: #8686e0;
  font-size: 16px; }
  .main-panel__content a:hover {
    font-weight: 500;
    color: #433b9b; }

li > a {
  color: #1a1a1a;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  font-weight: normal; }

.article > ul {
  list-style: none; }
  .article > ul li::before {
    content: '\2022';
    color: #ff4b1f;
    font-weight: bolder;
    display: inline-block;
    width: 1em;
    font-size: 1.5rem; }
  .article > ul li {
    font-size: 16px; }

.article > ul > li > ul > li:before {
  content: none; }

figure.image-gallery {
  margin-left: 0;
  margin-right: 0; }

.pswp__zoom-wrap {
  text-align: center; }
  .pswp__zoom-wrap:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }

.wrapper {
  line-height: 0;
  width: 100%;
  max-width: 900px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  width: 100%; }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

video {
  width: 100% !important;
  height: auto !important; }

.leftpanel {
  max-width: 30vw;
  display: block;
  float: left;
  padding-right: 54px;
  position: sticky;
  top: 1rem;
  height: calc(100vh - 2rem);
  overflow-y: auto;
  padding-left: 16px;
  margin-left: -16px;
  transition: all ease 500ms; }
  .leftpanel li {
    list-style: none;
    padding-left: 16px; }
  .leftpanel__section--active > a, .leftpanel__section--active .active-mark {
    color: #433b9b;
    font-size: 0.875rem; }
  .leftpanel__section--active > a:not(.chevron) {
    width: calc(100% - 8px); }
  .leftpanel__section--active > .sub-menu > li {
    width: calc(100% - 8px); }
    .leftpanel__section--active > .sub-menu > li > a {
      width: calc(100% - 16px); }
  .leftpanel__section a:not(.chevron) {
    width: calc(100% - 8px); }
  .leftpanel__section a.chevron + a + .sub-menu > li:hover {
    background: #e8e8f9;
    border-radius: 8px; }
  .leftpanel__section a.chevron + a + ul > li a {
    width: calc(100% - 17px); }
  .leftpanel a {
    display: inline-block;
    padding: 4px 0 4px 8px;
    border-radius: 8px; }
    .leftpanel a:hover {
      background-color: #e8e8f9;
      color: #1a1a1a;
      text-decoration: none;
      cursor: pointer; }
  @media (max-width: 1024px) {
    .leftpanel {
      padding: 0 2rem; }
      section > .leftpanel > ul {
        padding-left: 0; } }
  .leftpanel .sub-menu {
    padding-left: 0; }

@media (max-width: 768px) {
  .leftpanel {
    display: none; } }

span.active-mark {
  color: #433b9b;
  font-size: 0.875rem; }

#overlay .leftpanel {
  width: auto;
  display: block;
  float: left;
  height: auto;
  font-size: 0.875rem;
  padding: 0 2rem;
  max-width: 100%; }
  #overlay .leftpanel li {
    list-style: none; }
  #overlay .leftpanel__section--active > a, #overlay .leftpanel__section--active .active-mark {
    color: #ff4b1f;
    font-size: 0.875rem; }

.leftpanel a.chevron {
  margin-left: -38px;
  margin-right: 8px;
  text-align: center;
  border-radius: 3px;
  padding: 4px 6px;
  vertical-align: top;
  display: inline-block; }

.leftpanel a.chevron:hover {
  background: #EFEFFB; }

.leftpanel__section--active > a, .leftpanel__section--active .active-mark, .leftpanel__section--active .active-mark + strong {
  color: #433b9b; }
  .leftpanel__section--active > a:hover, .leftpanel__section--active .active-mark:hover, .leftpanel__section--active .active-mark + strong:hover {
    color: #1a1a1a; }

.leftpanel > ul {
  padding-left: 0px; }

.leftpanel > ul > li.top-section {
  border-radius: 8px;
  padding: 4px 0 4px 8px;
  color: #404040;
  text-transform: uppercase;
  font-weight: 600; }
  .leftpanel > ul > li.top-section > a {
    font-weight: bold;
    padding: 4px 0 4px 16px;
    position: relative;
    margin-left: -16px; }
    .leftpanel > ul > li.top-section > a:hover {
      background: none; }
  .leftpanel > ul > li.top-section:hover {
    text-decoration: none;
    background: #e8e8f9; }

li.leftpanel__section--active.long-menu > a.chevron + a:not(.chevron) {
  width: calc(100% - 8px);
  margin-left: -4px; }
  li.leftpanel__section--active.long-menu > a.chevron + a:not(.chevron) + .sub-menu > li:hover {
    background-color: #e8e8f9;
    border-radius: 8px;
    width: calc(100% - 16px);
    width: calc(100% - 16px); }

li.long-menu:hover {
  background: #f7f7fd;
  background-clip: content-box; }

.section-row {
  padding: 0 2rem; }

ak-grid {
  max-width: 75rem; }

.column-content {
  padding: 0 10px; }
  @media (min-width: 1440px) {
    .column-content {
      padding-right: 64px; } }

section.main .main-inner {
  max-width: 95vw;
  margin-right: auto;
  margin-left: auto; }

section.main .main-content {
  padding: 2rem 0; }
  section.main .main-content img {
    width: 100%; }

@media (min-width: 1921px) {
  section.main {
    width: 1920px;
    margin-left: auto;
    margin-right: auto; } }

.category, .version-wrapper {
  float: left;
  cursor: pointer;
  margin-right: 24px;
  padding: 32px 0; }
  .category__item, .category__item--active {
    color: #737373;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    width: 250px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8e8f9;
    border-radius: 8px; }
  @media (min-width: 769px) and (max-width: 1024px) {
    .category__item, .category__item--active {
      width: 200px; } }
  @media (min-width: 361px) and (max-width: 768px) {
    .category__item, .category__item--active {
      width: 190px; } }
    .category__item--active {
      color: #1a1a1a;
      font-family: Montserrat;
      font-style: normal;
      font-weight: 600;
      font-size: 16px;
      line-height: 20px;
      border: 2px solid #8686e0; }
  @media (max-width: 767px) {
    .category, .version-wrapper {
      float: none;
      padding: 8px 0;
      margin: 0 8px; }
      .category__item, .category__item--active {
        width: auto; } }
  @media (max-width: 1023px) {
    .category__anchor, .category__anchor--active {
      display: none; } }
  .category__anchor path, .category__anchor--active path {
    fill: #e8e8f9; }
  .category__anchor--active path {
    fill: #8686e0; }
  .category:hover .category__item, .version-wrapper:hover .category__item, .category:hover .category__item--active, .version-wrapper:hover .category__item--active {
    border: 2px solid #cacaf9;
    color: #1a1a1a;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px; }
    .category:hover .category__item--active, .version-wrapper:hover .category__item--active {
      border: 2px solid #8686e0; }
  .category:hover .category__anchor path, .version-wrapper:hover .category__anchor path, .category:hover .category__anchor--active path, .version-wrapper:hover .category__anchor--active path {
    fill: #cacaf9; }
  .category:hover .category__anchor--active path, .version-wrapper:hover .category__anchor--active path {
    fill: #8686e0; }

@keyframes slideInAnimation {
  0% {
    max-height: 0;
    visibility: hidden;
    min-height: 0;
    overflow: hidden; }
  99% {
    overflow: hidden; }
  100% {
    max-height: 100%;
    overflow: initial; } }

@keyframes slideOutAnimation {
  0% {
    max-height: 100%; }
  80% {
    visibility: hidden; }
  100% {
    max-height: 0;
    min-height: 0;
    visibility: hidden;
    display: none; } }

.version-wrapper__label {
  float: left;
  color: #737373;
  justify-content: center;
  align-items: center;
  padding: 15px;
  display: flex;
  width: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #1a1a1a;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  border: 2px solid #8686e0;
  min-height: 18px; }
  .version-wrapper__label .placeholder label {
    font-weight: bold; }
  @media (max-width: 767px) {
    .version-wrapper__label {
      float: none;
      width: auto !important; } }

.version-wrapper__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-bottom: 2px solid #8686e0;
  border-left: 2px solid #8686e0;
  border-right: 2px solid #8686e0;
  width: 90px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  margin-top: 45px;
  background-color: white;
  padding-bottom: 5px;
  position: absolute;
  align-items: center; }
  .version-wrapper__list.open {
    animation: 1s slideInAnimation forwards;
    z-index: 100; }
  .version-wrapper__list.close {
    display: none;
    animation: 1s slideOutAnimation forwards; }
  @media (max-width: 767px) {
    .version-wrapper__list {
      position: relative;
      width: auto;
      margin-top: -5px; } }
  .version-wrapper__list__item {
    color: #1a1a1a;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px; }
    .version-wrapper__list__item > h5 {
      padding: 10px 0;
      font-weight: normal; }
      .version-wrapper__list__item > h5:hover {
        color: #737373; }

header.top-bar {
  background-color: #8686e0;
  box-sizing: border-box;
  color: #fff; }
  header.top-bar .top-bar-inner {
    max-width: 95vw;
    margin-right: auto;
    margin-left: auto; }
  header.top-bar .top-bar-row {
    box-sizing: border-box;
    min-height: 80px;
    display: flex;
    align-items: center;
    width: 100%; }
  header.top-bar .top-bar-items {
    box-sizing: border-box;
    display: flex;
    align-items: baseline;
    width: 100%;
    line-height: 25px; }
    header.top-bar .top-bar-items > :first-child {
      flex: 1; }
    header.top-bar .top-bar-items > :nth-child(2) {
      flex: 2;
      margin-left: 5px; }
    header.top-bar .top-bar-items .apps-link-wrapper {
      display: flex;
      flex: 1;
      justify-content: flex-end; }
      header.top-bar .top-bar-items .apps-link-wrapper .apps-link {
        white-space: nowrap;
        margin-right: 2rem; }
  header.top-bar img {
    height: 25px; }
  header.top-bar .container {
    padding: 0 10px; }
  header.top-bar a {
    color: inherit; }
  header.top-bar a:hover {
    color: inherit; }

html, body {
  height: 100%;
  margin: 0; }

body {
  display: flex;
  flex-direction: column; }

.footer {
  flex-shrink: 0;
  display: flex;
  margin-top: auto;
  padding: 40px 0;
  color: #1a1a1a;
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 20px; }

@media (max-width: 1024px) and (min-width: 769px) {
  .footer {
    padding: 25px 0; } }
  @media (max-width: 767px) {
    .footer {
      padding: 16px;
      flex-direction: column; } }
  .footer__item {
    margin-left: 56px; }
    @media (max-width: 767px) {
      .footer__item {
        margin-left: 16px;
        margin: 8px 0;
        flex-direction: column; } }
  @media (min-width: 1921px) {
    .footer {
      width: 1920px;
      margin-left: auto;
      margin-right: auto; } }

.search {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  background: #fff;
  overflow: hidden;
  height: 100%;
  overflow-y: auto; }
  .search__input-container {
    height: 120px;
    background: #FFFFFF;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 16px rgba(27, 20, 99, 0.08); }
    .search__input-container > .aa-Autocomplete {
      margin: 28px 0;
      width: 832px;
      height: 64px;
      box-sizing: border-box;
      border-radius: 8px;
      outline: none;
      font-family: Montserrat;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.04em;
      color: #1A1A1A;
      display: flex;
      align-items: center; }
  @media (max-width: 1023px) and (min-width: 768px) {
    .search__input-container > .aa-Autocomplete {
      width: calc(100% - 112px);
      margin: 28px 56px; } }
      @media (max-width: 1919px) {
        .search__input-container > .aa-Autocomplete {
          margin: 28px 16vw 28px 24px !important; } }
      @media (max-width: 767px) {
        .search__input-container > .aa-Autocomplete {
          width: calc(100% - 48px); } }
      .search__input-container > .aa-Autocomplete > #search-icon {
        margin-left: 24px;
        display: block; }
      .search__input-container > .aa-Autocomplete > input {
        outline: none !important;
        width: 100%;
        -webkit-background-clip: text; }
      .search__input-container > .aa-Autocomplete .aa-InputWrapperPrefix {
        height: 50px; }
      .search__input-container > .aa-Autocomplete > .aa-Form {
        height: 64px;
        border: 1px solid #AAB4BF; }
      .search__input-container > .aa-Autocomplete .aa-results {
        color: #737373;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 16px; }
    .search__input-container .aa-List {
      height: 64px;
      border: 1px solid #AAB4BF; }

.search-results__empty-state {
  background: url("/support/images/icons/planets-empty-state.svg") no-repeat;
  background-position: top center;
  padding-top: calc(208px - 48px);
  margin-top: 48px;
  text-align: center; }
  @media (max-width: 768px) {
    .search-results__empty-state {
      background: none; } }

.aa-Panel {
  visibility: inherit;
  display: flex;
  flex-direction: column;
  align-self: center;
  top: 120px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  margin: 0 !important;
  box-shadow: inset 0px 4px 16px rgba(27, 20, 99, 0.08) !important;
  height: calc(100vh - 120px) !important; }

@media (max-width: 1023px) and (min-width: 768px) {
  .aa-Panel {
    margin: 28px 56px; } }
  @media (max-width: 767px) {
    .aa-Panel {
      margin: 28px 24px; } }
  .aa-Panel .aa-PanelLayout {
    max-height: 100vh !important;
    padding: 0 calc(50vw - 416px) !important; }
  .aa-Panel .aa-ItemContent mark {
    font-weight: 700 !important; }
  .aa-Panel .aa-Source {
    border-bottom: none; }
    .aa-Panel .aa-Source .search-results-counter {
      color: #737373;
      letter-spacing: 0.02em;
      padding-top: 32px;
      padding-bottom: calc(32px - 12px); }
    .aa-Panel .aa-Source .aa-ItemWrapper > .aa-ItemContent {
      list-style: none;
      text-decoration: none !important;
      width: 100%;
      display: inline-block;
      padding: 14px; }
      .aa-Panel .aa-Source .aa-ItemWrapper > .aa-ItemContent .aa-ItemContentTitle {
        font-size: 1.1em;
        margin-bottom: 10px;
        display: inline-block;
        color: #433B9B; }
      .aa-Panel .aa-Source .aa-ItemWrapper > .aa-ItemContent .aa-ItemContentSubTitle {
        display: inline-block;
        margin: 0 0.5em 0 0;
        max-width: 100%;
        overflow: hidden;
        padding: 0;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        font-style: italic;
        font-weight: normal;
        font-size: 14px;
        line-height: 17px;
        letter-spacing: 0.04em;
        color: #404040; }

@media (max-width: 1023px) and (min-width: 768px) {
  .aa-Panel .aa-Source .aa-ItemWrapper > .aa-ItemContent .aa-ItemContentSubTitle {
    max-width: calc(100% - 112px); } }
        @media (max-width: 767px) {
          .aa-Panel .aa-Source .aa-ItemWrapper > .aa-ItemContent .aa-ItemContentSubTitle {
            max-width: calc(100% - 48px); } }
        .aa-Panel .aa-Source .aa-ItemWrapper > .aa-ItemContent .aa-ItemContentSubTitle > b {
          font-style: italic;
          font-weight: 600 !important;
          font-size: 14px;
          letter-spacing: 0.04em; }
    .aa-Panel .aa-Source .aa-ItemWrapper:nth-of-type(2n+2) {
      background: white; }
    .aa-Panel .aa-Source .aa-ItemWrapper:hover > li, .aa-Panel .aa-Source .aa-ItemWrapper:focus > li {
      outline: 0;
      background-color: #F5F7FA;
      color: #fff; }

.separator {
  border-bottom: 1px solid #ddd; }

.horizontal-menu-container .horizontal-menu-container-inner {
  max-width: 95vw;
  margin-right: auto;
  margin-left: auto; }

.horizontal-menu-container .horizontal-menu .hosting-description {
  font-weight: 600;
  font-size: 1.2em;
  padding-top: 5px; }
  .horizontal-menu-container .horizontal-menu .hosting-description .hosting-word {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.6em;
    line-height: 0.6em; }

.horizontal-menu-container .horizontal-menu .row {
  line-height: 30px; }

.horizontal-menu-container .horizontal-menu ul.nav {
  display: flex;
  list-style-type: none;
  padding: 0;
  font-size: 1.2em; }
  .horizontal-menu-container .horizontal-menu ul.nav li {
    margin: 0 10px;
    padding: 10px 0; }
    .horizontal-menu-container .horizontal-menu ul.nav li:first-child {
      margin-left: 0; }
    .horizontal-menu-container .horizontal-menu ul.nav li.active {
      font-weight: 600;
      border-bottom: 2px solid #8686e0;
      padding-bottom: 8px; }

@media (min-width: 1921px) {
  .horizontal-menu-container {
    width: 1920px;
    margin-left: auto;
    margin-right: auto; } }

section.article {
  padding: 20px 0 40px; }
  section.article h1 {
    margin-top: 20px; }
  section.article img {
    width: 100%; }
  section.article table td, section.article table th {
    white-space: normal;
    word-wrap: break-word; }
  section.article .highlight {
    overflow: auto;
    margin-top: 10px;
    padding: 10px;
    word-wrap: normal; }
  section.article .last-updated {
    color: #666; }

@media (max-width: 768px) {
  section.article {
    width: 100%; } }

.icon {
  width: auto !important; }

#addon-list {
  padding: 3rem 0; }
  #addon-list header {
    margin-bottom: 40px; }
    #addon-list header #title {
      text-align: center;
      font-size: 2.8em; }
  #addon-list h2.hosting {
    margin-left: auto;
    margin-right: auto;
    width: 10rem;
    text-transform: uppercase;
    font-size: 1.428571428571429em; }
  #addon-list p.subtitle {
    margin: 0; }
  #addon-list li {
    margin-bottom: 0.8rem; }
  #addon-list a {
    font-size: 1.142em; }
  #addon-list .col ul {
    margin-left: auto;
    margin-right: auto;
    width: 20rem;
    list-style-type: none; }

#contents-list {
  font-size: 0.875em;
  font-weight: 400; }
  #contents-list ul {
    list-style-type: none;
    padding-left: 0; }
    #contents-list ul li {
      margin-bottom: 10px; }
      #contents-list ul li a {
        display: list-item;
        text-decoration: none;
        color: #000; }
        #contents-list ul li a:hover {
          color: #8686e0; }
    #contents-list ul li.active a {
      color: #8686e0;
      font-weight: 700; }

.responsive {
  clear: both;
  padding: 0;
  margin: 0; }
  .responsive .col {
    display: block;
    float: left; }
    .responsive .col .content {
      padding: 0 2rem; }
  .responsive .col-3 {
    width: 25%; }
  .responsive .col-9 {
    width: 75%; }
  .responsive .col-10 {
    width: 100%; }
  .responsive .col-1-2, .responsive .col-2-2, .responsive .col-1-3, .responsive .col-2-3, .responsive .col-3-3 {
    margin-bottom: 1.25rem; }
  @media screen and (min-width: 50rem) {
    .responsive .col-3-3 {
      width: 100%;
      margin-bottom: 1.25rem; }
    .responsive .col-2-3 {
      width: 66.66%;
      margin-bottom: 1.25rem; }
    .responsive .col-1-3 {
      width: 33.33%;
      margin-bottom: 1.25rem; }
    .responsive .col-2-2 {
      width: 100%;
      margin-bottom: 1.25rem; }
    .responsive .col-1-2 {
      width: 50%;
      margin-bottom: 1.25rem; } }

.group:before,
.group:after {
  content: "";
  display: table; }

.group:after {
  clear: both; }

.group {
  zoom: 1;
  /* For IE 6/7 */ }

.main-panel {
  display: flex; }
  .main-panel h1, .main-panel h2, .main-panel h3, .main-panel h4 {
    color: #1a1a1a;
    font-weight: 600;
    font-style: normal; }
  .main-panel h1 {
    font-size: 42px;
    line-height: 51px; }
  .main-panel h2 {
    margin-top: 40px;
    font-size: 33px;
    line-height: 40px; }
  .main-panel h3 {
    font-size: 26px;
    line-height: 32px; }
  .main-panel h4 {
    color: #575757;
    font-size: 20px; }
  .main-panel p {
    color: #737373;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.04em; }
  .main-panel strong {
    color: #575757; }
  .main-panel a strong {
    color: #8686e0; }
  .main-panel a strong:hover {
    color: #433b9b; }
  .main-panel a {
    font-weight: 400; }
  .main-panel li {
    color: #575757; }
  .main-panel ul {
    padding-left: 8px; }
  .main-panel figure {
    margin-inline-start: 0px;
    margin-inline-end: 0px; }
  .main-panel__content {
    flex: 3; }
  .main-panel__leftpanel {
    flex: 1; }
  .main-panel ul > li::before {
    color: #1a1a1a;
    font-size: 0.7em; }
  .main-panel ol {
    font-size: 16px;
    font-weight: 300;
    color: #575757;
    padding-left: 22px;
    line-height: 28px; }

.warning {
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  margin: 24px 0; }
  .warning--tip {
    border: 2px solid #07b807; }
    .warning--tip__icon {
      margin: 17px 0 0 17px;
      padding-right: 24px;
      height: 40px;
      padding-left: 24px; }
      @media (max-width: 1023px) {
        .warning--tip__icon {
          display: none; } }
    .warning--tip__description {
      margin: 16px; }
      .warning--tip__description__title {
        color: #07b807;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding-bottom: 16px; }
      .warning--tip__description__text {
        color: #1a1a1a;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px; }
        .warning--tip__description__text a:hover {
          font-weight: 600; }

.warning {
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  margin: 24px 0; }
  .warning--warning {
    border: 2px solid #F5A60A; }
    .warning--warning__icon {
      margin: 17px 0 0 17px;
      padding-right: 24px;
      height: 40px;
      padding-left: 24px; }
      @media (max-width: 1023px) {
        .warning--warning__icon {
          display: none; } }
    .warning--warning__description {
      margin: 16px; }
      .warning--warning__description__title {
        color: #F5A60A;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding-bottom: 16px; }
      .warning--warning__description__text {
        color: #1a1a1a;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px; }
        .warning--warning__description__text a:hover {
          font-weight: 600; }

.warning {
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  margin: 24px 0; }
  .warning--note {
    border: 2px solid #363636; }
    .warning--note__icon {
      margin: 17px 0 0 17px;
      padding-right: 24px;
      height: 40px;
      padding-left: 24px; }
      @media (max-width: 1023px) {
        .warning--note__icon {
          display: none; } }
    .warning--note__description {
      margin: 16px; }
      .warning--note__description__title {
        color: #363636;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding-bottom: 16px; }
      .warning--note__description__text {
        color: #1a1a1a;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px; }
        .warning--note__description__text a:hover {
          font-weight: 600; }

.warning {
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  margin: 24px 0; }
  .warning--info {
    border: 2px solid #116dd6; }
    .warning--info__icon {
      margin: 17px 0 0 17px;
      padding-right: 24px;
      height: 40px;
      padding-left: 24px; }
      @media (max-width: 1023px) {
        .warning--info__icon {
          display: none; } }
    .warning--info__description {
      margin: 16px; }
      .warning--info__description__title {
        color: #116dd6;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding-bottom: 16px; }
      .warning--info__description__text {
        color: #1a1a1a;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px; }
        .warning--info__description__text a:hover {
          font-weight: 600; }

.warning {
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  margin: 24px 0; }
  .warning--help {
    border: 2px solid #FF5630; }
    .warning--help__icon {
      margin: 17px 0 0 17px;
      padding-right: 24px;
      height: 40px;
      padding-left: 24px; }
      @media (max-width: 1023px) {
        .warning--help__icon {
          display: none; } }
    .warning--help__description {
      margin: 16px; }
      .warning--help__description__title {
        color: #FF5630;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding-bottom: 16px; }
      .warning--help__description__text {
        color: #1a1a1a;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px; }
        .warning--help__description__text a:hover {
          font-weight: 600; }

.warning {
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  margin: 24px 0; }
  .warning--example {
    border: 2px solid #7a13fd; }
    .warning--example__icon {
      margin: 17px 0 0 17px;
      padding-right: 24px;
      height: 40px;
      padding-left: 24px; }
      @media (max-width: 1023px) {
        .warning--example__icon {
          display: none; } }
    .warning--example__description {
      margin: 16px; }
      .warning--example__description__title {
        color: #7a13fd;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 0.04em;
        padding-bottom: 16px; }
      .warning--example__description__text {
        color: #1a1a1a;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 22px; }
        .warning--example__description__text a:hover {
          font-weight: 600; }

.newsletter-container {
  min-height: 200px;
  background-color: #37377f; }
  .newsletter-container .newsletter-container-inner {
    max-width: 95vw;
    margin-right: auto;
    margin-left: auto; }
  .newsletter-container .newsletter-panel-container {
    display: flex;
    justify-content: center; }
    .newsletter-container .newsletter-panel-container .newsletter-background {
      background: url("/support/images/envelope.png") no-repeat center -1px;
      background-size: auto 210px;
      min-height: 200px;
      margin-right: 20px;
      flex: 0 2 450px; }
  .newsletter-container .newsletter {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 0 2rem; }
    .newsletter-container .newsletter .header, .newsletter-container .newsletter .header-main, .newsletter-container .newsletter .header-menu {
      font-size: 2em;
      font-weight: 400;
      margin-bottom: 10px; }
    .newsletter-container .newsletter .description {
      margin-bottom: 20px; }
    .newsletter-container .newsletter .input-group #email {
      margin-right: 1em;
      margin-bottom: 1em;
      color: #37377f; }
    .newsletter-container .newsletter .input-group button {
      border-radius: 0;
      margin-bottom: 1em; }
      .newsletter-container .newsletter .input-group button:hover {
        color: #37377f; }

.events {
  min-height: calc(100% - 460px); }
  .events .promo-container {
    background: url("/support/images/baner_event.png") top center #E9E9E9;
    background-size: cover;
    height: 300px; }
    .events .promo-container .promo-container-inner {
      max-width: 95vw;
      margin-right: auto;
      margin-left: auto; }
    .events .promo-container .promo-row {
      display: flex;
      flex-direction: row; }
      .events .promo-container .promo-row .promo-left {
        box-sizing: border-box;
        flex: 1 2 30em;
        padding-left: 2rem; }
      .events .promo-container .promo-row .promo-right {
        box-sizing: border-box;
        flex: 1 1 30em;
        padding: 0 2rem; }
      .events .promo-container .promo-row .promo {
        max-width: 30em;
        color: rgba(255, 255, 255, 0.8);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left; }
        .events .promo-container .promo-row .promo h1 {
          color: #fff;
          letter-spacing: 0.05em;
          font-weight: 600; }
  .events .promoted {
    padding: 3rem 0;
    background-color: #efefef; }
    .events .promoted .event-promoted-content {
      max-width: 95vw;
      margin-right: auto;
      margin-left: auto; }
    .events .promoted img {
      max-width: 100%; }
  .events .upcoming {
    max-width: 95vw;
    margin-right: auto;
    margin-left: auto;
    padding: 3rem 0; }
  .events .archived {
    background-color: #efefef;
    padding: 3rem 0; }
    .events .archived .archived-content {
      max-width: 95vw;
      margin-right: auto;
      margin-left: auto; }
  .events header {
    text-transform: uppercase;
    color: #666;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 1rem; }
  .events .event .category, .events .event .version-wrapper {
    text-transform: uppercase;
    color: #8686e0;
    margin-bottom: 10px;
    font-weight: 700; }
  .events .event .country-flag {
    height: 2.4rem;
    margin-right: 10px; }
  .events .event .title {
    display: flex;
    align-items: center;
    margin-bottom: 20px; }
    .events .event .title a {
      color: #333; }
  .events .event .summary {
    margin-bottom: 10px; }

.event-details .question {
  color: #8686e0;
  text-transform: uppercase; }

.event-details .date {
  color: #333;
  margin-right: 20px; }

.single-event .single-event-inner {
  max-width: 95vw;
  margin-right: auto;
  margin-left: auto;
  padding: 3rem 0; }

.single-webinar .single-webinar-inner {
  max-width: 95vw;
  margin-right: auto;
  margin-left: auto;
  padding: 3rem 0; }

.single-webinar .webinar-video-container {
  margin-top: 3rem; }

.single-webinar .webinar-video {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 340px;
  margin-bottom: 3rem; }
  @media screen and (min-width: 40rem) {
    .single-webinar .webinar-video {
      width: 560px;
      height: 340px; } }
  @media screen and (min-width: 45rem) {
    .single-webinar .webinar-video {
      width: 640px;
      height: 385px; } }
  @media screen and (min-width: 60rem) {
    .single-webinar .webinar-video {
      width: 853px;
      height: 505px; } }

.webinars {
  min-height: calc(100% - 460px); }
  .webinars .promo-container {
    background: url("/support/images/baner_event-2.png") top center #E9E9E9;
    background-size: cover;
    height: 300px; }
    .webinars .promo-container .promo-content {
      max-width: 95vw;
      margin-right: auto;
      margin-left: auto; }
    .webinars .promo-container .promo-row {
      display: flex;
      flex-direction: row; }
      .webinars .promo-container .promo-row .promo-left {
        flex: 1 2 30em;
        padding-left: 2rem; }
      .webinars .promo-container .promo-row .promo-right {
        flex: 1 1 30em;
        padding-right: 2rem; }
    .webinars .promo-container .promo {
      align-self: center;
      height: 291px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-transform: uppercase;
      text-align: right;
      color: rgba(255, 255, 255, 0.8);
      max-width: 20em;
      margin-left: auto;
      margin-right: auto;
      letter-spacing: 0.05em; }
      .webinars .promo-container .promo h1 {
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.05em; }
  .webinars .incoming-container {
    background-color: #808080;
    color: #fff;
    text-align: center;
    padding: 3rem 0; }
    .webinars .incoming-container .title {
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase; }
    .webinars .incoming-container .date {
      font-weight: 600; }
    .webinars .incoming-container .incoming-content {
      max-width: 95vw;
      margin-right: auto;
      margin-left: auto; }
    .webinars .incoming-container .incoming {
      min-height: 14rem;
      display: flex;
      flex-direction: column;
      justify-content: center; }
  .webinars .form-container {
    border: 2px solid #fff;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 70%; }
    .webinars .form-container .input-group input {
      width: 100%;
      margin-bottom: 20px; }
    .webinars .form-container button.primary:hover {
      background-color: #fff; }
  .webinars .archived {
    max-width: 95vw;
    margin-right: auto;
    margin-left: auto;
    padding: 3rem 0; }
    .webinars .archived a[role="button"] {
      border-color: #5d5d5d;
      color: #5d5d5d; }
    .webinars .archived a[role="button"]:hover {
      background-color: #37377f;
      color: #fff; }
  .webinars .webinar {
    padding: 0 2rem;
    margin-bottom: 2.5rem; }
    .webinars .webinar .summary a {
      color: #333;
      text-transform: uppercase;
      font-weight: 600; }
    .webinars .webinar p {
      margin-bottom: 1.25rem; }

.main-header {
  height: 400px;
  background: url("/support/images/main_baner.png") no-repeat center center;
  background-size: auto; }
  .main-header .top-bar {
    background-color: transparent; }
  .main-header .promo-container {
    padding: 3rem 0 5rem; }
    .main-header .promo-container .promo-container-inner {
      max-width: 95vw;
      margin-right: auto;
      margin-left: auto; }
    .main-header .promo-container .header, .main-header .promo-container .header-main, .main-header .promo-container .header-menu {
      color: rgba(255, 255, 255, 0.9);
      width: 50%;
      text-align: center;
      text-transform: uppercase; }
      .main-header .promo-container .header .description, .main-header .promo-container .header-main .description, .main-header .promo-container .header-menu .description {
        display: inline-block;
        width: 70%;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 400;
        letter-spacing: 0.05em; }
      .main-header .promo-container .header .title, .main-header .promo-container .header-main .title, .main-header .promo-container .header-menu .title {
        text-transform: uppercase;
        font-size: 2em;
        font-weight: 500;
        letter-spacing: 0.03em;
        color: inherit; }

.home h1, .home h2, .home h3 {
  margin-bottom: 1rem;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.4; }

.home h1 {
  font-size: 1.8em; }

.home h2 {
  font-size: 1.4em; }

.home h3 {
  font-size: 1.2em; }

.home p {
  color: rgba(0, 0, 0, 0.6);
  margin: 0; }

.home .sections-container {
  padding: 3rem 0 1.75rem;
  max-width: 95vw;
  margin-right: auto;
  margin-left: auto; }

.home .content {
  padding: 0 2rem; }

.home .title a {
  color: inherit; }

.home .read-more {
  display: block;
  font-weight: 600; }

.home .items-container {
  padding: 2rem 0;
  background-color: #e4e4e4; }
  .home .items-container .items-content {
    max-width: 95vw;
    margin-right: auto;
    margin-left: auto; }
  .home .items-container .header, .home .items-container .header-main, .home .items-container .header-menu {
    text-align: center;
    margin-bottom: 2.5rem; }
    .home .items-container .header .description, .home .items-container .header-main .description, .home .items-container .header-menu .description {
      display: inline-block;
      color: inherit; }
    .home .items-container .header .title, .home .items-container .header-main .title, .home .items-container .header-menu .title {
      text-transform: uppercase;
      font-size: 1.8em; }
  .home .items-container .items {
    margin-bottom: 2.5rem; }
    .home .items-container .items .item {
      padding: 0 2rem;
      position: relative; }
      .home .items-container .items .item .item-icon {
        position: absolute;
        height: 50px; }
      .home .items-container .items .item .item-content {
        margin-left: 70px;
        margin-top: 0.5rem; }
      .home .items-container .items .item .summary {
        font-size: 1em;
        line-height: 1.4em; }

.home .icons-container {
  padding: 2rem 0; }
  .home .icons-container .icons-container-inner {
    max-width: 95vw;
    margin-right: auto;
    margin-left: auto; }
  .home .icons-container .header, .home .icons-container .header-main, .home .icons-container .header-menu {
    text-align: center; }
    .home .icons-container .header .title, .home .icons-container .header-main .title, .home .icons-container .header-menu .title {
      font-size: 1.8em;
      text-transform: uppercase; }
  .home .icons-container .icons {
    text-align: center; }
    .home .icons-container .icons .customer-icon {
      height: 40px;
      margin: 1rem; }

figure.pdf {
  display: inline-block;
  margin: 0 8px 0 0; }
  figure.pdf img {
    width: auto !important; }

header.promo {
  text-align: center;
  font-size: 16px;
  color: #ffffff; }
  header.promo .content {
    padding: 8px; }

.modal-form .row {
  margin-top: 1em; }

.modal-form .footer {
  margin: 20px 0; }

.modal-form input[type="checkbox"] {
  height: 0.8em;
  margin-right: 0.5em; }

.modal-form input[type="text"] {
  border: 1px solid #CCC;
  width: 100%; }

.modal-form .actions {
  display: flex;
  justify-content: flex-end; }
  .modal-form .actions button:not(:last-child) {
    margin-right: 1em; }

.modal-form label[for="agreement"] {
  font-size: 0.8em; }

.modal-form small {
  display: block;
  color: red; }

.code {
  background: rgba(247, 247, 253, 0.64); }

.code-toolbar {
  position: relative;
  /* Code blocks */
  /* Inline code */
  /* Separate line b/c rules are thrown out if selector is invalid.
      IE11 and old Edge versions don't support :focus-within. */ }
  .code-toolbar code[class*='language-'],
  .code-toolbar pre[class*='language-'] {
    color: black;
    background: none;
    white-space: pre-wrap;
    text-shadow: 0 1px white;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 1em;
    text-align: left;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none; }
  .code-toolbar pre[class*='language-']::-moz-selection,
  .code-toolbar pre[class*='language-'] ::-moz-selection,
  .code-toolbar code[class*='language-']::-moz-selection,
  .code-toolbar code[class*='language-'] ::-moz-selection {
    text-shadow: none;
    background: #b3d4fc; }
  .code-toolbar pre[class*='language-']::selection,
  .code-toolbar pre[class*='language-'] ::selection,
  .code-toolbar code[class*='language-']::selection,
  .code-toolbar code[class*='language-'] ::selection {
    text-shadow: none;
    background: #b3d4fc; }
  @media print {
    .code-toolbar code[class*='language-'],
    .code-toolbar pre[class*='language-'] {
      text-shadow: none; } }
  .code-toolbar pre[class*='language-'] {
    padding: 1em;
    margin: 0.5em 0;
    overflow: auto; }
  .code-toolbar :not(pre) > code[class*='language-'],
  .code-toolbar pre[class*='language-'] {
    background: #f5f2f0; }
  .code-toolbar :not(pre) > code[class*='language-'] {
    padding: 0.1em;
    border-radius: 0.3em;
    white-space: normal; }
  .code-toolbar .token.comment,
  .code-toolbar .token.prolog,
  .code-toolbar .token.doctype,
  .code-toolbar .token.cdata {
    color: slategray; }
  .code-toolbar .token.punctuation {
    color: #999; }
  .code-toolbar .token.namespace {
    opacity: 0.7; }
  .code-toolbar .token.property,
  .code-toolbar .token.tag,
  .code-toolbar .token.number,
  .code-toolbar .token.constant,
  .code-toolbar .token.symbol,
  .code-toolbar .token.deleted {
    color: #d83007; }
  .code-toolbar .token.boolean {
    color: #433b9b; }
  .code-toolbar .token.selector,
  .code-toolbar .token.attr-name,
  .code-toolbar .token.string,
  .code-toolbar .token.char,
  .code-toolbar .token.builtin,
  .code-toolbar .token.inserted {
    color: #cfa700; }
  .code-toolbar .token.operator,
  .code-toolbar .token.entity,
  .code-toolbar .token.url,
  .code-toolbar .language-css .token.string,
  .code-toolbar .style .token.string {
    color: #848484;
    background: rgba(255, 255, 255, 0.5); }
  .code-toolbar .token.atrule,
  .code-toolbar .token.attr-value,
  .code-toolbar .token.keyword {
    color: #07a; }
  .code-toolbar .token.function,
  .code-toolbar .token.class-name {
    color: #dd4a68; }
  .code-toolbar .token.regex,
  .code-toolbar .token.important,
  .code-toolbar .token.variable {
    color: #e90; }
  .code-toolbar .token.important,
  .code-toolbar .token.bold {
    font-weight: bold; }
  .code-toolbar .token.italic {
    font-style: italic; }
  .code-toolbar .token.entity {
    cursor: help; }
  .code-toolbar div.code-toolbar {
    position: relative; }
  .code-toolbar div.code-toolbar > .toolbar {
    position: absolute;
    top: 0.3em;
    right: 0.2em;
    transition: opacity 0.3s ease-in-out;
    opacity: 0; }
  .code-toolbar div.code-toolbar:hover > .toolbar {
    opacity: 1; }
  .code-toolbar div.code-toolbar:focus-within > .toolbar {
    opacity: 1; }
  .code-toolbar div.code-toolbar > .toolbar .toolbar-item {
    display: inline-block; }
  .code-toolbar div.code-toolbar > .toolbar a {
    cursor: pointer; }
  .code-toolbar div.code-toolbar > .toolbar button {
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    -webkit-user-select: none;
    /* for button */
    -moz-user-select: none;
    -ms-user-select: none; }
  .code-toolbar div.code-toolbar > .toolbar a,
  .code-toolbar div.code-toolbar > .toolbar button,
  .code-toolbar div.code-toolbar > .toolbar span {
    color: #bbb;
    font-size: 0.8em;
    padding: 0 0.5em;
    background: #f5f2f0;
    background: rgba(224, 224, 224, 0.2);
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
    border-radius: 0.5em; }
  .code-toolbar div.code-toolbar > .toolbar a:hover,
  .code-toolbar div.code-toolbar > .toolbar a:focus,
  .code-toolbar div.code-toolbar > .toolbar button:hover,
  .code-toolbar div.code-toolbar > .toolbar button:focus,
  .code-toolbar div.code-toolbar > .toolbar span:hover,
  .code-toolbar div.code-toolbar > .toolbar span:focus {
    color: inherit;
    text-decoration: none; }
  .code-toolbar pre[class*='language-'] {
    background: rgba(247, 247, 253, 0.64);
    border-radius: 8px; }
  .code-toolbar .toolbar {
    position: absolute;
    top: 16px;
    right: 16px;
    border-radius: 4px;
    color: #737373;
    background: #EDF0F4;
    cursor: pointer;
    transition: all 200ms ease; }
    .code-toolbar .toolbar:hover .copy {
      transform: translate(-10px, -100%); }
    .code-toolbar .toolbar:hover {
      color: gray; }
    .code-toolbar .toolbar button {
      border: 0 solid #EDF0F4;
      color: #737373;
      padding: 8px 16px; }

@media (max-width: 767px) {
  .code-toolbar code[class*='language-'],
  .code-toolbar pre[class*='language-'] {
    white-space: pre-wrap; } }

.header-collapse {
  display: none; }

.header, .header-main, .header-menu {
  /* Fixed position - sit on top of the page */
  top: 0;
  width: 100%;
  padding-bottom: 50px;
  color: white;
  background: url("/support/images/icons/blue-planet-with-stars.svg") no-repeat;
  background-position: center right calc(2.5vw + 2rem); }
  .header__description {
    cursor: auto; }
  .header__backto {
    cursor: pointer;
    margin-top: 48px;
    margin-left: calc(2.5vw + 4rem); }
    @media (min-width: 2000px) {
      .header__backto {
        margin-left: 2.5vw; } }
    .header__backto__icon {
      margin-right: 16px;
      height: 10px;
      padding-left: 16px;
      background: url("/support/images/icons/vector.svg") no-repeat; }
    .header__backto > a {
      color: #707070; }
    .header__backto > a:hover {
      background: transparent;
      text-decoration: none; }
  .header__home-title {
    display: flex;
    margin-top: 16px; }
    .header__home-title__line {
      margin-top: 40px;
      float: left;
      margin-right: 32px;
      height: 2px;
      padding-left: 2.5vw;
      background: url("/support/images/icons/line.png") no-repeat; }
      @media (min-width: 2000px) {
        .header__home-title__line {
          padding-left: 50px;
          margin-left: -50px; } }
    .header__home-title__text {
      color: #1a1a1a;
      font-family: Montserrat;
      font-style: normal;
      font-weight: normal;
      font-size: 56px;
      line-height: 76px;
      font-weight: 500; }
  .header__tabs, .header-menu__tabs {
    cursor: pointer;
    margin-top: 40px;
    margin-left: calc(2.5vw + 2rem);
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    @media (min-width: 2000px) {
      .header__tabs, .header-menu__tabs {
        margin-left: 2rem; } }
    .header__tabs__tab, .header__tabs__tab--active, .header-menu__tabs__tab--active, .header-menu__tabs__tab {
      color: #707070;
      font-family: Montserrat;
      font-style: normal;
      font-weight: normal;
      font-size: 14px;
      line-height: 24px;
      width: 240px;
      border: 1px solid #8686e0;
      border-radius: 8px;
      align-items: center;
      justify-content: center;
      max-width: 50%;
      padding: 16px 30px;
      display: flex;
      align-items: center;
      font-weight: 600; }
      .header__tabs__tab--active, .header-menu__tabs__tab--active {
        background-color: #f7f7fd;
        color: #1B1463;
        text-decoration-line: none; }
      .header__tabs__tab:hover, .header__tabs__tab--active:hover, .header-menu__tabs__tab--active:hover, .header-menu__tabs__tab:hover {
        text-decoration: none; }

@media (min-width: 769px) and (max-width: 1024px) {
  .header__home-title__text {
    width: 40%; } }
  @media (max-width: 768px) {
    .header, .header-main, .header-menu {
      background: none; } }
  @media (min-width: 2000px) {
    .header, .header-main, .header-menu {
      width: 1920px;
      margin-left: auto;
      margin-right: auto; } }

#tab-server, #tab-server-inactive {
  padding-right: 16px;
  height: 24px;
  padding-left: 26px;
  background: url("/support/images/icons/server.svg") no-repeat; }

#tab-server-inactive {
  background: url("/support/images/icons/server-inactive.svg") no-repeat; }

#tab-cloud, #tab-cloud-inactive {
  padding-right: 24px;
  height: 14px;
  padding-left: 24px;
  background: url("/support/images/icons/cloud.svg") no-repeat; }

#tab-cloud-inactive {
  background: url("/support/images/icons/cloud-inactive.svg") no-repeat; }

.header__tabs__tab:first-of-type, .header__tabs__tab--active:first-of-type, .header-menu__tabs__tab--active:first-of-type, .header-menu__tabs__tab:first-of-type {
  border-radius: 8px 0 0 8px; }

.header__tabs__tab:last-of-type, .header__tabs__tab--active:last-of-type, .header-menu__tabs__tab--active:last-of-type, .header-menu__tabs__tab:last-of-type {
  border-radius: 0 8px 8px 0; }
  @media (min-width: 769px) {
    .header__tabs__tab:last-of-type, .header__tabs__tab--active:last-of-type, .header-menu__tabs__tab--active:last-of-type, .header-menu__tabs__tab:last-of-type {
      border-left: none; } }

@media (max-width: 767px) {
  .header__tabs, .header-menu__tabs {
    display: block;
    margin: 40px calc(2.5vw + 2rem); }
    .header__tabs__tab, .header__tabs__tab--active, .header-menu__tabs__tab--active, .header-menu__tabs__tab {
      max-width: 100%;
      width: inherit; }
  .header__backto {
    margin-left: calc(2.5vw + 2rem); }
  .header__home-title {
    margin-left: 16px; }
    .header__home-title__line {
      display: none; }
  .header__tabs__tab:first-of-type, .header__tabs__tab--active:first-of-type, .header-menu__tabs__tab--active:first-of-type, .header-menu__tabs__tab:first-of-type {
    border-radius: 8px 8px 0 0;
    border-bottom: none; }
  .header__tabs__tab:last-of-type, .header__tabs__tab--active:last-of-type, .header-menu__tabs__tab--active:last-of-type, .header-menu__tabs__tab:last-of-type {
    border-radius: 0 0 8px 8px; } }
  @media (max-width: 767px) and (min-width: 769px) {
    .header__tabs__tab:last-of-type, .header__tabs__tab--active:last-of-type, .header-menu__tabs__tab--active:last-of-type, .header-menu__tabs__tab:last-of-type {
      border-bottom: none; } }

@media (min-width: 1024px) {
  .scroll-up .header-collapse {
    position: fixed;
    width: 100%;
    display: flex;
    max-height: 20vh;
    top: 0;
    z-index: 1;
    background-color: #fff;
    transition: visibility 0s linear 0.33s, opacity 0.66s linear; }
    .scroll-up .header-collapse__home-title {
      flex: 50%;
      margin-top: 32px;
      margin-bottom: 32px; }
      .scroll-up .header-collapse__home-title__line {
        margin-top: 22px;
        height: 100%;
        float: left;
        margin-left: 48px;
        margin-right: 32px;
        padding-left: 32px;
        background: url("/support/images/icons/line.png") no-repeat; } }
      @media (min-width: 1024px) and (max-width: 1440px) {
        .scroll-up .header-collapse__home-title__line {
          margin-left: 40px;
          margin-right: 32px;
          padding-left: 24px; } }
      @media (min-width: 1024px) and (max-width: 1024px) {
        .scroll-up .header-collapse__home-title__line {
          margin-left: 40px;
          margin-right: 24px;
          padding-left: 16px; } }

@media (min-width: 1024px) {
      .scroll-up .header-collapse__home-title__text {
        color: #1a1a1a;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 28px;
        line-height: 44px;
        font-weight: 600; }
    .scroll-up .header-collapse__tabs {
      cursor: pointer;
      margin-top: 32px;
      margin-right: 112px;
      margin-bottom: 36px;
      max-height: 60px;
      display: inline-flex;
      align-items: center;
      justify-content: center; }
      .scroll-up .header-collapse__tabs__tab, .scroll-up .header-collapse__tabs__tab--active {
        border: 1px solid #8686e0;
        border-radius: 8px;
        width: 240px;
        text-decoration-line: none;
        font-weight: 600;
        align-items: center;
        justify-content: center;
        max-width: 50%;
        height: 50px;
        padding: 0 30px;
        display: flex;
        align-items: center;
        color: #707070;
        font-family: Montserrat;
        font-style: normal;
        font-weight: normal;
        font-size: 14px;
        line-height: 24px; } }
      @media (min-width: 1024px) and (max-width: 1440px) {
        .scroll-up .header-collapse__tabs__tab, .scroll-up .header-collapse__tabs__tab--active {
          width: 110px; } }
      @media (min-width: 1024px) and (max-width: 1024px) {
        .scroll-up .header-collapse__tabs__tab, .scroll-up .header-collapse__tabs__tab--active {
          width: 60px; } }

@media (min-width: 1024px) {
        .scroll-up .header-collapse__tabs__tab--active {
          background-color: #f7f7fd; }
        .scroll-up .header-collapse__tabs__tab__text {
          margin: 0; } }
        @media (min-width: 1024px) and (max-width: 1440px) {
          .scroll-up .header-collapse__tabs__tab__text {
            display: none; } }

@media (min-width: 1024px) and (max-width: 1440px) {
  .scroll-up #tab-server, .scroll-up #tab-server-inactive {
    padding-right: 0; } }

@media (min-width: 1024px) and (max-width: 1440px) {
  .scroll-up #tab-cloud, .scroll-up #tab-cloud-inactive {
    padding-right: 0; } }

@media (min-width: 1024px) {
  .scroll-up .header-collapse__tabs__tab:first-of-type, .scroll-up .header-collapse__tabs__tab--active:first-of-type {
    margin-left: auto;
    border-radius: 8px 0 0 8px; }
  .scroll-up .header-collapse__tabs__tab:last-of-type, .scroll-up .header-collapse__tabs__tab--active:last-of-type {
    border-radius: 0 8px 8px 0; } }
  @media (min-width: 1024px) and (min-width: 769px) {
    .scroll-up .header-collapse__tabs__tab:last-of-type, .scroll-up .header-collapse__tabs__tab--active:last-of-type {
      border-left: none; } }

@media (min-width: 1024px) {
  .scroll-up .leftpanel.main-panel__leftpanel {
    top: 8rem;
    height: calc(100vh - 9rem); } }

.header-main {
  background: url("/support/images/icons/blue-planet-with-stars.svg") no-repeat;
  background-position: center right calc(2.5vw + 2rem); }

@media (min-width: 1024px) and (max-width: 1440px) {
  .header-main {
    flex: 1 0 auto; }
    .header-main .header__backto {
      max-width: 35vw; }
    .header-main .header__home-title__text {
      max-width: 40vw; }
    .header-main .header__description {
      max-width: 35vw; } }

@media (min-width: 768px) and (max-width: 1023px) {
  .header-main {
    flex: 1 0 auto; }
    .header-main .header__home-title__text {
      width: auto; }
    .header-main .header__description {
      max-width: 60vw;
      margin: 48px auto; } }
  @media (max-width: 1023px) {
    .header-main {
      background: none; } }
  @media (max-width: 767px) {
    .header-main .header__logo {
      max-width: 115px; }
    .header-main .header__description {
      max-width: 90vw;
      margin: 48px 24px; } }

@media (min-width: 1441px) {
  .legal-page + section.main {
    max-width: 832px;
    margin-left: auto;
    margin-right: auto; } }

section.main {
  top: -5vh;
  background: white; }

@media (max-width: 767px) {
  body {
    width: auto; } }

@media (max-width: 768px) {
  .overlay-menu {
    top: 0;
    bottom: 0;
    width: 100%;
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden; }
  .overlay-menu > .separator {
    margin: 20px 0; }
  .container {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 40%;
    left: 0;
    margin: 0 auto; }
  .container p {
    font-size: 20px; }
  .container a {
    display: inline-block;
    position: relative;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    overflow: hidden;
    top: 5px; }
  .container a:after {
    content: '';
    position: absolute;
    background: #FFFFFF;
    height: 2px;
    width: 0%;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    transition: .35s ease; }
  .container a:hover:after, .container a:focus:after, .container a:active:after {
    width: 100%; }
  .header__side-menu {
    position: -webkit-sticky;
    position: sticky;
    margin-left: 16px;
    margin-right: auto;
    padding-bottom: 40px;
    margin-top: 24px;
    width: 30px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
    padding-top: 8px; }
  .header__side-menu:hover {
    opacity: .98; }
  .header__side-menu.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #1A1A1A; }
  .header__side-menu.active .middle {
    opacity: 0;
    background: #1A1A1A; }
  .header__side-menu.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #1A1A1A; }
  .header__side-menu span {
    background: #1A1A1A;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer; }
  .header__side-menu span:nth-of-type(2) {
    top: 11px; }
  .header__side-menu span:nth-of-type(3) {
    top: 22px; }
  .overlay {
    position: fixed;
    background: #FFFFFF;
    display: block !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden; }
  .overlay.open {
    opacity: .98;
    display: block;
    visibility: visible;
    height: 100%;
    z-index: 1; }
  .overlay.open .navbar {
    display: block; }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 100%; }
    100% {
      opacity: 1;
      left: 0; } } }

.overlay {
  display: none; }

.header-menu__tabs {
  display: flex;
  flex-direction: row;
  border: none; }
  .header-menu__tabs__tab {
    flex: 1; }
    .header-menu__tabs__tab--active {
      flex: 1; }
    @media (max-width: 767px) {
      .header-menu__tabs__tab__icon {
        display: none; } }
    .header-menu__tabs__tab__text {
      font-weight: 600 !important;
      margin: 0;
      font-size: 0.8rem; }
  .header-menu__tabs > a:first-of-type {
    border-radius: 8px 0 0 8px;
    border: 2px solid #8686e0;
    height: 3vh; }
  .header-menu__tabs > a:last-of-type {
    border-radius: 0 8px 8px 0;
    border-top: 2px solid #8686e0;
    border-right: 2px solid #8686e0;
    border-bottom: 2px solid #8686e0;
    height: 3vh; }

#portfolio {
  flex: 1 0 auto; }

.header__description {
  margin-top: 48px;
  margin-left: 145px;
  max-width: 40vw;
  color: #575757;
  font-family: Montserrat;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 26px; }

.header__backto {
  cursor: auto;
  color: #707070;
  font-weight: 500; }

@media (min-width: 2000px) {
  .navbar {
    width: 1920px;
    margin-left: auto;
    margin-right: auto; } }

.navbar__logo {
  display: block;
  margin-left: calc(2.5vw + 2rem);
  margin-top: 16px;
  max-width: 158px;
  z-index: 1000; }
  @media (min-width: 2000px) {
    .navbar__logo {
      margin-left: 2rem; } }

@media (min-width: 769px) and (max-width: 1023px) {
  .navbar__logo {
    margin-left: calc(2.5vw + 2rem); } }
  @media (max-width: 767px) {
    .navbar__logo {
      margin-left: 60px;
      margin-top: 8px; } }

@media (max-width: 768px) {
  .navbar {
    margin-top: -72px; } }

@media (min-width: 769px) {
  .navbar__nav {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%); } }

@media (min-width: 769px) and (max-width: 1023px) {
  .navbar__nav {
    left: 60%; } }

.navbar__nav a {
  color: #1a1a1a !important;
  text-decoration: none;
  user-select: none; }

.navbar__nav a:hover {
  cursor: pointer; }

.navbar__nav > ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  white-space: nowrap; }

@media (max-width: 768px) {
  .navbar__nav {
    display: none; }
  .overlay .navbar__nav {
    display: block;
    max-width: 95vw;
    margin-right: auto;
    margin-left: auto;
    margin-top: 32px; } }

.navbar__item {
  margin: 0;
  position: relative; }
  @media (min-width: 769px) {
    .navbar__item {
      display: inline-block; } }
  @media (max-width: 768px) {
    .navbar__item {
      margin: 0 2rem; }
      .navbar__item:not(:last-child):not(.open) {
        border-bottom: 2px solid #f7f7fd; } }
  .navbar__item > a {
    font-weight: 500;
    transition: .3s ease-in-out;
    display: inline-block;
    padding: 32px; }
    @media (max-width: 1023px) {
      .navbar__item > a {
        padding: 32px 18px; } }
    @media (max-width: 768px) {
      .navbar__item > a {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        display: flex;
        justify-content: space-between; } }
  .navbar__item > a > img {
    transition: transform .3s;
    margin: 0 0 1px 4px; }
  @media (min-width: 769px) {
    .navbar__item:hover > a {
      box-shadow: 0 12px 48px rgba(27, 29, 31, 0.06), 0 6px 12px rgba(9, 9, 10, 0.02);
      background-color: #FFFFFF; } }

.navbar__search {
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #AAB4BF;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(-50%);
  margin-top: 20px;
  cursor: pointer; }
  @media (min-width: 1920px) {
    .navbar__search {
      margin-right: calc((100vw - 1920px)/2); } }

@media (min-width: 768px) and (max-width: 1919px) {
  .navbar__search {
    margin-right: calc(2.5vw + 2rem - 28px); } }
  @media (max-width: 767px) {
    .navbar__search {
      width: 48px;
      height: 48px;
      margin-top: 8px;
      margin-right: -12px; } }

.navbar__dropdown {
  display: none;
  list-style: none;
  margin: 0 !important;
  padding: 4px 0;
  overflow: hidden; }
  @media (min-width: 769px) {
    .navbar__dropdown {
      position: absolute;
      transform: translateX(-50%);
      top: 100%;
      left: 50%;
      min-width: 300px;
      box-shadow: 0 18px 19px 1px rgba(27, 29, 31, 0.06);
      border-radius: 16px;
      padding: 4px 8px;
      z-index: 100;
      background-color: #FFFFFF; } }

.navbar__nested-item > a {
  display: block;
  padding: 16px;
  margin: 4px 0;
  border: 2px solid #f7f7fd;
  border-radius: 8px;
  transition: all .3s; }

.navbar__nested-item > a:hover {
  background-color: #f7f7fd; }

.overlay.open > .overlay-menu > .navbar > .navbar__search {
  display: none; }

#navbar__searchclose {
  top: 0 !important; }

@media (max-width: 768px) {
  nav > .navbar {
    margin-top: 0px; } }

@media (min-width: 1440px) {
  .sidebar-box {
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
    align-self: flex-start;
    background: rgba(247, 247, 253, 0.8);
    border-radius: 16px; }
    .sidebar-box__container {
      padding: 24px; } }
  @media (min-width: 1440px) and (min-width: 1920px) {
    .sidebar-box {
      width: 336px; } }

@media (min-width: 1440px) and (min-width: 1440px) and (max-width: 1919px) {
  .sidebar-box {
    width: 300px; } }

@media (min-width: 1440px) {
    .sidebar-box__title {
      color: #737373;
      font-weight: 500; }
    .sidebar-box__list {
      list-style: none;
      padding-left: 20px;
      max-height: 70vh;
      overflow: auto; }
      .sidebar-box__list__element {
        color: #737373;
        padding: 12px 0; }
        .sidebar-box__list__element__link {
          color: #737373; }
          .sidebar-box__list__element__link--active {
            font-weight: 500;
            color: #1a1a1a; }
    .sidebar-box__backtotop {
      display: none;
      text-align: center;
      font-weight: 600;
      cursor: pointer;
      color: #433B9B;
      font-size: 14px;
      font-family: "Montserrat", serif;
      background: #E8E8F9;
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      padding: 5px 0; } }

@media (max-width: 1439px) {
  .sidebar-box {
    display: none; } }

@media (max-width: 1023px) {
  .portfolio .filters_switcher {
    display: flex;
    background: #F7F7FD;
    padding: 24px;
    font-weight: bold; }
    .portfolio .filters_switcher > img {
      padding: 0 8px; }
  .portfolio .filters {
    flex-direction: column;
    padding: 44px 24px; }
    .portfolio .filters__hosting {
      padding: 32px 24px; } }

@media (min-width: 1921px) {
  .portfolio-container {
    width: 1920px;
    margin-left: auto;
    margin-right: auto; } }

::-webkit-scrollbar {
  width: 8px; }

::-webkit-scrollbar-track {
  background: #E8E8F9;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px; }

::-webkit-scrollbar-thumb {
  background: #CACAF9;
  border-radius: 8px;
  border-right: 1px #F7F7FD solid; }

::-webkit-scrollbar-thumb:hover {
  background: #8686E0; }

* {
  scrollbar-color: #8686E0 #E8E8F9;
  scrollbar-width: thin; }

body {
  color: #333;
  background-color: #fefefe;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0;
  line-height: 1.67;
  font-weight: 300;
  font-size: 90%; }

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

h2 {
  font-size: 1.625em;
  line-height: 1.4; }

a {
  color: #8686e0; }
  a:hover {
    color: #8686e0; }

input, button, a[role=button] {
  box-sizing: border-box;
  vertical-align: bottom;
  font-family: inherit;
  font-size: 0.8rem;
  line-height: 0.8rem; }

button, a[role=button] {
  letter-spacing: 0.08rem; }

a[role="button"] {
  display: inline-block; }

button, a[role=button] {
  color: #fff;
  background-color: transparent;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #FF4B1F;
  border-radius: 0.1875rem;
  padding: 0.9rem 1.8rem;
  transition: all 0.1s ease-in-out 0s; }
  button:focus, a[role="button"]:focus {
    outline: none; }
  button.primary, a[role="button"].primary {
    background-color: #8686e0; }
    button.primary:hover, a[role="button"].primary:hover {
      background-color: transparent;
      color: #8686e0; }
  button.link, a[role="button"].link {
    background-color: transparent;
    color: #8686e0; }
    button.link:hover, a[role="button"].link:hover {
      background-color: transparent;
      color: #8686e0; }
  button.secondary, a[role="button"].secondary {
    border-color: #fff; }
    button.secondary:hover, a[role="button"].secondary:hover {
      background-color: #fff;
      color: #333; }

input {
  border: none;
  height: 2.6rem;
  font: inherit;
  font-weight: 400;
  padding: 0 1em; }

th {
  font-weight: bold;
  color: #707070; }
  th strong {
    color: #707070; }

table a, table strong, table p, table td, table code, table tr {
  font-size: 14px !important; }

table td, table th {
  padding: 16px 8px !important; }

table tr:nth-of-type(2n+2) {
  background: #F5F7FA; }

a:focus {
  outline: none; }

.selectArrow {
  margin-left: 5px;
  margin-right: -6px; }

.noscroll {
  overflow: hidden; }

.is-hidden {
  display: none !important; }
