@font-face {
  font-family: "Montserrat-Regular";
  src: url("/fonts/Montserrat-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-ExtraLight";
  src: url("/fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("/fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

html {
  height: 100%;
}

body {
  background: #272730 0% 0% no-repeat padding-box;
  min-height: 100%;
}

.separated-block {
  display: flex;
  flex-direction: column;
}
.main-header {
  font: normal normal normal 25px "Montserrat-Medium", sans-serif;
  text-align: center;
}

.common-header {
  font: normal normal normal 25px "Montserrat-Medium", sans-serif;
  color: #FFF;
  position: relative;
}
.common-header--underlined:after {
  content: "";
  background: #5ECFB8;
  height: 3px;
  margin-top: 10px;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  position: absolute;
  bottom: -12px;
}
.common-header--underlined-desktop:after {
  display: none;
}
.common-header--underlined-mobile:after {
  content: "";
  background: #5ECFB8;
  height: 3px;
  margin-top: 10px;
  left: 50%;
  margin-left: -35px;
  width: 70px;
  position: absolute;
  bottom: -12px;
}
.common-header--behind-text:before {
  content: attr(data-text);
  font-size: 60px;
  position: absolute;
  font-family: "Montserrat-Bold", sans-serif;
  color: #2F2F3A;
  left: 50%;
  top: -26px;
  z-index: -1;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.common-paragraph {
  font: 18px "Montserrat-Regular", sans-serif;
  line-height: 1.5555555556;
  color: rgba(255, 255, 255, 0.6);
}

.common-link {
  color: #5ECFB8;
  text-decoration: none;
  word-break: break-all;
}
.common-link:visited {
  color: #5ECFB8;
  text-decoration: none;
}

.hidden-mobile {
  display: none;
}

.desktop-only {
  display: none;
}

.hidden-desktop {
  display: initial;
}

.main {
  width: 100%;
  min-height: 100%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}
.main__content {
  flex-grow: 1;
  max-width: 960px;
  width: 100%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.google-button {
  background-repeat: no-repeat;
  overflow: hidden;
  max-height: 5rem;
  max-width: 18rem;
  margin: 0 auto;
}
.google-button__img {
  border-radius: 40px;
  background-color: #ffffff;
}

.green-button {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 22px 27px;
  background: #5ECFB8;
  color: #FFF;
  max-height: 5rem;
  max-width: 18rem;
  border-radius: 40px;
  font-size: 18px;
  font-family: "Montserrat-Semibold", sans-serif;
}

@media only screen and (min-width: 768px) {
  .main {
    min-width: 680px;
    width: 100%;
  }
  .hidden-mobile {
    display: block;
  }
  .main-header {
    font: normal normal normal 42px "Montserrat-Medium", sans-serif;
    text-align: center;
  }
  .common-header {
    font: normal normal normal 42px "Montserrat-Medium", sans-serif;
    color: #FFF;
    position: relative;
  }
  .common-header--underlined:after {
    content: "";
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    position: absolute;
    bottom: -24px;
  }
  .common-header--underlined-desktop:after {
    content: "";
    display: block;
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    position: absolute;
    bottom: -24px;
  }
  .common-header--underlined-mobile:after {
    display: none;
  }
  .common-header--behind-text:before {
    content: attr(data-text);
    font-size: 120px;
    position: absolute;
    font-family: "Montserrat-Bold", sans-serif;
    color: #2F2F3A;
    left: 50%;
    top: -55px;
    z-index: -1;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
  .common-paragraph {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) { /* Maybe here must be more 1220px;*/
  .common-header {
    font-family: "Montserrat-Medium", sans-serif;
    font-weight: normal;
  }
  .common-header--behind-text:before {
    display: initial;
    font-size: 147px;
    top: -80px;
  }
  .common-header--underlined:after {
    bottom: -20px;
  }
  .common-header--underlined-mobile:after {
    display: none;
  }
  .common-header--underlined-desktop:after {
    content: "";
    display: block;
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    margin-left: -35px;
    width: 70px;
    position: absolute;
    bottom: -12px;
  }
  .main {
    max-width: 1200px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
  .hidden-mobile {
    display: initial;
  }
  h2.hidden-mobile {
    display: block;
  }
  .hidden-desktop {
    display: none;
  }
  .desktop-only {
    display: initial;
  }
  .separated-block {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .green-button {
    font-size: 14px;
    font-family: "Montserrat-SemiBold", sans-serif;
  }
  .google-button {
    margin: initial;
  }
}
body {
  padding-top: 48px;
}

.header {
  background: #33333D 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1019607843);
  height: 48px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 30;
}
.header__content {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
.header__logo {
  width: 36px;
  height: 36px;
  margin-top: 6px;
  float: left;
}
.header__menu {
  float: right;
}

.header-menu {
  display: none;
  font: normal normal normal 18px "Montserrat-Regular", sans-serif;
  letter-spacing: 0px;
  color: #FFFFFF;
  list-style: none;
  height: 80px;
  justify-content: center;
  align-items: center;
}
.header-menu--visible {
  display: flex;
  flex-direction: column;
}
.header-menu__item {
  margin: 0 36px;
}
.header-menu__link, .header-menu__link:visited {
  text-decoration: none;
  color: #FFFFFF;
}

.link-size {
  display: block;
  height: 100%;
  width: 100%;
  padding: 18px 0 19px 20px;
}

.header__mobile-button {
  height: 12px;
  width: 18px;
  margin: 18px 32px;
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  vertical-align: middle;
  z-index: 20;
}

.header__close {
  height: 24px;
  width: 24px;
  margin: 12px 29px;
}
.header__close img {
  height: 24px;
  width: 24px;
}

.header__hamburger span {
  display: block;
  background: #FFF;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  left: 0;
  top: 50%;
}
.header__hamburger:before, .header__hamburger:after {
  content: "";
  display: block;
  background: #FFF;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  transform-origin: center center;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
.header__hamburger:before {
  top: 0;
  margin-top: 0px;
}
.header__hamburger:after {
  bottom: 0px;
  margin-bottom: 0px;
}

.mobile-menu-container {
  display: block;
  position: fixed;
  background: #272730;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
}

.mobile-menu__logo {
  margin-left: 32px;
}

.mobile-menu {
  margin-top: 70px;
  margin-left: 30px;
  list-style: none;
  overflow-y: auto;
  height: 250px;
  height: -webkit-calc(100% - 100px);
  height: -moz-calc(100% - 100px);
  height: calc(100% - 100px);
}
.mobile-menu__item {
  position: relative;
  color: #FFF;
  font-size: 25px;
  padding: 20px 0 20px 50px;
  font-family: "Montserrat-Medium", sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__item--numbered:before {
  position: absolute;
  left: 0;
  content: attr(data-number);
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  -webkit-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
  font-size: 18px;
  font-family: "Montserrat-Regular", sans-serif;
  margin-top: -10px;
  top: 50%;
}
.mobile-menu__item--active {
  color: #5ECFB8;
}
.mobile-menu__link, .mobile-menu__link:visited {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__submenu-link {
  position: relative;
  color: #FFF;
  font-size: 25px;
  padding: 20px 0 20px 50px;
  font-family: "Montserrat-Medium", sans-serif;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.mobile-menu__submenu-link--numbered:before {
  position: absolute;
  left: 0;
  content: attr(data-number);
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  -webkit-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
  font-size: 18px;
  font-family: "Montserrat-Regular", sans-serif;
  margin-top: -10px;
  top: 35px;
}
.mobile-menu__submenu {
  display: none;
  position: relative;
  list-style: none;
  margin-top: 36px;
}
.mobile-menu__submenu--open {
  display: block;
}
.mobile-menu__submenu-item {
  margin: 0 0 34px 0;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__submenu-item:last-child {
  margin-bottom: 0;
}
.mobile-menu__submenu-item--active {
  color: #5ECFB8;
}

.mobile-twitter-link {
  position: absolute;
  width: 19px;
  height: 19px;
  top: 0;
  right: 67px;
  margin: 14px 0;
}

@media only screen and (min-width: 768px) {
  body {
    padding-top: 80px;
  }
  .header {
    height: 80px;
  }
  .header__logo {
    width: 61px;
    height: 61px;
    margin: 8px 0 0 0;
  }
  .header__mobile-button {
    height: 25px;
    width: 38px;
    margin: 27px 47px;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    vertical-align: middle;
    z-index: 20;
  }
  .header__close {
    height: 48px;
    width: 48px;
    margin: 18px 42px;
  }
  .header__close img {
    height: 48px;
    width: 48px;
  }
  .header__hamburger span {
    display: block;
    background: #FFF;
    width: 100%;
    height: 5px;
    margin-top: -1px;
    position: absolute;
    left: 0;
    top: 50%;
  }
  .header__hamburger:before, .header__hamburger:after {
    content: "";
    display: block;
    background: #FFF;
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    transform-origin: center center;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 0.3s ease;
  }
  .header__hamburger:before {
    top: 0;
    margin-top: 0px;
  }
  .header__hamburger:after {
    bottom: -4px;
    margin-bottom: 0px;
  }
  .mobile-menu-container {
    display: block;
    position: fixed;
    background: #272730;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
  }
  .mobile-menu__logo {
    margin-left: 32px;
  }
  .mobile-menu {
    margin-top: 163px;
    margin-left: 70px;
    list-style: none;
    height: 620px;
    height: -webkit-calc(100% - 163px);
    height: -moz-calc(100% - 163px);
    height: calc(100% - 163px);
  }
  .mobile-menu__item {
    position: relative;
    color: #FFF;
    font-size: 42px;
    padding: 36px 0 36px 130px;
    font-family: "Montserrat-Medium", sans-serif;
  }
  .mobile-menu__item--numbered:before {
    font-size: 36px;
    font-family: "Montserrat-Regular", sans-serif;
    margin-top: -22px;
    top: 50%;
  }
  .mobile-menu__item--active {
    color: #5ECFB8;
  }
  .mobile-menu__link, .mobile-menu__link:visited {
    text-decoration: none;
    color: inherit;
  }
  .mobile-menu__submenu-link {
    position: relative;
    color: #FFF;
    font-size: 42px;
    padding: 36px 0 36px 130px;
    font-family: "Montserrat-Medium", sans-serif;
    cursor: pointer;
  }
  .mobile-menu__submenu-link--numbered:before {
    font-size: 36px;
    font-family: "Montserrat-Regular", sans-serif;
    margin-top: 5px;
  }
  .mobile-menu__submenu {
    display: none;
    position: relative;
    list-style: none;
    margin-top: 55px;
  }
  .mobile-menu__submenu--open {
    display: block;
  }
  .mobile-menu__submenu-item {
    margin: 0 0 55px 0;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.6);
  }
  .mobile-menu__submenu-item:last-child {
    margin-bottom: 0;
  }
  .mobile-menu__submenu-item--active {
    color: #5ECFB8;
  }
  .mobile-twitter-link {
    width: 37px;
    height: 37px;
    right: 111px;
    margin: 27px 0;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    padding-top: 80px;
  }
  .header {
    height: 80px;
  }
  .header__logo {
    width: 155px;
    height: 55px;
    margin: 12px 0 0 0;
  }
  .header__hamburger {
    display: none;
  }
  .header-menu {
    display: flex;
    flex-direction: row;
  }
  .header-menu__item {
    position: relative;
  }
  .header-menu__item--active:after {
    content: "";
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120%;
    position: absolute;
    bottom: -10px;
  }
  .header-menu__submenu-link {
    margin: 0 36px;
    position: relative;
    cursor: pointer;
  }
  .header-menu__submenu-link:after {
    content: "";
    display: inline-block;
    top: 8px;
    position: absolute;
    right: -27px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: rgba(255, 255, 255, 0.6) transparent transparent transparent;
  }
  .header-menu__submenu-link--active:before {
    content: "";
    background: #5ECFB8;
    height: 3px;
    margin-top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120%;
    position: absolute;
    bottom: -10px;
  }
  .header-menu__submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    top: calc(100% + 39px);
    background-color: #33333D;
    border-radius: 5px;
    list-style: none;
  }
  .header-menu__submenu--open {
    display: block;
  }
  .header-menu__submenu-item {
    width: 170px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-family: "Montserrat-Regular", sans-serif;
    font-size: 18px;
  }
  .header-menu__submenu-item:last-child {
    border-bottom: none;
  }
  .header-menu__submenu-item--active {
    background: rgba(255, 255, 255, 0.05);
  }
  .mobile-menu-container {
    display: none;
  }
}
.footer {
  background: #33333D;
}
.footer__content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  min-height: 90px;
  padding: 20px 0;
}
.footer__menu {
  font-size: 14px;
  font-family: "Montserrat-Regular", sans-serif;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  display: block;
  margin-top: 15px;
  font-size: 12px;
  font-family: "Montserrat-Regular", sans-serif;
}

.bottom-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: rgba(94, 207, 184, 0.6);
  font: normal normal normal 14px "Montserrat-Regular", sans-serif;
  max-width: 445px;
  margin-left: auto;
  margin-right: auto;
}
.bottom-menu__item {
  margin: 0 15px;
}
.bottom-menu__item:last-child {
  margin-top: 15px;
}
.bottom-menu__link, .bottom-menu__link:visited {
  color: rgba(94, 207, 184, 0.6);
  text-decoration: none;
}
.bottom-menu__link:hover {
  color: rgb(94, 207, 184);
}

@media only screen and (min-width: 768px) {
  .footer__content {
    min-height: 70px;
    padding: 26px 30px;
  }
  .footer__menu {
    float: left;
    max-width: initial;
  }
  .footer__copyright {
    float: right;
    margin-top: initial;
  }
  .bottom-menu {
    flex-wrap: nowrap;
    max-width: initial;
    margin-left: initial;
    margin-right: initial;
  }
  .bottom-menu__item:first-child {
    margin-left: 0;
  }
  .bottom-menu__item--first {
    order: 1;
  }
  .bottom-menu__item--second {
    order: 2;
  }
  .bottom-menu__item--twitter {
    order: 4;
  }
  .bottom-menu__item--last {
    order: 3;
  }
  .bottom-menu__item:last-child {
    margin-top: 0px;
    margin-left: 10px;
  }
}
@media only screen and (min-width: 1220px) {
  .footer__content {
    max-width: 1200px;
    width: 100%;
    min-height: 70px;
    padding: 26px 0;
  }
  .footer__menu {
    float: left;
    font-size: 12px;
    max-width: initial;
  }
  .footer__copyright {
    float: right;
    margin-top: initial;
  }
  .bottom-menu {
    flex-wrap: nowrap;
  }
  .bottom-menu__item:last-child {
    margin-top: 0px;
    margin-left: 15px;
  }
}
.links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.links__item {
  display: block;
  margin-right: 8px;
  width: 104px;
  height: 36px;
}
.links__item:last-child {
  margin-right: 0;
}
.links__item--connect {
  background: url(/images/media_buttons/connect_btn_m.svg) no-repeat center center transparent;
  background-size: contain;
}
.links__item--watch {
  background: url(/images/media_buttons/watch_btn_m.svg) no-repeat center center transparent;
  background-size: contain;
}
.links__item--chat {
  background: url(/images/media_buttons/chat_btn_m.svg) no-repeat center center transparent;
  background-size: contain;
}

@media only screen and (min-width: 768px) {
  .links__item {
    width: 226px;
    height: 75px;
  }
  .links__item:last-child {
    margin-right: 0;
  }
  .links__item--connect {
    background: url(/images/media_buttons/connect_btn_m.svg) no-repeat center center transparent;
    background-size: contain;
  }
  .links__item--watch {
    background: url(/images/media_buttons/watch_btn_m.svg) no-repeat center center transparent;
    background-size: contain;
  }
  .links__item--chat {
    background: url(/images/media_buttons/chat_btn_m.svg) no-repeat center center transparent;
    background-size: contain;
  }
}
@media only screen and (min-width: 1200px) {
  .links__item {
    width: 161px;
    height: 55px;
    margin-right: 16px;
  }
  .links__item:last-child {
    margin-right: 0;
  }
  .links__item--connect {
    background: url(/images/media_buttons/connect_btn.svg) no-repeat center center transparent;
    background-size: contain;
  }
  .links__item--watch {
    background: url(/images/media_buttons/watch_btn.svg) no-repeat center center transparent;
    background-size: contain;
  }
  .links__item--chat {
    background: url(/images/media_buttons/chat_btn.svg) no-repeat center center transparent;
    background-size: contain;
  }
}
.info-block {
  display: flex;
  height: 40px;
  text-align: left;
  margin-bottom: 16px;
  border-radius: 5px;
  padding: 10px 18px;
  font-family: "Montserrat-regular", sans-serif;
  color: #FFFFFF;
  font-size: 15px;
}

.info-block__value {
  height: 100%;
  margin: auto;
  padding: 0 20px;
  position: relative;
  display: flex;
}

.show_pointer {
  content: "";
  position: absolute;
  width: 29px;
  height: 29px;
  background: url(/images/placeholder.svg) no-repeat center center transparent;
  left: -2px;
  top: -4px;
  background-size: 80%;
  cursor: pointer;
  display: block;
}

.show_pointer--hidden {
  background-image: none;
}

.text_button.js-show-location {
  text-decoration: none;
  font-family: "Montserrat-regular", sans-serif;
  color: #5ECFB8;
}

.info__ip {
  margin-bottom: -2px;
}

.whatismyip__confirmation {
  margin-bottom: 30px;
}

.confirmation-block-margin {
  margin-top: 30px;
}

.whatismyip__confirmation__text {
  color: #A3A3A6;
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 20px;
  text-align: center;
}

.whatismyip__confirmation__btns {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.confirm-btn {
  color: #5ECFB8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat-Medium", sans-serif;
  border: 1px solid #5ECFB8;
  border-radius: 50%;
  position: relative;
  font-size: 14px;
  width: 45px;
  height: 45px;
  text-decoration: none;
}

.confirm-btn:first-child {
  margin-right: 10px;
}

.confirm-btn-yes:hover {
  animation-fill-mode: forwards;
  animation-name: onBtnHoverYes;
  animation-duration: 0.5s;
}

.confirm-btn-no:hover {
  animation-fill-mode: forwards;
  animation-name: onBtnHoverNo;
  animation-duration: 0.5s;
}

.confirm-btn-yes:hover::before, .confirm-btn-no:hover::before {
  opacity: 1;
}

.confirm-btn-yes::before {
  content: "";
  background: url("/images/yes.svg") no-repeat center;
  position: absolute;
  width: 16px;
  height: 11px;
  left: 15px;
  opacity: 0;
}

.confirm-btn-no::before {
  content: "";
  background: url("/images/no.svg") no-repeat center;
  position: absolute;
  width: 16px;
  height: 12px;
  right: 15px;
  opacity: 0;
}

@keyframes onBtnHoverYes {
  to {
    width: 80px;
    justify-content: right;
    padding-right: 16px;
    background: #5ECFB8;
    border: 1px solid #5ECFB8;
    color: #000;
    border-radius: 150px;
  }
}
@keyframes onBtnHoverNo {
  to {
    width: 80px;
    justify-content: left;
    padding-left: 18px;
    background: #5ECFB8;
    border: 1px solid #5ECFB8;
    color: #000;
    border-radius: 150px;
  }
}
.links {
  transition: opacity 0.7s ease-in;
}

.loading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 34px;
  animation: pulse 0.8s infinite;
  color: #ffffff;
  text-align: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.connecting {
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  clip-path: inset(0 1.5ch 0 0);
  animation: l 0.4s steps(4) infinite;
}

.ip-info__logo--image {
  width: 60px;
  height: 60px;
}

@keyframes l {
  to {
    clip-path: inset(0 -1ch 0 0);
  }
}
@media only screen and (min-width: 768px) {
  .show_pointer {
    top: 2px;
    left: auto;
    background-size: 90%;
    cursor: pointer;
    display: block;
  }
  div.info__list {
    min-height: 92px;
  }
  div.info__ip {
    font-size: 66px;
    margin-bottom: 14px;
  }
  div.info-block__value {
    height: 40px;
  }
  .info__value {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1220px) {
  .show_pointer {
    left: 0px;
    top: -5px;
    background-size: 70%;
  }
  div.info__list {
    min-height: 60px;
  }
  div.info__ip {
    font-size: 32px;
    margin-bottom: 3px;
  }
  .info__value {
    font-size: 15px;
  }
}
.info__list {
  min-height: 52px;
}

body {
  padding-top: 0px;
}

.header {
  position: relative;
}

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

.main {
  width: 100%;
  margin: 0 auto;
  /*margin-bottom: 42px;*/
}

.beyond-header-block {
  overflow: hidden;
}

.invest__info {
  margin: 35px 0;
}
.invest__header {
  text-align: left;
  margin: 26px 0;
}
.invest__subheader {
  margin-bottom: 27px;
  margin-top: 55px;
  font-size: 20px;
}
.invest__paragraph {
  margin-bottom: 26px;
}
.invest__list-header {
  color: #FFF;
}

.info__status {
  opacity: 0;
  font-size: 24px;
  text-align: center;
  font-family: "Montserrat-SemiBold", sans-serif;
}
.info__status--connected {
  opacity: 1;
  color: #5ECFB8;
}
.info__status--disconnected {
  opacity: 1;
  color: #EE5081;
}
.info__title {
  color: #A3A3A6;
  text-align: center;
  font-size: 20px;
  margin-top: 6px;
  margin-bottom: 22px;
  font-family: "Montserrat-Light", sans-serif;
  position: relative;
}
.info__title:before {
  content: attr(data-text);
  display: block;
  position: absolute;
  left: 50%;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 45px;
  color: #2F2F3A;
  opacity: 0.5;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  white-space: nowrap;
  top: 0;
  margin-top: -55px;
  z-index: -1;
}
.info__ip {
  color: #FFFFFF;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 32px;
  text-align: center;
}

.info-item {
  display: flex;
  background: #5ECFB8;
  height: 40px;
  text-align: left;
  margin-bottom: 16px;
  border-radius: 5px;
  padding: 10px 18px;
}
.info-item__label {
  width: 30%;
  height: 100%;
  margin: 0;
  padding-right: 16px;
  color: #272730;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  border-right: 1px solid rgba(39, 39, 48, 0.5);
  font-family: "Montserrat-Light", sans-serif;
  font-size: 14px;
}
.info-item__value {
  width: 70%;
  height: 100%;
  margin: 0;
  padding-left: 20px;
  color: #FFFFFF;
  font-family: "Montserrat-Light", sans-serif;
  font-size: 15px;
  position: relative;
  padding-right: 40px;
  display: flex;
}

.info__value {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
  text-overflow: ellipsis;
}
.info__value--clipped {
  text-overflow: clip;
  font-size: 40px;
  line-height: 12px;
  vertical-align: middle;
}

.text_button {
  color: #FFF;
  text-decoration: underline;
  cursor: pointer;
  font-family: "Montserrat-Light", sans-serif;
  font-size: 15px;
  margin-left: 10px;
}

.hide {
  display: none;
}

.hidden_info {
  content: "";
  position: absolute;
  width: 29px;
  height: 29px;
  background: url(/images/eye_close.svg) no-repeat center center transparent;
  right: -2px;
  top: -4px;
  background-size: 80%;
  cursor: pointer;
  display: block;
}

.hidden_info--visible {
  /*
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
  */
  background-image: url(/images/eye_open.svg);
}

@media only screen and (min-width: 768px) {
  .invest__info {
    margin-top: 85px;
    margin-bottom: 70px;
  }
  .invest__header {
    font-size: 42px;
    margin-top: 86px;
    margin-bottom: 33px;
  }
  .invest__subheader {
    margin-top: 30px;
    font-size: 24px;
  }
  .invest__paragraph {
    font-size: 18px;
  }
  .info__status {
    font-size: 42px;
  }
  .info__value--clipped {
    line-height: 30px;
  }
  .info__title {
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 40px;
  }
  .info__title:before {
    font-size: 95px;
    margin-top: -125px;
  }
  .info-item {
    height: 66px;
    margin-bottom: 30px;
    padding: 15px 35px 15px 40px;
  }
  .info-item__label {
    padding-right: 45px;
    font-size: 28px;
  }
  .info-item__value {
    padding-left: 41px;
    font-size: 28px;
    padding-right: 60px;
    display: flex;
  }
  .text_button {
    font-size: 28px;
    margin-left: 35px;
  }
  .hidden_info {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    right: -2px;
    top: -2px;
  }
}
@media only screen and (min-width: 1220px) {
  body {
    padding-top: 0px;
  }
  .main {
    max-width: 1053px;
  }
  .beyond-header-block {
    overflow: initial;
  }
  .invest__info {
    margin-top: 42px;
    margin-bottom: 35px;
  }
  .invest__header {
    margin-top: 67px;
    margin-bottom: 18px;
    font-family: "Montserrat-SemiBold", sans-serif;
    font-size: 44px;
  }
  .invest__subheader {
    margin-bottom: 14px;
    margin-top: 44px;
    font-family: "Montserrat-SemiBold", sans-serif;
    font-size: 28px;
  }
  .invest__paragraph {
    margin-bottom: 26px;
  }
  .info__status {
    font-size: 24px;
  }
  .info__title {
    margin-top: 6px;
    margin-bottom: 22px;
    font-size: 20px;
  }
  .info__title:before {
    font-size: 147px;
    margin-top: -100px;
  }
  .info__ip {
    font-size: 32px;
    margin-bottom: 22px;
  }
  .info__value--clipped {
    line-height: 12px;
  }
  .info-item {
    max-width: 445px;
    margin: 0 auto 20px auto;
    height: 40px;
    padding: 10px 18px;
  }
  .info-item__label {
    font-size: 14px;
    padding-right: 16px;
  }
  .info-item__value {
    padding-left: 20px;
    font-size: 15px;
    padding-right: 40px;
  }
  .text_button {
    font-size: 15px;
    margin-left: 10px;
  }
  .hidden_info {
    width: 29px;
    height: 29px;
    right: -2px;
    top: -4px;
  }
}

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