/* ------------ *Default ------------- */
@charset "UTF-8";
/* Flex Class */
.fx-column {display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: nowrap;flex-wrap: nowrap;-webkit-box-orient: vertical;-webkit-box-direction: normal;-ms-flex-direction: column;flex-direction: column;}
.flex-center {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
.fx-between {-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;}
.align-start {-webkit-box-align: start;-ms-flex-align: start;align-items: flex-start;}
.align-center {-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.fx-center {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
.fx {display: -webkit-box;display: -ms-flexbox;display: flex;}
.fx-wrap {-ms-flex-wrap: wrap;flex-wrap: wrap;}
/* Flex Class End */

/* Reserved Class */
.text-center {text-align: center;}
/* Reserved Class End*/

/* Style Default*/
a, a:hover,button, button:hover, .speed {-webkit-transition: all .3s;-o-transition: all .3s;transition: all .3s;}
* {-webkit-box-sizing: border-box;box-sizing: border-box;}
button {border: 0;padding: 0;cursor: pointer;}
* {outline: none;}
/* Style Default End */

body {
  color: #031926;
  font-size: 14px;
  font-family: "CirceRegular";
}

.wrapper {
  min-height: 100%;
  overflow-x: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

/* ------------ *Header ------------- */

.header {
  padding: 20px 0;
  background: #0445a6;
}

.header__logo,
.footer__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.logo__link {
  border: 0;
  font-size: 25px;
  padding-left: 8px;
  border-style: solid;
  border-left-width: 5px;
}

.logo__link span {
  font-size: 26px;
  font-family: "CirceExtraBold";
}

.logo_blue .logo__link {
  color: #fff;
  border-color: #26a0f8;
}

.logo_blue span {
  color: #26a0f8;
}

.logo_black .logo__link {
  border-color: #6a757d;
}

.logo_black, .logo_black .logo__link {
  color: #6a757d;
}

.header__nav {
  margin-left: 90px;
}

.nav__item {
  padding: 5px;
  margin: 0 20px;
  position: relative;
}

.nav__item:after {
  opacity: 0;
  height: 2px;
  margin-top: 3px;
  background: #26a0f8;
  top: 100%;left: 0;right: 0;
}

.nav__item_active:after {
  opacity: 1;
}

.nav__link, a.nav__link {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "CirceExtraBold";
}

.nav__link:hover {
  color: #26a0f8;
}

.navbar-toggle {
  z-index: 60;
  display: none;
  background: none;
}

.navbar-toggle span {
  display: block;
  position: relative;
  background: #26a0f8;
  width: 26px;height: 3px;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 6px;
}

.navbar-toggle.active span:first-child {
  top: 9px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:last-child {
  top: -9px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ------------ *Banner ------------- */

.banner {
  position: relative;
  padding: 55px 0 200px;
  background: url(../img/bg/main.png) 0 100%/cover no-repeat;
}

.banner__dots {
  opacity: .42;
  position: absolute;
  top: 0;left: 0;right: 0;bottom: 0;
  background: url(../img/bg/dots.png) 0 0/cover repeat;
  -webkit-animation: dots 2s infinite ease-in-out;
          animation: dots 2s infinite ease-in-out;
}

@-webkit-keyframes dots {
  from {
    opacity: .42;
  }
  15% {
    opacity: .62;
  }
  30% {
    opacity: .32;
  }
  45% {
    opacity: .52;
  }
  60% {
    opacity: .22;
  }
  80% {
    opacity: .12;
  }
  to {
    opacity: .28;
  }
}

@keyframes dots {
  from {
    opacity: .42;
  }
  15% {
    opacity: .62;
  }
  30% {
    opacity: .32;
  }
  45% {
    opacity: .52;
  }
  60% {
    opacity: .22;
  }
  80% {
    opacity: .12;
  }
  to {
    opacity: .28;
  }
}

.banner .container {
  z-index: 1;
  position: relative;
}

.banner__txt {
  color: #fff;
  max-width: 29%;width: 100%;
}

.banner__title {
  font-size: 58px;
  line-height: 1.05;
  font-family: "CirceBold";
}

.banner__info {
  font-size: 20px;
  line-height: 1.1;
  margin-top: 20px;
  font-family: "CirceExtraLight";
}

.banner__info span {
  color: #26a0f8;
  font-family: "CirceBold";
}

/* ------------- *Calc -------------- */

.calc {
  background: #26a0f8;
  padding: 35px 0 40px;
}

.calc__selected {
  position: relative;
  margin-right: 25px;
}

.jq-selectbox__dropdown {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #26a0f8;
}

.jq-selectbox__select {
  font-size: 22px;
  padding: 0 25px 0 0;
}

.jq-selectbox__select,
.jq-selectbox__select:hover,
.jq-selectbox__select:focus {
  color: #031926;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  border: 0 !important;
}

.jq-selectbox__select-text {
  *min-width: 260px;
  -o-text-overflow: inherit;
     text-overflow: inherit;
  *width: 100% !important;
  width: auto !important;
}

.jq-selectbox__trigger {
  border: 0;
}

.jq-selectbox__trigger-arrow {
  right: 0;
  border-top: 5px solid #232d67;
}

.jq-selectbox li {
  font-size: 15px;
  color: #031926 !important;
}

.jq-selectbox li:hover {
  background: #f9f9fc;
}

.calc__value {
  position: relative;
  margin-right: 20px;
}

.calc__value input {
  color: #fff;
  font-size: 30px;
  background: none;
  border-radius: 3px;
  border: 1px solid #fff;
  padding: 0 70px 0 25px;
  font-family: "CirceBold";
  width: 254px;height: 62px;
}

.calc__value input::-webkit-input-placeholder {color:#fff;}
.calc__value input::-moz-placeholder          {color:#fff;}/* Firefox 19+ */
.calc__value input:-moz-placeholder           {color:#fff;}/* Firefox 18- */
.calc__value input:-ms-input-placeholder      {color:#fff;}

.calc__value span {
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 50%;right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.result {
  color: #fff;
  font-size: 30px;
  font-family: "CirceBold";
}

.result span {
  font-size: 21px;
  font-family: "CirceRegular";
}

.btn__start {
  color: #fff;
  font-size: 20px;
  margin-left: 35px;
  border-radius: 3px;
  padding: 19px 79px;
  background: #0445a6;
}

.btn__start:hover {
  background: #1d6adc;
}

/* ------------ *Course ------------- */

.course {
  padding: 20px 0;
}

.border-box {
  border-radius: 3px;
  border: 1px solid #e7e7e7;
}

.graph {
  height: 100%;
  padding: 55px 65px;
}

.info {
  height: 100%;
}

.info-level {
  padding: 10px 20px;
}

.info__title {
  line-height: 1;
  font-size: 24px;
  font-family: "CirceBold";
}

span.i-bc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

span.i-bc:after {
  content: " ";
  margin-left: 10px;
  width: 22px;height: 22px;
  background: url(../img/icons/i-bc.png) center no-repeat;
}

.currency {
  margin-bottom: 10px;
}

.currency__price {
  position: relative;
}

.currency__price:after {
  top: 5px;right: 0;
  border-radius: 2px;
  pointer-events: none;
  width: 25px;height: 25px;
  background: url(../img/icons/arrow-down.png) center no-repeat #c4c4c4;
}

.currency__price select {
  border: 0;
  font-size: 27px;
  background: none;
  padding-right: 40px;
  font-family: "CirceExtraBold";

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.i-list__item {
  width: 50%;
  margin: 10px 0;
  padding-right: 5px;
}

.i-list__item span {
  display: block;
}

.i-list__title {
  color: #bab9b9;
  font-size: 15px;
}

.i-list__rept {
  font-size: 18px;
  margin-top: 5px;
  font-family: "CirceBold";
}

.info-line {
  border: 0;
  height: 1px;
  background: #e7e7e7;
}

.info__select .jq-selectbox__select-text {
  font-size: 22px;
  font-family: "CirceBold";
}

/* ------------ *Footer ------------- */

.footer {
  padding: 30px 0;
  background: #e8e9eb;
  font-family: "CirceLight";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.footer__left {
  max-width: 55%;width: 100%;
}

.copyright {
  line-height: 2;
  max-width: 29%;width: 100%;
  font-family: "CirceRegular";
}

.copyright a {
  color: #26a0f8;
}

.copyright a:hover {
  text-decoration: underline;
}

.footer__txt {
  color: #6a757d;
}

.footer__txt_one {
  margin: 0 30px 0;
  max-width: 31%;width: 100%;
}

.footer__txt_two {
  max-width: 29%;width: 100%;
}

/* =================================== */
/*              Page: Faq              */
/* =================================== */

.faq {  
  padding-bottom: 95px;
}

.wrap {
  width: 950px;
  font-size: 18px;
  line-height: 1.35;
  margin-left: 280px;
}

.title_page {
  margin: 50px 0 35px;
}

.title h2 {
  line-height: 1;
  font-size: 24px;
  font-family: "CirceBold";
  text-transform: uppercase;
}

.title_mod {
  color: #26a0f8;
  margin-bottom: 30px;
}

.join {
  margin-bottom: 40px;
}

.join p b {
  font-family: "CirceBold";
}

.join p span {
  color: #6a757d;
}

.join__paragraph {
  margin-bottom: 50px;
  font-family: "CirceBold";
}

.join__address {
  position: relative;
  margin-bottom: 30px;
}

.join__rig {
  position: relative;
}

.join__rig p:first-child {
  margin-bottom: 15px;
}

.join__rig p:nth-child(2) {
  margin-bottom: 30px;
}

.questions__item {
  position: relative;
}

.questions__item:not(:last-child) {
  margin-bottom: 30px;
}

.questions__header {
  font-size: 22px;
  font-family: "CirceBold";
}

.title-info {
  font-size: 20px;
  position: absolute;
  top: 0;right: 100%;
  margin-right: 35px;
  text-transform: uppercase;
  font-family: "CirceExtraBold";
}

/* =================================== */
/*            Page: About              */
/* =================================== */

.about {
  padding-bottom: 150px;
}

.agreement {
  padding-right: 30%;
  margin-bottom: 50px;
}

.agreement p:not(:last-child) {
  margin-bottom: 30px;
}

.contcts a {
  color: #26a0f8;
}

.contcts a:hover {
  text-decoration: underline;
}

/* =================================== */
/*            Page: Payouts            */
/* =================================== */

.payouts {
  padding-bottom: 80px;
}

.table__box {
  margin-bottom: 30px;
}

.table__item_header {
  background: #f2f2f4;
}

.table__item {
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table__item:not(:first-child) {
  border-bottom: 1px solid #e7e7e7;
}

.table__cell {
  padding: 0 5px;
}

.table__cell_1 {
  width: 23.5%;
}

.table__cell_2 {
  width: 43%;
}

.table__cell_3 {
  width: 33.5%;
}

.table__item_header .table__cell {
  font-size: 15px;
  font-family: "CirceBold";
}

.table__item_row .table__cell {
  color: #6a757d;
  font-size: 17px;
}

.table__item_row .table__cell:nth-child(2) {
  font-family: "CirceExtraBold";
}

.table__cell a {
  color: #26a0f8;
}

.table__cell a:hover {
  text-decoration: underline;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.page__list {
  line-height: 1;
  margin-right: 30px;
}

.page__item:not(:last-child) a {
  border-right: 0;
}

.page__link {
  height: 38px;
  color: #031926;
  font-size: 15px;
  padding: 7px 15px;
  border: 1px solid #e6e7e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page__link_active, .page__link:hover {
  color: #fff;
  background: #26a0f8;
}

.page__prev,
.page__next {
  display: block;
  width: 38px;height: 38px;
  border: 1px solid #e6e7e9;
}

.page__prev_two {
  background: url(../img/icons/link-prev-two.png) center no-repeat #f9f9fb;
}

.page__prev_one {
  background: url(../img/icons/link-prev-one.png) center no-repeat #f9f9fb;
}

.page__next_one {
  background: url(../img/icons/link-next-one.png) center no-repeat #f9f9fb;
}

.page__next_two {
  background: url(../img/icons/link-next-two.png) center no-repeat #f9f9fb;
}

.page__prev:hover,
.page__next:hover {
  opacity: .6;
}

.page__select {
  color: #031926;
  font-size: 15px;
}

.page__select select {
  color: #031926;
  font-size: 15px;
  padding: 0 15px;
  margin-left: 15px;
  width: 88px;height: 38px;
  border: 1px solid #e6e7e9;
}

/* =================================== */
/*             Page: Users             */
/* =================================== */

.users {
  padding: 40px 0 60px;
}

.users .table__box {
  margin-bottom: 0;
}

.users__table .table__cell_1 {
  width: 29%;
}

.users__table .table__cell_2 {
  width: 12%;
}

.users__table .table__cell_3 {
  width: 15%;
}

.users__table .table__cell_4 {
  width: 44%;
}

.users__table .table__item_header b {
  font-size: 18px;
  text-transform: uppercase;
}

.users__table .table__item_row .table__cell {
  font-size: 16px;
}

.users__table .table__item_row,
.users__table .table__item_row a {
  color: #6a757d;
}

.users__table .table__item_row .table__cell:nth-child(2) {
  color: #031926;
}

.users__table .table__item_row .table__cell_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.table__indicator {
  height: 15px;
  margin-right: 30px;
  background: #a2d729;
}

/* =================================== */
/*           Page: Statistics          */
/* =================================== */

.statistics {
  padding-bottom: 70px;
}

.title__user {
  color: #26a0f8;
  font-size: 22px;
  margin-top: 20px;
  font-family: "CirceBold";
}

.statistics__user {
  margin-bottom: 35px;
  margin-left: -1.5px;
  margin-right: -1.5px;
}

.statistics__user.row [class*='col'] {
  padding: 0;
}

.statistics__user__item {
  height: 100%;
  padding: 40px;
  min-height: 215px;
  background: #f2f2f4;
  border: 1.5px solid #fff;
  border-bottom: 3px solid #fff;
  border-top: 0;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.statistics__title {
  font-size: 20px;
}

.statistics__txt p {
  color: #a0a0a0;
  font-size: 14px;
}

.statistics__num {
  line-height: 1;
  color: #26a0f8;
  font-size: 33px;
  margin-top: 5px;
  font-family: "CirceBold";
}

.statistics__big {
  font-size: 45px;
}

.tabs__name {
  margin-bottom: 10px;
}

.tabs__name__item {
  height: 46px;
  color: #6a757d;
  font-size: 16px;
  cursor: pointer;
  min-width: 176px;
  font-family: "CirceBold";
  border: 1px solid #e6e7e9;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabs__name__item:not(:last-child) {
  border-right: 0;
}

.tabs__name__item.active, .tabs__name__item:hover {
  color: #fff;
  background: #26a0f8;
}

.tabs__name__item span {
  padding-top: 2px;
  border-radius: 50%;
  width: 24px;height: 24px;

  -webkit-transition: all .3s;

  -o-transition: all .3s;

  transition: all .3s;
}

.tabs__name__white {
  color: #fff;
  background: #26a0f8;
  margin: 0 5px 0 10px;
}

.tabs__name__blue {
  color: #fff;
  background: #0445a6;
}

.tabs__name__item.active .tabs__name__white, .tabs__name__item:hover .tabs__name__white {
  color: #031926;
  background: #fff;
}

.tabs__table .table__box {
  margin-bottom: 0;
}

.tabs__table .table__item_row a {
  color: #6a757d;
}

.tabs__table .table__item_row .table__cell:nth-child(2),
.tabs__table .table__item_row .table__cell:nth-child(3) {
  color: #031926;
  font-family: "CirceRegular";
}

.tabs__table .table__cell_1 {
  width: 24%;
}

.tabs__table .table__cell_2 {
  width: 25%;
}

.tabs__table .table__cell_3 {
  width: 32%;
}

.tabs__table .table__cell_4 {
  width: 19%;
}

.statistics__your  {
  margin-top: 40px;
}

.statistics__your__txt {
  font-size: 18px;
  line-height: 24px;
}

.statistics__your__txt p:not(:last-child) {
  margin-bottom: 25px;
}

.statistics__your__json {
  padding-left: 65px;
}

.statistics__your__json span {
  display: block;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "CirceExtraBold";
}

.statistics__your__json a {
  width: 100%;
  color: #fff;
  height: 62px;
  font-size: 20px;
  border-radius: 3px;
  background: #26a0f8;
}

.statistics__your__json a:hover {
  background: #1886d6;
}

/* =================================== */
/*            Page: Network            */
/* =================================== */

.network {
  padding-bottom: 70px;
}

.network__info {
  font-size: 16px;
  margin-bottom: 40px;
}

.network__info__txt {
  margin-bottom: 25px;
}

.network__info__item {
  line-height: 24px;
  font-family: "CirceBold";
}

.network .tabs__name__item {
  min-width: 171px;
}

.network .table__box {
  margin-bottom: 0;
}

.network .tabs__table .table__item {
  border: 0;
  padding: 8px 20px;
}

.network .tabs__table .table__cell_1 {
  width: 11%;
}

.network .tabs__table .table__cell_2 {
  width: 75%;
}

.network .tabs__table .table__cell_3 {
  width: 14%;
}

.network .tabs__table .table__item_header .table__cell_2 {
  width: 86%;
}

.network .tabs__table .table__item_header .table__cell,
.network .tabs__table .table__item_row .table__cell_1 {
  color: #6a757d;
}

.show__all {
  text-align: center;
}

.show__all a {
  width: 100%;
  height: 38px;
  color: #031926;
  font-size: 16px;
  background: #f2f2f4;
}

.show__all a:hover {
  background: #dedee2;
}

.planet-img {
  padding-left: 65px;
}

/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* ------------ *Default ------------- */
/* --------- *Before::After ---------- */
.nav__item:after,
.currency__price:after {
  content: " ";
  position: absolute;
}