@charset "UTF-8";
@import "../fonts/colfax/stylesheet.css";
@import "../css/normalize.8.0.1.min.css";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body, html {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Colfax, arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #101010;
  text-align: left;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #32b9f6;
}

ul {
  margin: 0;
}

a:not([href]), a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  box-shadow: none;
}

.Page {
  background: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Page__container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  padding: 0 25px;
}
@media screen and (max-width: 960px) {
  .Page__container {
    max-width: 750px;
  }
}
@media screen and (max-width: 768px) {
  .Page__container {
    max-width: 396px;
    padding: 0 8px;
  }
}
.Page__col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
  max-width: 100%;
}
.Page__col--size-6 {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
}

.Row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Row--12 {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
}
.Row--center {
  -ms-flex-pack: center;
      justify-content: center;
}

.Text--capitalize {
  text-transform: capitalize;
}

@keyframes s-ripple {
  0% {
    transform: scale(0);
  }
  20% {
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes s-ripple-dup {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.Navbar {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  margin-top: 35px;
  z-index: 1070;
}
.Navbar--sticky {
  position: fixed;
  height: 76px;
  top: 0;
  background: white;
  padding: 16px 0 16px;
  margin-top: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 8px;
}
.Navbar--sticky .NavbarBtn:hover .NavbarBtn__btn {
  border-color: #32b9f6;
}
.Navbar--sticky .NavbarBtn:hover .NavbarBtn__span {
  background: white;
  border-color: #101010;
}
.Navbar--sticky .NavbarBtn .NavbarBtn__btn {
  border-color: #101010;
}
.Navbar--sticky .NavbarBtn .NavbarBtn__span {
  background: #101010;
}
.Navbar--sticky .Navbar__brand {
  top: 4px;
}
.Navbar--sticky .Navbar__item {
  padding: 8px 20px 6px;
}
.Navbar--sticky .Navbar__nav--left-side .Navbar__link {
  vertical-align: bottom;
  position: relative;
}
.Navbar__collapse {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex: 1;
      flex: 1;
}
.Navbar__brand {
  position: relative;
  top: 4px;
}
.Navbar__nav {
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding-left: 30px;
}
.Navbar__nav--left-side .Navbar__link:hover {
  color: #43C5FF;
}
.Navbar__nav--right-side {
  position: relative;
}
.Navbar__nav--right-side .Navbar__item {
  padding: 0;
}
.Navbar__nav--right-side .Navbar__item:last-child {
  margin-left: 10px;
}
.Navbar__nav--right-side .Navbar__item .Navbar__link {
  padding: 15px 14px;
  padding-bottom: 12px;
  display: block;
}
.Navbar__item {
  transition: color 0.1s ease-in-out;
  padding: 13px 20px 6px;
}
.Navbar__item--btn {
  transition: all 0.1s ease-in-out;
  opacity: 0.95;
  border-radius: 6px;
  border: solid 2px #ffffff;
  padding: 12px 16px;
  color: white;
  cursor: pointer;
}
.Navbar__item--btn:hover {
  background: #43C5FF !important;
  border-color: #43C5FF !important;
  color: white !important;
}
.Navbar__item--active .Navbar__link {
  color: #32b9f6;
}
.Navbar__item--first {
  background-color: #32b9f6;
  border-color: #32b9f6;
  color: white;
  margin-right: 10px;
}
.Navbar__item--second {
  border-color: #101010;
  color: #101010;
}
@media screen and (max-width: 960px) {
  .Navbar__item {
    display: none;
  }
}
.Navbar__link {
  color: inherit;
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
}

.NavbarBtn {
  display: none;
  width: 45px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
@media screen and (max-width: 960px) {
  .NavbarBtn {
    display: block;
  }
}
.NavbarBtn__btn {
  transition: all 0.1s ease-in-out;
  z-index: 1;
  position: relative;
  border-radius: 6px;
  padding: 13px 11px;
  border: 2px solid #101010;
  cursor: pointer;
}
.NavbarBtn__btn:hover {
  border-color: #43C5FF;
  background: #43C5FF;
}
.NavbarBtn__span {
  display: block;
  width: 19px;
  height: 3px;
  margin-bottom: 3px;
  position: relative;
  background: #101010;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.1s ease-in-out, opacity 0.55s ease;
}
.NavbarBtn__span:first-child {
  transform-origin: 0% 0%;
}
.NavbarBtn__span:nth-child(3) {
  transform-origin: 0% 100%;
  margin-bottom: 0;
}

.NavbarMenu {
  position: fixed;
  z-index: 1071;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 63px 69px;
  padding-top: 88px;
  text-align: center;
  background: black;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  overflow-y: auto;
}
@media screen and (max-width: 370px) {
  .NavbarMenu {
    padding: 0 35px;
    padding-top: 88px;
  }
}
.NavbarMenu--open {
  transform: none;
}
.NavbarMenu .NavbarBtn {
  top: -5px;
  position: relative;
}
.NavbarMenu .NavbarBtn__btn {
  border-color: white;
}
.NavbarMenu .NavbarBtn__btn:hover {
  border-color: #43C5FF;
  background: #43C5FF;
}
.NavbarMenu .NavbarBtn__btn .NavbarBtn__span {
  opacity: 1;
  transform: rotate(45deg) translate(2px, -3px);
  background: white;
  border-color: white;
}
.NavbarMenu .NavbarBtn__btn .NavbarBtn__span:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.NavbarMenu .NavbarBtn__btn .NavbarBtn__span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 2px);
}
.NavbarMenu__header {
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 69px;
  text-align: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 370px) {
  .NavbarMenu__header {
    padding: 0 35px;
  }
}
.NavbarMenu__brand {
  max-width: 172px;
  max-height: 35.25px;
}
.NavbarMenu__item {
  padding: 10px 0;
  font-size: 22px;
  padding: 29px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 14px;
  color: white;
  border-bottom: 1px solid #979797;
}
.NavbarMenu__item--btn {
  transition: all 0.1s ease-in-out;
  opacity: 0.95;
  border-radius: 6px;
  border: solid 2px #ffffff;
  padding: 13px 16px 11px;
  line-height: 20px;
  color: white;
  cursor: pointer;
}
.NavbarMenu__item--first {
  margin-bottom: 15px;
  margin-top: 29px;
  background-color: #32b9f6;
  border-color: #32b9f6;
}
.NavbarMenu__item--first:hover {
  background: #43C5FF;
  color: white;
  border-color: #43C5FF;
}
.NavbarMenu__item--second:hover {
  background: #43C5FF;
  color: white;
  border-color: #43C5FF;
}

.FooterRating {
  height: auto;
  min-height: 421px;
  color: white;
  position: relative;
  width: 100%;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .FooterRating {
    height: 420px;
  }
}
@media screen and (max-width: 768px) {
  .FooterRating {
    min-height: 427px;
    height: auto;
  }
  .FooterRating .Page__container {
    max-width: 100%;
    padding: 0;
  }
}
.FooterRating__container {
  display: -ms-flexbox;
  display: flex;
  padding: 80px;
  border-radius: 40px;
  background: #32b9f6;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .FooterRating__container {
    padding: 80px 45px;
    border-radius: 0;
    max-width: 100%;
  }
}
.FooterRating__side {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
.FooterRating__side--left {
  padding-right: 80px;
  border-right: 2px solid rgba(255, 255, 255, 0.25);
}
@media screen and (max-width: 960px) {
  .FooterRating__side--left {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: center;
    border: 0;
    padding-right: 0;
    max-width: 475px;
    margin: auto;
  }
}
.FooterRating__side--right {
  padding-left: 80px;
}
@media screen and (max-width: 960px) {
  .FooterRating__side--right {
    display: none;
  }
}
.FooterRating__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 25px;
}
.FooterRating__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}
.FooterRating__button {
  transition: all 0.1s ease-in-out;
  color: #101010;
  font-size: 13px;
  line-height: 12px;
  background: white;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  max-width: 260px;
  cursor: pointer;
}
.FooterRating__button:hover {
  background: #d9f3ff;
}
@media screen and (max-width: 768px) {
  .FooterRating__button {
    padding: 14px 60px;
  }
}
.FooterRating__button-strong {
  line-height: 20px;
  font-size: 16px;
}
.FooterRating__black-wall {
  background: #101010;
  height: 210px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.FooterRating .Review {
  margin-bottom: 30px;
}
.FooterRating .Review__stars {
  background: white;
  border-radius: 30px;
  padding: 10px 20px;
  width: 155px;
  height: 39px;
  margin-bottom: 25px;
}
.FooterRating .Review__stars::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/frontend/dist/images/components/footer-rating/icons/5-stars.svg") no-repeat;
  background-size: contain;
  width: 115px;
  height: 38px;
}
.FooterRating .Review__description {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
}
.FooterRating .Client {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.FooterRating .Client__avatar {
  width: 48px;
  height: 48px;
  -ms-flex: 0 0 48px;
      flex: 0 0 48px;
  max-width: 48px;
  background: #78cdff;
  border-radius: 50%;
}
.FooterRating .Client__name-and-position {
  font-size: 16px;
  padding-left: 20px;
  -ms-flex-preferred-size: 1;
      flex-basis: 1;
  margin-top: 2px;
}

.Footer {
  background: #101010;
  width: 100%;
  padding-top: 95px;
}
.Footer__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Footer__brand {
  max-width: 292px;
  -ms-flex: 0 0 292px;
      flex: 0 0 292px;
}
@media screen and (max-width: 960px) {
  .Footer__brand {
    max-width: 580px;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    text-align: center;
    margin: auto;
    margin-bottom: 30px;
  }
}
.Footer__logo {
  height: 28px;
  margin-bottom: 13px;
}
.Footer__description {
  color: #a7a7a7;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .Footer__description {
    max-width: 320px;
    margin: 0 auto;
  }
}
.Footer__nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  list-style: none;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .Footer__nav {
    max-width: 100%;
    text-align: center;
  }
}
.Footer__nav--lvl-1 {
  margin: 0;
  padding-left: 100px;
}
@media screen and (max-width: 960px) {
  .Footer__nav--lvl-1 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}
.Footer__nav--lvl-2 {
  margin-top: 10px;
}
.Footer__nav-link {
  transition: all 0.1s ease-in-out;
  color: #f8f8f8;
}
.Footer__nav-link:hover {
  color: #43C5FF;
}
.Footer__nav-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
}
.Footer__nav-item--root {
  color: #a7a7a7;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 200px;
}
@media screen and (max-width: 960px) {
  .Footer__nav-item--root {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .Footer__nav-item--root:last-child {
    margin-bottom: 0;
  }
}
.Footer__hr {
  height: 2px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  background: rgba(151, 151, 151, 0.25);
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  .Footer__hr {
    margin-top: 67px;
  }
}
.Footer__end {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  margin: 33px 0 180px;
}
@media screen and (max-width: 960px) {
  .Footer__end {
    margin: 30px 0 180px;
  }
}
@media screen and (max-width: 768px) {
  .Footer__end {
    margin: 35px 0 180px;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-direction: column;
        flex-direction: column;
  }
}
.Footer__copyright {
  color: #a7a7a7;
  font-family: Colfax;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .Footer__copyright {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 768px) {
  .Footer .Dropdown {
    margin-bottom: 5px;
  }
}
.Footer .Dropdown--open .Dropdown__btn:after {
  transform: rotate(0);
}
.Footer .Dropdown__btn {
  padding-bottom: 10px;
}
.Footer .Dropdown__content {
  top: auto;
  bottom: calc(100% + 10px);
}
.Footer .Dropdown img {
  width: 20px;
  height: 14px;
}

.Page--homepage {
  overflow-x: hidden;
}
.Page--homepage .Navbar__item--first, .Page--homepage .Navbar__item--second {
  border-color: white;
  color: white;
  background: transparent;
}
.Page--homepage .Navbar--sticky .Navbar__item--first {
  border-color: #32b9f6;
  background: #32b9f6;
}
.Page--homepage .Navbar--sticky .Navbar__item--second {
  border-color: #101010;
  color: #101010;
}
.Page--homepage .Navbar .NavbarBtn__btn {
  border-color: white;
}
.Page--homepage .Navbar .NavbarBtn__btn:hover {
  border-color: #32b9f6;
}
.Page--homepage .Navbar .NavbarBtn__span {
  background-color: white;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Navbar .NavbarBtn__btn {
    border-color: #101010;
  }
  .Page--homepage .Navbar .NavbarBtn__btn:hover .NavbarBtn__span {
    background-color: white;
  }
  .Page--homepage .Navbar .NavbarBtn__span {
    background-color: #101010;
  }
}
.Page--homepage .Intro__side--left,
.Page--homepage .Support__side--left,
.Page--homepage .Upsell__side--left,
.Page--homepage .Reference__side--left {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
.Page--homepage .Intro__side--right,
.Page--homepage .Support__side--right,
.Page--homepage .Upsell__side--right,
.Page--homepage .Reference__side--right {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Intro__side,
.Page--homepage .Support__side,
.Page--homepage .Upsell__side,
.Page--homepage .Reference__side {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
.Page--homepage .Intro {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 180px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Intro {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Intro {
    margin-bottom: 80px;
  }
}
.Page--homepage .Intro__side--left {
  padding-right: 6%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Intro__side--left {
    padding-right: 0;
    text-align: center;
  }
}
.Page--homepage .Intro__side--right {
  padding-left: 20px;
  margin-top: 150px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Intro__side--right {
    display: none;
  }
}
.Page--homepage .Intro__hero {
  position: absolute;
  top: -231px;
  left: 0;
  width: 913px;
  height: 749px;
  z-index: -1;
  border-bottom-right-radius: 140px;
}
.Page--homepage .Intro__title {
  font-size: 52px;
  font-weight: bold;
  margin-top: 140px;
  margin-bottom: 20px;
  line-height: 62.4px;
  max-width: 480px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Intro__title {
    font-size: 40px;
    line-height: 52px;
    max-width: 280px;
    margin-top: 86px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Intro__title {
    max-width: 100%;
    margin-top: 60px;
  }
}
.Page--homepage .Intro__description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 40px;
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Intro__description {
    font-size: 18px;
    line-height: 28px;
    max-width: 280px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Intro__description {
    max-width: 100%;
  }
}
.Page--homepage .Intro__demo-btn {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 21px 10px;
  padding-bottom: 19px;
  background: #32b9f6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  line-height: 20px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 280px;
  text-align: center;
}
.Page--homepage .Intro__demo-btn:hover {
  background: #43C5FF;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Intro__demo-btn {
    max-width: 100%;
  }
}
.Page--homepage .Intro .Review {
  margin-top: 40px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Intro .Review {
    max-width: 100%;
  }
}
.Page--homepage .Intro .Review__score {
  text-align: center;
  margin-bottom: 10px;
}
.Page--homepage .Intro .Review__score-value {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  margin-right: 12px;
}
.Page--homepage .Intro .Review__stars {
  position: relative;
  top: 1px;
  height: 16px;
}
.Page--homepage .Intro .Review__description {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 12px;
}
.Page--homepage .Intro .Bubble--first {
  width: 332px;
  left: -47px;
}
.Page--homepage .Intro .Bubble--second {
  margin-top: 73px;
  left: -48px;
}
.Page--homepage .Intro .Bubble--third {
  margin-top: 120px;
  left: -75px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Intro .Bubble--third {
    display: none;
  }
}
.Page--homepage .Support {
  margin-bottom: 180px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Support {
    margin-bottom: 80px;
  }
}
.Page--homepage .Support__container {
  height: 800px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Support__container {
    height: 640px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Support__container {
    height: auto;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100%;
    padding: 0;
  }
}
.Page--homepage .Support__side--left {
  position: relative;
  padding-right: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Support__side--left {
    padding: 0;
  }
}
.Page--homepage .Support__side--right {
  padding-left: 20px;
  padding-right: 7%;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Support__side--right {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Support__side--right {
    text-align: center;
    margin-bottom: 100px;
    max-width: 396px;
    padding: 0 8px;
  }
}
.Page--homepage .Support__image {
  max-width: 100%;
}
@media screen and (max-width: 1105px) {
  .Page--homepage .Support__image {
    min-width: 501px;
    min-height: 472px;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Support__image {
    min-width: 100%;
    min-height: 100%;
  }
}
.Page--homepage .Support__window {
  position: relative;
  max-width: 501px;
  max-height: 472px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1105px) {
  .Page--homepage .Support__window {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Support__window {
    max-width: 350px;
    max-height: 339px;
    left: -30px;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Support__window {
    max-height: 350px;
    left: 0;
    top: -47px;
  }
}
.Page--homepage .Support__window .Message {
  position: absolute;
  top: 372px;
  left: 135px;
  color: white;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Support__window .Message {
    font-size: 12px;
    line-height: 14px;
    top: 246px;
    left: 89px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Support__window .Message {
    top: 262px;
    left: 94px;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Support .Feature {
    height: 312px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Support .Feature {
    height: auto;
  }
}
.Page--homepage .Overview {
  margin-bottom: 186px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Overview {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 380px) {
  .Page--homepage .Overview {
    margin-bottom: -35px;
  }
}
@media screen and (max-width: 310px) {
  .Page--homepage .Overview {
    margin-bottom: -85px;
  }
}
.Page--homepage .Overview__container {
  height: 800px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview__container {
    height: 640px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Overview__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    max-width: 100%;
    padding: 0;
  }
}
.Page--homepage .Overview__side--left {
  padding-right: 5%;
  position: relative;
  -ms-flex: 0 0 45%;
      flex: 0 0 45%;
  width: 45%;
  max-width: 45%;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview__side--left {
    padding-right: 29px;
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    width: 50%;
    max-width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Overview__side--left {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: center;
    max-width: 396px;
    padding: 0 8px;
    margin: 0 auto 110px auto;
  }
}
.Page--homepage .Overview__side--right {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex: 0 0 55%;
      flex: 0 0 55%;
  width: 55%;
  max-width: 55%;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview__side--right {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Overview__side--right {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .Page--homepage .Overview__side--right .Square {
    max-height: 304px;
  }
}
@media screen and (max-width: 768px) and (max-width: 380px) {
  .Page--homepage .Overview__side--right .Square {
    max-height: 245px;
  }
}
@media screen and (max-width: 768px) and (max-width: 310px) {
  .Page--homepage .Overview__side--right .Square {
    max-height: 210px;
  }
}
.Page--homepage .Overview .Visitor {
  position: relative;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Overview .Visitor {
    margin: auto;
  }
}
@media screen and (max-width: 380px) {
  .Page--homepage .Overview .Visitor {
    -ms-flex-pack: center;
        justify-content: center;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
  }
}
.Page--homepage .Overview .Visitor__image {
  max-width: 100%;
}
@media screen and (max-width: 1225px) {
  .Page--homepage .Overview .Visitor__image {
    min-width: 646px;
    min-height: 626px;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview .Visitor__image {
    min-width: 100%;
    min-height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Overview .Visitor__image {
    width: 359px;
    height: 348px;
    min-width: 359px;
    min-height: 348px;
  }
}
.Page--homepage .Overview .Visitor__window {
  position: relative;
  max-width: 646px;
  max-height: 706px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1225px) {
  .Page--homepage .Overview .Visitor__window {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 1100px) {
  .Page--homepage .Overview .Visitor__window {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 1050px) {
  .Page--homepage .Overview .Visitor__window {
    transform: scale(0.65);
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview .Visitor__window {
    max-width: 380px;
    max-height: 353px;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Overview .Visitor__window {
    max-width: 359px;
    max-height: 353px;
    top: -75px;
  }
}
@media screen and (max-width: 380px) {
  .Page--homepage .Overview .Visitor__window {
    transform: scale(0.8);
    width: 120%;
    max-width: 120%;
    top: -95px;
  }
}
@media screen and (max-width: 310px) {
  .Page--homepage .Overview .Visitor__window {
    transform: scale(0.7);
    width: 130%;
    max-width: 130%;
    top: -105px;
  }
}
.Page--homepage .Overview .Visitor__detail {
  position: absolute;
  width: 326px;
  height: 306px;
  bottom: 83px;
  left: 286px;
  padding: 27px 23px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview .Visitor__detail {
    width: auto;
    height: auto;
    top: 143px;
    left: 167px;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Overview .Visitor__detail {
    top: 147px;
    left: 172px;
  }
}
.Page--homepage .Overview .Visitor__name {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  margin-top: 0;
  margin-bottom: 3px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview .Visitor__name {
    font-size: 8px;
    line-height: 9px;
  }
}
.Page--homepage .Overview .Visitor__email {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  margin-top: 0;
  margin-bottom: 13px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview .Visitor__email {
    font-size: 8px;
    line-height: 9px;
    margin-bottom: 4px;
  }
}
.Page--homepage .Overview .Visitor__status {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 13px;
  padding: 6px 7px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Overview .Visitor__status {
    font-size: 6px;
    padding: 6px 6px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Overview .Feature {
    height: auto;
  }
}
.Page--homepage .Upsell {
  margin-bottom: 180px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Upsell {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 330px) {
  .Page--homepage .Upsell {
    margin-bottom: -30px;
  }
}
.Page--homepage .Upsell__container {
  height: 800px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Upsell__container {
    height: 640px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Upsell__container {
    height: auto;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 100%;
    padding: 0;
  }
}
.Page--homepage .Upsell__side--left {
  position: relative;
  padding-right: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Upsell__side--left {
    padding: 0;
    margin-bottom: -39px;
  }
  .Page--homepage .Upsell__side--left .Square {
    max-height: 390px;
  }
}
@media screen and (max-width: 768px) and (max-width: 330px) {
  .Page--homepage .Upsell__side--left .Square {
    max-height: 390px;
  }
}
.Page--homepage .Upsell__side--right {
  padding-left: 20px;
  padding-right: 7%;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Upsell__side--right {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Upsell__side--right {
    text-align: center;
    margin-bottom: 110px;
    max-width: 396px;
    padding: 0 8px;
  }
}
.Page--homepage .Upsell__image {
  max-width: 100%;
}
@media screen and (max-width: 1020px) {
  .Page--homepage .Upsell__image {
    min-width: 457px;
    min-height: 554.7px;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Upsell__image {
    min-width: 100%;
    min-height: 100%;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Upsell__image {
    min-width: 320px;
    min-height: 388px;
  }
}
.Page--homepage .Upsell__window {
  position: relative;
  max-width: 457px;
  max-height: 525px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1020px) {
  .Page--homepage .Upsell__window {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Upsell__window {
    max-width: 350px;
    max-height: 395px;
    left: -30px;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Upsell__window {
    max-width: 320px;
    max-height: 380px;
    left: 0;
    top: -65px;
  }
}
@media screen and (max-width: 330px) {
  .Page--homepage .Upsell__window {
    transform: scale(0.85);
    width: 120%;
    top: -95px;
  }
}
.Page--homepage .Upsell__window .Message {
  position: absolute;
  top: 333px;
  left: 125px;
  color: white;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Upsell__window .Message {
    font-size: 12px;
    line-height: 14px;
    top: 242px;
    left: 94px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Upsell__window .Message {
    top: 235px;
    left: 90px;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Upsell .Feature {
    height: 302px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Upsell .Feature {
    height: auto;
  }
}
.Page--homepage .Integration {
  height: 608px;
  margin-bottom: 150px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Integration {
    min-height: 486px;
    height: auto;
    margin-bottom: 135px;
  }
  .Page--homepage .Integration .Page__container {
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 820px) {
  .Page--homepage .Integration {
    height: 696px;
  }
  .Page--homepage .Integration .Page__container {
    height: 100%;
  }
}
@media screen and (max-width: 340px) {
  .Page--homepage .Integration {
    height: 667px;
  }
}
.Page--homepage .Integration__container {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #32b9f6;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 180px 0;
  border-radius: 32px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .Page--homepage .Integration__container {
    padding: 100px 0;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Integration__container {
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Integration__container {
    padding: 120px 0;
  }
}
@media screen and (max-width: 340px) {
  .Page--homepage .Integration__container {
    padding-top: 50px;
  }
}
.Page--homepage .Integration__systems {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 820px) {
  .Page--homepage .Integration__systems {
    display: none;
  }
}
.Page--homepage .Integration__systems--left {
  left: -153px;
  top: -46px;
  height: 752px;
}
@media screen and (max-width: 1200px) {
  .Page--homepage .Integration__systems--left {
    height: 618px;
    left: -119px;
    top: -40px;
  }
}
.Page--homepage .Integration__systems--right {
  right: -153px;
  top: -88px;
  max-width: 620px;
}
@media screen and (max-width: 1200px) {
  .Page--homepage .Integration__systems--right {
    max-width: 495px;
    top: -71px;
    right: -114px;
  }
}
@media screen and (max-width: 1050px) {
  .Page--homepage .Integration__systems--right {
    right: -142px;
  }
}
@media screen and (max-width: 920px) {
  .Page--homepage .Integration__systems--right {
    right: -192px;
  }
}
.Page--homepage .Integration__systems--mobile {
  display: none;
  position: absolute;
  bottom: -580px;
  width: 100%;
  left: 0;
  max-width: 450px;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .Page--homepage .Integration__systems--mobile {
    display: block !important;
  }
}
.Page--homepage .Integration__body {
  color: white;
  text-align: center;
  max-width: 680px;
}
@media screen and (max-width: 1200px) {
  .Page--homepage .Integration__body {
    max-width: 395px;
    margin-top: -20px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Integration__body {
    margin-top: 0;
    max-width: 342px;
  }
}
.Page--homepage .Integration__caption {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  margin-bottom: 5px;
  color: #101010;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .Page--homepage .Integration__caption {
    margin-bottom: 11px;
  }
}
.Page--homepage .Integration__title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -1.25px;
  line-height: 1.26;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Integration__title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 28px;
  }
}
.Page--homepage .Integration__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Integration__description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
  }
}
.Page--homepage .Integration__second-caption {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  color: white;
  position: relative;
}
.Page--homepage .Integration__second-caption::after {
  content: "";
  background: url("/frontend/dist/images/pages/homepage/icons/integration-arrow-icon.svg") no-repeat;
  width: 8px;
  height: 14px;
  position: relative;
  right: -9px;
  top: 3px;
  display: inline-block;
}
.Page--homepage .Reference {
  margin-bottom: 100px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Reference {
    margin-bottom: 0;
  }
}
.Page--homepage .Reference__container {
  height: 570px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference__container {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Reference__container {
    max-width: 100%;
    padding: 0;
  }
}
.Page--homepage .Reference__side--left {
  height: 400px;
  padding-right: 7%;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference__side--left {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Reference__side--left {
    margin-bottom: 110px;
    max-width: 396px;
    padding: 0 8px !important;
    margin: auto;
    height: auto;
  }
}
.Page--homepage .Reference__side--right {
  position: relative;
  padding-right: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 1040px) {
  .Page--homepage .Reference__side--right {
    padding-left: 50px;
    padding-right: 0;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference__side--right {
    padding-left: 0;
  }
  .Page--homepage .Reference__side--right .Square {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference__side {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference .Review {
    margin-bottom: 100px;
  }
}
.Page--homepage .Reference .Review__score {
  font-size: 28px;
  font-weight: 700;
  line-height: 48px;
  display: inline-block;
}
.Page--homepage .Reference .Review__score-from {
  position: relative;
  top: 5px;
  left: 2px;
}
.Page--homepage .Reference .Review__hr {
  width: 90px;
  background: #f0f0f0;
  margin: 32px 0;
  height: 2px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference .Review__hr {
    margin: 33px auto 39px;
  }
}
.Page--homepage .Reference .Review__stars {
  margin-top: 8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference .Review__stars {
    margin-bottom: 27px;
  }
}
.Page--homepage .Reference .Review__description {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 36px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference .Review__description {
    max-width: 555px;
    font-size: 32px;
    line-height: 42px;
    margin: auto;
    margin-bottom: 40px;
  }
}
.Page--homepage .Reference .Client {
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference .Client {
    max-width: 241px;
    margin: auto;
  }
}
.Page--homepage .Reference .Client__avatar {
  width: 60px;
  height: 60px;
  -ms-flex: 0 0 60px;
      flex: 0 0 60px;
  max-width: 60px;
  background: #f6f6f6;
  border-radius: 50%;
  margin-right: 20px;
}
.Page--homepage .Reference .Client__description {
  -ms-flex-preferred-size: 1;
      flex-basis: 1;
  font-size: 16px;
  line-height: 24px;
  padding-top: 7px;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference .Client__description {
    text-align: left;
  }
}
.Page--homepage .Reference .Firms {
  max-width: 440px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference .Firms {
    max-width: 100%;
    background: #f6f6f6;
    border-radius: 40px;
    height: 458px;
    padding: 80px 100px;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Reference .Firms {
    border-radius: 0;
    padding: 80px 20px 0;
  }
}
.Page--homepage .Reference .Firms__caption {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference .Firms__caption {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Reference .Firms__caption {
    margin-bottom: 10px;
  }
}
.Page--homepage .Reference .Firms__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Page--homepage .Reference .Firms__item {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
  margin-top: 42px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Reference .Firms__item:first-child {
    height: 43px;
  }
}
.Page--homepage .Reference .Firms__item:nth-child(even) {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .Page--homepage .Reference .Firms__item:nth-child(even) {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .Page--homepage .Reference .Firms__item {
    text-align: center;
  }
  .Page--homepage .Reference .Firms__item:nth-child(even) {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .Page--homepage .Reference .Firms__item {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}
.Page--homepage .Reference .Firms__image-helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.Page--homepage .Reference .Firms__logo {
  height: 100%;
  width: auto;
  vertical-align: middle;
  position: relative;
}
.Page--homepage .Reference .Firms__logo--item-1 {
  height: 50px;
}
.Page--homepage .Reference .Firms__logo--item-2 {
  height: 29px;
  top: 8px;
}
.Page--homepage .Reference .Firms__logo--item-3 {
  height: 47px;
}
.Page--homepage .Reference .Firms__logo--item-4 {
  height: 44px;
}
.Page--homepage .Reference .Firms__logo--item-5 {
  height: 42px;
}
.Page--homepage .Reference .Firms__logo--item-6 {
  height: 50px;
}

.Page--features {
  overflow-x: hidden;
}
.Page--features .Overview,
.Page--features .Customization,
.Page--features .Automatization,
.Page--features .Mobile,
.Page--features .Responsive,
.Page--features .Statistics {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  margin-bottom: 60px;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--features .Overview,
.Page--features .Customization,
.Page--features .Automatization,
.Page--features .Mobile,
.Page--features .Responsive,
.Page--features .Statistics {
    margin-bottom: 80px;
  }
}
.Page--features .Overview__container,
.Page--features .Customization__container,
.Page--features .Automatization__container,
.Page--features .Mobile__container,
.Page--features .Responsive__container,
.Page--features .Statistics__container {
  height: 800px;
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__container,
.Page--features .Customization__container,
.Page--features .Automatization__container,
.Page--features .Mobile__container,
.Page--features .Responsive__container,
.Page--features .Statistics__container {
    height: 640px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__container,
.Page--features .Customization__container,
.Page--features .Automatization__container,
.Page--features .Mobile__container,
.Page--features .Responsive__container,
.Page--features .Statistics__container {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.Page--features .Overview__side--left,
.Page--features .Customization__side--left,
.Page--features .Automatization__side--left,
.Page--features .Mobile__side--left,
.Page--features .Responsive__side--left,
.Page--features .Statistics__side--left {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
.Page--features .Overview__side--right,
.Page--features .Customization__side--right,
.Page--features .Automatization__side--right,
.Page--features .Mobile__side--right,
.Page--features .Responsive__side--right,
.Page--features .Statistics__side--right {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__side,
.Page--features .Customization__side,
.Page--features .Automatization__side,
.Page--features .Mobile__side,
.Page--features .Responsive__side,
.Page--features .Statistics__side {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}
.Page--features .Features {
  display: block;
  margin-top: 125px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .Page--features .Features {
    margin-top: 73px;
  }
}
.Page--features .Features__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 62.4px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .Page--features .Features__title {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Features__title {
    margin-bottom: 20px;
  }
}
.Page--features .Features__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  max-width: 580px;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .Page--features .Features__description {
    font-size: 18px;
    line-height: 1.56;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview {
    margin-bottom: -40px;
  }
}
@media screen and (max-width: 350px) {
  .Page--features .Overview {
    margin-bottom: -110px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__container {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    max-width: 100%;
    padding: 0;
  }
}
.Page--features .Overview__side--left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  padding-right: 40px;
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__side--left {
    padding-right: 0;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__side--left .Square {
    height: 290px;
  }
}
@media screen and (max-width: 350px) {
  .Page--features .Overview__side--left .Square {
    height: 220px;
  }
}
.Page--features .Overview__side--right {
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__side--right {
    text-align: center;
    margin-bottom: 230px;
    max-width: 396px;
    padding: 0 8px;
  }
}
@media screen and (max-width: 350px) {
  .Page--features .Overview__side--right {
    margin-bottom: 190px;
  }
}
.Page--features .Overview__image {
  position: absolute;
  top: -9px;
  left: -32px;
  max-width: 100%;
}
@media screen and (max-width: 1075px) {
  .Page--features .Overview__image {
    min-width: 462px;
    min-height: 613px;
  }
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__image {
    min-width: 100%;
    min-height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__image {
    position: relative;
    top: -165px;
    left: 0;
  }
}
@media screen and (max-width: 350px) {
  .Page--features .Overview__image {
    min-width: 321px;
    min-height: 430px;
  }
}
.Page--features .Overview__window {
  position: relative;
  max-width: 462px;
  max-height: 613px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1075px) {
  .Page--features .Overview__window {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__window {
    transform: none;
    max-width: 321px;
    max-height: 411px;
  }
}
@media screen and (max-width: 350px) {
  .Page--features .Overview__window {
    transform: scale(0.8);
    width: 120%;
    top: -41px;
  }
}
.Page--features .Overview__window .Visitor {
  position: absolute;
}
.Page--features .Overview__window .Visitor--first {
  top: 39px;
  left: 33px;
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__window .Visitor--first {
    top: 22px;
    left: 13px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__window .Visitor--first {
    top: -133px;
    left: 45px;
  }
}
.Page--features .Overview__window .Visitor--second {
  top: 27.7%;
  left: 31px;
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__window .Visitor--second {
    top: 26.8%;
    left: 12px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__window .Visitor--second {
    top: -43px;
    left: 44px;
  }
}
.Page--features .Overview__window .Visitor--third {
  top: 81.4%;
  left: 158px;
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__window .Visitor--third {
    top: 83%;
    left: 100px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__window .Visitor--third {
    top: 186px;
    left: 132px;
  }
}
.Page--features .Overview__window .Visitor__name {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__window .Visitor__name {
    font-size: 10.4px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__window .Visitor__name {
    font-size: 10px;
  }
}
.Page--features .Overview__window .Visitor__email {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 11px;
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__window .Visitor__email {
    font-size: 11px;
    margin-bottom: 9px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__window .Visitor__email {
    font-size: 10px;
    margin-bottom: 7px;
  }
}
.Page--features .Overview__window .Visitor__status {
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  color: white;
  position: relative;
  left: 8px;
  top: 3px;
}
@media screen and (max-width: 960px) {
  .Page--features .Overview__window .Visitor__status {
    font-size: 8px;
    top: 0px;
    left: 5px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Overview__window .Visitor__status {
    left: 5px;
    top: -1px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Customization {
    margin-bottom: 40px;
  }
}
.Page--features .Customization__container {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 1250px) {
  .Page--features .Customization__container {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Customization__container {
    max-width: 100%;
    padding: 0;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.Page--features .Customization__side--left {
  max-width: 470px;
}
@media screen and (max-width: 768px) {
  .Page--features .Customization__side--left {
    text-align: center;
    max-width: 396px;
    padding: 0 8px;
    margin-bottom: 103px;
  }
}
.Page--features .Customization__side--right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  .Page--features .Customization__side--right .Square {
    height: 240px;
  }
}
.Page--features .Customization__image {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .Page--features .Customization__image {
    position: relative;
    top: -73px;
  }
}
.Page--features .Customization__window {
  position: relative;
  max-width: 590px;
  max-height: 472px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .Page--features .Customization__window {
    max-width: 320px;
    max-height: 232px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Customization__window {
    max-width: 360px;
    max-height: 275px;
  }
}
@media screen and (max-width: 1240px) {
  .Page--features .Customization .Feature__link-demo--link-preview {
    display: none;
  }
}
.Page--features .Customization .Feature__link-demo--link-free {
  display: none;
}
@media screen and (max-width: 1240px) {
  .Page--features .Customization .Feature__link-demo--link-free {
    display: initial;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 400px) {
  .Page--features .Automatization {
    margin-bottom: -55px;
  }
}
@media screen and (max-width: 320px) {
  .Page--features .Automatization {
    margin-bottom: -115px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization__container {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    max-width: 100%;
    padding: 0;
  }
}
.Page--features .Automatization__side--left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization__side--left {
    padding-right: 0;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .Page--features .Automatization__side--left .Square {
    height: 360px;
  }
}
@media screen and (max-width: 768px) and (max-width: 400px) {
  .Page--features .Automatization__side--left .Square {
    height: 290px;
  }
}
@media screen and (max-width: 768px) and (max-width: 320px) {
  .Page--features .Automatization__side--left .Square {
    height: 240px;
  }
}
.Page--features .Automatization__side--right {
  max-width: 490px;
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization__side--right {
    text-align: center;
    margin-bottom: 203px;
    max-width: 396px;
    padding: 0 8px;
  }
}
@media screen and (max-width: 400px) {
  .Page--features .Automatization__side--right {
    margin-bottom: 140px;
  }
}
.Page--features .Automatization__image {
  max-width: 100%;
}
@media screen and (max-width: 1075px) {
  .Page--features .Automatization__image {
    min-width: 449px;
    min-height: 540px;
  }
}
@media screen and (max-width: 960px) {
  .Page--features .Automatization__image {
    min-width: 100%;
    min-height: 100%;
    left: -29px;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization__image {
    left: 0;
  }
}
@media screen and (max-width: 400px) {
  .Page--features .Automatization__image {
    min-width: 370px;
    min-height: 445.6px;
  }
}
.Page--features .Automatization__window {
  position: relative;
  max-width: 449px;
  max-height: 540px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .Page--features .Automatization__window {
    max-width: 350px;
    max-height: 394px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization__window {
    max-width: 370px;
    max-height: 415px;
    top: -100px;
  }
}
@media screen and (max-width: 400px) {
  .Page--features .Automatization__window {
    transform: scale(0.8);
    width: 120%;
    top: -122px;
  }
}
@media screen and (max-width: 320px) {
  .Page--features .Automatization__window {
    transform: scale(0.65);
    width: 135%;
    top: -141px;
  }
}
.Page--features .Automatization__window .Text {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: white;
}
@media screen and (max-width: 960px) {
  .Page--features .Automatization__window .Text {
    font-size: 13px;
  }
}
.Page--features .Automatization__window .Text--first {
  top: 179px;
  left: 109px;
  color: #101010;
}
@media screen and (max-width: 960px) {
  .Page--features .Automatization__window .Text--first {
    top: 138px;
    left: 56px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization__window .Text--first {
    top: 148px;
    left: 88px;
  }
}
.Page--features .Automatization__window .Text--second {
  left: 109px;
  top: 254px;
}
@media screen and (max-width: 960px) {
  .Page--features .Automatization__window .Text--second {
    left: 56px;
    top: 197px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization__window .Text--second {
    top: 208px;
    left: 88px;
  }
}
.Page--features .Automatization__window .Text--third {
  top: 409px;
  left: 117px;
}
@media screen and (max-width: 960px) {
  .Page--features .Automatization__window .Text--third {
    top: 319px;
    left: 63px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization__window .Text--third {
    top: 337px;
    left: 105px;
  }
}
.Page--features .Automatization__window .Text--third:before {
  content: "👋";
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .Page--features .Automatization .Feature {
    height: auto;
  }
}
.Page--features .Mobile__container {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .Page--features .Mobile__container {
    padding: 0;
    max-width: 100%;
  }
}
.Page--features .Mobile__side--left {
  padding-right: 80px;
}
@media screen and (max-width: 960px) {
  .Page--features .Mobile__side--left {
    max-width: 100%;
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Mobile__side--left {
    text-align: center;
    max-width: 396px;
    padding: 8px;
    margin: 0 auto;
    margin-bottom: 60px;
  }
}
.Page--features .Mobile__side--right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  .Page--features .Mobile__side--right {
    min-height: 280px;
  }
  .Page--features .Mobile__side--right .Square {
    height: 280px;
  }
}
.Page--features .Mobile__window {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--features .Mobile__window {
    position: relative;
    max-width: 320px;
    max-height: 122px;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Mobile__window {
    max-width: 320px;
    max-height: 122px;
  }
}
@media screen and (max-width: 768px) and (max-width: 360px) {
  .Page--features .Mobile__window {
    padding: 0 10px;
  }
}
.Page--features .Mobile__image {
  max-width: 558px;
}
@media screen and (max-width: 1200px) {
  .Page--features .Mobile__image {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Responsive {
    margin-bottom: -10px;
  }
}
@media screen and (max-width: 340px) {
  .Page--features .Responsive {
    margin-bottom: -120px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Responsive__container {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    max-width: 100%;
    padding: 0;
  }
}
.Page--features .Responsive__side--left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 768px) {
  .Page--features .Responsive__side--left .Square {
    height: 440px;
  }
}
@media screen and (max-width: 340px) {
  .Page--features .Responsive__side--left .Square {
    height: 360px;
  }
}
.Page--features .Responsive__side--right {
  max-width: 510px;
}
@media screen and (max-width: 768px) {
  .Page--features .Responsive__side--right {
    text-align: center;
    margin-bottom: 200px;
    max-width: 396px;
    padding: 0 8px;
  }
}
.Page--features .Responsive__image {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--features .Responsive__image {
    position: relative;
    left: -26px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Responsive__image {
    left: 0;
  }
}
@media screen and (max-width: 340px) {
  .Page--features .Responsive__image {
    min-width: 300px;
    min-height: 548px;
  }
}
.Page--features .Responsive__window {
  position: relative;
  max-width: 346px;
  max-height: 632px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .Page--features .Responsive__window {
    max-width: 300px;
    max-height: 548px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Responsive__window {
    max-width: 300px;
    max-height: 548px;
    top: -134px;
  }
}
@media screen and (max-width: 340px) {
  .Page--features .Responsive__window {
    transform: scale(0.8);
    width: 120%;
    top: -162px;
  }
}
.Page--features .Responsive__window .Text {
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .Page--features .Responsive__window .Text {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Responsive__window .Text {
    font-size: 10px;
  }
}
.Page--features .Responsive__window .Text--first {
  top: 127px;
  left: 68px;
  color: white;
}
@media screen and (max-width: 960px) {
  .Page--features .Responsive__window .Text--first {
    top: 109px;
    left: 31px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Responsive__window .Text--first {
    left: 56px;
  }
}
.Page--features .Responsive__window .Text--second {
  left: 68px;
  bottom: 64px;
  opacity: 0.5;
}
@media screen and (max-width: 960px) {
  .Page--features .Responsive__window .Text--second {
    top: 480px;
    left: 31px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Responsive__window .Text--second {
    left: 56px;
  }
}
.Page--features .Statistics {
  margin-top: 60px;
  margin-bottom: 120px;
  padding: 0 25px;
}
@media screen and (max-width: 1020px) {
  .Page--features .Statistics .Feature {
    height: auto;
  }
}
@media screen and (max-width: 960px) {
  .Page--features .Statistics {
    background: #f6f6f6;
    margin-top: 0;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Statistics {
    background: transparent;
  }
}
@media screen and (max-width: 430px) {
  .Page--features .Statistics {
    margin-bottom: 90px;
  }
}
.Page--features .Statistics__container {
  background: #f6f6f6;
  border-radius: 40px;
  padding: 114px 100px;
  min-height: 638px !important;
  height: auto;
  max-width: 1180px;
}
@media screen and (max-width: 960px) {
  .Page--features .Statistics__container {
    border-radius: 0;
    background: transparent;
    min-height: 420px !important;
    padding: 112px 60px;
    -ms-flex-align: center;
        align-items: center;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Statistics__container {
    padding: 0;
  }
}
.Page--features .Statistics__side--left {
  max-width: 470px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 960px) {
  .Page--features .Statistics__side--left {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Statistics__side--left {
    text-align: center;
    margin-bottom: 146px;
    max-width: 396px;
    padding: 0 8px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 340px) {
  .Page--features .Statistics__side--left {
    margin-bottom: 115px;
  }
}
.Page--features .Statistics__side--left .Feature__description {
  max-width: 457px;
}
@media screen and (max-width: 960px) {
  .Page--features .Statistics__side--left .Feature__description {
    max-width: 100%;
  }
}
.Page--features .Statistics__side--right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: end;
      align-items: flex-end;
  padding-left: 70px;
}
@media screen and (max-width: 960px) {
  .Page--features .Statistics__side--right {
    padding-left: 0;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Statistics__side--right {
    height: 320px;
    background-color: #f6f6f6;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
@media screen and (max-width: 430px) {
  .Page--features .Statistics__side--right {
    height: 265px;
  }
}
@media screen and (max-width: 340px) {
  .Page--features .Statistics__side--right {
    height: 200px;
  }
}
.Page--features .Statistics__image {
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
}
@media screen and (max-width: 1250px) {
  .Page--features .Statistics__image {
    width: 415px;
    height: 407.5px;
    max-width: initial;
    min-width: initial;
    max-height: initial;
    min-height: initial;
  }
}
@media screen and (max-width: 960px) {
  .Page--features .Statistics__image {
    height: 384px;
    min-height: 384px;
    width: 376px;
  }
}
@media screen and (max-width: 430px) {
  .Page--features .Statistics__image {
    width: 390px;
    height: 382.5px;
    min-height: auto;
  }
}
.Page--features .Statistics__window {
  position: relative;
  width: 460px;
  height: 410px;
  min-width: 415px;
}
@media screen and (max-width: 960px) {
  .Page--features .Statistics__window {
    max-width: 420px;
    max-height: 336px;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Statistics__window {
    max-width: 380px;
    min-width: initial;
    top: -78px;
  }
}
@media screen and (max-width: 430px) {
  .Page--features .Statistics__window {
    transform: scale(0.8);
    width: 120%;
    top: -84px;
  }
}
@media screen and (max-width: 340px) {
  .Page--features .Statistics__window {
    transform: scale(0.6);
    width: 140%;
  }
}
.Page--features .Statistics__window .Operators {
  position: absolute;
  top: 116px;
  left: 95px;
  list-style: none;
  padding: 0;
  padding-left: 40px;
}
@media screen and (max-width: 960px) {
  .Page--features .Statistics__window .Operators {
    top: 110px;
    left: 85px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Statistics__window .Operators {
    top: 110px;
  }
}
.Page--features .Statistics__window .Operators .Operator {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 35px;
}
@media screen and (max-width: 960px) {
  .Page--features .Statistics__window .Operators .Operator {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 37px;
  }
}
.Page--features .Functions {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  margin-bottom: 100px;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--features .Functions {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Functions {
    margin-bottom: 0;
  }
}
.Page--features .Functions__container {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .Page--features .Functions__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Functions__container {
    max-width: 100%;
    padding: 0;
  }
}
.Page--features .Functions__side--left {
  position: relative;
  -ms-flex: 0 0 40%;
      flex: 0 0 40%;
  width: 40%;
  max-width: 340px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  .Page--features .Functions__side--left {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Functions__side--left {
    text-align: center;
    margin-bottom: 203px;
    max-width: 396px;
    padding: 0 8px;
    margin-right: auto;
    margin-left: auto;
  }
}
.Page--features .Functions__side--right {
  position: relative;
  -ms-flex: 0 0 60%;
      flex: 0 0 60%;
  width: 60%;
  max-width: 60%;
  background: #f6f6f6;
  border-radius: 40px;
  padding: 40px;
}
@media screen and (max-width: 960px) {
  .Page--features .Functions__side--right {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 46px 50px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Functions__side--right {
    border-radius: 0;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 960px) {
  .Page--features .Functions .Feature {
    height: auto;
    margin-bottom: 101px;
  }
}
@media screen and (max-width: 768px) {
  .Page--features .Functions .Feature {
    margin-bottom: 73px;
  }
}
@media screen and (max-width: 960px) {
  .Page--features .Functions .Feature__description {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
  }
}
.Page--features .Functions .Function__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}
.Page--features .Functions .Function__icon {
  position: relative;
  top: 4px;
  margin-right: 6px;
}
.Page--features .Functions .Function__list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.Page--features .Functions .Function__list .Property {
  padding: 19px 0 17px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 1px solid #ccc;
}
.Page--features .Functions .Function__list .Property__name {
  font-size: 16px;
  line-height: 35px;
  cursor: help;
}
.Page--features .Functions .Function__list .Property__checked {
  padding-right: 20px;
  position: relative;
  top: 6px;
}
.Page--features .Functions .Function__list .Property__unlimited {
  font-weight: 700;
  line-height: 35px;
  text-align: right;
  color: #32b9f6;
}

.Page--pricing .Pricing {
  margin-top: 60px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 100px;
  width: 100%;
}
.Page--pricing .Pricing__container {
  -ms-flex-align: center;
      align-items: center;
}
.Page--pricing .Pricing__side--left {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  height: 625px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 960px) {
  .Page--pricing .Pricing__side--left {
    height: auto;
    margin-bottom: 80px;
  }
}
.Page--pricing .Pricing__side--right {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
.Page--pricing .Pricing__content {
  max-width: 500px;
}
@media screen and (max-width: 960px) {
  .Page--pricing .Pricing__content {
    max-width: 550px;
    margin: 0 auto;
  }
}
.Page--pricing .Pricing__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 62.4px;
  max-width: 420px;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .Page--pricing .Pricing__title {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 768px) {
  .Page--pricing .Pricing__title {
    margin-bottom: 20px;
  }
}
.Page--pricing .Pricing__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
@media screen and (max-width: 960px) {
  .Page--pricing .Pricing__description {
    font-size: 18px;
    line-height: 1.56;
  }
}
.Page--pricing .Calculator {
  background: #101010;
  color: white;
  border-radius: 40px;
}
.Page--pricing .Calculator-calc {
  padding: 80px 80px 60px 80px;
}
@media screen and (max-width: 1120px) {
  .Page--pricing .Calculator-calc {
    padding: 40px 40px 30px 40px;
  }
}
@media screen and (max-width: 1120px) {
  .Page--pricing .Calculator-calc {
    padding: 80px 80px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .Page--pricing .Calculator-calc {
    border-radius: 0;
    padding: 80px 40px 60px 40px;
  }
}
.Page--pricing .Calculator__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
}
.Page--pricing .Calculator__price {
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 28px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .Page--pricing .Calculator__price {
    font-size: 46px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 320px) {
  .Page--pricing .Calculator__price {
    font-size: 38px;
  }
}
@media screen and (max-width: 280px) {
  .Page--pricing .Calculator__price {
    font-size: 30px;
  }
}
.Page--pricing .Calculator__per-month {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .Page--pricing .Calculator__per-month {
    font-size: 16px;
  }
}
.Page--pricing .Calculator__button {
  transition: all 0.1s ease-in-out;
  color: white;
  font-size: 13px;
  line-height: 12px;
  background: #32b9f6;
  padding: 13px 0;
  text-align: center;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  margin-bottom: 25px;
}
.Page--pricing .Calculator__button:hover {
  background: #43C5FF;
}
.Page--pricing .Calculator__button-strong {
  font-size: 16px;
  line-height: 20px;
}
.Page--pricing .Calculator__notice {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.47;
  text-align: center;
  padding: 0 10px;
}
.Page--pricing .Calculator .Dropdown__btn {
  padding-bottom: 8px;
}
.Page--pricing .Calculator .Dropdown__btn:after {
  top: 16px;
}
.Page--pricing .Calculator .Input {
  margin-bottom: 36px;
  position: relative;
}
.Page--pricing .Calculator .Input--checkbox {
  display: block;
  font-size: 20px;
  margin-bottom: 26px;
}
.Page--pricing .Calculator .Input__label {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 16px;
  display: block;
}
.Page--pricing .Calculator .Input__highlight {
  font-weight: bold;
  color: #32b9f6;
}
.Page--pricing .Calculator .Calculator-text {
  cursor: pointer;
  padding: 80px 80px 60px 80px;
}
@media screen and (max-width: 1120px) {
  .Page--pricing .Calculator .Calculator-text {
    padding: 40px 40px 30px 40px;
  }
}
@media screen and (max-width: 1120px) {
  .Page--pricing .Calculator .Calculator-text {
    padding: 80px 80px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .Page--pricing .Calculator .Calculator-text {
    border-radius: 0;
    padding: 80px 40px 60px 40px;
  }
}
.Page--pricing .Calculator .Calculator-text .Calculator__price {
  white-space: inherit;
}
.Page--pricing .Calculator .Calculator-text .Calculator__notice a {
  text-decoration: underline;
  color: white;
}
.Page--pricing .Features {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  margin-bottom: 100px;
  width: 100%;
  max-width: 100%;
}
.Page--pricing .Features__container {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .Page--pricing .Features__container {
    -ms-flex-pack: center;
        justify-content: center;
  }
}
.Page--pricing .Features__side--left {
  position: relative;
  -ms-flex: 0 0 40%;
      flex: 0 0 40%;
  width: 40%;
  max-width: 380px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 100px;
}
@media screen and (max-width: 960px) {
  .Page--pricing .Features__side--left {
    max-width: 545px;
    margin-top: 50px;
    margin-bottom: 80px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.Page--pricing .Features__side--right {
  position: relative;
  -ms-flex: 0 0 60%;
      flex: 0 0 60%;
  width: 60%;
  max-width: 60%;
  background: #f6f6f6;
  border-radius: 40px;
  padding: 30px 50px;
  padding-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .Page--pricing .Features__side--right {
    border-radius: 0px;
  }
}
@media screen and (max-width: 320px) {
  .Page--pricing .Features__side--right {
    padding: 20px 30px;
  }
}
.Page--pricing .Features__list {
  list-style: none;
  padding: 0;
}
.Page--pricing .Features__more {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin-top: 30px;
  margin-bottom: 22px;
}
.Page--pricing .Features__more-link {
  font-weight: 700;
  color: #32b9f6;
}
.Page--pricing .Features .Function {
  padding: 19px 0 17px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 1px solid #ccc;
}
.Page--pricing .Features .Function__name {
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
}
.Page--pricing .Features .Function__checked {
  padding-right: 20px;
  position: relative;
  top: 6px;
}
.Page--pricing .MoreFeatures {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  margin-bottom: 100px;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--pricing .MoreFeatures {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures {
    margin-bottom: 0;
  }
}
.Page--pricing .MoreFeatures__side--left {
  position: relative;
  -ms-flex: 0 0 40%;
      flex: 0 0 40%;
  max-width: 40%;
  width: 40%;
}
@media screen and (max-width: 960px) {
  .Page--pricing .MoreFeatures__side--left {
    margin-bottom: 80px;
  }
}
.Page--pricing .MoreFeatures__side--right {
  position: relative;
  -ms-flex: 0 0 60%;
      flex: 0 0 60%;
  max-width: 60%;
  width: 60%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.Page--pricing .MoreFeatures .Feature {
  height: auto;
}
.Page--pricing .MoreFeatures .Feature__content {
  max-width: 380px;
}
@media screen and (max-width: 960px) {
  .Page--pricing .MoreFeatures .Feature__content {
    max-width: 588px;
    margin: 0 auto;
  }
}
.Page--pricing .MoreFeatures .Preview {
  position: relative;
  background: #101010;
  border-radius: 40px;
  padding: 0 80px;
  width: 100%;
  height: 100%;
  color: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .Page--pricing .MoreFeatures .Preview {
    height: 543px;
    min-width: 100%;
    max-width: 699px;
  }
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview {
    border-radius: 0px;
    padding: 0 50px;
    height: 368px;
  }
}
@media screen and (max-width: 380px) {
  .Page--pricing .MoreFeatures .Preview {
    padding: 0 25px;
  }
}
.Page--pricing .MoreFeatures .Preview__window {
  width: 100%;
  height: 400px;
  -ms-flex-item-align: self-start;
      align-self: self-start;
  background: #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 70px 30px 30px 30px;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview__window {
    height: 264px;
    border-bottom-left-radius: 14.1px;
    border-bottom-right-radius: 14.1px;
    padding: 33px 21px 21px 21px;
  }
}
.Page--pricing .MoreFeatures .Preview__chat-bubble {
  max-width: 314px;
  width: 100%;
  height: 86px;
  border-radius: 33.6px;
  background-color: #e7e7e7;
  padding: 32px 34px;
  margin-bottom: 53px;
  border-bottom-left-radius: 0;
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview__chat-bubble {
    max-width: 222px;
    height: 60px;
    border-radius: 23.7px;
    border-bottom-left-radius: 0;
    padding: 23px 24px;
    margin-bottom: 38px;
  }
}
.Page--pricing .MoreFeatures .Preview__chat-bubble:before, .Page--pricing .MoreFeatures .Preview__chat-bubble:after {
  content: "";
  display: block;
  height: 7px;
  background: #a6a6a6;
  border-radius: 6.7px;
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview__chat-bubble:before, .Page--pricing .MoreFeatures .Preview__chat-bubble:after {
    height: 5px;
    border-radius: 4.7px;
  }
}
.Page--pricing .MoreFeatures .Preview__chat-bubble:before {
  width: 90%;
}
.Page--pricing .MoreFeatures .Preview__chat-bubble:after {
  width: 65%;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview__chat-bubble:after {
    margin-top: 8px;
  }
}
.Page--pricing .MoreFeatures .Preview__textarea {
  width: 100%;
  height: 104px;
  border-radius: 10px;
  background-color: #e7e7e7;
  padding: 25px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview__textarea {
    padding: 17px;
    height: 73px;
    border-radius: 7.1px;
    margin-bottom: 18px;
  }
}
.Page--pricing .MoreFeatures .Preview__textarea-placeholder {
  color: #101010;
  font-size: 18px;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview__textarea-placeholder {
    font-size: 12.7px;
  }
}
.Page--pricing .MoreFeatures .Preview__powered-by {
  height: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: center;
      align-items: center;
  font-size: 15px;
  color: #101010;
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview__powered-by {
    font-size: 10.6px;
  }
}
.Page--pricing .MoreFeatures .Preview__powered-by-image {
  width: 121px;
  height: 25px;
  margin-left: 8px;
}
.Page--pricing .MoreFeatures .Preview .Switch {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 42px 0 53px 0;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  height: 143px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview .Switch {
    height: auto;
    padding: 40px 0;
  }
}
.Page--pricing .MoreFeatures .Preview .Switch__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview .Switch__text {
    font-size: 14px;
  }
}
.Page--pricing .MoreFeatures .Preview .Switch .switchery {
  margin: 0 15px;
}
.Page--pricing .MoreFeatures .Preview .Switch__arrow {
  position: absolute;
  left: calc(100% + 20px);
  bottom: calc(100% - 13px);
}
@media screen and (max-width: 768px) {
  .Page--pricing .MoreFeatures .Preview .Switch__arrow {
    transform: scale(0.65);
    left: calc(100% + 4px);
    bottom: calc(100% - 21px);
  }
}
@media screen and (max-width: 380px) {
  .Page--pricing .MoreFeatures .Preview .Switch__arrow {
    display: none;
  }
}
.Page--pricing .Feature__title {
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .Page--pricing .Feature {
    height: auto;
  }
}
@media screen and (max-width: 960px) {
  .Page--pricing .Pricing__container,
.Page--pricing .Features__container,
.Page--pricing .MoreFeatures__container {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .Page--pricing .Pricing__container,
.Page--pricing .Features__container,
.Page--pricing .MoreFeatures__container {
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  .Page--pricing .Pricing__side--left, .Page--pricing .Pricing__side--right,
.Page--pricing .Features__side--left,
.Page--pricing .Features__side--right,
.Page--pricing .MoreFeatures__side--left,
.Page--pricing .MoreFeatures__side--right {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .Page--pricing .Pricing__side--left,
.Page--pricing .Features__side--left,
.Page--pricing .MoreFeatures__side--left {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .Page--pricing .Pricing__side--left,
.Page--pricing .Features__side--left,
.Page--pricing .MoreFeatures__side--left {
    max-width: 396px;
    padding: 0 8px;
    margin-right: auto;
    margin-left: auto;
  }
}

.Page--plugins {
  overflow-x: hidden;
}
.Page--plugins .Navbar__item--first, .Page--plugins .Navbar__item--second {
  border-color: white;
  color: white;
  background: transparent;
}
.Page--plugins .Navbar--sticky .Navbar__item--first {
  border-color: #32b9f6;
  background: #32b9f6;
}
.Page--plugins .Navbar--sticky .Navbar__item--second {
  border-color: #101010;
  color: #101010;
}
.Page--plugins .Navbar .NavbarBtn__btn {
  border-color: white;
}
.Page--plugins .Navbar .NavbarBtn__btn:hover {
  border-color: #32b9f6;
}
.Page--plugins .Navbar .NavbarBtn__span {
  background-color: white;
}
@media screen and (max-width: 768px) {
  .Page--plugins .Navbar .NavbarBtn__btn {
    border-color: #101010;
  }
  .Page--plugins .Navbar .NavbarBtn__btn:hover .NavbarBtn__span {
    background-color: white;
  }
  .Page--plugins .Navbar .NavbarBtn__span {
    background-color: #101010;
  }
}
.Page--plugins .Intro {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 245px;
}
.Page--plugins .Intro .Navbar__item--first, .Page--plugins .Intro .Navbar__item--second {
  border-color: white;
  color: white;
  background: transparent;
}
.Page--plugins .Intro .Navbar--sticky .Navbar__item--first {
  border-color: #32b9f6;
  background: #32b9f6;
}
.Page--plugins .Intro .Navbar--sticky .Navbar__item--second {
  border-color: #101010;
  color: #101010;
}
.Page--plugins .Intro .Navbar .NavbarBtn__btn {
  border-color: white;
}
.Page--plugins .Intro .Navbar .NavbarBtn__btn:hover {
  border-color: #32b9f6;
}
.Page--plugins .Intro .Navbar .NavbarBtn__span {
  background-color: white;
}
@media screen and (max-width: 768px) {
  .Page--plugins .Intro .Navbar .NavbarBtn__btn {
    border-color: #101010;
  }
  .Page--plugins .Intro .Navbar .NavbarBtn__btn:hover .NavbarBtn__span {
    background-color: white;
  }
  .Page--plugins .Intro .Navbar .NavbarBtn__span {
    background-color: #101010;
  }
}
.Page--plugins .Intro__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Page--plugins .Intro__side--left {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
.Page--plugins .Intro__side--right {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .Page--plugins .Intro__side {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  .Page--plugins .Intro {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 768px) {
  .Page--plugins .Intro {
    margin-bottom: 150px;
  }
}
.Page--plugins .Intro__side--left {
  padding-right: 6%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .Page--plugins .Intro__side--left {
    padding-right: 0;
    text-align: center;
  }
}
.Page--plugins .Intro__side--right {
  margin-top: 150px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Page--plugins .Intro__side--right {
    display: none;
  }
}
.Page--plugins .Intro__title {
  font-size: 52px;
  font-weight: bold;
  margin-top: 208px;
  margin-bottom: 20px;
  line-height: 62.4px;
  max-width: 480px;
}
@media screen and (max-width: 960px) {
  .Page--plugins .Intro__title {
    font-size: 40px;
    line-height: 52px;
    max-width: 280px;
    margin-top: 86px;
  }
}
@media screen and (max-width: 768px) {
  .Page--plugins .Intro__title {
    max-width: 100%;
    margin-top: 60px;
  }
}
.Page--plugins .Intro__description {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 40px;
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .Page--plugins .Intro__description {
    font-size: 18px;
    line-height: 28px;
    max-width: 280px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  .Page--plugins .Intro__description {
    max-width: 100%;
  }
}
.Page--plugins .Intro__action-btn {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 21px 10px;
  padding-bottom: 19px;
  background: #32b9f6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  line-height: 20px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 280px;
  text-align: center;
}
.Page--plugins .Intro__action-btn:hover {
  background: #43C5FF;
}
@media screen and (max-width: 768px) {
  .Page--plugins .Intro__action-btn {
    max-width: 100%;
  }
}
.Page--plugins .Intro .Preview {
  max-width: 590px;
  width: 100%;
  height: 498px;
  border-radius: 20px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  box-shadow: 0 11px 40px 0 rgba(16, 16, 16, 0.1);
  background-color: #21759b;
  position: relative;
  top: -80px;
}
.Page--plugins .Intro .Preview__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Page--plugins .Intro .Preview__side--left {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
.Page--plugins .Intro .Preview__side--right {
  position: relative;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .Page--plugins .Intro .Preview__side {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}
.Page--plugins .Intro .Preview__header {
  background: white;
  height: 41px;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 17px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Page--plugins .Intro .Preview__dots {
  display: -ms-flexbox;
  display: flex;
}
.Page--plugins .Intro .Preview__dots .Dot {
  width: 9px;
  height: 9px;
  border-radius: 12px;
  background-color: #e7e7e7;
  margin-left: 3px;
}
.Page--plugins .Intro .Preview__bar {
  max-width: 498px;
  width: 100%;
  height: 14px;
  border-radius: 11px;
  background-color: #e7e7e7;
  margin-left: 24px;
}
.Page--plugins .Intro .Preview__container {
  padding-top: 88px;
}
@media screen and (max-width: 1175px) {
  .Page--plugins .Intro .Preview__container {
    padding-top: 15px;
  }
}
.Page--plugins .Intro .Preview__side--left {
  -ms-flex: 0 0 229px;
      flex: 0 0 229px;
  width: 100%;
  max-width: 229px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 1175px) {
  .Page--plugins .Intro .Preview__side--left {
    height: 50px;
  }
}
.Page--plugins .Intro .Preview__side--right {
  -ms-flex: 0 0 304px;
      flex: 0 0 304px;
  width: 100%;
  max-width: 304px;
}
@media screen and (max-width: 1175px) {
  .Page--plugins .Intro .Preview__side--right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    margin-top: 15px;
  }
}
@media screen and (max-width: 1175px) {
  .Page--plugins .Intro .Preview__side {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
  }
}
.Page--plugins .Intro .Preview__logo {
  max-width: 100px;
  max-height: 100px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media screen and (max-width: 1175px) {
  .Page--plugins .Intro .Preview__logo {
    max-width: 50px;
    max-height: 50px;
  }
}
.Page--plugins .Intro .Preview__image {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.Page--plugins .Intro .Preview__chat {
  max-width: 304px;
  width: 100%;
  height: 239px;
  border-radius: 18px;
  box-shadow: 0 10px 36px 0 rgba(16, 16, 16, 0.1);
  background-color: #ffffff;
  position: relative;
  padding-top: 55px;
}
.Page--plugins .Intro .Preview__chat .Bubble--first {
  left: 97px;
}
.Page--plugins .Intro .Preview__chat .Bubble--first .Bubble__avatar {
  width: 49px;
  height: 49px;
  left: -66px;
}
.Page--plugins .Intro .Preview__chat .Bubble--second {
  margin-top: 37px;
  width: 100%;
  max-width: 238px;
  right: -32px;
}
.Page--plugins .Intro .Preview__chat .Bubble--second .Bubble__avatar {
  width: 49px;
  height: 49px;
  right: -60px;
}
.Page--plugins .Intro .Preview__bubble {
  width: 80px;
  height: 80px;
  box-shadow: 0 11px 40px 0 rgba(16, 16, 16, 0.1);
  background-color: #77c71e;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.Page--plugins .CallToAction {
  margin-bottom: 100px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .Page--plugins .CallToAction .Page__container {
    max-width: 100%;
    padding: 0;
  }
}
.Page--plugins .CallToAction__container {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #f6f6f6;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 134px 0 100px;
  border-radius: 32px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .Page--plugins .CallToAction__container {
    border-radius: 0;
    padding: 100px 0 80px;
    padding-top: 135px;
  }
}
.Page--plugins .CallToAction__image {
  position: absolute;
  top: -99px;
  left: -36px;
  right: 0;
  margin: 0 auto;
  max-width: 225px;
}
@media screen and (max-width: 960px) {
  .Page--plugins .CallToAction__image {
    top: -80px;
    left: -30px;
  }
}
.Page--plugins .CallToAction__body {
  text-align: center;
  max-width: 780px;
}
@media screen and (max-width: 1200px) {
  .Page--plugins .CallToAction__body {
    max-width: 395px;
    margin-top: -20px;
  }
}
@media screen and (max-width: 768px) {
  .Page--plugins .CallToAction__body {
    margin-top: 0;
    max-width: 342px;
    padding: 0 8px;
  }
}
.Page--plugins .CallToAction__caption {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.29;
  text-align: center;
  margin-bottom: 10px;
  color: #101010;
  text-transform: uppercase;
  opacity: 0.5;
}
@media screen and (max-width: 1200px) {
  .Page--plugins .CallToAction__caption {
    margin-bottom: 11px;
  }
}
.Page--plugins .CallToAction__title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  line-height: 1.11;
  letter-spacing: -1.25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .Page--plugins .CallToAction__title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 28px;
  }
}
.Page--plugins .CallToAction__action-btn {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 21px 10px;
  padding-bottom: 19px;
  background: #32b9f6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  line-height: 20px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 280px;
  text-align: center;
  margin-bottom: 40px;
}
.Page--plugins .CallToAction__action-btn:hover {
  background: #43C5FF;
}
@media screen and (max-width: 768px) {
  .Page--plugins .CallToAction__action-btn {
    max-width: 100%;
  }
}
.Page--plugins .CallToAction__description {
  font-size: 18px;
  line-height: 1.56;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .Page--plugins .CallToAction__description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
  }
}
.Page--plugins .CallToAction__second-caption {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.Page--plugins .CallToAction__second-caption::after {
  content: "";
  background: url("/frontend/dist/images/components/others/icons/demo-link-arrow-icon.svg") no-repeat;
  width: 8px;
  height: 14px;
  position: relative;
  right: -9px;
  top: 3px;
  display: inline-block;
}
.Page--plugins .ReviewBlock {
  margin-bottom: 100px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
.Page--plugins .ReviewBlock__container {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  max-width: 676px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Page--plugins .ReviewBlock__description {
  font-size: 18px;
  line-height: 1.56;
  text-align: center;
  margin-bottom: 35px;
}
.Page--plugins .ReviewBlock__score {
  text-align: center;
  margin-bottom: 10px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
}
.Page--plugins .ReviewBlock__score-value {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  margin-right: 12px;
}
.Page--plugins .ReviewBlock__stars {
  position: relative;
  top: 1px;
  height: 16px;
}
.Page--plugins .ReviewBlock__mention {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 12px;
}
.Page--plugins .Features {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  margin-bottom: 100px;
  width: 100%;
  max-width: 100%;
}
.Page--plugins .Features__container {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .Page--plugins .Features__container {
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .Page--plugins .Features__container {
    max-width: 100%;
    padding: 0;
  }
}
.Page--plugins .Features__side--left {
  position: relative;
  -ms-flex: 0 0 40%;
      flex: 0 0 40%;
  width: 40%;
  max-width: 380px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 100px;
}
@media screen and (max-width: 960px) {
  .Page--plugins .Features__side--left {
    margin-top: 0;
    margin-bottom: 80px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center;
    height: auto;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Page--plugins .Features__side--left {
    max-width: 396px;
  }
}
.Page--plugins .Features__side--right {
  position: relative;
  -ms-flex: 0 0 60%;
      flex: 0 0 60%;
  width: 60%;
  max-width: 60%;
  background: #f6f6f6;
  border-radius: 40px;
  padding: 30px 50px;
  padding-bottom: 22px;
}
@media screen and (max-width: 960px) {
  .Page--plugins .Features__side--right {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Page--plugins .Features__side--right {
    border-radius: 0px;
  }
}
@media screen and (max-width: 320px) {
  .Page--plugins .Features__side--right {
    padding: 20px 30px;
  }
}
.Page--plugins .Features__list {
  list-style: none;
  padding: 0;
}
.Page--plugins .Features__more {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin-top: 30px;
  margin-bottom: 22px;
}
.Page--plugins .Features__more-link {
  font-weight: 700;
  color: #32b9f6;
}
.Page--plugins .Features .Function {
  padding: 19px 0 17px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 1px solid #ccc;
}
.Page--plugins .Features .Function__name {
  font-size: 16px;
  font-weight: 400;
  line-height: 35px;
}
.Page--plugins .Features .Function__checked {
  padding-right: 20px;
  position: relative;
  top: 6px;
}

.Page--help {
  position: relative;
}
.Page--help .Help {
  margin-top: 120px;
  width: 100%;
}
.Page--help .Help__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .Page--help .Help__container {
    padding: 0;
  }
}
.Page--help .Help__side--left {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
  padding-right: 25px;
}
@media screen and (max-width: 960px) {
  .Page--help .Help__side--left {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
}
.Page--help .Help__side--right {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%;
  padding-left: 25px;
}
@media screen and (max-width: 960px) {
  .Page--help .Help__side--right {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
}
.Page--help .Help__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 62.4px;
  text-align: center;
  width: 100%;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
}
.Page--help .Help__content {
  margin: 0 auto;
  margin-bottom: 80px;
  width: 100%;
}
.Page--help .Help__content img {
  max-width: 100%;
}
.Page--help .Help__content figure {
  max-width: 100%;
  margin: 35px 0;
}
.Page--help .Help__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}
.Page--help .Help__content a {
  color: #32b9f6;
}
.Page--help .Help__content a:hover {
  text-decoration: underline;
}
.Page--help .Help__content h1 {
  font-size: 52px;
  font-weight: 700;
}
.Page--help .Help__content h2 {
  font-size: 38px;
  font-weight: 700;
}
.Page--help .Help__content h3 {
  font-size: 28px;
  font-weight: 600;
}
.Page--help .Help__content h1, .Page--help .Help__content h2, .Page--help .Help__content h3 {
  margin-top: 40px;
  margin-bottom: 30px;
}
.Page--help .Help__content p, .Page--help .Help__content ul {
  margin-top: 10px;
  margin-bottom: 20px;
}
.Page--help .Help__content ul {
  padding-left: 20px;
  list-style: none;
}
.Page--help .Help__content ul > li {
  margin: 10px 0;
}
.Page--help .Help__content ul > li:before {
  content: "";
  height: 13px;
  width: 8px;
  display: block;
  margin-left: -17px;
  margin-top: 5px;
  float: left;
  background-image: url("/frontend/dist/images/components/others/icons/list-arrow-bullet.svg");
  background-repeat: no-repeat;
}
.Page--help .Help__content figcaption {
  text-align: center;
}
.Page--help .Help__content .float-right {
  float: right;
}
.Page--help .Help__content .float-left {
  float: left;
}
.Page--help .Help__content .w100 {
  width: 100%;
}
.Page--help .Help__content .Box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Page--help .Help__content .Box--images {
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
}
.Page--help .Help__content .Box--images img {
  margin: 15px 30px;
  max-width: calc(100% - 60px);
}
.Page--help .Help__content .Box--full-width a {
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  max-width: 100%;
}
.Page--help .Help__content .Box--justify-start {
  text-align: left;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.Page--help .Help .Journey {
  padding: 60px;
  background: #f6f6f6;
  border-radius: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .Page--help .Help .Journey {
    margin-bottom: 30px;
    padding: 40px;
  }
}
@media screen and (max-width: 480px) {
  .Page--help .Help .Journey {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 0;
  }
}
.Page--help .Help .Journey__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 20px;
}
.Page--help .Help .Journey__list {
  padding-left: 20px;
  list-style: none;
}
.Page--help .Help .Journey__item {
  margin-bottom: 10px;
}
.Page--help .Help .Journey__item:before {
  content: "";
  height: 13px;
  width: 8px;
  display: block;
  margin-left: -17px;
  margin-top: 5px;
  float: left;
  background-image: url("/frontend/dist/images/components/others/icons/list-arrow-bullet.svg");
  background-repeat: no-repeat;
}
.Page--help .Help .Journey__link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #101010;
}
.Page--help .Help .Journey__link:hover {
  text-decoration: underline;
}
.Page--help .QuestionsAndAnswers {
  width: 100%;
  margin-bottom: 60px;
}
.Page--help .QuestionsAndAnswers__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Page--help .QuestionsAndAnswers__side--left {
  -ms-flex: 0 0 30%;
      flex: 0 0 30%;
  width: 30%;
  max-width: 30%;
  padding-right: 20px;
}
@media screen and (max-width: 1090px) {
  .Page--help .QuestionsAndAnswers__side--left {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding-right: 0px;
  }
}
.Page--help .QuestionsAndAnswers__side--right {
  -ms-flex: 0 0 70%;
      flex: 0 0 70%;
  width: 70%;
  max-width: 70%;
  padding-top: 12px;
}
@media screen and (max-width: 1090px) {
  .Page--help .QuestionsAndAnswers__side--right {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
.Page--help .QuestionsAndAnswers .Navigation {
  width: 280px;
}
@media screen and (max-width: 1090px) {
  .Page--help .QuestionsAndAnswers .Navigation {
    width: 100%;
  }
}
.Page--help .QuestionsAndAnswers .Navigation__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1090px) {
  .Page--help .QuestionsAndAnswers .Navigation__title {
    text-align: center;
  }
}
.Page--help .QuestionsAndAnswers .Navigation__list {
  list-style: none;
  padding: 0;
  width: 280px;
  max-height: calc(100% - 116px);
  overflow-y: auto;
}
@media screen and (max-width: 1090px) {
  .Page--help .QuestionsAndAnswers .Navigation__list {
    display: none;
  }
}
.Page--help .QuestionsAndAnswers .Navigation__item {
  padding: 16px 30px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.Page--help .QuestionsAndAnswers .Navigation__item--active {
  background: #32b9f6;
}
.Page--help .QuestionsAndAnswers .Navigation__item--active .Navigation__link {
  color: white;
  font-weight: 500;
}
.Page--help .QuestionsAndAnswers .Navigation__link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #101010;
}
.Page--help .QuestionsAndAnswers .Search {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .Page--help .QuestionsAndAnswers .Search {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 60px;
  }
}
.Page--help .QuestionsAndAnswers .Search__input {
  border: 2px solid #d4d4d4;
  padding: 17px 25px;
  padding-bottom: 14px;
  -ms-flex-positive: 1;
      flex-grow: 1;
  margin-right: 20px;
  border-radius: 6px;
  outline: 0;
}
@media screen and (max-width: 768px) {
  .Page--help .QuestionsAndAnswers .Search__input {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }
}
.Page--help .QuestionsAndAnswers .Search__input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #101010;
}
.Page--help .QuestionsAndAnswers .Search__input:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #101010;
}
.Page--help .QuestionsAndAnswers .Search__input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #101010;
}
.Page--help .QuestionsAndAnswers .Search__button {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  background: #32b9f6;
  padding: 22px 45px 18px;
  color: white;
}
.Page--help .QuestionsAndAnswers .Search__button:hover {
  background: #43C5FF;
}
@media screen and (max-width: 768px) {
  .Page--help .QuestionsAndAnswers .Search__button {
    margin: 0 auto;
  }
}
.Page--help .QuestionsAndAnswers .Section {
  margin-bottom: 60px;
}
.Page--help .QuestionsAndAnswers .Section__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 20px;
}
.Page--help .QuestionsAndAnswers .Panel {
  border-bottom: 1px solid #cccccc;
}
.Page--help .QuestionsAndAnswers .Panel--active .Panel__header:after {
  transform: rotate(-90deg);
}
.Page--help .QuestionsAndAnswers .Panel__header {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  padding: 18px 0;
  cursor: pointer;
  padding-right: 30px;
}
.Page--help .QuestionsAndAnswers .Panel__header:after {
  content: "";
  background: url("/frontend/dist/images/components/others/icons/arrow-black-icon.svg") no-repeat;
  position: absolute;
  width: 7px;
  height: 13px;
  top: 27px;
  right: 14px;
  transform: rotate(90deg);
}
.Page--help .QuestionsAndAnswers .Panel__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding-bottom: 18px;
}
.Page--help .QuestionsAndAnswers .Empty {
  display: none;
  text-align: center;
}

.Page--signup .SignUp {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 100px;
}
.Page--signup .SignUp__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.Page--signup .SignUp__header {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  text-align: center;
  margin-bottom: 60px;
  max-width: 100%;
}
.Page--signup .SignUp__title {
  font-size: 52px;
  font-weight: 700;
}
.Page--signup .SignUp__form {
  -ms-flex: 0 0 360px;
      flex: 0 0 360px;
  max-width: 360px;
}
.Page--signup .SignUp__note {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  text-align: center;
  margin-bottom: 30px;
  max-width: 540px;
}
.Page--signup .SignUp__redirect {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
.Page--signup .SignUp .Form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
}
.Page--signup .SignUp .Form__group {
  margin-bottom: 20px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
.Page--signup .SignUp .Form__input {
  transition: all 0.1s ease-in-out;
  border: 2px solid #c3c3c3;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding: 17px 25px 15px;
  border-radius: 8px;
  width: 100%;
  max-width: 360px;
  height: 62px;
}
.Page--signup .SignUp .Form__input:focus {
  border-color: #32b9f6;
  outline: 0;
}
.Page--signup .SignUp .Form__error {
  margin-top: 15px;
  margin-bottom: -7px;
  font-weight: 500;
  color: #dc2929;
}
.Page--signup .SignUp .Form__submit {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  background: #32b9f6;
  color: white;
  padding: 21px 20px 19px;
  padding-bottom: 18px;
  width: 100%;
  max-width: 360px;
}
.Page--signup .SignUp .Form__submit:hover {
  background: #43C5FF;
}
.Page--signup .SignUp a {
  transition: all 0.1s ease-in-out;
}
.Page--signup .SignUp a:hover {
  color: #43C5FF;
}

.Page--signup-done .SignUpDone {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 100px;
}
.Page--signup-done .SignUpDone__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.Page--signup-done .SignUpDone__header {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  text-align: center;
  margin-bottom: 60px;
  max-width: 100%;
}
.Page--signup-done .SignUpDone__title {
  font-size: 52px;
  font-weight: 700;
}
.Page--signup-done .SignUpDone__paragraph {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  text-align: center;
  margin-bottom: 30px;
  max-width: 100%;
}
.Page--signup-done .SignUpDone a {
  transition: all 0.1s ease-in-out;
}
.Page--signup-done .SignUpDone a:hover {
  color: #43C5FF;
}

.Page--signin .SignIn {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 100px;
}
.Page--signin .SignIn__login-as {
  line-height: 1.2;
  margin-bottom: -4px;
}
.Page--signin .SignIn .Dropdown {
  width: 100%;
  max-width: 360px;
}
.Page--signin .SignIn .Dropdown--open .Dropdown__btn {
  border-color: #32b9f6;
  color: #fff;
}
.Page--signin .SignIn .Dropdown--open .Dropdown__btn:after {
  background: url("/frontend/dist/images/components/others/icons/arrow-up-icon.svg") no-repeat;
}
.Page--signin .SignIn .Dropdown__btn {
  border-color: #c3c3c3;
  color: #101010;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding: 17px 25px 15px;
  text-align: left;
}
.Page--signin .SignIn .Dropdown__btn:after {
  top: 25px;
  background: url("/frontend/dist/images/components/others/icons/grey-arrow-up-icon.svg") no-repeat;
}
.Page--signin .SignIn .Dropdown__btn:hover {
  border-color: #32b9f6;
  color: #fff;
}
.Page--signin .SignIn .Dropdown__btn:hover:after {
  background: url("/frontend/dist/images/components/others/icons/arrow-up-icon.svg") no-repeat;
}
.Page--signin .SignIn .Dropdown__content {
  border: 1px solid #c3c3c3;
}
.Page--signin .SignIn__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.Page--signin .SignIn__header {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.Page--signin .SignIn__title {
  font-size: 52px;
  font-weight: 700;
}
.Page--signin .SignIn__form {
  -ms-flex: 0 0 360px;
      flex: 0 0 360px;
}
.Page--signin .SignIn__lost-password {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  text-align: center;
  margin-bottom: 30px;
  max-width: 540px;
}
.Page--signin .SignIn__redirect {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  text-align: center;
}
.Page--signin .SignIn .Form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  margin-bottom: 40px;
}
.Page--signin .SignIn .Form__group {
  margin-bottom: 20px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
.Page--signin .SignIn .Form__input {
  transition: all 0.1s ease-in-out;
  border: 2px solid #c3c3c3;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding: 17px 25px 15px;
  border-radius: 8px;
  width: 100%;
  max-width: 360px;
  height: 62px;
}
.Page--signin .SignIn .Form__input:focus {
  border-color: #32b9f6;
  outline: 0;
}
.Page--signin .SignIn .Form__error {
  margin-top: 15px;
  margin-bottom: -7px;
  font-weight: 500;
  color: #dc2929;
}
.Page--signin .SignIn .Form__submit {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  background: #32b9f6;
  color: white;
  padding: 21px 20px 19px;
  width: 100%;
  max-width: 360px;
}
.Page--signin .SignIn .Form__submit:hover {
  background: #43C5FF;
}
.Page--signin .SignIn a {
  transition: all 0.1s ease-in-out;
}
.Page--signin .SignIn a:hover {
  color: #43C5FF;
}

.Page--password-forgot .PassForgot {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 100px;
}
.Page--password-forgot .PassForgot__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.Page--password-forgot .PassForgot__header {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  text-align: center;
  margin-bottom: 60px;
}
.Page--password-forgot .PassForgot__title {
  font-size: 52px;
  font-weight: 700;
}
.Page--password-forgot .PassForgot__form {
  -ms-flex: 0 0 360px;
      flex: 0 0 360px;
  max-width: 360px;
}
.Page--password-forgot .PassForgot .Form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
}
.Page--password-forgot .PassForgot .Form__group {
  margin-bottom: 20px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
.Page--password-forgot .PassForgot .Form__input {
  transition: all 0.1s ease-in-out;
  border: 2px solid #c3c3c3;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding: 17px 25px 15px;
  border-radius: 8px;
  width: 100%;
  max-width: 360px;
  height: 62px;
}
.Page--password-forgot .PassForgot .Form__input:focus {
  border-color: #32b9f6;
  outline: 0;
}
.Page--password-forgot .PassForgot .Form__error {
  margin-top: 15px;
  margin-bottom: -7px;
  font-weight: 500;
  color: #dc2929;
}
.Page--password-forgot .PassForgot .Form__submit {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  background: #32b9f6;
  color: white;
  padding: 21px 20px 19px;
  width: 100%;
  max-width: 360px;
}
.Page--password-forgot .PassForgot .Form__submit:hover {
  background: #43C5FF;
}

.Page--account-activate .AccountActivate {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 100px;
}
.Page--account-activate .AccountActivate__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.Page--account-activate .AccountActivate__header {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.Page--account-activate .AccountActivate__title {
  font-size: 52px;
  font-weight: 700;
}
.Page--account-activate .AccountActivate__form {
  -ms-flex: 0 0 360px;
      flex: 0 0 360px;
  max-width: 360px;
}
.Page--account-activate .AccountActivate .Form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  margin-bottom: 40px;
  max-width: 360px;
}
.Page--account-activate .AccountActivate .Form__group {
  margin-bottom: 20px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
.Page--account-activate .AccountActivate .Form__info {
  text-align: center;
  display: block;
  font-size: 14px;
  margin-top: 5px;
}
.Page--account-activate .AccountActivate .Form__input {
  transition: all 0.1s ease-in-out;
  border: 2px solid #c3c3c3;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding: 17px 25px 15px;
  border-radius: 8px;
  width: 100%;
}
.Page--account-activate .AccountActivate .Form__input:focus {
  border-color: #32b9f6;
  outline: 0;
}
.Page--account-activate .AccountActivate .Form__error {
  margin-top: 15px;
  margin-bottom: -7px;
  font-weight: 500;
  color: #dc2929;
}
.Page--account-activate .AccountActivate .Form__submit {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  background: #32b9f6;
  color: white;
  padding: 21px 20px 19px;
  width: 100%;
  max-width: 360px;
}
.Page--account-activate .AccountActivate .Form__submit:hover {
  background: #43C5FF;
}

.Page--general .General {
  width: 100%;
  margin-top: 120px;
}
.Page--general .General__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Page--general .General__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 62.4px;
  text-align: center;
  width: 100%;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 60px;
}
.Page--general .General__content {
  margin: 0 auto;
  margin-bottom: 80px;
  width: 100%;
}
.Page--general .General__content img {
  max-width: 100%;
}
.Page--general .General__content figure {
  max-width: 100%;
  margin: 35px 0;
}
.Page--general .General__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}
.Page--general .General__content a {
  color: #32b9f6;
}
.Page--general .General__content a:hover {
  text-decoration: underline;
}
.Page--general .General__content h1 {
  font-size: 52px;
  font-weight: 700;
}
.Page--general .General__content h2 {
  font-size: 38px;
  font-weight: 700;
}
.Page--general .General__content h3 {
  font-size: 28px;
  font-weight: 700;
}
.Page--general .General__content h1, .Page--general .General__content h2, .Page--general .General__content h3 {
  margin-top: 40px;
  margin-bottom: 30px;
}
.Page--general .General__content p, .Page--general .General__content ul {
  margin-top: 10px;
  margin-bottom: 20px;
}
.Page--general .General__content pre {
  font-family: Colfax, arial, sans-serif;
  background: #f4f4f4;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  white-space: normal;
}
.Page--general .General__content ul {
  padding-left: 20px;
  list-style: none;
}
.Page--general .General__content ul > li {
  margin: 10px 0;
}
.Page--general .General__content ul > li:before {
  content: "";
  height: 13px;
  width: 8px;
  display: block;
  margin-left: -17px;
  margin-top: 5px;
  float: left;
  background-image: url("/frontend/dist/images/components/others/icons/list-arrow-bullet.svg");
  background-repeat: no-repeat;
}
.Page--general .General__content ol {
  padding-left: 20px;
}
.Page--general .General__content ol > li {
  margin: 10px 0;
}
.Page--general .General__content .Box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.Page--general .General__content .Box--images {
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
}
.Page--general .General__content .Box--images img {
  margin: 15px 30px;
  max-width: calc(100% - 60px);
}
.Page--general .General__content .Box--full-width a {
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  max-width: 100%;
}
.Page--general .General__content .center {
  text-align: center;
}
.Page--general .General__content .row {
  width: 100%;
}

.Page--contact .Contact {
  width: 100%;
  margin-top: 120px;
  margin-bottom: 100px;
}
.Page--contact .Contact--done .Contact__subtitle {
  font-size: 20px;
}
.Page--contact .Contact__container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.Page--contact .Contact__header {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  text-align: center;
  margin-bottom: 60px;
}
.Page--contact .Contact__title {
  font-size: 52px;
  font-weight: 700;
}
.Page--contact .Contact__form {
  -ms-flex: 0 0 360px;
      flex: 0 0 360px;
  max-width: 360px;
}
.Page--contact .Contact .Form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 40px;
}
.Page--contact .Contact .Form__group {
  margin-bottom: 20px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
.Page--contact .Contact .Form__input {
  transition: all 0.1s ease-in-out;
  border: 2px solid #c3c3c3;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  padding: 17px 25px;
  padding-bottom: 15px;
  border-radius: 8px;
  width: 100%;
  max-width: 360px;
  height: 62px;
}
@media screen and (max-width: 768px) {
  .Page--contact .Contact .Form__input {
    max-width: 100%;
  }
}
.Page--contact .Contact .Form__input:first-child {
  margin-right: 5px;
}
@media screen and (max-width: 960px) {
  .Page--contact .Contact .Form__input:first-child {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.Page--contact .Contact .Form__input:nth-child(2) {
  margin-left: 5px;
}
@media screen and (max-width: 960px) {
  .Page--contact .Contact .Form__input:nth-child(2) {
    margin-left: 0px;
  }
}
.Page--contact .Contact .Form__input:focus {
  border-color: #32b9f6;
  outline: 0;
}
.Page--contact .Contact .Form__input--textarea {
  max-width: 734px;
  margin-right: 0px !important;
  height: 100%;
}
.Page--contact .Contact .Form__checkbox {
  max-width: 235px;
  text-align: left;
  width: 100%;
  margin: 15px auto;
  padding-top: 3px;
}
.Page--contact .Contact .Form__checkbox .Checkbox__indicator {
  border-color: #c3c3c3;
}
.Page--contact .Contact .Form__error {
  margin-top: 15px;
  margin-bottom: -7px;
  font-weight: 500;
  color: #dc2929;
}
.Page--contact .Contact .Form__submit {
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  background: #32b9f6;
  color: white;
  padding: 20px;
  width: 100%;
  max-width: 360px;
}
.Page--contact .Contact .Form__submit:hover {
  background: #43C5FF;
}
@media screen and (max-width: 768px) {
  .Page--contact .Contact .Form__submit {
    max-width: 100%;
  }
}

.affiliate-wrapper .General__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.affiliate-wrapper .General__content .flex-wrapper {
  -ms-flex: 0 0 734px;
      flex: 0 0 734px;
  max-width: 734px;
  margin: 0 auto;
}
.affiliate-wrapper .General__content .flex-wrapper h3 {
  margin-top: 0;
}
.affiliate-wrapper .General__content .flex-wrapper .affiliate-item {
  margin-bottom: 40px;
}
.affiliate-wrapper .General__content .flex-wrapper .affiliate-item #frm-affilButton th {
  display: none;
}
.affiliate-wrapper .General__content .flex-wrapper .affiliate-item .button {
  background-color: #32b9f6;
  border-color: #32b9f6;
  color: white;
  transition: all 0.1s ease-in-out;
  opacity: 0.95;
  border-radius: 6px;
  border: solid 2px transparent;
  padding: 15px 14px 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
}
.affiliate-wrapper .General__content .flex-wrapper .affiliate-item .button:hover {
  background: #43c5ff !important;
  border-color: #43c5ff !important;
}

.Feature {
  height: 338px;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 768px) {
  .Feature {
    height: auto;
  }
}
.Feature__caption {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 7px;
  text-transform: uppercase;
}
@media screen and (max-width: 960px) {
  .Feature__caption {
    margin-bottom: 5px;
  }
}
.Feature__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 38px;
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .Feature__title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 19px;
  }
}
.Feature__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .Feature__description {
    font-size: 18px;
    line-height: 1.625;
    margin-bottom: 25px;
  }
}
.Feature__link-demo {
  transition: all 0.1s ease-in-out;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  color: #3bb9f8;
}
.Feature__link-demo:hover {
  color: #43C5FF;
}
.Feature__link-demo:hover::after {
  background: url(/frontend/dist/images/components/others/icons/demo-link-arrow-hover-icon.svg) no-repeat;
}
.Feature__link-demo::after {
  content: "";
  background: url(/frontend/dist/images/components/others/icons/demo-link-arrow-icon.svg) no-repeat;
  width: 7px;
  height: 12px;
  position: absolute;
  right: -16px;
  top: 3px;
}

.Square {
  position: absolute;
  top: 0;
  width: 625px;
  height: 800px;
  border-radius: 140px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .Square {
    height: 640px;
  }
}
@media screen and (max-width: 768px) {
  .Square {
    height: 341px;
    border-radius: 0;
    width: 100%;
    left: 0;
    right: 0;
  }
}
.Square--grey {
  background: #f6f6f6;
}
.Square--blue {
  background: #32B9F6;
}
.Square--left {
  right: 50%;
}
@media screen and (max-width: 768px) {
  .Square--left {
    right: 0;
  }
}
.Square--right {
  left: 50%;
}
@media screen and (max-width: 768px) {
  .Square--right {
    left: 0;
  }
}
.Square--large {
  left: 0;
  width: 925px;
  height: 570px;
}
.Square--page {
  position: absolute;
  top: -231px;
  left: 100px;
  width: 813px;
  height: 800px;
  z-index: -1;
  border-radius: 0;
  border-bottom-right-radius: 140px;
  border-bottom-left-radius: 140px;
}

/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
  if greater that the natural height of the tooltip, will be enforced
  in browsers that support display:flex */
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute;
}

.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
  and flex-basis auto for IE11- (at least) */
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  background: rgba(16, 16, 16, 0.9);
  border-radius: 10px;
  max-width: 331px;
  padding: 20px 25px;
  border-radius: 10px;
}

.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
  color: white;
}

.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

/* grow */
.tooltipster-grow {
  transform: scale(0, 0);
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
  transform: scale(1, 1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* swing */
.tooltipster-swing {
  opacity: 0;
  transform: rotateZ(4deg);
  transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  transform: rotateZ(0deg);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

/* fall */
.tooltipster-fall {
  transition-property: top;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}

/* slide */
.tooltipster-slide {
  transition-property: left;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  animation: tooltipster-fading 400ms;
}

/* rotate */
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.tooltipster-update-rotate {
  animation: tooltipster-rotating 600ms;
}

/* scale */
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tooltipster-update-scale {
  animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 *
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 10px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 10px;
}

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
  been positioned yet */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: transparent;
  left: 0;
  top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: transparent;
  left: -3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: transparent;
  left: 3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: transparent;
  left: 0;
  top: -3px;
}

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: rgba(16, 16, 16, 0.9);
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: rgba(16, 16, 16, 0.9);
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: rgba(16, 16, 16, 0.9);
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: rgba(16, 16, 16, 0.9);
}

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

.rangeslider,
.rangeslider__fill {
  display: block;
  border-radius: 10px;
}

.rangeslider {
  background: #4B4B4B;
  position: relative;
}

.rangeslider--horizontal {
  height: 16px;
  width: 100%;
}

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

.rangeslider__fill {
  background: white;
  position: absolute;
}

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}

.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  background: white;
  cursor: pointer;
  display: inline-block;
  width: 36px;
  height: 36px;
  position: absolute;
  background-color: #32b9f6;
  background-size: 100%;
  border-radius: 50%;
}

.rangeslider__handle:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("/frontend/dist/images/components/others/icons/slider-handle-arrows.svg") no-repeat center;
  border-radius: 50%;
}

.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}

.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

input[type=range]:focus + .rangeslider .rangeslider__handle {
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}

.rangeslider__handle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4.2rem;
  height: 4.2rem;
  margin-left: -1rem;
  margin-top: -1rem;
  background: white;
  border-radius: 3rem;
  opacity: 0.4;
  z-index: 99999;
  transform: scale(0);
}

.rangeslider.rangeslider--active .rangeslider__handle::before {
  animation: s-ripple 350ms ease-out;
}

.Checkbox {
  display: block;
  position: relative;
  padding-left: 33px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 16px;
}

.Checkbox .Checkbox__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.Checkbox__indicator {
  position: absolute;
  top: 5px;
  left: 0;
  height: 18px;
  width: 18px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #4b4b4b;
  border-radius: 4px;
}

.control:hover .Checkbox__input ~ .Checkbox__indicator,
.Checkbox .Checkbox__input:focus ~ .Checkbox__indicator {
  background: rgba(0, 0, 0, 0);
}

.Checkbox .Checkbox__input:checked ~ .Checkbox__indicator {
  background: #32b9f6;
  border: 2px solid #32b9f6;
}

.control:hover .Checkbox__input:not([disabled]):checked ~ .Checkbox__indicator,
.Checkbox .Checkbox__input:checked:focus ~ .Checkbox__indicator {
  background: #0e6647;
}

.Checkbox .Checkbox__input:disabled ~ .Checkbox__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.Checkbox__indicator:after {
  box-sizing: unset;
  content: "";
  position: absolute;
  display: none;
}

.Checkbox .Checkbox__input:checked ~ .Checkbox__indicator:after {
  display: block;
}

.Checkbox .Checkbox__indicator:after {
  left: 5px;
  top: 1px;
  width: 3px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.Checkbox .Checkbox__input:disabled ~ .Checkbox__indicator:after {
  border-color: #7b7b7b;
}

.Checkbox .Checkbox__indicator::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4.5rem;
  height: 4.5rem;
  margin-left: -1.9rem;
  margin-top: -1.9rem;
  background: #32b9f6;
  border-radius: 3rem;
  opacity: 0.6;
  z-index: 99999;
  transform: scale(0);
}

.Checkbox .Checkbox__input + .Checkbox__indicator::before {
  animation: s-ripple 250ms ease-out;
}

.Checkbox .Checkbox__input:checked + .Checkbox__indicator::before {
  animation-name: s-ripple-dup;
}

.Dropdown {
  position: relative;
  display: inline-block;
}
.Dropdown__icon {
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.Dropdown__btn {
  position: relative;
  background-color: transparent;
  color: white;
  padding: 12px 15px;
  padding-right: 42px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border: solid 2px #313131;
  cursor: pointer;
  border-radius: 6px;
}
.Dropdown__btn:hover {
  background-color: #43C5FF;
  border-color: #43C5FF;
  outline: 0;
}
.Dropdown__btn:after {
  content: "";
  background: url("/frontend/dist/images/components/others/icons/arrow-up-icon.svg") no-repeat;
  position: absolute;
  width: 12px;
  height: 8px;
  top: 18px;
  right: 14px;
  transform: rotate(180deg);
}
.Dropdown--open .Dropdown__btn {
  background-color: #43C5FF;
  border-color: #43C5FF;
  outline: 0;
}
.Dropdown__content {
  display: none;
  position: absolute;
  background-color: white;
  width: 100%;
  overflow: auto;
  z-index: 1;
  border-radius: 6px;
  top: calc(100% + 10px);
  padding: 8px 0;
}
.Dropdown--open .Dropdown__content {
  display: block;
}
.Dropdown__item {
  color: #101010;
  padding: 6px 15px;
  text-decoration: none;
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.Dropdown__item--active {
  color: #32b9f6;
}
.Dropdown__item:hover {
  background-color: #eee;
}

/*
 *
 * Main stylesheet for Switchery.
 * http://abpetkov.github.io/switchery/
 *
 */
/* Switchery defaults. */
.switchery {
  background-color: #fff;
  border: 5px solid #fff;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  position: relative;
  vertical-align: middle;
  width: 56px;
  box-shadow: none !important;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: content-box;
  transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 0.4s ease 0s !important;
  opacity: 1 !important;
}
@media screen and (max-width: 768px) {
  .switchery {
    height: 15px;
    width: 35px;
  }
}

.switchery > small {
  background: #fff;
  border-radius: 100%;
  height: 25px;
  position: absolute;
  top: 0px;
  width: 25px;
}
@media screen and (max-width: 768px) {
  .switchery > small {
    width: 16px;
    height: 16px;
  }
}

/* Switchery sizes. */
.switchery-small {
  border-radius: 20px;
  height: 20px;
  width: 33px;
}

.switchery-small > small {
  height: 20px;
  width: 20px;
}

.switchery-large {
  border-radius: 40px;
  height: 40px;
  width: 66px;
}

.switchery-large > small {
  height: 40px;
  width: 40px;
}

.Bubble {
  position: relative;
  padding: 17px 20px;
  background: #e7e7e7;
  border-radius: 20px;
}
.Bubble--blue {
  background: #32b9f6;
}
.Bubble--typing {
  width: 90px;
  height: 51px;
}
.Bubble--typing::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("/frontend/dist/images/pages/homepage/icons/typing.svg") no-repeat;
  background-position: center center;
}
.Bubble--right {
  border-bottom-right-radius: 0;
}
.Bubble--right .Bubble__avatar {
  right: -70px;
}
.Bubble--left {
  border-bottom-left-radius: 0;
}
.Bubble--left .Bubble__avatar {
  left: -70px;
}
.Bubble__text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: -2px;
  padding-top: 1px;
}
.Bubble__avatar {
  width: 58px;
  height: 58px;
  position: absolute;
  top: 0;
  border-radius: 50%;
}

#limetalk-chat-widget.limetalk-widget-side-right {
    position: fixed !important;
    right: 0;
    bottom: 300px !important;
    width: 150px; !important;
    height: 45px; !important;
    transform: rotate(-90deg) translateY(calc(-100% + 16px));
    transform-origin: top right;
    cursor: pointer;
    z-index: 999999 !important;
    @media screen and (max-width: 600px) {
        transform: rotate(-90deg) translateY(calc(-100%));
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }
}

#limetalk-chat-widget.limetalk-widget-side-left {
    position: fixed !important;
    left: 0;
    bottom: 300px !important;
    width: 150px !important;
    height: 45px;
    transform: rotate(90deg) translateY(16px) translateX(-52px);
    transform-origin: bottom left;
    cursor: pointer;
    z-index: 999999 !important;
    @media screen and (max-width: 600px) {
        transform: rotate(90deg) translateY(0px) translateX(-52px);
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }
}

#limetalk-chat-widget.limetalk-widget-side-left iframe,
#limetalk-chat-widget.limetalk-widget-side-right iframe {
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    transform: rotate(0deg);
}

#limetalk-chat-widget.limetalk-widget-side-right.limetalk-open
{
    width: 290px !important;
    height: 550px !important;
    bottom: 0px !important;
    right: -0px !important;
    transform: rotate(0deg) translateX(0);
    animation: slideFromTab 0.2s forwards;
}

@keyframes slideFromTab {
    from { transform: rotate(0deg) translateX(385px); }
    to   { transform: rotate(0deg) translateX(0); }
}

#limetalk-chat-widget.limetalk-widget-side-left.limetalk-open
{
    width: 290px !important;
    height: 550px !important;
    bottom: 0px !important;
    right: -0px !important;
    transform: rotate(0deg) translateX(0);
    animation: slideFromTab2 0.2s forwards;
}

@keyframes slideFromTab2 {
    from { transform: rotate(0deg) translateX(-385px); }
    to   { transform: rotate(0deg) translateX(0); }
}

/* Iframe v otevřeném stavu */
#limetalk-chat-widget.limetalk-widget-side-left.limetalk-open iframe,
#limetalk-chat-widget.limetalk-widget-side-right.limetalk-open iframe
{
    transform: none !important;
}
