@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ccc;
    background: rgb(10, 24, 33);
    background: -webkit-gradient(linear, left top, right top, from(rgba(10, 24, 33, 1)), color-stop(35%, rgba(17, 46, 44, 1)), to(rgba(32, 76, 59, 1)));
    background: -o-linear-gradient(left, rgba(10, 24, 33, 1) 0%, rgba(17, 46, 44, 1) 35%, rgba(32, 76, 59, 1) 100%);
    background: linear-gradient(90deg, rgba(10, 24, 33, 1) 0%, rgba(17, 46, 44, 1) 35%, rgba(32, 76, 59, 1) 100%);
    width: 100%;
    min-width: 1170px;
    letter-spacing: 0.8px;
    height: 100%;
    margin: 0;
}

.wrapper {
    min-height: 100%;
    margin-bottom: -250px;
}

a {
    color: #fff;
    text-decoration: none;
}

ul,
li,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 99;
}

.alert {
    padding: 8px 15px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 0.4px
}

.img__res {
    max-width: 100%;
    display: block;
}

.alert__success {
    background: green;
}

.alert__danger {
    background: #c80505;
}

.alert__info {
    background: #05adc8;
    display: flex;
    justify-content: center;
    width: 100%;
}

.bgtb__dark {
    background-color: rgba(0, 0, 0, .1);
    padding: 20px;
}

.login__redirect {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header {
    padding: 15px 0;
    width: 100%;
    min-width: 1170px;
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.logo {
    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;
}

.logo__icon {
    -webkit-animation: logo 10s infinite linear;
    animation: logo 10s infinite linear;
}

.logo__icon img {
    width: 32px;
    height: 32px;
}

.logo__text img {
    width: 132px;
    margin-left: 15px;
}

.socials,
.lang {
    border: 1px solid#236854;
    padding: 5px;
    border-radius: 5px;
    width: 150px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 34px;
}

.lang {
    width: 120px;
}

.socials__title,
.lang__title {
    background-color: #236854;
    border-radius: 3px;
    padding: 3px 5px;
    font-weight: 300;
    font-size: 12px;
}

.lang__icon {
    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;
}

.lang__icon--img i {
    height: 18px;
}

.socials__list {
    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;
}

.socials__list img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
}

.auth__link {
    padding: 8px 15px;
    border: 1px solid#236854;
    border-radius: 5px;
    margin-left: 10px;
    text-transform: uppercase;
    font-size: 12px;
}

.auth__link i {
    color: #3bf0bc;
    margin-right: 5px;
}

.auth__link--light {
    background-color: #236854;
    color: #fff;
}

.auth__link:hover {
    background-color: rgba(0, 0, 0, .2);
}

@-webkit-keyframes logo {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes logo {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Menu */
.menu {
    width: 100%;
    min-width: 1170px;
    margin: 0 auto;
    border-top: 1px solid#236854;
    border-bottom: 1px solid #236854;
}

.menu__inner {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1140px;
}

.menu__inner li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}


.menu__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 10px 35px;
    color: #3bf0bc;
}

.menu__link span {
    color: #999;
    font-size: 12px;
    font-weight: 300;
    margin-top: 5px;
}

.menu__link:hover,
.menu__link--active {
    background-color: rgba(0, 0, 0, .2);
}

/* Topline */
.topline {
    width: 100%;
    min-width: 1170px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.topline__inner {
    max-width: 1140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
}

.servertime {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .2);
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.servertime__icon {
    margin-right: 10px;
}

.servertime__text {
    color: rgb(59, 240, 188);
    font-weight: 300;
}

.servertime__text span {
    color: #999;
    margin-right: 10px;
}

.crypto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.crypto__price {
    margin-left: 20px;
}

.crypto__price img {
    width: 20px;
    vertical-align: middle;
}

.crypto__price strong {
    font-size: 12px;
    font-weight: 400;
    color: rgb(59, 240, 188);
}

/* Slider */

.slider {
    width: 100%;
    min-width: 1170px;
    position: relative;
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.slider:after {
    z-index: 1;
    position: absolute;
    width: 3980px;
    height: 100%;
    left: 0;
    bottom: 0;
    background-image: url(../img/line.png);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: auto;
    content: '';
    -webkit-animation: grid 200s infinite linear;
    animation: grid 200s infinite linear;
    pointer-events: none;
}

@-webkit-keyframes grid {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes grid {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.slider__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 50px 0;
    position: relative;
    z-index: 99;
}

.slider__img {
    max-width: 400px;
}

.welcome {
    font-size: 36px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #CCC;
}

.welcome span {
    color: rgb(59, 240, 188);
}

.slogan {
    color: #0ee6a7;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tagline {
    font-size: 14px;
    color: #ccc;
    font-weight: 300;
}

.btnjoin {
    margin-top: 40px;
}

.join__icon {
    background-color: #236854;
    border-radius: 50%;
    padding: 15px;
}

.join__icon i {
    font-size: 18px;
}

.btn__join {
    background-color: #236854;
    padding: 10px;
    font-size: 16px;
    text-transform: uppercase;
    color: rgb(59, 240, 188);
    border-radius: 5px;
    padding-left: 10px;
}

.btn__join:hover {
    background-color: rgba(0, 0, 0, .4);
}

.highlight_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 85px;
}

.highlight__item {
    margin-right: 10px;
    border: 1px solid#236854;
    padding: 15px 20px;
    color: #ccc;
}

.highlight__item i {
    color: rgb(59, 240, 188);
    margin-right: 5px;
}

/*Plans*/
.plans {
    width: 100%;
    background-color: rgba(0, 0, 0, .1);
    height: 220px;
}

.plans__inner {
    height: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.plans__left,
.plans__right {
    width: 50%;
}



.calculate__title,
.plans__title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
    font-size: 12px;
    font-weight: 300;
    color: rgb(59, 240, 188);
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    pointer-events: none;
    height: 220px;
    position: absolute;
    top: 0;
    left: 0;
}

.calculate__title {
    left: 50%;
}

.calculate__title:before,
.plans__title:before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 100%;
    width: 1px;
    margin-bottom: 10px;
    content: '';
    background-color: #236854;
}

.calculate__title:after,
.plans__title:after {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 100%;
    width: 1px;
    margin-top: 10px;
    content: '';
    background-color: #236854;
}

.plan__wrap {
    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;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.plan_percent,
.plan__dep {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.plan_percent {
    height: 170px;
    position: relative;
}

.plan__dep {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: 50px;
    border-top: 1px solid#236854;
    margin-left: 35px;
    margin-right: 25px;
    font-size: 14px;
    font-weight: 300;
    color: #ccc;
}

.plan__dep--min span,
.plan__dep--max span,
.plan__dep--profit span {
    color: #3bf0bc;
}

.plan__dep--min i,
.plan__dep--max i,
.plan__dep--profit i {
    color: #236854;
    font-size: 12px;
    font-weight: 500;
}

.plan__percent--three {
    font-size: 48px;
    font-weight: 600;
    border: 1px solid #236854;
    color: rgb(59, 240, 188);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.plan__box {
    position: relative;
}

.plan__percent--percent {
    font-size: 14px;
    background-color: #236854;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    -webkit-animation: percent 3s infinite linear;
    animation: percent 3s infinite linear;
    top: 0;
    right: 0;
}


@-webkit-keyframes percent {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes percent {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.plan__info {
    margin-left: 50px;
    font-size: 22px;
    font-weight: 300;
}

.plan__info--top {
    color: #ccc;
}

.plan__info--bottom {
    letter-spacing: 2.2px;
    color: #3bf0bc;
}

.plan__btn {
    margin-left: 40px;
}

.plan__btn--start {
    padding: 10px 15px;
    background-color: #236854;
    color: #3bf0bc;
    text-transform: uppercase;
    border-radius: 5px;
}

.plan__btn--start:hover {
    background-color: rgba(0, 0, 0, .4);
}

.cal__box {
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cal__box--input {
    position: relative;
}

.cal__box--input label {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 5px;
}

.cal__input {
    position: relative;
    background: transparent;
    border: 1px solid #236854;
    height: 40px;
    width: 300px;
    color: #fff;
    padding-left: 15px;
    border-radius: 5px;
    line-height: 40px;
    font-size: 14px;
}

.cal__input--dollar {
    position: absolute;
    right: 5px;
    top: 28px;
}

.cal__input--dollar i {
    color: #3bf0bc;
    font-size: 24px;
    font-weight: 300;
}

.cal__input:active,
.cal__input:focus {
    border: 1px solid#236854;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.cal__box--return {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cal__profit {
    border: 1px solid #236854;
    margin: 0px 10px;
    width: 100px;
    height: 50px;
    text-align: center;
    margin-top: 50px;
}

.cal__profit--title {
    font-size: 12px;
    font-weight: 300;
    background: #236854;
    color: #ccc;
    padding: 3px 0;
}

.cal__profit--val {
    margin-top: 5px;
    color: #3bf0bc;
}

.cal__img {
    margin-right: 10px;
}

.cal__img--img {
    width: 34px;
    height: 34px;
    vertical-align: middle;
}

/* About */
.about {
    margin: 40px 0;
}

.about__inner {
    width: 1140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: stretch;
}

.about__left,
.about__right {
    width: 40% !important;
    border: 1px solid #236854;
    padding: 20px;
    position: relative;
}

.about__title {
    position: absolute;
    font-size: 18px;
    background-color: #236854;
    top: -15px;
    left: 20px;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 300;
    color: #3bf0bc;
    text-transform: uppercase;
}

.about__title span {
    color: #eee;
}

.about__text {
    color: #ccc;
    line-height: 25px;
    text-align: justify;
    margin-top: 20px;
}

.about__text-highlight {
    font-size: 16px;
    font-weight: 400;
    color: #3bf0bc;
}

.about__btn {
    margin-top: 30px;
}

.about__btn--btn i {
    color: #3bf0bc;
}

.about__btn--btn {
    padding: 10px 15px;
    background-color: #236854;
    color: #ccc;
    text-transform: uppercase;
    border-radius: 5px;
}

.about__btn--btn:hover {
    background: rgba(0, 0, 0, .2);
}

.about__why--list {
    padding: 12px 0;
    border-bottom: 1px dotted #236854;
    color: #ccc;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}


.about__why--listlast {
    border-bottom: 0;
}

.why__arrow {
    width: 40px;
}

.why__arrow i {
    font-size: 26px;
    color: #236854;
}

.why__title {
    font-size: 14px;
    font-weight: 300;
    color: #3bf0bc;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.why__img {
    width: 50px;
    position: absolute;
    right: 0;
}

.why__img--img {
    width: 40px;
    height: 40px;
    opacity: .4;
}

.why__content span {
    font-size: 12px;
    color: #999;
}

.about__logo--img {
    width: 50px;
}

.about__center {
    text-align: center;
    width: 20%;
    font-size: 14px;
}

.about__logo--text {
    font-size: 18px;
    font-weight: 400;
    color: #ccc;
    text-transform: uppercase;
    margin-top: 20px;
}

.about__logo--text span {
    color: #3bf0bc;
}

.about__cef {
    margin-top: 15px;
}

.about__cef--txt {
    font-size: 12px;
    font-weight: 300;
}

.about__cef--img {
    margin-top: 10px;
    margin-bottom: 20px;
}

.about__cef--img img {
    width: 100px;
    border: 2px solid #236854;
}

.about__cef--check {
    margin-top: 20px;
}

.about__cef--check a {
    background-color: #3bf0bc;
    border-radius: 5px;
    padding: 8px 10px;
    color: #000;
}

.about__cef--check a:hover {
    opacity: 0.8;
}

/* Stat */
.stat {
    width: 100%;
    background: url('../img/light_bg.png') transparent left center no-repeat;
    margin: 50px 0;
    position: relative;
}

.stat__inner {
    min-width: 1140px;
}

.howto__title,
.stat__title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;

}

.howto__title span,
.stat__title span {
    color: #3bf0bc;
    margin-left: 5px;
}

.howto__title:after,
.stat__title:after {
    content: "\f052";
    font-family: "icomoon";
    height: 1px;
    width: 100%;
    background: #236854;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 20px;
    color: #236854;
    font-size: 14px;
}

.howto__title:before,
.stat__title:before {
    content: "\f052";
    font-family: "icomoon";
    height: 1px;
    width: 100%;
    background: #236854;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 20px;
    color: #236854;
    font-size: 14px;
}

.infobox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

.infobox__item {
    width: 24%;
}

.info__box--title {
    font-size: 12px;
    font-weight: 300;
    color: #3bf0bc;
    text-align: left;
    position: relative;
    overflow: hidden;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
}

.info__box--title:before {
    content: "\f052";
    font-family: "icomoon";
    background: #236854;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: 10px;
    color: #236854;
    font-size: 14px;
}

.info__box--content {
    background-color: rgba(0, 0, 0, .1);
    padding: 10px 20px;
    font-size: 18px;
    color: #eee;
    text-align: center;
    margin-top: 10px;
    border-radius: 5px;
    font-weight: 300;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.info__box--content i {
    font-size: 22px;
    color: #236854;
    opacity: .5;
}

.stat__box {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.stat__item {
    width: 24%;
    border: 1px solid #236854;
}

.stat__item--title {
    background-color: rgba(0, 0, 0, .1);
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3bf0bc;
}

.stat__item--title:before {
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-right: 5px;
    margin-left: 10px;
}

.stat__item--title-one:before {
    content: "\eba8";
    font-family: "icomoon";
    font-size: 18px;

}

.stat__item--title-two:before {
    content: "\ea71";
    font-family: "icomoon";
    font-size: 18px;
}

.stat__item--title-three:before {
    content: "\ea71";
    font-family: "icomoon";
    font-size: 18px;
}

.stat__item--content {
    padding: 10px;
}

.stat__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px dotted #236854;
    padding: 5px 0;
}

.stat__line--img {
    width: 20px;
}

.stat__line--img img {
    width: 18px;
    height: 18px;
}

.stat__line--amount {
    color: #3bf0bc;
    font-weight: 400;
    font-size: 13px;
}

.stat__line--username p {
    color: #eee;
    font-weight: 300;
    margin-bottom: 5px;
    font-size: 13px;
}

.stat__line--username small {
    font-size: 10px;
    color: #888;
}

.stat__line:last-child {
    border-bottom: 0;
}

/* howto*/
.howto {
    width: 100%;
    margin: 50px 0;
}

.howto__inner {
    min-width: 1140px;
}

.howto__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

.howto__box--item {
    width: 33%;
    background-color: rgba(0, 0, 0, .1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100px;
}

.howto__step {
    background-color: rgba(0, 0, 0, .1);
    font-size: 36px;
    text-align: center;
    color: rgba(255, 255, 255, 0.1);
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.howto__text {
    padding: 10px;
}

.howto__text h3 {
    font-weight: 400;
    color: #3bf0bc;
    font-size: 14px;

    margin-bottom: 10px;
}

.howto__text span {
    font-size: 13px;
    font-weight: 300;
    color: #999;
}

.howto__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px 0;
}

.howto__line--text {
    color: #3bf0bc;
}

.howto__line--text i {
    font-size: 18px;
    background-color: #236854;
    color: #3bf0bc;
    padding: 5px;
    border-radius: 5px;
    margin-right: 10px;
}



/*footer*/
.footer,
.push {
    height: 250px;
}

.footer {
    margin-top: 100px;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
}

.footer__inner {
    min-width: 1140px;
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .02);
}

.fmenu__left,
.fmenu__right {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 10px 0;

}

.fmenu__right li a span,
.fmenu__left li a span {
    display: block;
    color: #666;
    font-size: 12px;
    padding-top: 5px;
}

.fmenu__left li a,
.fmenu__right li a {
    color: #3bf0bc;
}


.flogo img {
    width: 40px;
}

.footer__mid {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .02);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.weaccept span {
    font-size: 12px;
    color: #3bf0bc;
    font-weight: 300;
}

.weaccept__img {
    width: 28px;
    margin-top: 10px;
    height: 28px;
    margin-right: 3px;
}

.finfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.finfo__icon {
    width: 40px;
    height: 40px;
    background-color: #236854;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
}

.finfo__title span {
    font-size: 12px;
    color: #3bf0bc;
    font-weight: 300;
    text-transform: uppercase;
}

.finfo__title p {
    margin-top: 10px;
    color: #ccc;
    font-size: 13px;
    font-weight: 400;
}

.finfo__icon i {
    font-size: 24px;
}

.footer__bot {
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.copyright {
    color: #999;
    letter-spacing: 0.6;
    opacity: 0.8;
    font-size: 13px;
}

.terms__link a {
    color: #999;
    font-size: 13px;
    margin-left: 15px;
}

.terms__link a:hover {
    color: #3bf0bc;
}

/* affiliate */
.aff {
    width: 100%;
    margin: 30px 0;
}

.aff__inner {
    min-width: 1140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.aff__title {
    font-size: 18px;
    font-weight: 500;
}

.aff__title span {
    color: #3bf0bc;
}

.aff__title:before {
    content: "\ec65";
    font-family: "icomoon";
    margin-right: 10px;
    font-size: 18px;
    color: #236854;
}

.aff__line {
    color: #999;
    margin: 15px 0;
    font-weight: 300;
    font-size: 14px;
}

.aff__left {
    width: 60%;
}

.aff__right {
    width: 40%;
    text-align: right;
}

.aff__img {
    width: 400px;
}

.aff__box--item {
    background-color: rgba(0, 0, 0, .1);
    -webkit-clip-path: polygon(0% 0%, 73% 0, 100% 50%, 75% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 73% 0, 100% 50%, 75% 100%, 0% 100%);
    width: 400px;
    height: 90px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.aff__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aff__box--item::after {
    position: absolute;
    content: "\f052";
    font-family: "icomoon";
    right: 0;
    color: #236854;
    z-index: 99;
    font-size: 24px;
}

.aff__item--icon {
    width: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aff__item--icon i {
    font-size: 34px;
    color: #236854;
}

.aff__item--title {
    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: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px;
}

.aff__item--title p {
    font-size: 32px;
    color: #3bf0bc;
}

.aff__item--title p small {
    font-size: 22px;
    padding-left: 5px;
    color: #ccc;
}

.aff__item--title span {
    font-weight: 300;
    color: #236854;
}

.aff__fea {
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.aff__fea p {
    font-size: 30px;
    font-weight: 300;
    color: #3bf0bc;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.aff__btn {
    background-color: #3bf0bc;
    padding: 8px 10px;
    color: #000;
    border-radius: 5px;
}

.aff__btn:hover {
    background-color: rgba(0, 0, 0, .1);
    color: #3bf0bc;
}

/* Page */
.page {
    width: 100%;
    margin-bottom: 50px;
    background-color: rgba(0, 0, 0, .1);
    padding: 30px 0;
}

.page__inner {
    min-width: 1140px;
}

.page__title {
    font-size: 16px;
    font-weight: 400;
    position: relative;
    padding-left: 10px;
}

.page__title span {
    color: #3bf0bc;
}

.page__title::before {
    content: "";
    background-color: #236854;
    width: 2px;
    height: 100%;
    position: absolute;
    left: 0;
}

/* auth */
.login {
    width: 100%;
    min-height: 50vh;

}

.login__inner {
    min-width: 1140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login__box {
    background: rgba(0, 0, 0, .2);
    max-width: 450px;
    padding: 20px 50px;
    border-radius: 10px;
}

.login__title {
    text-align: center;
    font-size: 18px;
    color: #236854;
    margin-bottom: 50px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login__title i {
    font-size: 36px;
    color: #ccc;
    margin-right: 10px;
}

.auth__input {
    margin-bottom: 20px;
    position: relative;
}

.auth__input label {
    display: block;
    padding-bottom: 5px;
    font-weight: 300;
    color: #3bf0bc;
    font-size: 13px;
}

.auth__input span {
    position: absolute;
    right: 10px;
    top: 30px;

}

.auth__input span i {
    font-size: 18px;
    font-size: 24px;
    color: #236854;
}

.auth__input span img {
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

.auth__input--input {
    position: relative;
    height: 45px;
    width: 350px;
    background: transparent;
    border: 1px solid #236854;
    outline: none;
    padding: 5px 10px;
    color: #eee;
}

.auth__input--text {
    width: 350px;
    background: transparent;
    border: 1px solid #236854;
    outline: none;
    padding: 5px 10px;
    color: #eee;
}

.auth__btn {
    background-color: #3bf0bc;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    border: 1px solid #255044;
    border-radius: 5px;
    cursor: pointer;
}

.auth__btn:hover {
    opacity: .8;
}

.forgot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.forgot__link {
    color: #3bf0bc;
    font-size: 13px;
}

.forgot__link:hover {
    color: #ccc;
}

.sign {
    max-width: 850px;
    width: 850px;
}

.signup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.signup__key {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.transaction__code {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #eee;
    text-align: center;
}

.auth__agree {
    margin: 20px 0;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
}

.auth__upline {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 300;
    color: #ccc;
}

.auth__agree a {
    color: #3bf0bc;
}

.login__box .create {
    text-align: center;
}

/* other */
.other {
    width: 100%;
    margin: 20px 0;
}

.other__inner {
    min-width: 1140px;
    font-size: 13px;
    font-weight: 300;
    color: #eee;
    line-height: 26px;
}

.other__inner p {
    margin-bottom: 10px;
    text-align: justify;
}

.other__title {
    margin: 20px 0;
    font-size: 18px;
    color: #3bf0bc;
}

.other__inner ol li {
    list-style: decimal;
    margin-left: 30px;
}

.ollist {
    color: #236854;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 13px
}

/* faq */
.faq .accordion {
    background-color: rgba(0, 0, 0, .1);
    color: #3bf0bc;
    cursor: pointer;
    padding: 16px;
    margin-bottom: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    letter-spacing: 0.6px;
}

.faq .active,
.faq .accordion:hover {
    background-color: #255044;
    opacity: 0.8;
}

.faq .panel {
    padding: 0 18px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.2s ease-out;
    -o-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
}

.faq .accordion:after {
    content: '\eb18';
    font-family: "icomoon";
    font-size: 16px;
    color: #236854;
    float: right;
    margin-left: 5px;
}

.faq .active:after {
    content: '\eb17';
    font-family: "icomoon";
    color: #3bf0bc;
}

/* support */
.support {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}

.support__title {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, .1);
    font-size: 16px;
    font-weight: 300;
    color: #3bf0bc;
    border-bottom: 1px solid #255044;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.support__title i {
    color: #236854;
    font-size: 22px;
}

.support__left,
.support__right {
    width: 45%;
    text-align: center;
}

.support__content {
    padding: 20px;
    background-color: rgba(0, 0, 0, .1);
}

.support__content p {
    padding-bottom: 10px;
}

.support__content i {
    font-size: 24px;
    margin-right: 5px;
    color: #236854;
}

.support__content p span {
    color: #3bf0bc;
    padding-right: 5px;
}

/* Account */
.acc__top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
}

.acc__top--part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25%;
    height: 60px;
}

.acc__top--icon {
    background: rgba(0, 0, 0, .1);
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
}

.acc__top--icon i {
    font-size: 24px;
    color: #236854;
}

.acc__top--info p {
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    color: #3bf0bc;
}

.acc__top--info div {
    font-size: 14px;
    font-weight: 300;
}

.bgblack {
    background-color: rgba(0, 0, 0, .1);
}

.acc__menu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.acc__menu a {
    width: calc(100% / 8);
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 5px 20px 5px;
    text-decoration: none;
    position: relative;
    margin-top: -1px;
    border-top: 2px solid transparent;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border-right: 1px solid rgba(255, 255, 255, .05);
}

.acc__menu a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .05);
}

.acc__menu--icon {
    width: 30px;
    height: 30px;
    background-color: #255044;
    border-radius: 8px;
    position: relative;
    margin-bottom: 12px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.acc__menu a p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.acc__menu a span {
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    color: #3bf0bc;
    margin-top: -5px
}

.acc__menu a:hover,
.acc__menu a.active {
    background-color: rgba(0, 0, 0, .2);
    border-top: 2px solid #3bf0bc;
}

.mt5 {
    margin-top: 5rem;
}

.mb5 {
    margin-bottom: 5rem;
}

.mt2 {
    margin-top: 2rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.acc__bot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}

.acc__bot--left {
    width: 300px;
    background-color: rgba(0, 0, 0, .2);
    padding: 20px;
    border-radius: 20px;
}


.acc__bal--title {
    text-align: center;
}

.acc__bal--title i {
    display: block;
    font-size: 36px;
    color: #255044;
    margin-bottom: 10px;
}

.acc__bal--title p {
    font-size: 24px;
    font-weight: 300;
    color: #3bf0bc;
    text-align: center;
    padding-top: 10px;
}

.acc__bal--title span {
    font-size: 14px;
    font-weight: 300;
    color: #eee;
    text-transform: uppercase;
}

.acc__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px 0;
}

.acc__btn--btn {
    padding: 8px 0;
    background-color: #236854;
    width: 120px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    margin: 0px 5px;
    font-weight: 500;
}

.acc__btn--with {
    background-color: #3bf0bc;
    color: #000;
}

.acc__btn--btn:hover {
    opacity: .8;
}

.acc__pbal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.acc__pbal--item {
    width: 49%;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 5px 0;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: 10px 0;
}

.acc__pbal--img {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
    margin-top: 5px;
}

.acc__pbal--item span {
    color: #3bf0bc;
    font-size: 16px;
    font-weight: 400;
}

.acc__pbal--item p {
    font-size: 11px;
    font-weight: 300;
    color: #236854;
    margin-top: -5px;
    padding: 0;
    margin-bottom: 0;
}

.acc__bot--right {
    margin-left: 50px;
    width: 100%;
}

.acc__bot--title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
    color: #3bf0bc;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px dotted #236854;
    padding-bottom: 5px;
}

.acc__bot--title span {
    font-size: 12px;
    color: #ccc;
    display: block;
}

.acc__stat {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.acc__stat--item {
    width: 48%;
    width: calc(50% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.acc__stat--icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: #255044;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.acc__stat--icon i {
    font-size: 24px;
    color: #fff;
}

.acc__stat--text {
    margin-left: 20px;
    font-size: 14px;
    font-weight: 300;

}

.acc__stat--text span {
    display: block;
    font-size: 12px;
    color: #3bf0bc;
    text-transform: uppercase;
}

.acc__stat--bal {
    position: absolute;
    right: 10px;
    font-size: 18px;
    color: #3bf0bc;
}

.acc__refbox {
    background-color: rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 10px;
}

.acc__refbox label {
    font-size: 12px;
    font-weight: 300;
    color: #3bf0bc;
}

.refbox__link {
    border: 1px solid #236854;
    border-radius: 5px;
    padding: 10px;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.refbox__icon {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background-color: #236854;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.acc__bot--btn {
    background-color: #236854;

    font-size: 12px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
}

.acc__bot--btn i {
    color: #3bf0bc;
    font-size: 18px;
    margin-right: 10px;
}

.acc__bot--btn:hover {
    opacity: .8;
}

.other__ac--title {
    text-align: center;
    color: #3bf0bc;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 30px
}

.other__inner table {
    width: 100%;
    border: 1px solid #255044;
}

.other__inner table td {
    border-bottom: 1px solid #255044;
    padding: 15px;
}


.inpts {
    padding: 10px 15px;
    width: 100%;
    background: transparent;
    outline: none;
    color: #fff;
    border: 1px solid #255044;
    border-radius: 4px;
    font-size: 14px;
}

.sbmt {
    background-color: #236854;
    padding: 10px 20px;
    color: #eee;
    border: 1px solid #236854;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.sbmt:hover {
    opacity: 0.8;
}

.other__inner .sline {
    background-color: #236854;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 5px;

}

.sline__choose {
    padding: 20px;
    text-align: center;
}

.sline__line {
    margin: 0 10px;
}

.sline__line input[type=radio] {
    margin-right: 5px;
}

.profit__edit {
    line-height: 16px !important;
}

/* promotion */
.pnav-t {
    margin-bottom: 1.25rem;
    margin-left: 0;
    list-style: none;
    padding-bottom: 1rem;
    border-bottom: 1px solid #255044;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pnav-t>li>a {
    display: block;
}

.pnav-tabs {
    *zoom: 1;
}

.pnav-tabs:before,
.pnav-tabs:after {
    display: table;
    content: "";
}

.pnav-tabs:after {
    clear: both;
}

.pnav-tabs>li {
    float: left;
}

.pnav-tabs>li>a {
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: 0.1rem;
    line-height: 1rem;
}

.pnav-tabs>li {
    margin-bottom: 5px;
}

.pnav-tabs>li>a {
    padding: 12px 20px;
    line-height: 1.25rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.pnav-tabs>li>a:hover,
.pnav-tabs>li>a:focus {
    background-color: #255044;
}

.pnav-tabs>.active>a,
.pnav-tabs>.active>a:hover,
.pnav-tabs>.active>a:focus {
    cursor: default;
    background-color: #255044;
    border-bottom-color: transparent;
}

.tab-content.active {
    display: block;
}

.tab-content.hide {
    display: none;
}

.promo__img {
    margin-bottom: 20px;
}

.other__inner .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.other__inner .pagination .page-item {
    width: 38px;
    height: 38px;
    background-color: rgba(0, 0, 0, .1);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.other__inner .pagination .page-item.active {
    background-color: #255044;
}

/* widthdraw */
.withd__box {
    margin: 15px 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.withd__box--left,
.withd__box--right {
    width: 48%;
    background-color: rgba(0, 0, 0, .1);
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.bal__ic i {
    margin-right: 10px;
    font-size: 28px;
    color: #255044;
}

.bal__val {
    color: #3bf0bc;
    font-size: 18px;
}

.cryp__balance {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.cryp__balance--item {
    width: 15%;
    background-color: rgba(0, 0, 0, .1);
    padding: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    min-height: 220px
}

.cryp__ic {
    margin: 10px 0;
    text-align: center;
}

.cryp__ic--img {
    width: 32px;
    height: 32px;
}

.cryp__info--line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dotted #255044;
    padding: 5px 0;
}

.cryp__info--txt {
    font-size: 13px;
    color: #ccc;
    font-weight: 300;
}

.cryp__info--val {
    color: #3bf0bc;
    font-weight: 500;
}

.cryp__action {
    margin-top: 20px;
}

.cryp__action--setup {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center
}

.withaw__form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.withaw__form--form {
    width: 550px;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 30px;

}

.withaw__form--txt {
    margin-bottom: 10px;
    position: relative;
}

.cryp__choosed {
    display: none;
}

.cryp__choosed+label {
    cursor: pointer;
}

.cryp__choosed:checked+label {
    background-color: #255044;
}

.withaw__form--conf {
    padding: 10px 0;
    border-bottom: 1px dotted #255044;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.withaw__form--conf .confs2 {
    color: #3bf0bc;
    font-weight: 500;
}

.withaw__form--conf:last-child {
    border-bottom: 0;
    justify-content: center;
    margin-top: 20px;
}

.withaw__form--big {
    width: 700px;
}

.ref__box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    margin: 20px 0;
}

.ref__box--item {
    width: 30%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    border: 1px solid #236854;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.ref__box--item .ref__ic {
    width: 80px;
}

.ref__box--item .ref__ic i {
    font-size: 48px;
    color: #236854;
}

.ref__box--item .ref__stat span {
    font-size: 16px;
    font-weight: 500;
    color: #3bf0bc;
}

.acc__plan--dep {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 20px;
}

.cryp__name {
    text-align: center;
    color: #3bf0bc;
}

.cryp__dep--inp {
    display: none;
}

.cryp__dep--action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin-bottom: 10px;
}

.cryp__dep--inp+label {
    background-color: rgba(0, 0, 0, .1);
    padding: 8px 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cryp__dep--inp:checked+label {
    background-color: #236854;
}

.cryp__dep--inp:disabled+label {
    color: #666;
}

.acdep__title {
    width: 100%;
    font-size: 16px;
    text-align: center;
    color: #3bf0bc;
    margin: 10px 0;
    text-transform: uppercase;
}

.withaw__form--txt span {
    position: absolute;
    right: 10px;
    top: 10px;
}

.withaw__form--txt span i {
    color: #3bf0bc;
    font-size: 18px;

}

.dep__form {
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.depconf__form {
    text-align: center;
    margin: 10px 0;
}

.depconf__form b,
.depconf__form a {
    color: #3bf0bc;
    font-weight: 500;
}

.depconf__form .payment_status {
    background: rgba(0, 0, 0, .1);
    padding: 10px 0;
    border-radius: 5px;
    margin: 10px 0;
}

.depconf__note {
    margin-top: 10px;
    font-size: 12px;
    color: #ccc;
}

.depconf__note b {
    color: #3bf0bc;
}

.spendf {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;

}

.spendf__left,
.spendf__right {
    width: 49%;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.deposit-cancel {
    background-color: rgba(0, 0, 0, .1) !important;
    margin-left: 10px;
}

.transaction {
    width: 100%;
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
}

.transaction__item {
    width: 49%;
    background-color: rgba(0, 0, 0, .1);
    margin: 5px 0;
}

.transaction__item--title {
    padding: 5px 10px;
    background-color: #236854;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    font-weight: 500;
}

.transaction__item--title div span {
    color: #3bf0bc;
    margin-left: 5px;
    font-weight: 500;
}

.transaction__item--content {
    padding: 5px 10px;
}

.transaction__item--bot {
    background-color: rgba(0, 0, 0, .2);
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    color: #999;
    padding: 5px 10px;
}



/* banners */
.banner {
    margin: 10px 0;
    width: 100%;
}

.banner__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, .1);
    margin-bottom: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.banner__item--txt {
    color: #3bf0bc;
    font-weight: 500;
}

.banner__item--btn button {
    cursor: pointer;
}

.banner__content {
    background-color: rgba(0, 0, 0, .1);
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: none;
}

.banner__content.active {
    display: block;
}

.banner__indata {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    color: #fff;
}

.banner__content--btn {
    margin: 20px 0;
}

.banner__content--btn .inpts {
    position: relative;
    padding: 0;
    border-color: #3bf0bc;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    padding-left: 15px;
}

.bbtnx {
    border-color: #3bf0bc;
}

.banner__btnx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ver 2 */
.withf {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 20px 0;
}

.withf__left,
.withf__right {
    width: 49%;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.withf__item {
    width: 100%;
    padding: 20px;
    border-bottom: 1px dotted #236854;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.withtrans {
    width: 250px !important;
    border-color: #3bf0bc !important;
    position: relative;
}

.confs2__icon {
    position: relative;
}

.confs2__icon::after {
    content: "\ec31";
    font-family: 'icomoon';
    position: absolute;
    font-size: 18px;
    color: #3bf0bc;
    right: 10px;
    top: 5px;
}

.securep {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
}

.securep__left,
.securep__right {
    background-color: rgba(0, 0, 0, .1);
    width: 49%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 20px;
}

.securep__title {
    background-color: #236854;
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.securep__content {
    margin-bottom: 20px;
}

.securep__content--item {
    border-bottom: 1px dotted #236854;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.securep__inp {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.securep__content--item label {
    position: relative;
    padding-left: 50px;
}

.securep__content--item:hover input~.checkmark {
    background-color: #236854;
}


.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #236854;
    border-radius: 50%;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.securep__content--item input:checked~.checkmark:after {
    display: block;
}

.securep__content--item .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.stfa {
    width: 100%;
    background-color: rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.cef__btnx {

    font-size: 12px !important;
}
.stfa__left {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stfa__line {
    padding: 10px 0;
    border-bottom: 1px dotted #236854;
    text-align: left;
}

.stfa__line b,
.stfa__line a {
    color: #3bf0bc;
    font-weight: 500;
    font-size: 14px;
}

.stfa__line:last-child {
    border-bottom: 0;
}