body {
    background: #fff;
    color: #4e4d4d;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    overflow-x: hidden;
    direction: ltr;
    text-align: left;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body.dashboard {
    background: #f5f9fa;
    min-height: 100vh;
}

li {
    list-style: none;
}

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

.text-right {
    text-align: right;
}

a:focus,
a:hover,
a:-webkit-any-link,
a {
    text-decoration: none;
    cursor: pointer;
}

input,
input:focus {
    outline: none;
    border: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: transparent;
}

input[type="number"],
input[type="number"]:hover,
input[type="number"]:focus {
    -moz-appearance: textfield;
    -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select,
textarea,
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"] {
    width: 100%;
    font-weight: 500;
    padding: 15px 40px 15px 40px;
    font-size: 16px;
    background: transparent;
    border-radius: 3px;
}

select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder {
    color: #616060;
    font-size: 11px;
    text-transform: uppercase;
}

select::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder {
    color: #616060;
    font-size: 11px;
    text-transform: uppercase;
}

select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder {
    color: #616060;
    font-size: 11px;
    text-transform: uppercase;
}

select:-moz-placeholder,
textarea:-moz-placeholder,
input[type="text"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="email"]:-moz-placeholder {
    color: #616060;
    font-size: 11px;
    text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
    select,
    textarea,
    input[type="text"],
    input[type="number"],
    input[type="password"],
    input[type="email"] {
        padding: 13px 20px 13px 20px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 500px) {
    select,
    textarea,
    input[type="text"],
    input[type="number"],
    input[type="password"],
    input[type="email"] {
        font-size: 12px;
    }
}

.input-holder {
    position: relative;
}

.input-holder .input-title {
    position: absolute;
    font-size: 10px;
    padding: 3px 10px;
    background: #eff2f4;
    left: 30px;
    top: -11px;
    text-transform: uppercase;
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
}

@media only screen and (max-width: 768px) {
    .input-holder .input-title {
        font-size: 9px;
        left: 20px;
        top: -9px;
    }
}

.input-holder input {
    background: rgba(225, 226, 226, 0.4);
    font-size: 15px;
    border: 1px solid transparent;
}

@media only screen and (max-width: 768px) {
    .input-holder input {
        font-size: 14px;
    }
}

@media only screen and (max-width: 500px) {
    .input-holder input {
        font-size: 12px;
    }
}

.input-holder input.active, .input-holder input:focus {
    background: transparent;
    border-color: #f5ab2b;
}

.input-holder input.active + span, .input-holder input:focus + span {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.input-holder.error input {
    border-color: #f5ab2b;
    padding-right: 40px;
    background: transparent;
}

.input-holder.error input + span {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.input-holder.error .input-title {
    color: #f5ab2b;
}

.input-holder.error .error-icon {
    opacity: 1;
    visibility: visible;
}

.input-holder select {
    background: rgba(225, 226, 226, 0.4);
    font-size: 12px;
    border: 1px solid transparent;
}

.input-holder select:focus {
    color: #223641;
}

.input-holder select:focus + svg {
    stroke: #223641;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.input-holder .arrow-icon {
    position: absolute;
    width: 12px;
    height: 11px;
    stroke: rgba(34, 54, 65, 0.5);
    right: 30px;
    top: -moz-calc((100% - 11px) / 2);
    top: -webkit-calc((100% - 11px) / 2);
    top: calc((100% - 11px) / 2);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.input-holder.bycopy textarea,
.input-holder.bycopy input {
    background: transparent;
    padding: 15px 75px 15px 18px;
    font-size: 13px;
    resize: none;
    word-wrap: break-word;
    border: 1px solid #f5ab2b;
}

.input-holder.bycopy textarea + span,
.input-holder.bycopy input + span {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.input-holder.bycopy .btn-copy {
    position: absolute;
    font-size: 12px;
    color: rgba(34, 54, 65, 0.5);
    padding-left: 20px;
    right: 18px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 1;
    top: -moz-calc((100% - 17px) / 2);
    top: -webkit-calc((100% - 17px) / 2);
    top: calc((100% - 17px) / 2);
}

.input-holder.bycopy .btn-copy svg {
    position: absolute;
    width: 13px;
    height: 13px;
    left: 0;
    stroke: rgba(34, 54, 65, 0.5);
    bottom: 0px;
}

.input-holder .error-icon {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 15px;
    fill: #f5ab2b;
    opacity: 0;
    visibility: hidden;
    top: -moz-calc((100% - 15px) / 2);
    top: -webkit-calc((100% - 15px) / 2);
    top: calc((100% - 15px) / 2);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    border: none;
}

button {
    outline: none;
    border: none;
    background: none;
    padding: 0;
}

.hidden {
    display: none;
}

.invisible {
    opacity: 0;
    visibility: hidden;
}

.visible {
    display: block;
}

.disable {
    pointer-events: none;
}

.zeroPadding, ul, li {
    padding: 0;
}

.zeroMargin, ul, li {
    margin: 0;
}

.clearfix:after, header .navbar:after, header .login-register:after, .main--content .rex-machine .arrow-holder:after, .table-result .table-row:after, .table-paging:after, .news-section .telegram-section .telegram-content:after, .get--touch:after, .services-content .basic-membership .basic-description:after, .services-content .vip-membership:after, .dashboard-content .invest-section .payment-balance:after, .dashboard-content .invest-section .payment-balance .payement-wrap:after, .dashboard-content .invest-section .payment-balance .payement-wrap ul:after, .dashboard-content .invest-section .payment-balance .payement-wrap .balance-chart:after, .dashboard-content .invest-section .payment-balance .earning-chart:after, .dashboard-content .history-profile-status:after, .dashboard-content .history-profile-status .profile-status:after, .transaction-content .transaction-filter:after, .transaction-content .transaction-statistic:after, .transaction-content .transaction-list .transaction-item .transaction-detail:after, .dashboard-step-top:after, .investment-content .investment-step .choose-balance .balance-payment:after, .investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item:after, .investment-content .investment-step .choose-plan .plans-wrap .plan-list:after, .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .invest-amount:after, .investment-content .investment-step .confirm-invest .summary-invest:after, .edit-account .edit-account-content:after, .edit-account .edit-account-content .input-group .input-row:after, .tfa-content .tfa-steps:after, .tfa-content .tfa-steps .tfa-step-item .step-action:after, .tfa-content .security-setting:after, .referral-content .referral-top:after, .referral-content .referral-top .statistics-wrap:after, .referral-content .referral-list .referral-table .result-header:after, .referral-content .referral-list .referral-table .result-row:after {
    display: block;
    content: "";
    clear: both;
}

.trans, select,
textarea,
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"], .input-holder .input-title, .input-holder .arrow-icon, .input-holder .error-icon, .btn--arrow svg, .btn--arrow--left svg, .btn--twoPart > div, .btn--twoPart > div svg, header .navbar li a, header .login-register a, header .back-home, header .back-home svg, header.dashboard-header .top-head .profile-wrap .profile-dropdown > div, header.dashboard-header .top-head .profile-wrap .profile-dropdown > div.edit-profile svg, header.dashboard-header .dashboard-menu .dashboard-nav li a, header.dashboard-header .dashboard-menu .dashboard-nav li a svg, header.dashboard-header .dashboard-menu .mini-menu, header.dashboard-header .dashboard-menu .mini-menu svg, .about--steps .investSteps-item .stepTitle span, .about--steps .investSteps-item .stepTitle:after, .about--steps .investSteps-item span, .about--steps .investSteps-item svg, footer .footer-menu ul li a, footer .footer-menu .social-icon a, footer .footer-menu .social-icon a svg, .social-icon a, .social-icon a svg, .table-result .table-row, .table-paging li, .table-paging li svg, .table-paging li.next, .table-paging li.prev, .about-content .about-atributies .atributies-holder ul li, .news-section .news-result .news-item, .news-section .news-result .news-item p, .news-section .news-result .news-item .news-date > div, .services-content .vip-membership .vip-detail .trust-us ul li, .services-content .vip-membership .vip-detail .trust-us ul li svg, .services-content .vip-membership .vip-detail .trust-us ul li span, .plan-item, .signup-content .signup-steps .signup-body, .signup-content .signup-steps .signup-body .step-holder, .signup-content .signup-steps .signup-body .step-holder .step-content, .signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules label, .signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules label:before, .signup-content .signup-steps .signup-body .step-control .btn-next .loading, .step-nav li .step-icon, .step-nav li .step-icon svg, .login-content .login-body, .recover-password-content .recover-body, .secure-login-content .secure-login, .dashboard-content .invest-section .payment-balance .earning-chart .earning-chart-top ul li, .dashboard-content .history-profile-status .history-status, .general-menu li, .transaction-content .transaction-filter .input-holder > div .arrow-icon, .transaction-content .transaction-list .transaction-item, .transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction, .transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction:after, .transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction svg, .dashboard-step-nav li .step-counter, .dashboard-step-nav li .step-counter span, .dashboard-step-nav li:after, .dashboard-step-holder .dashboard-step-content, .investment-content .investment-step .choose-balance .balance-payment .payment-item, .investment-content .investment-step .choose-plan .plans-wrap .plan-list li .plan-type, .investment-content .investment-step .choose-plan .plans-wrap .plan-list li label, .investment-content .investment-step .choose-plan .plans-wrap .plan-list li label:after, .investment-content .investment-step .choose-plan .plans-wrap .plan-list li label:before, .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder.compound select svg, .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .invest-amount, .withdraw-content .withdraw-step .balance-list label, .withdraw-content .withdraw-step .balance-list label:before, .withdraw-content .withdraw-step .balance-list .account-address > div, .tfa-content .tfa-steps .tfa-step-item .step-action .download-app, .tfa-content .tfa-steps .tfa-step-item .step-action .download-app svg, .tfa-content .security-setting .security-options label, .tfa-content .security-setting .security-options label:before, .deposit-content .deposit-top .deposit-filter li, .banners-content .banners-menu li, .banners-content .banners-menu li a, .hidden-menu, .hidden-menu .menuList li, .modal-content.vip-subscription .subscribe-action .payment-list label, .modal-content.vip-subscription .subscribe-action .payment-list label svg, .modal-content.vip-subscription .subscribe-action .payment-list label:after, .modal-bg, .vip-navbar {
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}

.trans1, .about--steps .investSteps-item {
    transition: all ease-in-out 1s;
    -moz-transition: all ease-in-out 1s;
    -webkit-transition: all ease-in-out 1s;
    -o-transition: all ease-in-out 1s;
}

.hiddenx {
    opacity: 0 !important;
}


.btn {
    font-weight: 500;
    display: inline-block;
    position: relative;
    overflow: hidden;
    line-height: 30px;
    padding: 10px 55px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 3px;
}

@media only screen and (max-width: 1199px) {
    .btn {
        padding: 10px 45px;
    }
}

@media only screen and (max-width: 991px) {
    .btn {
        padding: 9px 45px;
    }
}

@media only screen and (max-width: 600px) {
    .btn {
        font-size: 12px;
        padding: 6px 30px;
    }
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn--arrow {
    padding: 10px 55px 10px 35px;
}

@media only screen and (max-width: 600px) {
    .btn--arrow {
        padding: 5px 45px 5px 30px;
    }
}

.btn--arrow svg {
    position: absolute;
    margin-left: 15px;
    stroke: #fff;
    width: 10px;
    height: 10px;
    right: 35px;
    top: -moz-calc((100% - 10px) / 2);
    top: -webkit-calc((100% - 10px) / 2);
    top: calc((100% - 10px) / 2);
}

@media only screen and (max-width: 600px) {
    .btn--arrow svg {
        right: 20px;
    }
}

.btn--arrow--left {
    padding: 10px 35px 10px 55px;
}

@media only screen and (max-width: 600px) {
    .btn--arrow--left {
        padding: 5px 30px 5px 45px;
    }
}

.btn--arrow--left svg {
    position: absolute;
    margin-right: 15px;
    stroke: #fff;
    width: 10px;
    height: 10px;
    left: 35px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    top: -moz-calc((100% - 10px) / 2);
    top: -webkit-calc((100% - 10px) / 2);
    top: calc((100% - 10px) / 2);
}

@media only screen and (max-width: 600px) {
    .btn--arrow--left svg {
        left: 20px;
    }
}

.btn--dark {
    background: #f5ab2b;
    color: #f9f7f2;
}

.btn--red {
    background: #f5ab2b;
    color: #f9f7f2;
}

.btn--white {
    background: #fff;
    color: #223641;
}

.btn--orange {
    background: #f27949;
    color: #fff;
}

.btn--gold {
    background: #a87c39;
    color: #fff;
    text-transform: initial;
}

.btn--twoPart {
    padding-right: 90px !important;
    padding-left: 35px !important;
    background: #1c1e22;
    color: #fff;
}

.btn--twoPart > div {
    width: 50px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #f5ab2b;
}

.btn--twoPart > div svg {
    stroke: #fff;
    width: 10px;
    height: 10px;
    position: absolute;
    margin: 0;
    top: -moz-calc((100% - 10px) / 2);
    top: -webkit-calc((100% - 10px) / 2);
    top: calc((100% - 10px) / 2);
    left: -moz-calc((100% - 10px) / 2);
    left: -webkit-calc((100% - 10px) / 2);
    left: calc((100% - 10px) / 2);
}

.btn--twoPart span {
    position: relative;
    z-index: 1;
}

.btn--twoPart:after {
    display: none;
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #f9f7f2;
    color: #f9f7f2;
}

.btn--trans {
    border: 2px solid #ebedef;
    background: transparent;
    color: #385869;
    line-height: 28px;
}

.btn--green {
    background: #f5ab2b;
    color: #fff;
}

.btn--yellow {
    color: #fff;
    text-transform: initial;
    text-shadow: 0 1px 1px #d6911f;
    font-size: 14px;
    box-shadow: inset 0 1px 0 0 #ffe9c8, 0 8px 9px 0 rgba(68, 83, 119, 0.2);
    background: #feaf3b;
    background: -moz-linear-gradient(left, #feaf3b 0%, #ff9f41 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #feaf3b), color-stop(100%, #ff9f41));
    background: -webkit-linear-gradient(left, #feaf3b 0%, #ff9f41 100%);
    background: -o-linear-gradient(left, #feaf3b 0%, #ff9f41 100%);
    background: -webkit-gradient(linear, left top, right top, from(#feaf3b), to(#ff9f41));
    background: linear-gradient(to right, #feaf3b 0%, #ff9f41 100%);
}

p {
    font-weight: 400;
    font-size: 14px;
    color: rgba(34, 54, 65, 0.7);
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

@media only screen and (max-width: 768px) {
    p {
        font-size: 12px;
    }
}

@media only screen and (max-width: 600px) {
    p {
        font-size: 11px;
    }
}

h1 {
    font-size: 36px;
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    h1 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 27px;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 24px;
    }
}

h2 {
    font-size: 30px;
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    h2 {
        font-size: 27px;
    }
}

@media only screen and (max-width: 991px) {
    h2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 600px) {
    h2 {
        font-size: 21px;
    }
}

h3 {
    font-size: 22px;
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 991px) {
    h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 600px) {
    h3 {
        font-size: 16px;
    }
}

h4 {
    font-size: 20px;
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 991px) {
    h4 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {
    h4 {
        font-size: 15px;
    }
}

h5 {
    font-size: 16px;
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    h5 {
        font-size: 15px;
    }
}

@media only screen and (max-width: 991px) {
    h5 {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    h5 {
        font-size: 13px;
    }
}

header {
    position: relative;
}

header h1 {
    text-transform: uppercase;
}

header .top-header {
    position: relative;
    padding: 0 15px;
    z-index: 2;
}

@media only screen and (max-width: 991px) {
    header .top-header {
        position: fixed;
        top: 0px;
        right: 0;
        text-align: center;
        z-index: 5;
        width: 100%;
        background: whitesmoke;
        padding: 5px 15px;
    }
}

@media only screen and (max-width: 768px) {
    header .top-header {
        padding: 0px 15px;
    }
}

@media only screen and (max-width: 768px) {
    header .top-header .col-xs-2 {
        width: 45%;
    }
}

@media only screen and (max-width: 768px) {
    header .top-header .col-xs-4 {
        width: 55%;
    }
}

@media only screen and (max-width: 768px) {
    header .top-header .col-xs-6 {
        display: none;
    }
}

header .menu-icon {
    float: right;
    width: 40px;
    height: 45px;
    cursor: pointer;
    display: none;
    position: relative;
}

header .menu-icon svg {
    width: 20px;
    height: 20px;
    stroke: #f5ab2b;
    position: absolute;
    top: -moz-calc((100% - 20px) / 2);
    top: -webkit-calc((100% - 20px) / 2);
    top: calc((100% - 20px) / 2);
    left: -moz-calc((100% - 20px) / 2);
    left: -webkit-calc((100% - 20px) / 2);
    left: calc((100% - 20px) / 2);
}

@media only screen and (max-width: 768px) {
    header .menu-icon {
        display: inline-block;
    }
}

header .navbar {
    width: 100%;
    padding: 13px 50px;
}

@media only screen and (max-width: 768px) {
    header .navbar {
        display: none;
    }
}

header .navbar li {
    text-align: left;
    position: relative;
    float: left;
    text-transform: uppercase;
    height: 100%;
    color: #fff;
    margin-right: 5px;
}

header .navbar li a {
    display: block;
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 400;
    padding: 25px 30px 20px 0;
}

@media only screen and (max-width: 1199px) {
    header .navbar li a {
        padding-right: 7px;
        padding-left: 7px;
    }
}

@media only screen and (max-width: 991px) {
    header .navbar li a {
        font-size: 11px;
        padding: 10px 5px;
    }
}

@media only screen and (max-width: 850px) {
    header .navbar li a {
        font-size: 10px;
        padding-left: 5px;
    }
}

header .navbar li.active, header .navbar li:hover {
    color: #fdb65e;
}

header .logo {
    margin-top: 20px;
    float: left;
}

@media only screen and (max-width: 991px) {
    header .logo {
        margin-top: 5px;
    }
}

@media only screen and (max-width: 850px) {
    header .logo {
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {
    header .logo {
        margin-top: 10px;
    }
}

header .login-register {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 0 0px 2px 2px;
    float: right;
}

@media only screen and (max-width: 768px) {
    header .login-register {
        display: none;
    }
}

header .login-register > div {
    float: left;
}

header .login-register > div.register {
    background: #f5ab2b;
}

header .login-register > div.login {
    background: #1c1e22;
}

header .login-register a {
    display: block;
    padding: 15px 32px;
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.5px;
}

@media only screen and (max-width: 1199px) {
    header .login-register a {
        padding: 12px 20px;
    }
}

@media only screen and (max-width: 991px) {
    header .login-register a {
        padding: 12px 16px;
    }
}

header .header-bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    transition: all linear 1.5s;
    -moz-transition: all linear 1.5s;
    -webkit-transition: all linear 1.5s;
    -o-transition: all linear 1.5s;
}

header.home {
    position: relative;
    padding-bottom: 25px;
}

@media only screen and (max-width: 1199px) {
    header.home {
        height: 550px;
    }
}

@media only screen and (max-width: 991px) {
    header.home {
        height: 440px;
    }
}

@media only screen and (max-width: 768px) {
    header.home {
        height: unset;
        padding-bottom: 85px;
    }
}

header.home .header-bg {
    z-index: 2;
}

@media only screen and (max-width: 1500px) {
    header.home .header-bg {
        background-size: cover;
        background-position: 0 0px;
    }
}

@media only screen and (max-width: 768px) {
    header.home .header-bg {
        background-size: cover;
        background-position: 0 0px;
    }
}

header.home .home-tree {
    position: absolute;
    width: 685px;
    height: 865px;
    background: url("../img/header.html") 0 0/cover no-repeat;
    right: 10%;
    top: 50px;
    z-index: 3;
    mask: url("../img/maskFull.html");
    mask-size: 100% 120%;
    mask-position: 0 550px;
    -webkit-mask: url("../img/maskFull.html");
    -webkit-mask-size: 100% 120%;
    -webkit-mask-position: 0 550px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

@media only screen and (max-width: 1500px) {
    header.home .home-tree {
        right: 0;
    }
}

@media only screen and (max-width: 1199px) {
    header.home .home-tree {
        width: 495px;
        height: 675px;
        right: 2%;
        top: 80px;
    }
}

@media only screen and (max-width: 991px) {
    header.home .home-tree {
        width: 350px;
        height: 510px;
        top: 85px;
    }
}

@media only screen and (max-width: 768px) {
    header.home .home-tree {
        width: 300px;
        height: 375px;
        top: unset;
        bottom: -105px;
        right: -moz-calc((100% - 300px) / 2);
        right: -webkit-calc((100% - 300px) / 2);
        right: calc((100% - 300px) / 2);
    }
}

header.home .shadow-tree {
    position: absolute;
    width: 100%;
    height: 88px;
    right: 0px;
    bottom: -83px;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    header.home .shadow-tree {
        background-size: contain;
    }
}

header.home .home-intro {
    position: relative;
    margin-top: 60px;
    z-index: 2;
    width: 50%;
    color: #fff;
    font-size: 14px;
}

@media only screen and (max-width: 1199px) {
    header.home .home-intro {
        margin-top: 70px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 991px) {
    header.home .home-intro {
        width: 60%;
        margin-top: 90px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {
    header.home .home-intro {
        width: 100%;
        text-align: center;
    }
}

header.home .home-intro .welcome {
    text-transform: uppercase;
    padding: 5px 20px;
    background: #1c1e22;
    display: inline-block;
    letter-spacing: 1px;
    border-radius: 3px;
    color: #fff;
    font-weight: 400;
}

header.home .home-intro h1 {
    color: #f1e6dd;
    text-transform: initial;
    margin-top: 25px;
    display: block;
    line-height: 1.2;
    width: 500px;
}

@media only screen and (max-width: 1199px) {
    header.home .home-intro h1 {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 991px) {
    header.home .home-intro h1 {
        width: 400px;
    }
}

@media only screen and (max-width: 768px) {
    header.home .home-intro h1 {
        width: unset;
    }
}

header.home .home-intro p {
    margin: 25px 0 80px 0;
    max-width: 430px;
    color: #f1e6dd;
    font-weight: 400;
}

@media only screen and (max-width: 1199px) {
    header.home .home-intro p {
        margin: 30px 0;
    }
}

@media only screen and (max-width: 768px) {
    header.home .home-intro p {
        margin: 30px auto;
        font-size: 12px;
    }
}

@media only screen and (max-width: 600px) {
    header.home .home-intro p {
        font-size: 11px;
    }
}

header.home .home-intro .btn {
    width: 280px;
}

header.about {
    height: 590px;
    position: relative;
    padding-bottom: 50px;
}

@media only screen and (max-width: 1199px) {
    header.about {
        height: 480px;
    }
}

@media only screen and (max-width: 768px) {
    header.about {
        height: 400px;
    }
}

@media only screen and (max-width: 600px) {
    header.about {
        height: unset;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 350px) {
    header.about {
        padding-bottom: 50px;
    }
}

header.about .header-bg {
    background: url("../img/3.jpg") center/cover no-repeat;
}

header.about .about-intro {
    z-index: 2;
    position: relative;
    margin-top: 120px;
    text-align: center;
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    header.about .about-intro {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 991px) {
    header.about .about-intro {
        margin-top: 90px;
    }
}

@media only screen and (max-width: 768px) {
    header.about .about-intro {
        margin-top: 70px;
    }
}

header.about .about-intro p {
    color: rgba(255, 255, 255, 0.8);
    width: 90%;
    max-width: 740px;
    margin: auto;
}

@media only screen and (max-width: 600px) {
    header.about .about-intro p {
        text-align: justify;
    }
}

header.about .about-intro .btn {
    margin-top: 50px;
}

@media only screen and (max-width: 768px) {
    header.about .about-intro .btn {
        margin-top: 35px;
    }
}

header.about .bottom-header {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #f5ab2b;
    padding: 15px 0;
}

@media only screen and (max-width: 350px) {
    header.about .bottom-header {
        display: none;
    }
}

header.about .bottom-header .site-statistic {
    padding: 0 150px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 400;
    color: #87a2b0;
}

@media only screen and (max-width: 991px) {
    header.about .bottom-header .site-statistic {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 700px) {
    header.about .bottom-header .site-statistic {
        padding: 0;
        font-size: 11px;
    }
}

header.about .bottom-header .site-statistic span {
    font-size: 16px;
    color: #fff;
    margin-right: 10px;
}

@media only screen and (max-width: 700px) {
    header.about .bottom-header .site-statistic span {
        font-size: 14px;
    }
}

@media only screen and (max-width: 550px) {
    header.about .bottom-header .site-statistic span {
        display: block;
    }
}

header.news {
    height: 360px;
}

@media only screen and (max-width: 991px) {
    header.news {
        height: 300px;
    }
}

@media only screen and (max-width: 768px) {
    header.news {
        height: 240px;
    }
}

header.news .header-bg {
    background: #466e84 url("../img/15e1f5e1f.jpg") 0 0/100% 100% no-repeat;
}

@media only screen and (max-width: 768px) {
    header.news .header-bg {
        background-size: cover;
        background-position-x: 50%;
    }
}

header.news .news-intro {
    position: relative;
    z-index: 2;
    margin-top: 100px;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    header.news .news-intro {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 768px) {
    header.news .news-intro {
        margin-top: 80px;
    }
}

header.news .news-intro .intro-title span {
    letter-spacing: 3px;
}

header.rules {
    height: 360px;
}

@media only screen and (max-width: 991px) {
    header.rules {
        height: 300px;
    }
}

@media only screen and (max-width: 768px) {
    header.rules {
        height: 240px;
    }
}

header.rules .header-bg {
    background: #466e84 url("../img/news-bg.png") 0 0/100% 100% no-repeat;
}

@media only screen and (max-width: 768px) {
    header.rules .header-bg {
        background-size: cover;
        background-position-x: 50%;
    }
}

header.rules .rules-intro {
    position: relative;
    z-index: 2;
    margin-top: 100px;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    header.rules .rules-intro {
        margin-top: 100px;
    }
}

@media only screen and (max-width: 768px) {
    header.rules .rules-intro {
        margin-top: 80px;
    }
}

header.rules .rules-intro .intro-title span {
    letter-spacing: 3px;
}

header.services {
    height: 685px;
}

@media only screen and (max-width: 991px) {
    header.services {
        height: 580px;
    }
}

@media only screen and (max-width: 768px) {
    header.services {
        height: 530px;
    }
}

@media only screen and (max-width: 720px) {
    header.services {
        height: unset;
        padding-bottom: 220px;
    }
}

header.services .header-bg {
    background: url("../img/headerbb.jpg") center/cover no-repeat;
}

header.services .services-intro {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 90px;
    color: #fff;
}

header.services .services-intro .intro-title strong {
    font-size: 69px;
    opacity: 0.7;
}

@media only screen and (max-width: 991px) {
    header.services .services-intro .intro-title strong {
        font-size: 59px;
    }
}

@media only screen and (max-width: 768px) {
    header.services .services-intro .intro-title strong {
        font-size: 49px;
    }
}

header.services .services-intro p {
    width: 100%;
    max-width: 750px;
    margin: auto;
    color: #616060;
    text-shadow: 0px 0px 10px #fff;
    font-weight: 500;
}

header .intro-title {
    position: relative;
    color: #fff;
}

header .intro-title > div {
    width: 100%;
    position: absolute;
    left: 0;
    text-align: center;
    line-height: 1;
    top: -moz-calc((100% - 27px) / 2);
    top: -webkit-calc((100% - 27px) / 2);
    top: calc((100% - 27px) / 2);
}

@media only screen and (max-width: 991px) {
    header .intro-title > div {
        top: -moz-calc((100% - 24px) / 2);
        top: -webkit-calc((100% - 24px) / 2);
        top: calc((100% - 24px) / 2);
    }
}

@media only screen and (max-width: 768px) {
    header .intro-title > div {
        top: -moz-calc((100% - 20px) / 2);
        top: -webkit-calc((100% - 20px) / 2);
        top: calc((100% - 20px) / 2);
    }
}

header .intro-title > div span {
    letter-spacing: 3px;
    font-size: 19px;
    font-weight: 500;
    padding: 4px 20px;
    background: #f5ab2b;
    display: inline-block;
    text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
    header .intro-title > div span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    header .intro-title > div span {
        font-size: 12px;
    }
}

header .intro-title strong {
    text-transform: uppercase;
    font-size: 59px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fbba44;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 5px;
}

@media only screen and (max-width: 991px) {
    header .intro-title strong {
        font-size: 50px;
    }
}

@media only screen and (max-width: 768px) {
    header .intro-title strong {
        font-size: 40px;
        letter-spacing: 1px;
    }
}

header .back-home {
    position: relative;
    margin-top: 25px;
    padding-left: 20px;
    display: inline-block;
    color: #ced7db;
    font-weight: 500px;
}

header .back-home svg {
    position: absolute;
    width: 6px;
    height: 11px;
    stroke: #ced7db;
    left: 0;
    top: 5px;
}

header .back-home:hover {
    color: #f5ab2b;
}

header .back-home:hover svg {
    stroke: #f5ab2b;
}


header.white .navbar li {
    color: rgba(227, 232, 234, 0.8);
}

header.white .navbar li:hover, header.white .navbar li.active {
    color: white;
}

header.white .logo strong {
    color: #d1e5ef;
}

header.white .menu-icon svg {
    stroke: #d1e5ef;
}

header.dashboard-header {
    background: #fff;
}

header.dashboard-header:after {
    display: none;
}

header.dashboard-header .top-head {
    border-bottom: 1px solid rgba(138, 160, 166, 0.2);
}

@media only screen and (max-width: 768px) {
    header.dashboard-header .top-head {
        border-bottom: none;
    }
}

header.dashboard-header .top-head .logo {
    margin: 25px 0;
    font-size: 16px;
}

header.dashboard-header .top-head .logo svg {
    fill: rgba(100, 134, 152, 0.8);
}

@media only screen and (max-width: 500px) {
    header.dashboard-header .top-head .logo span {
        display: none;
    }
}

header.dashboard-header .top-head span {
    display: inline-block;
    color: rgba(34, 54, 65, 0.7);
    font-size: 11px;
    font-weight: 500;
    margin-left: 5px;
}

header.dashboard-header .top-head .language-holder {
    float: right;
    margin-top: 0;
    margin-right: 25px;
}

header.dashboard-header .top-head .language-holder select {
    border: 1px solid #eff2f3;
}

header.dashboard-header .top-head .profile-wrap {
    float: right;
    position: relative;
    cursor: pointer;
    padding: 25px 0 25px 45px;
}

@media only screen and (max-width: 600px) {
    header.dashboard-header .top-head .profile-wrap {
        margin-left: 5px;
    }
}

header.dashboard-header .top-head .profile-wrap .profile-icon {
    width: 23px;
    height: 23px;
    stroke: #638597;
    display: inline-block;
    vertical-align: middle;
}

header.dashboard-header .top-head .profile-wrap .profile-user {
    color: #616060;
    font-size: 12px;
    font-weight: 500;
    padding-right: 15px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width: 500px) {
    header.dashboard-header .top-head .profile-wrap .profile-user span {
        display: none;
    }
}

header.dashboard-header .top-head .profile-wrap .profile-user svg {
    position: absolute;
    width: 5px;
    height: 9px;
    right: 0;
    stroke: #638597;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: -moz-calc((100% - 5px) / 2);
    top: -webkit-calc((100% - 5px) / 2);
    top: calc((100% - 5px) / 2);
}

header.dashboard-header .top-head .profile-wrap .profile-type {
    padding: 1px 3px;
    text-transform: uppercase;
    font-size: 9px;
    color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 20px;
    left: 35px;
    z-index: 2;
    background: #d9bd99;
    background: -moz-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #d9bd99), color-stop(100%, #ba8950));
    background: -webkit-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -o-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -webkit-gradient(linear, left top, right top, from(#d9bd99), to(#ba8950));
    background: linear-gradient(to right, #d9bd99 0%, #ba8950 100%);
}

header.dashboard-header .top-head .profile-wrap .profile-dropdown {
    transition: all 0.1s ease-in-out;
    position: absolute;
    top: 50px;
    right: -10px;
    background: #fff;
    z-index: 5;
    transform: translateY(50%);
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.2);
    -moz-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.2);
    box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.2);
}

header.dashboard-header .top-head .profile-wrap .profile-dropdown > div {
    font-weight: 500;
    text-align: center;
    font-size: 12px;
    color: rgba(34, 54, 65, 0.5);
    border-bottom: 1px solid rgba(232, 236, 237, 0.3);
}

header.dashboard-header .top-head .profile-wrap .profile-dropdown > div a {
    display: block;
    padding: 13px 20px;
}

header.dashboard-header .top-head .profile-wrap .profile-dropdown > div.edit-profile svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    stroke: rgba(34, 54, 65, 0.5);
    margin-right: 5px;
}

header.dashboard-header .top-head .profile-wrap .profile-dropdown > div:last-child {
    border: none;
}

header.dashboard-header .top-head .profile-wrap .profile-dropdown > div.user-name {
    display: none;
}

@media only screen and (max-width: 500px) {
    header.dashboard-header .top-head .profile-wrap .profile-dropdown > div.user-name {
        display: block;
    }
}

header.dashboard-header .top-head .profile-wrap .profile-dropdown > div:hover {
    color: #616060;
    -webkit-box-shadow: 0 2px 8px 0 rgba(152, 173, 185, 0.2);
    -moz-box-shadow: 0 2px 8px 0 rgba(152, 173, 185, 0.2);
    box-shadow: 0 2px 8px 0 rgba(152, 173, 185, 0.2);
}

header.dashboard-header .top-head .profile-wrap .profile-dropdown > div:hover svg {
    stroke: #616060;
}

header.dashboard-header .top-head .profile-wrap:hover .profile-dropdown {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

header.dashboard-header .dashboard-menu {
    position: relative;
    background: #fff;
    z-index: 3;
}

@media only screen and (max-width: 768px) {
    header.dashboard-header .dashboard-menu {
        position: absolute;
        top: 75px;
        width: 100%;
        left: 0;
    }
}

@media only screen and (max-width: 500px) {
    header.dashboard-header .dashboard-menu {
        top: 63px;
    }
}

header.dashboard-header .dashboard-menu .dashboard-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 768px) {
    header.dashboard-header .dashboard-menu .dashboard-nav {
        display: none;
        width: 100%;
        justify-content: unset;
    }
}

header.dashboard-header .dashboard-menu .dashboard-nav li {
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    header.dashboard-header .dashboard-menu .dashboard-nav li {
        display: block;
        width: 100%;
        padding-left: 20px;
    }
}

header.dashboard-header .dashboard-menu .dashboard-nav li a {
    position: relative;
    display: block;
    color: #616060;
    padding: 22px 10px 22px 25px;
    font-size: 12px;
    font-weight: 500;
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    header.dashboard-header .dashboard-menu .dashboard-nav li a {
        padding: 30px 5px 10px 5px;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    header.dashboard-header .dashboard-menu .dashboard-nav li a {
        padding: 10px 10px 10px 25px;
    }
}

header.dashboard-header .dashboard-menu .dashboard-nav li a svg {
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    stroke: #638597;
    top: -moz-calc((100% - 16px) / 2);
    top: -webkit-calc((100% - 16px) / 2);
    top: calc((100% - 16px) / 2);
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    header.dashboard-header .dashboard-menu .dashboard-nav li a svg {
        top: 10px;
        left: -moz-calc((100% - 16px) / 2);
        left: -webkit-calc((100% - 16px) / 2);
        left: calc((100% - 16px) / 2);
    }
}

header.dashboard-header .dashboard-menu .dashboard-nav li:hover a, header.dashboard-header .dashboard-menu .dashboard-nav li.active a {
    color: #f5ab2b;
}

header.dashboard-header .dashboard-menu .dashboard-nav li:hover a svg, header.dashboard-header .dashboard-menu .dashboard-nav li.active a svg {
    stroke: #f5ab2b;
}

header.dashboard-header .dashboard-menu .mini-menu {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 0 0 2px 2px;
    margin: 0 auto;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    display: none;
    border-top: 1px solid rgba(138, 160, 166, 0.2);
}

@media only screen and (max-width: 768px) {
    header.dashboard-header .dashboard-menu .mini-menu {
        display: block;
        width: 100%;
    }
}

header.dashboard-header .dashboard-menu .mini-menu svg {
    width: 8px;
    height: 8px;
    stroke: rgba(34, 54, 65, 0.7);
    transform: rotate(90deg);
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}

header.dashboard-header .dashboard-menu .mini-menu:hover {
    color: #f5ab2b;
}

header.dashboard-header .dashboard-menu .mini-menu:hover svg {
    fill: #f5ab2b;
}

header.dashboard-header .dashboard-menu.open {
    position: absolute;
    box-shadow: 0 5px 15px 0 rgba(34, 54, 65, 0.2);
}

header.dashboard-header .dashboard-menu.open .mini-menu {
    color: #f5ab2b;
}

header.dashboard-header .dashboard-menu.open .mini-menu svg {
    stroke: #f5ab2b;
    transform: rotate(-90deg);
}

.logo {
    font-weight: 500;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.logo a {
    display: inline-block;
}

.logo img {
    width: 180px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.logo strong {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #f1e6dd;
}

@media only screen and (max-width: 800px) {
    .logo strong {
        font-size: 15px;
    }
}

.language-holder {
    margin-right: 10px;
    background: #fff;
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    box-shadow: 0 4px 15px 0 rgba(54, 82, 97, 0.1);
    margin-top: 8px;
    max-width: 80px;
}

@media only screen and (max-width: 1199px) {
    .language-holder {
        margin-top: 5px;
    }
}

.language-holder select {
    width: 100%;
    padding: 7px 25px 7px 7px;
    font-size: 11px;
}

@media only screen and (max-width: 991px) {
    .language-holder select {
        padding: 7px 20px 7px 5px;
        font-size: 10px;
    }
}

.language-holder svg {
    position: absolute;
    width: 5px;
    height: 7px;
    right: 12px;
    stroke: #223641;
    top: -moz-calc((100% - 7px) / 2);
    top: -webkit-calc((100% - 7px) / 2);
    top: calc((100% - 7px) / 2);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.about--steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
    text-align: left;
    height: 148px;
}

@media only screen and (max-width: 991px) {
    .about--steps {
        height: 138px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 720px) {
    .about--steps {
        flex-direction: column;
        height: unset;
    }
}

.about--steps .investSteps-item {
    height: 140px;
    float: left;
    margin-right: 30px;
    position: relative;
    padding: 30px 30px 30px 40px;
    border-radius: 4px;
    overflow: hidden;
    background: #343434;
    opacity: 0;
    width: -moz-calc((100% - 60px) / 3);
    width: -webkit-calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
}

@media only screen and (max-width: 991px) {
    .about--steps .investSteps-item {
        height: 120px;
        margin-right: 10px;
        padding: 25px;
        width: -moz-calc((100% - 20px) / 3);
        width: -webkit-calc((100% - 20px) / 3);
        width: calc((100% - 20px) / 3);
    }
}

@media only screen and (max-width: 720px) {
    .about--steps .investSteps-item {
        margin: 0 0 10px 0;
        width: 100%;
        height: 110px;
        padding: 20px;
    }
}

.about--steps .investSteps-item .stepTitle {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 7px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.about--steps .investSteps-item .stepTitle span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 400;
}

@media only screen and (max-width: 991px) {
    .about--steps .investSteps-item .stepTitle {
        font-size: 13px;
        margin-bottom: 5px;
    }
}

.about--steps .investSteps-item .stepTitle:after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #f5ab2b;
    opacity: 0;
    visibility: hidden;
}

.about--steps .investSteps-item span {
    font-weight: 500;
    display: block;
    line-height: 1;
}

.about--steps .investSteps-item span.stepDesc {
    font-size: 16px;
    color: #fed830;
    margin-bottom: 5px;
}

@media only screen and (max-width: 991px) {
    .about--steps .investSteps-item span.stepDesc {
        font-size: 14px;
    }
}

.about--steps .investSteps-item span.stepCaption {
    color: #f3ac2c;
}

.about--steps .investSteps-item svg {
    position: absolute;
    right: 45px;
}

@media only screen and (max-width: 1199px) {
    .about--steps .investSteps-item svg {
        right: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .about--steps .investSteps-item svg {
        right: 20px;
    }
}

.about--steps .investSteps-item:nth-child(1) svg {
    width: 44px;
    height: 42px;
    top: -moz-calc((100% - 42px) / 2);
    top: -webkit-calc((100% - 42px) / 2);
    top: calc((100% - 42px) / 2);
}

@media only screen and (max-width: 1199px) {
    .about--steps .investSteps-item:nth-child(1) svg {
        width: 39px;
        height: 37px;
        top: -moz-calc((100% - 37px) / 2);
        top: -webkit-calc((100% - 37px) / 2);
        top: calc((100% - 37px) / 2);
    }
}

@media only screen and (max-width: 991px) {
    .about--steps .investSteps-item:nth-child(1) svg {
        width: 30px;
        height: 30px;
        top: -moz-calc((100% - 30px) / 2);
        top: -webkit-calc((100% - 30px) / 2);
        top: calc((100% - 30px) / 2);
    }
}

.about--steps .investSteps-item:nth-child(2) svg {
    width: 62px;
    height: 39px;
    top: -moz-calc((100% - 39px) / 2);
    top: -webkit-calc((100% - 39px) / 2);
    top: calc((100% - 39px) / 2);
}

@media only screen and (max-width: 1199px) {
    .about--steps .investSteps-item:nth-child(2) svg {
        width: 50px;
        height: 34px;
        top: -moz-calc((100% - 34px) / 2);
        top: -webkit-calc((100% - 34px) / 2);
        top: calc((100% - 34px) / 2);
    }
}

@media only screen and (max-width: 991px) {
    .about--steps .investSteps-item:nth-child(2) svg {
        width: 38px;
        height: 30px;
        top: -moz-calc((100% - 38px) / 2);
        top: -webkit-calc((100% - 38px) / 2);
        top: calc((100% - 38px) / 2);
    }
}

.about--steps .investSteps-item:nth-child(3) svg {
    width: 29px;
    height: 60px;
    top: -moz-calc((100% - 60px) / 2);
    top: -webkit-calc((100% - 60px) / 2);
    top: calc((100% - 60px) / 2);
}

@media only screen and (max-width: 1199px) {
    .about--steps .investSteps-item:nth-child(3) svg {
        width: 24px;
        height: 55px;
        top: -moz-calc((100% - 55px) / 2);
        top: -webkit-calc((100% - 55px) / 2);
        top: calc((100% - 55px) / 2);
    }
}

@media only screen and (max-width: 991px) {
    .about--steps .investSteps-item:nth-child(3) svg {
        width: 21px;
        height: 40px;
        top: -moz-calc((100% - 40px) / 2);
        top: -webkit-calc((100% - 40px) / 2);
        top: calc((100% - 40px) / 2);
    }
}

.about--steps .investSteps-item:last-of-type {
    margin-right: 0;
}

.main--content {
    position: relative;
}

.main--content .about--content {
    padding: 100px 0 65px 0;
    background-color: #f8fafb;
}

@media only screen and (max-width: 1199px) {
    .main--content .about--content {
        padding: 65px 0;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .about--content {
        padding: 40px 0 50px 0;
    }
}

.main--content .about--content h2 {
    margin-bottom: 20px;
    position: relative;
    z-index: 4;
}

.main--content .about--content h2 .caption {
    font-size: 12px;
    text-transform: uppercase;
    color: #f5ab2b;
    vertical-align: middle;
    margin-left: 20px;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .main--content .about--content h2 .caption {
        font-size: 11px;
    }
}

@media only screen and (max-width: 768px) {
    .main--content .about--content h2 .caption {
        font-size: 10px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .about--content h2 .caption {
        margin-left: 0;
        display: block;
    }
}

.main--content .about--content p {
    position: relative;
    z-index: 4;
    color: #616060;
}

.main--content .about--content .get-started {
    text-align: right;
    margin-top: 25px;
    font-size: 12px;
    color: #f5ab2b;
    text-transform: uppercase;
    font-weight: 400;
}

@media only screen and (max-width: 991px) {
    .main--content .about--content .get-started {
        font-size: 11px;
    }
}

@media only screen and (max-width: 768px) {
    .main--content .about--content .get-started {
        font-size: 10px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .about--content .get-started {
        font-size: 9px;
        text-align: center;
    }
}

.main--content .about--content .get-started .btn {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
}

@media only screen and (max-width: 600px) {
    .main--content .about--content .get-started .btn {
        display: block;
        margin: 10px auto auto;
    }
}

.main--content .rxava-video {
    position: relative;
    background: #39596a url("../img/video-bg.jpg") center/cover no-repeat;
}

.main--content .rxava-video .video-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 70px 0;
    text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
    .main--content .rxava-video .video-content {
        padding: 140px 0;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rxava-video .video-content {
        padding: 120px 0;
    }
}

@media only screen and (max-width: 768px) {
    .main--content .rxava-video .video-content {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rxava-video .video-content {
        padding: 50px 0;
    }
}

.main--content .rxava-video .video-content .presentation {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 0;
    top: 50px;
}

@media only screen and (max-width: 768px) {
    .main--content .rxava-video .video-content .presentation {
        top: 30px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rxava-video .video-content .presentation {
        top: 20px;
        font-size: 10px;
    }
}

.main--content .rxava-video .video-content .presentation svg {
    width: 28px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

@media only screen and (max-width: 600px) {
    .main--content .rxava-video .video-content .presentation svg {
        width: 23px;
        height: 11px;
        margin-left: 5px;
    }
}

.main--content .rxava-video .video-content .preview-video {
    width: 450px;
    height: 250px;
    background: url("../img/rex-video-preview.jpg") center/cover no-repeat;
    border-radius: 3px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 600px) {
    .main--content .rxava-video .video-content .preview-video {
        width: 350px;
        height: 200px;
    }
}

@media only screen and (max-width: 400px) {
    .main--content .rxava-video .video-content .preview-video {
        width: 280px;
        height: 150px;
    }
}

.main--content .rxava-video .video-content .btn {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 1;
    padding: 0;
}

@media only screen and (max-width: 991px) {
    .main--content .rxava-video .video-content .btn {
        height: 50px;
        width: 50px;
    }
}

.main--content .rxava-video .video-content .btn svg {
    width: 16px;
    height: 18px;
    fill: #fff;
    top: -moz-calc((100% - 18px) / 2);
    top: -webkit-calc((100% - 18px) / 2);
    top: calc((100% - 18px) / 2);
    right: -moz-calc((100% - 16px) / 2);
    right: -webkit-calc((100% - 16px) / 2);
    right: calc((100% - 16px) / 2);
}

@media only screen and (max-width: 768px) {
    .main--content .rxava-video .video-content .btn svg {
        width: 12px;
        height: 14px;
        top: -moz-calc((100% - 12px) / 2);
        top: -webkit-calc((100% - 12px) / 2);
        top: calc((100% - 12px) / 2);
        right: -moz-calc((100% - 14px) / 2);
        right: -webkit-calc((100% - 14px) / 2);
        right: calc((100% - 14px) / 2);
    }
}

.main--content .rxava-video .video-content span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-top: 30px;
}

.main--content .rxava-video .video-content h3 {
    color: #fff;
    margin-top: 5px;
    line-height: 1;
    font-weight: 400;
}

.main--content .rex-machine {
    position: relative;
    padding-bottom: 30px;
}

.main--content .rex-machine .left-side,
.main--content .rex-machine .right-side {
    width: 50%;
    position: absolute;
    height: 100%;
    top: 0;
}

.main--content .rex-machine .left-side span,
.main--content .rex-machine .right-side span {
    position: absolute;
    display: block;
    font-size: 90px;
    font-weight: 700;
    color: rgba(98, 133, 150, 0.1);
    text-transform: uppercase;
    max-width: 470px;
    line-height: 1;
    letter-spacing: 8px;
    top: -moz-calc((110% - 180px) / 2);
    top: -webkit-calc((110% - 180px) / 2);
    top: calc((110% - 180px) / 2);
}

@media only screen and (max-width: 1199px) {
    .main--content .rex-machine .left-side span,
    .main--content .rex-machine .right-side span {
        font-size: 75px;
        letter-spacing: 5px;
        max-width: 370px;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .left-side span,
    .main--content .rex-machine .right-side span {
        font-size: 60px;
        letter-spacing: 3px;
        max-width: 305px;
    }
}

@media only screen and (max-width: 700px) {
    .main--content .rex-machine .left-side span,
    .main--content .rex-machine .right-side span {
        font-size: 40px;
        max-width: 200px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .left-side span,
    .main--content .rex-machine .right-side span {
        font-size: 30px;
        max-width: 150px;
    }
}

@media only screen and (max-width: 480px) {
    .main--content .rex-machine .left-side span,
    .main--content .rex-machine .right-side span {
        font-size: 25px;
        max-width: 100px;
    }
}

.main--content .rex-machine .left-side {
    background: #f8fafb;
    left: 0;
}

.main--content .rex-machine .left-side span {
    right: 50px;
    text-align: right;
}

.main--content .rex-machine .right-side {
    right: 0;
    background: #f7e5b4;
    background: -moz-linear-gradient(left, #f7e5b4 0%, rgba(64, 96, 113, 0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #f7e5b4), color-stop(100%, rgba(64, 96, 113, 0)));
    background: -webkit-linear-gradient(left, #f7e5b4 0%, rgba(64, 96, 113, 0) 100%);
    background: -o-linear-gradient(left, #f7e5b4 0%, rgba(64, 96, 113, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, from(#f7e5b4), to(rgba(64, 96, 113, 0)));
    background: linear-gradient(to right, #f7e5b4 0%, rgba(64, 96, 113, 0) 100%);
}

.main--content .rex-machine .right-side span {
    left: 50px;
    text-align: left;
}

.main--content .rex-machine .invest-stick {
    position: absolute;
    width: 250px;
    text-align: left;
}

@media only screen and (max-width: 1199px) {
    .main--content .rex-machine .invest-stick {
        width: 200px;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .invest-stick {
        width: 150px;
    }
}

@media only screen and (max-width: 700px) {
    .main--content .rex-machine .invest-stick {
        width: 130px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .invest-stick {
        width: unset;
        display: inline-block;
    }
}

@media only screen and (max-width: 480px) {
    .main--content .rex-machine .invest-stick {
        display: none;
    }
}

.main--content .rex-machine .invest-stick p {
    width: 100%;
    margin-top: 5px;
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .invest-stick p {
        font-size: 10px;
    }
}

@media only screen and (max-width: 700px) {
    .main--content .rex-machine .invest-stick p {
        font-size: 9px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .invest-stick p {
        display: none;
    }
}

.main--content .rex-machine .invest-stick .btn {
    font-size: 18px;
    font-weight: 400;
    cursor: default;
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .invest-stick .btn {
        font-size: 15px;
    }
}

@media only screen and (max-width: 700px) {
    .main--content .rex-machine .invest-stick .btn {
        font-size: 12px;
        line-height: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .invest-stick .btn {
        font-size: 11px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .invest-stick .btn svg {
        display: none;
    }
}

.main--content .rex-machine .invest-stick .btn.btn--white {
    background: #4f5458;
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .invest-stick .btn.btn--white {
        padding: 5px 30px 5px 10px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .invest-stick .btn.btn--white {
        padding: 5px 10px;
    }
}

.main--content .rex-machine .invest-stick .btn.btn--white svg {
    stroke: #fff;
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .invest-stick .btn.btn--white svg {
        right: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .invest-stick .btn.btn--green {
        padding: 5px 10px 5px 30px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .invest-stick .btn.btn--green {
        padding: 5px 10px;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .invest-stick .btn.btn--green svg {
        left: 15px;
    }
}

.main--content .rex-machine .invest-stick .btn.btn--green:hover svg {
    transform: none;
    transform: rotate(180deg);
}

.main--content .rex-machine .invest-stick .btn:hover svg {
    transform: none;
}

.main--content .rex-machine .invest-stick.invest-side {
    left: 330px;
    top: 170px;
}

@media only screen and (max-width: 1199px) {
    .main--content .rex-machine .invest-stick.invest-side {
        left: 285px;
        top: 160px;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .invest-stick.invest-side {
        left: 190px;
        top: 110px;
    }
}

@media only screen and (max-width: 700px) {
    .main--content .rex-machine .invest-stick.invest-side {
        left: 165px;
        top: 90px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .invest-stick.invest-side {
        top: 110px;
    }
}

.main--content .rex-machine .invest-stick.dirty-side {
    right: 300px;
    top: 310px;
}

@media only screen and (max-width: 1199px) {
    .main--content .rex-machine .invest-stick.dirty-side {
        right: 260px;
        top: 280px;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .invest-stick.dirty-side {
        right: 190px;
        top: 220px;
    }
}

@media only screen and (max-width: 700px) {
    .main--content .rex-machine .invest-stick.dirty-side {
        right: 155px;
        top: 170px;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .invest-stick.dirty-side {
        top: 180px;
    }
}

.main--content .rex-machine .arrow-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

@media only screen and (max-width: 1199px) {
    .main--content .rex-machine .arrow-content {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .arrow-content {
        padding-top: 40px;
    }
}

.main--content .rex-machine h2 {
    position: relative;
    padding-left: 70px;
    width: 350px;
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
    .main--content .rex-machine h2 {
        width: 300px;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine h2 {
        width: 250px;
        display: block;
        padding-left: 50px;
    }
}

@media only screen and (max-width: 700px) {
    .main--content .rex-machine h2 {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine h2 {
        padding-left: 0px;
    }
}

.main--content .rex-machine h2 svg {
    width: 35px;
    height: 35px;
    position: absolute;
    left: 0;
    top: -moz-calc((100% - 35px) / 2);
    top: -webkit-calc((100% - 35px) / 2);
    top: calc((100% - 35px) / 2);
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine h2 svg {
        width: 30px;
        height: 30px;
        top: -moz-calc((100% - 30px) / 2);
        top: -webkit-calc((100% - 30px) / 2);
        top: calc((100% - 30px) / 2);
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine h2 svg {
        position: relative;
        display: block;
        margin: auto;
        margin-bottom: 5px;
    }
}

.main--content .rex-machine p {
    width: 490px;
    float: right;
    color: rgba(42, 63, 74, 0.8);
}

@media only screen and (max-width: 1199px) {
    .main--content .rex-machine p {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine p {
        margin-top: 10px;
    }
}

.main--content .rex-machine .arrow-holder {
    text-align: center;
    margin-top: 20px;
    height: 550px;
    z-index: 2;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .main--content .rex-machine .arrow-holder {
        height: 500px;
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .arrow-holder {
        height: 400px;
    }
}

@media only screen and (max-width: 700px) {
    .main--content .rex-machine .arrow-holder {
        height: 320px;
    }
}

.main--content .rex-machine .arrow-holder .svg-machine {
    height: 550px;
    position: absolute;
    bottom: -30px;
    left: -moz-calc((100% - 600px) / 2);
    left: -webkit-calc((100% - 600px) / 2);
    left: calc((100% - 600px) / 2);
}

@media only screen and (max-width: 1199px) {
    .main--content .rex-machine .arrow-holder .svg-machine {
        width: 500px;
        height: 500px;
        left: -moz-calc((100% - 500px) / 2);
        left: -webkit-calc((100% - 500px) / 2);
        left: calc((100% - 500px) / 2);
    }
}

@media only screen and (max-width: 991px) {
    .main--content .rex-machine .arrow-holder .svg-machine {
        width: 400px;
        height: 400px;
        left: -moz-calc((100% - 400px) / 2);
        left: -webkit-calc((100% - 400px) / 2);
        left: calc((100% - 400px) / 2);
    }
}

@media only screen and (max-width: 700px) {
    .main--content .rex-machine .arrow-holder .svg-machine {
        width: 320px;
        height: 320px;
        left: -moz-calc((100% - 320px) / 2);
        left: -webkit-calc((100% - 320px) / 2);
        left: calc((100% - 320px) / 2);
    }
}

.main--content .rex-machine .arrow-holder .stick-left,
.main--content .rex-machine .arrow-holder .stick-right {
    width: 50%;
    height: 100%;
    position: relative;
}

.main--content .rex-machine .arrow-holder .stick-left {
    float: left;
}

.main--content .rex-machine .arrow-holder .stick-right {
    float: right;
}

@media only screen and (max-width: 600px) {
    .main--content .rex-machine .col-xs-6 {
        width: 100%;
        text-align: center;
    }
}

footer {
    background: #1b1b19;
}

footer .info {
    padding: 70px 0 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 991px) {
    footer .info {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 768px) {
    footer .info {
        padding: 25px 0px;
    }
}


footer .info .company-detail .logo strong {
    color: #d1e5ef;
}

footer .info .company-detail .trust-msg {
    font-size: 10px;
    font-weight: 400;
    padding: 15px 0 20px 0;
    color: rgba(235, 236, 242, 0.3);
}

footer .info .phone-email {
    padding: 20px 35px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    display: inline-block;
}

@media only screen and (max-width: 991px) {
    footer .info .phone-email {
        float: right;
    }
}

@media only screen and (max-width: 768px) {
    footer .info .phone-email {
        padding: 20px;
    }
}

@media only screen and (max-width: 600px) {
    footer .info .phone-email {
        padding: 15px;
    }
}

@media only screen and (max-width: 500px) {
    footer .info .phone-email {
        margin-top: 15px;
        float: unset;
        text-align: left;
    }
}

footer .info .phone-email .email-address,
footer .info .phone-email .phone-number {
    padding-left: 25px;
    position: relative;
    line-height: 1;
    font-weight: 500;
    color: rgba(235, 236, 242, 0.8);
    font-size: 12px;
}

footer .info .phone-email .email-address svg,
footer .info .phone-email .phone-number svg {
    position: absolute;
    left: 0;
    stroke: rgba(255, 255, 255, 0.5);
    width: 14px;
    height: 14px;
    top: -moz-calc((100% - 14px) / 2);
    top: -webkit-calc((100% - 14px) / 2);
    top: calc((100% - 14px) / 2);
}

footer .info .phone-email .phone-number {
    margin-top: 20px;
}

@media only screen and (max-width: 600px) {
    footer .info .phone-email .phone-number {
        margin-top: 10px;
    }
}

footer .info .login-register {
    text-align: right;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    footer .info .login-register {
        display: none;
    }
}

@media only screen and (max-width: 1199px) {
    footer .info .login-register .btn {
        padding: 10px 50px 10px 25px;
    }
}

@media only screen and (max-width: 1199px) {
    footer .info .login-register .btn svg {
        right: 25px;
    }
}

footer .info .login-register .login-box {
    display: inline-block;
    position: relative;
    text-align: left;
    color: rgba(235, 236, 242, 0.58);
    margin-top: 20px;
    max-width: 150px;
    width: 100%;
}

footer .info .login-register .login-box a {
    display: block;
    text-transform: uppercase;
    color: #f9f7f2;
}

@media only screen and (max-width: 500px) {
    footer .info .col-xs-7,
    footer .info .col-xs-5 {
        width: 100%;
        text-align: center;
    }
}

footer .footer-menu {
    padding-bottom: 25px;
}

@media only screen and (max-width: 400px) {
    footer .footer-menu {
        padding-bottom: 10px;
    }
}

footer .footer-menu ul {
    display: inline-block;
}

@media only screen and (max-width: 600px) {
    footer .footer-menu ul {
        display: none;
    }
}

footer .footer-menu ul li {
    display: inline-block;
    font-weight: 400;
    color: rgba(235, 236, 242, 0.3);
    font-size: 10px;
}

footer .footer-menu ul li a {
    display: block;
    padding: 20px 60px 20px 0;
}

@media only screen and (max-width: 991px) {
    footer .footer-menu ul li a {
        padding-right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    footer .footer-menu ul li a {
        padding: 15px 15px 15px 0;
    }
}

footer .footer-menu ul li:hover a, footer .footer-menu ul li.active a {
    color: #f9f7f2;
}

footer .footer-menu .social-icon {
    float: right;
    margin: 20px 0 0 0;
}

@media only screen and (max-width: 600px) {
    footer .footer-menu .social-icon {
        float: unset;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

footer .footer-menu .social-icon a {
    display: inline-block;
    fill: rgba(255, 255, 255, 0.3);
    margin: 0 17px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
}

@media only screen and (max-width: 600px) {
    footer .footer-menu .social-icon a {
        margin: 0 15px;
    }
}

footer .footer-menu .social-icon a svg {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

footer .footer-menu .social-icon a#top-icon {
    margin-right: 0;
    width: 15px;
    height: 15px;
}

footer .footer-menu .social-icon a#top-icon svg {
    position: absolute;
    stroke: rgba(242, 242, 235, 0.5);
    width: 13px;
    height: 13px;
    bottom: -5px;
    left: -moz-calc((100% - 13px) / 2);
    left: -webkit-calc((100% - 13px) / 2);
    left: calc((100% - 13px) / 2);
}

footer .footer-menu .social-icon a:hover {
    fill: #fff;
    color: #fff;
}

footer .footer-menu .social-icon a:hover#top-icon svg {
    stroke: #f9f7f2;
}

.footer-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 20px;
    background: transparent;
    color: #f9f7f2;
    z-index: 2;
}

.footer-inner .contact-info {
    display: inline-block;
}

@media only screen and (max-width: 550px) {
    .footer-inner .contact-info {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.footer-inner .phone,
.footer-inner .email {
    display: inline-block;
    padding-left: 30px;
    position: relative;
    line-height: 1;
}

@media only screen and (max-width: 991px) {
    .footer-inner .phone,
    .footer-inner .email {
        padding-left: 25px;
    }
}

.footer-inner .phone svg,
.footer-inner .email svg {
    position: absolute;
    left: 0;
    fill: rgba(242, 242, 235, 0.5);
}

.footer-inner .email svg {
    width: 17px;
    height: 11px;
    top: -moz-calc((100% - 11px) / 2);
    top: -webkit-calc((100% - 11px) / 2);
    top: calc((100% - 11px) / 2);
}

.footer-inner .phone {
    margin-left: 35px;
}

@media only screen and (max-width: 991px) {
    .footer-inner .phone {
        margin-left: 20px;
    }
}

.footer-inner .phone svg {
    width: 17px;
    height: 17px;
    top: -moz-calc((100% - 17px) / 2);
    top: -webkit-calc((100% - 17px) / 2);
    top: calc((100% - 17px) / 2);
}

@media only screen and (max-width: 991px) {
    .footer-inner .social-icon {
        float: right;
    }
}

@media only screen and (max-width: 550px) {
    .footer-inner .social-icon {
        float: unset;
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-left: 0;
    }
}

.footer-inner .social-icon a {
    fill: rgba(242, 242, 235, 0.5);
    color: #f9f7f2;
}

.footer-inner .copy-rights {
    float: right;
    color: rgba(242, 242, 235, 0.5);
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .footer-inner .copy-rights {
        float: unset;
        display: block;
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 550px) {
    .footer-inner .copy-rights {
        text-align: center;
    }
}

.footer-inner .container {
    position: relative;
}

.social-icon {
    display: inline-block;
    margin-left: 40px;
}

.social-icon a {
    display: inline-block;
    fill: rgba(255, 255, 255, 0.3);
    margin: 0 17px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.social-icon a svg {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}

.social-icon a#top-icon {
    margin-right: 0;
}

.social-icon a#top-icon svg {
    stroke: rgba(242, 242, 235, 0.5);
    width: 13px;
    height: 13px;
}

.social-icon a:hover {
    fill: #fff;
    color: #fff;
}

.social-icon a:hover#top-icon svg {
    stroke: #f9f7f2;
}

.copy-rights {
    color: rgba(242, 242, 235, 0.5);
    line-height: 1;
}

.copy-rights .company-name {
    padding-right: 20px;
    position: relative;
}

.copy-rights .company-name:after {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 10px;
    right: 10px;
    background: rgba(242, 242, 235, 0.5);
    bottom: 2px;
}

.table-result {
    line-height: 1;
}

.table-result .table-row {
    padding-left: 70px;
    border-bottom: 1px solid rgba(138, 160, 166, 0.2);
}

@media only screen and (max-width: 991px) {
    .table-result .table-row {
        padding-left: 0px;
    }
}

.table-result .table-row > div {
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
    line-height: 1;
    width: -moz-calc((100% - 20px) / 4);
    width: -webkit-calc((100% - 20px) / 4);
    width: calc((100% - 20px) / 4);
}

@media only screen and (max-width: 600px) {
    .table-result .table-row > div {
        width: -moz-calc((100% - 20px) / 3);
        width: -webkit-calc((100% - 20px) / 3);
        width: calc((100% - 20px) / 3);
    }
}

@media only screen and (max-width: 400px) {
    .table-result .table-row > div {
        width: -moz-calc((100% - 10px) / 2);
        width: -webkit-calc((100% - 10px) / 2);
        width: calc((100% - 10px) / 2);
    }
}

.table-result .table-row > div svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.table-result .table-row > div:first-child {
    font-size: 10px;
}

@media only screen and (max-width: 600px) {
    .table-result .table-row > div:first-child {
        width: 100%;
        background: #ededed;
    }
}

@media only screen and (max-width: 400px) {
    .table-result .table-row > div:nth-child(2) {
        width: 100%;
        background: #f7f8f9;
    }
}

.table-result .table-row:hover {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 2px 8px 0 rgba(152, 173, 185, 0.2);
    -moz-box-shadow: 0 2px 8px 0 rgba(152, 173, 185, 0.2);
    box-shadow: 0 2px 8px 0 rgba(152, 173, 185, 0.2);
}

.table-paging {
    width: 100%;
    padding: 0 50px;
    text-align: center;
    display: block;
    line-height: 1;
    font-weight: 500;
    font-size: 14px;
}

@media only screen and (max-width: 400px) {
    .table-paging {
        padding: 0 20px;
    }
}

.table-paging li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    color: rgba(34, 54, 65, 0.5);
    line-height: 1;
    cursor: pointer;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .table-paging li {
        margin: 0 5px;
    }
}

.table-paging li a {
    display: block;
    padding: 15px;
}

@media only screen and (max-width: 991px) {
    .table-paging li a {
        padding: 10px;
        font-size: 12px;
    }
}

.table-paging li svg {
    position: absolute;
    height: 10px;
    width: 7px;
    stroke: #fff;
    left: -moz-calc((100% - 7px) / 2);
    left: -webkit-calc((100% - 7px) / 2);
    left: calc((100% - 7px) / 2);
    top: -moz-calc((100% - 10px) / 2);
    top: -webkit-calc((100% - 10px) / 2);
    top: calc((100% - 10px) / 2);
}

.table-paging li.next, .table-paging li.prev {
    background: #cdd3d6;
    border-radius: 3px;
}

.table-paging li.next:hover, .table-paging li.prev:hover {
    background: #fff;
}

.table-paging li.next:hover svg, .table-paging li.prev:hover svg {
    stroke: #223641;
}

.table-paging li.prev svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.table-paging li.active, .table-paging li:hover {
    color: #223641;
}

.table-paging li.active.next, .table-paging li.active.prev, .table-paging li:hover.next, .table-paging li:hover.prev {
    background: #fff;
}

.table-paging li.active.next svg, .table-paging li.active.prev svg, .table-paging li:hover.next svg, .table-paging li:hover.prev svg {
    stroke: #223641;
}

.about-content {
    background: #f8fafb;
}

.about-content .about-atributies {
    padding: 60px 0 90px 0;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .about-content .about-atributies {
        padding: 40px 0;
    }
}

.about-content .about-atributies p {
    color: #616060;
    padding: 0 80px;
}

@media only screen and (max-width: 991px) {
    .about-content .about-atributies p {
        padding: 0;
    }
}

@media only screen and (max-width: 600px) {
    .about-content .about-atributies p {
        text-align: justify;
    }
}

.about-content .about-atributies h2 b {
    color: rgba(34, 54, 65, 0.3);
    margin: 0 5px;
}

.about-content .about-atributies .tree-about {
    position: relative;
    margin-top: 140px;
}

@media only screen and (max-width: 991px) {
    .about-content .about-atributies .tree-about {
        margin-top: 95px;
    }
}

@media only screen and (max-width: 480px) {
    .about-content .about-atributies .tree-about {
        display: none;
    }
}

.about-content .about-atributies .tree-about .img-tree {
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (max-width: 1199px) {
    .about-content .about-atributies .tree-about .img-tree {
        height: 870px;
        width: 550px;
    }
}

@media only screen and (max-width: 991px) {
    .about-content .about-atributies .tree-about .img-tree {
        left: -115px;
        height: 700px;
        width: 485px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content .about-atributies .tree-about .img-tree {
        left: unset;
        right: -14%;
        height: 475px;
        width: 340px;
        top: 20px;
    }
}

@media only screen and (max-width: 650px) {
    .about-content .about-atributies .tree-about .img-tree {
        right: -30%;
    }
}

@media only screen and (max-width: 500px) {
    .about-content .about-atributies .tree-about .img-tree {
        height: 500px;
        width: 270px;
        top: 32px;
    }
}

.about-content .about-atributies .tree-about .img-tree.blue-tree {
    mask: url("../img/mask.html");
    mask-size: 100% 100%;
    mask-position: 0 550px;
    -webkit-mask: url("../img/mask.html");
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: 0 550px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.about-content .about-atributies .tree-about .img-tree.main-tree {
    mask: url("../img/maskFull.html");
    mask-size: 100% 120%;
    mask-position: 0 550px;
    -webkit-mask: url("../img/maskFull.html");
    -webkit-mask-size: 100% 120%;
    -webkit-mask-position: 0 550px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.about-content .about-atributies .atributies-holder {
    margin-top: 100px;
}

@media only screen and (max-width: 991px) {
    .about-content .about-atributies .atributies-holder {
        margin-top: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content .about-atributies .atributies-holder {
        margin-top: 50px;
    }
}

.about-content .about-atributies .atributies-holder .atributies-items {
    padding-left: 70px;
    position: relative;
    margin-top: 50px;
}

@media only screen and (max-width: 991px) {
    .about-content .about-atributies .atributies-holder .atributies-items {
        padding-left: 55px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content .about-atributies .atributies-holder .atributies-items {
        padding-left: 40px;
    }
}

@media only screen and (max-width: 500px) {
    .about-content .about-atributies .atributies-holder .atributies-items {
        padding-left: 46px;
    }
}

@media only screen and (max-width: 400px) {
    .about-content .about-atributies .atributies-holder .atributies-items {
        padding-left: 50px;
    }
}

.about-content .about-atributies .atributies-holder .graded-line {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.about-content .about-atributies .atributies-holder ul {
    position: relative;
}

.about-content .about-atributies .atributies-holder ul li {
    padding: 50px 55px;
    height: 260px;
    position: relative;
    z-index: 1;
    opacity: 0;
}

@media only screen and (max-width: 1199px) {
    .about-content .about-atributies .atributies-holder ul li {
        padding: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .about-content .about-atributies .atributies-holder ul li {
        padding: 20px 30px;
        height: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content .about-atributies .atributies-holder ul li {
        height: 150px;
        padding-right: 10px;
    }
}

@media only screen and (max-width: 500px) {
    .about-content .about-atributies .atributies-holder ul li {
        height: 170px;
        padding: 10px 10px 10px 20px;
    }
}

.about-content .about-atributies .atributies-holder ul li .atribute-title {
    padding-left: 35px;
    position: relative;
    font-size: 26px;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .about-content .about-atributies .atributies-holder ul li .atribute-title {
        font-size: 22px;
        padding-left: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content .about-atributies .atributies-holder ul li .atribute-title {
        font-size: 17px;
    }
}

@media only screen and (max-width: 500px) {
    .about-content .about-atributies .atributies-holder ul li .atribute-title {
        font-size: 15px;
    }
}

.about-content .about-atributies .atributies-holder ul li .atribute-title svg {
    position: absolute;
    left: 0;
}

.about-content .about-atributies .atributies-holder ul li p {
    padding: 0;
    margin-top: 25px;
}

@media only screen and (max-width: 991px) {
    .about-content .about-atributies .atributies-holder ul li p {
        margin-top: 10px;
    }
}

.about-content .about-atributies .atributies-holder ul li:nth-child(1) svg {
    stroke: #f0a52d;
    width: 20px;
    height: 30px;
    top: -moz-calc((100% - 30px) / 2);
    top: -webkit-calc((100% - 30px) / 2);
    top: calc((100% - 30px) / 2);
}

@media only screen and (max-width: 500px) {
    .about-content .about-atributies .atributies-holder ul li:nth-child(1) svg {
        width: 15px;
        height: 25px;
        top: -moz-calc((100% - 25px) / 2);
        top: -webkit-calc((100% - 25px) / 2);
        top: calc((100% - 25px) / 2);
    }
}

.about-content .about-atributies .atributies-holder ul li:nth-child(2) svg {
    stroke: #4397b4;
    width: 25px;
    height: 25px;
    top: -moz-calc((100% - 25px) / 2);
    top: -webkit-calc((100% - 25px) / 2);
    top: calc((100% - 25px) / 2);
}

@media only screen and (max-width: 500px) {
    .about-content .about-atributies .atributies-holder ul li:nth-child(2) svg {
        width: 20px;
        height: 20px;
        top: -moz-calc((100% - 20px) / 2);
        top: -webkit-calc((100% - 20px) / 2);
        top: calc((100% - 20px) / 2);
    }
}

.about-content .about-atributies .atributies-holder ul li:nth-child(3) svg {
    stroke: #32cfa7;
    width: 17px;
    height: 26px;
    top: -moz-calc((100% - 17px) / 2);
    top: -webkit-calc((100% - 17px) / 2);
    top: calc((100% - 17px) / 2);
}

@media only screen and (max-width: 500px) {
    .about-content .about-atributies .atributies-holder ul li:nth-child(3) svg {
        width: 12px;
        height: 21px;
        top: -moz-calc((100% - 21px) / 2);
        top: -webkit-calc((100% - 21px) / 2);
        top: calc((100% - 21px) / 2);
    }
}

.about-content .about-atributies .atributies-holder ul .ul-bg {
    position: absolute;
    display: block;
    height: 260px;
    width: 100%;
    background: #fff;
    right: 0;
    bottom: 0px;
    opacity: 0;
}

@media only screen and (max-width: 991px) {
    .about-content .about-atributies .atributies-holder ul .ul-bg {
        height: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .about-content .about-atributies .atributies-holder ul .ul-bg {
        height: 150px;
    }
}

@media only screen and (max-width: 500px) {
    .about-content .about-atributies .atributies-holder ul .ul-bg {
        height: 170px;
    }
}

@media only screen and (max-width: 500px) {
    .about-content .about-atributies .col-xs-8 {
        padding: 0;
        width: 72%;
    }
}

@media only screen and (max-width: 480px) {
    .about-content .about-atributies .col-xs-8 {
        width: 90%;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .about-content .about-atributies .col-xs-4 {
        width: 0%;
    }
}

.about-content .certificate-section {
    background: #f9e9c5 url(../img/about-cert-bg.jpg) no-repeat;
    padding: 110px 0;
    background-size: cover;
}

@media only screen and (max-width: 1500px) {
    .about-content .certificate-section {
        padding: 85px 0;
    }
}

@media only screen and (max-width: 1199px) {
    .about-content .certificate-section {
        padding: 50px 0;
        background-size: cover;
    }
}

@media only screen and (max-width: 900px) {
    .about-content .certificate-section {
        background-image: none;
        text-align: center;
    }
}

.about-content .certificate-section img {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 0;
    top: -moz-calc((100% - 80px) / 2);
    top: -webkit-calc((100% - 80px) / 2);
    top: calc((100% - 80px) / 2);
}

@media only screen and (max-width: 1199px) {
    .about-content .certificate-section img {
        width: 55px;
        height: 55px;
        top: -moz-calc((100% - 55px) / 2);
        top: -webkit-calc((100% - 55px) / 2);
        top: calc((100% - 55px) / 2);
    }
}

@media only screen and (max-width: 900px) {
    .about-content .certificate-section img {
        top: 0;
        left: -moz-calc((100% - 55px) / 2);
        left: -webkit-calc((100% - 55px) / 2);
        left: calc((100% - 55px) / 2);
    }
}

@media only screen and (max-width: 600px) {
    .about-content .certificate-section img {
        width: 50px;
        height: 50px;
        top: 10px;
        left: -moz-calc((100% - 50px) / 2);
        left: -webkit-calc((100% - 50px) / 2);
        left: calc((100% - 50px) / 2);
    }
}

.about-content .certificate-section h2 {
    position: relative;
    margin: 20px 0 35px 0;
    padding-left: 110px;
    line-height: 1.1;
}

@media only screen and (max-width: 1199px) {
    .about-content .certificate-section h2 {
        margin: 20px 0;
    }
}

@media only screen and (max-width: 991px) {
    .about-content .certificate-section h2 {
        padding-left: 80px;
    }
}

@media only screen and (max-width: 900px) {
    .about-content .certificate-section h2 {
        padding: 60px 0 0 0;
        width: 100%;
        text-align: center;
    }
}

.about-content .certificate-section p {
    font-weight: 400;
    color: #616060;
    max-width: 500px;
}

@media only screen and (max-width: 900px) {
    .about-content .certificate-section p {
        margin: auto;
        text-align: center;
    }
}

.about-content .certificate-section .btn {
    margin-top: 70px;
}

@media only screen and (max-width: 1199px) {
    .about-content .certificate-section .btn {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 600px) {
    .about-content .certificate-section .btn {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 900px) {
    .about-content .certificate-section .col-sm-8 {
        width: 100%;
    }
}

.news-section {
    background: #f8fafb;
}

.news-section .news-result {
    padding: 100px 0;
}

@media only screen and (max-width: 768px) {
    .news-section .news-result {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 500px) {
    .news-section .news-result {
        padding: 40px 0;
    }
}

.news-section .news-result .news-item {
    padding: 0px 0px 0px 135px;
    position: relative;
    margin-bottom: 70px;
}

@media only screen and (max-width: 991px) {
    .news-section .news-result .news-item {
        padding-left: 110px;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 600px) {
    .news-section .news-result .news-item {
        padding-left: 75px;
        margin-bottom: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .news-section .news-result .news-item {
        padding-left: 60px;
    }
}

.news-section .news-result .news-item .news-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #223641;
}

@media only screen and (max-width: 991px) {
    .news-section .news-result .news-item .news-title {
        font-size: 17px;
    }
}

@media only screen and (max-width: 600px) {
    .news-section .news-result .news-item .news-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 500px) {
    .news-section .news-result .news-item .news-title {
        font-size: 15px;
    }
}

.news-section .news-result .news-item p {
    color: #616060;
}

@media only screen and (max-width: 500px) {
    .news-section .news-result .news-item p {
        text-align: justify;
    }
}

.news-section .news-result .news-item .news-date {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    line-height: 1;
    text-align: center;
    font-size: 11px;
    color: #616060;
}

.news-section .news-result .news-item .news-date > div {
    width: 87px;
    height: 81px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 12px 5px;
    text-align: center;
    margin-top: 5px;
}

@media only screen and (max-width: 768px) {
    .news-section .news-result .news-item .news-date > div {
        width: 80px;
        height: 70px;
    }
}

@media only screen and (max-width: 600px) {
    .news-section .news-result .news-item .news-date > div {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (max-width: 480px) {
    .news-section .news-result .news-item .news-date > div {
        width: 50px;
        height: 50px;
        padding: 8px 5px;
    }
}

.news-section .news-result .news-item .news-date > div strong {
    font-size: 35px;
    display: block;
    line-height: 1;
    color: #223641;
}

@media only screen and (max-width: 768px) {
    .news-section .news-result .news-item .news-date > div strong {
        font-size: 30px;
    }
}

@media only screen and (max-width: 600px) {
    .news-section .news-result .news-item .news-date > div strong {
        font-size: 25px;
    }
}

@media only screen and (max-width: 480px) {
    .news-section .news-result .news-item .news-date > div strong {
        font-size: 20px;
    }
}

.news-section .news-result .news-item .news-date > div span {
    font-size: 17px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media only screen and (max-width: 991px) {
    .news-section .news-result .news-item .news-date > div span {
        font-size: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .news-section .news-result .news-item .news-date > div span {
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .news-section .news-result .news-item .news-date > div span {
        font-size: 9px;
        margin-top: 0px;
    }
}

.news-section .news-result .news-item:hover {
    color: #223641;
}

.news-section .news-result .news-item:hover .news-date > div {
    background: #fff;
    -webkit-box-shadow: 0 17px 32px 0 rgba(107, 134, 149, 0.2);
    -moz-box-shadow: 0 17px 32px 0 rgba(107, 134, 149, 0.2);
    box-shadow: 0 17px 32px 0 rgba(107, 134, 149, 0.2);
}

.news-section .news-result .news-item:hover p {
    color: #223641;
}

.news-section .telegram-section {
    padding: 15px 0;
    background: url("../img/telegram-bg.html") 0px 0/100% 100% no-repeat;
}

@media only screen and (max-width: 1500px) {
    .news-section .telegram-section {
        background-size: cover;
        background-position-x: 50%;
    }
}

.news-section .telegram-section .telegram-content {
    padding: 0 75px;
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    .news-section .telegram-section .telegram-content {
        padding: 0;
    }
}

.news-section .telegram-section .telegram-content > div {
    margin-top: 5px;
    display: inline-block;
}

@media only screen and (max-width: 991px) {
    .news-section .telegram-section .telegram-content > div {
        margin: auto;
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    .news-section .telegram-section .telegram-content > div {
        text-align: center;
    }
}

.news-section .telegram-section .telegram-content img {
    width: 40px;
    height: 34px;
    display: inline-block;
}

@media only screen and (max-width: 991px) {
    .news-section .telegram-section .telegram-content img {
        width: 35px;
        height: 25px;
    }
}

.news-section .telegram-section .telegram-content p {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 30px;
}

@media only screen and (max-width: 600px) {
    .news-section .telegram-section .telegram-content p {
        display: block;
        margin: 10px auto auto;
    }
}

.news-section .telegram-section .telegram-content h4 {
    display: inline-block;
    font-weight: 400;
    margin-left: 10px;
}

.news-section .telegram-section .telegram-content .btn {
    float: right;
    padding: 8px 35px;
}

@media only screen and (max-width: 991px) {
    .news-section .telegram-section .telegram-content .btn {
        float: unset;
        display: block;
        margin: 15px auto auto;
    }
}

.rules-section .rules-holder {
    padding: 80px 0;
}

.rules-section .rules-holder h4 {
    margin-bottom: 20px;
}

.rules-section .rules-holder .rules-item {
    margin-bottom: 30px;
}

.rules-section .rules-holder .rules-item p {
    text-align: justify;
}

.not-found {
    text-align: left;
    margin: 30px auto;
    position: relative;
    color: #f5ab2b;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .not-found {
        font-size: 14px;
    }
}

@media only screen and (max-width: 500px) {
    .not-found {
        font-size: 13px;
    }
}

.not-found span {
    display: block;
    font-size: 13px;
    color: rgba(34, 54, 65, 0.5);
}

@media only screen and (max-width: 768px) {
    .not-found span {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {
    .not-found span {
        font-size: 11px;
    }
}

.not-found .not-found-icon {
    text-align: center;
    width: 35px;
    height: 35px;
    padding: 8px 5px;
    margin-right: 5px;
    font-size: 20px;
    position: relative;
}

.not-found .not-found-icon svg {
    width: 35px;
    height: 35px;
    position: absolute;
    overflow: visible;
    top: -moz-calc((100% - 35px) / 2);
    top: -webkit-calc((100% - 35px) / 2);
    top: calc((100% - 35px) / 2);
    left: -moz-calc((100% - 35px) / 2);
    left: -webkit-calc((100% - 35px) / 2);
    left: calc((100% - 35px) / 2);
}

@media only screen and (max-width: 768px) {
    .not-found .not-found-icon svg {
        width: 27px;
        height: 27px;
        top: -moz-calc((100% - 27px) / 2);
        top: -webkit-calc((100% - 27px) / 2);
        top: calc((100% - 27px) / 2);
        left: -moz-calc((100% - 27px) / 2);
        left: -webkit-calc((100% - 27px) / 2);
        left: calc((100% - 27px) / 2);
    }
}

@media only screen and (max-width: 768px) {
    .not-found .not-found-icon {
        width: 27px;
        height: 27px;
        padding: 6px 5px;
        font-size: 16px;
    }
}

.get--touch {
    padding: 55px 0;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .get--touch {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 600px) {
    .get--touch {
        text-align: center;
    }
}

.get--touch h4 {
    margin: 0 0 15px 0;
    line-height: 1;
}

.get--touch .help-btn {
    float: right;
    margin-top: 25px;
}

@media only screen and (max-width: 600px) {
    .get--touch .help-btn {
        float: unset;
    }
}

@media only screen and (max-width: 400px) {
    .get--touch .help-btn .btn {
        width: 100%;
        display: block;
    }
}

.get--touch .help-btn .btn.btn--trans {
    margin-right: 20px;
}

@media only screen and (max-width: 400px) {
    .get--touch .help-btn .btn.btn--trans {
        margin-right: 0px;
        margin-bottom: 15px;
    }
}

.get--touch.white-bg {
    background: #fff;
}

.get--touch.gray-bg {
    background: #fdfdfe;
}

.services-content .basic-membership {
    padding: 0px 0 60px 0;
    margin-top: -200px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .services-content .basic-membership {
        margin-top: -180px;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .basic-membership {
        padding-bottom: 40px;
        margin-top: -130px;
    }
}

.services-content .basic-membership .basic-title {
    text-align: left;
}

@media only screen and (max-width: 710px) {
    .services-content .basic-membership .basic-title {
        text-align: center;
    }
}

.services-content .basic-membership h4 {
    color: #d48805;
    text-align: center;
    text-transform: initial;
    margin-bottom: 40px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: #fff;
    padding: 0 20px;
}

@media only screen and (max-width: 1199px) {
    .services-content .basic-membership h4 {
        margin-bottom: 10px;
    }
}

.services-content .basic-membership .basic-plans {
    position: relative;
    display: flex;
    height: 300px;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 991px) {
    .services-content .basic-membership .basic-plans {
        height: 250px;
        padding: 0;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .basic-membership .basic-plans {
        height: unset;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }
}

@media only screen and (max-width: 991px) {
    .services-content .basic-membership .basic-plans .sp {
        display: none;
    }
}

.services-content .basic-membership .basic-plans .plan-item {
    height: 298px;
    width: 47%;
}

@media only screen and (max-width: 1199px) {
    .services-content .basic-membership .basic-plans .plan-item {
        height: 260px;
    }
}

@media only screen and (max-width: 991px) {
    .services-content .basic-membership .basic-plans .plan-item {
        height: 210px;
        width: 49%;
    }
}

@media only screen and (max-width: 768px) {
    .services-content .basic-membership .basic-plans .plan-item {
        height: 210px;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .basic-membership .basic-plans .plan-item {
        width: 375px;
        margin: auto auto 15px auto;
    }
}

@media only screen and (max-width: 500px) {
    .services-content .basic-membership .basic-plans .plan-item {
        height: 195px;
    }
}

@media only screen and (max-width: 420px) {
    .services-content .basic-membership .basic-plans .plan-item {
        width: 100%;
    }
}

.services-content .basic-membership .basic-plans .plan-item#general {
    background: #f5ab2b;
}

.services-content .basic-membership .basic-plans .plan-item#general .wave-svg {
    bottom: 55px;
}

@media only screen and (max-width: 710px) {
    .services-content .basic-membership .basic-plans .plan-item#general .wave-svg {
        bottom: 45px;
    }
}

.services-content .basic-membership .basic-plans .plan-item#general .referral {
    background: #1c1e22;
    color: #fff;
}

.services-content .basic-membership .basic-plans .plan-item#general .compound {
    color: rgba(255, 255, 255, 0.7);
}

.services-content .basic-membership .basic-plans .plan-item#general .plan-item-type {
    color: #f5ab2b;
}

.services-content .basic-membership .basic-plans .plan-item#general .plan-item-detail {
    color: rgba(255, 255, 255, 0.9);
}

.services-content .basic-membership .basic-plans .plan-item#general .plan-item-detail .profit-rate {
    color: #1c1e22;
}

.services-content .basic-membership .basic-plans .plan-item#general .plan-item-detail span {
    color: #f5ab2b;
}

.services-content .basic-membership .basic-plans .plan-item#starter {
    background: #1b1a18;
}

.services-content .basic-membership .basic-plans .plan-item#starter .wave-svg {
    bottom: 70px;
}

@media only screen and (max-width: 710px) {
    .services-content .basic-membership .basic-plans .plan-item#starter .wave-svg {
        bottom: 50px;
    }
}

.services-content .basic-membership .basic-plans .plan-item#starter .referral {
    background: #f5ab2b;
    color: #fff;
}

.services-content .basic-membership .basic-plans .plan-item#starter .compound {
    color: #fff;
}

.services-content .basic-membership .basic-plans .plan-item#starter .plan-item-type {
    color: #fbd28c;
}

.services-content .basic-membership .basic-plans .plan-item#starter .plan-item-detail {
    color: #fbd28c;
}

.services-content .basic-membership .basic-plans .plan-item#starter .plan-item-detail .profit-rate {
    color: #f5ab2b;
}

.services-content .basic-membership .basic-plans .plan-item#starter .plan-item-detail span {
    color: #fff;
}

.services-content .basic-membership .basic-description {
    padding: 60px 0 50px 0;
    border-bottom: 1px solid #e9eef0;
}

@media only screen and (max-width: 1199px) {
    .services-content .basic-membership .basic-description {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 600px) {
    .services-content .basic-membership .basic-description {
        text-align: center;
    }
}

.services-content .basic-membership .basic-description p {
    color: #616060;
    width: 100%;
    display: inline-block;
}

.services-content .basic-membership .basic-description .btn {
    padding: 14px 130px 14px 60px;
    text-transform: initial;
    float: right;
    font-size: 18px;
}

@media only screen and (max-width: 1199px) {
    .services-content .basic-membership .basic-description .btn {
        padding: 10px 100px 10px 40px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 991px) {
    .services-content .basic-membership .basic-description .btn {
        margin: 20px auto auto;
        float: unset;
    }
}

@media only screen and (max-width: 768px) {
    .services-content .basic-membership .basic-description .btn {
        padding: 8px 100px 8px 40px;
        font-size: 14px;
        line-height: 30px;
    }
}

.services-content .basic-membership .basic-description .btn svg {
    width: 15px;
    height: 15px;
    right: 60px;
    top: -moz-calc((100% - 15px) / 2);
    top: -webkit-calc((100% - 15px) / 2);
    top: calc((100% - 15px) / 2);
}

@media only screen and (max-width: 1199px) {
    .services-content .basic-membership .basic-description .btn svg {
        width: 12px;
        height: 12px;
        right: 40px;
        top: -moz-calc((100% - 12px) / 2);
        top: -webkit-calc((100% - 12px) / 2);
        top: calc((100% - 12px) / 2);
    }
}

.services-content .vip-membership {
    padding: 40px 0 100px 0;
    overflow: hidden;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership {
        padding: 0 0 40px 0;
    }
}

.services-content .vip-membership .vip-plans {
    position: relative;
    float: right;
    width: 49%;
    text-align: right;
    padding: 0px 0 0 80px;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-plans {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-plans {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .vip-membership .vip-plans {
        width: 375px;
        padding-left: 0;
        margin: auto;
        float: unset;
    }
}

@media only screen and (max-width: 420px) {
    .services-content .vip-membership .vip-plans {
        width: 100%;
    }
}

.services-content .vip-membership .vip-plans ul li {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.services-content .vip-membership .vip-plans ul li .plan-item {
    height: 298px;
    width: 100%;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-plans ul li .plan-item {
        height: 260px;
    }
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-plans ul li .plan-item {
        height: 210px;
    }
}

@media only screen and (max-width: 500px) {
    .services-content .vip-membership .vip-plans ul li .plan-item {
        height: 195px;
    }
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan1 {
    z-index: 2;
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan1 .wave-svg {
    bottom: 105px;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-plans ul li .plan-item#plan1 .wave-svg {
        bottom: 85px;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .vip-membership .vip-plans ul li .plan-item#plan1 .wave-svg {
        bottom: 60px;
    }
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan3 {
    z-index: 0;
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan3 .wave-svg {
    bottom: 105px;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-plans ul li .plan-item#plan3 .wave-svg {
        bottom: 90px;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .vip-membership .vip-plans ul li .plan-item#plan3 .wave-svg {
        bottom: 65px;
    }
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan1, .services-content .vip-membership .vip-plans ul li .plan-item#plan3 {
    background: #1d1c1b;
    background: -moz-linear-gradient(top, #1d1c1b 0%, #67645f 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #1d1c1b), color-stop(100%, #67645f));
    background: -webkit-linear-gradient(top, #1d1c1b 0%, #67645f 100%);
    background: -o-linear-gradient(top, #1d1c1b 0%, #67645f 100%);
    background: -ms-linear-gradient(top, #1d1c1b 0%, #67645f 100%);
    background: linear-gradient(to bottom, #1d1c1b 0%, #67645f 100%);
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan1 .referral, .services-content .vip-membership .vip-plans ul li .plan-item#plan3 .referral {
    color: #fff;
    background: #f5ab2b
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan1 .compound, .services-content .vip-membership .vip-plans ul li .plan-item#plan3 .compound {
    color: rgba(255, 232, 205, 0.7);
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan1 .plan-item-type, .services-content .vip-membership .vip-plans ul li .plan-item#plan3 .plan-item-type {
    color: rgba(255, 255, 255, 0.9);
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan1 .plan-item-detail, .services-content .vip-membership .vip-plans ul li .plan-item#plan3 .plan-item-detail {
    color: rgba(255, 232, 205, 0.9);
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan1 .plan-item-detail .profit-rate, .services-content .vip-membership .vip-plans ul li .plan-item#plan3 .plan-item-detail .profit-rate {
    color: #ffffff;
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan1 .plan-item-detail span, .services-content .vip-membership .vip-plans ul li .plan-item#plan3 .plan-item-detail span {
    color: rgba(255, 243, 229, 0.8);
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan2 {
    z-index: 1;
    background: #1d1c1b;
    background: -moz-linear-gradient(top, #1d1c1b 0%, #67645f 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #1d1c1b), color-stop(100%, #67645f));
    background: -webkit-linear-gradient(top, #1d1c1b 0%, #67645f 100%);
    background: -o-linear-gradient(top, #1d1c1b 0%, #67645f 100%);
    background: -ms-linear-gradient(top, #1d1c1b 0%, #67645f 100%);
    background: linear-gradient(to bottom, #1d1c1b 0%, #67645f 100%);
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan2 .wave-svg {
    bottom: 1px;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-plans ul li .plan-item#plan2 .wave-svg {
        bottom: -10px;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .vip-membership .vip-plans ul li .plan-item#plan2 .wave-svg {
        bottom: -45px;
    }
}

@media only screen and (max-width: 400px) {
    .services-content .vip-membership .vip-plans ul li .plan-item#plan2 .wave-svg {
        bottom: -15px;
    }
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan2 .referral {
    color: #fff;
    background: #f5ab2b
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan2 .compound {
    color: rgba(255, 232, 205, 0.7);
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan2 .plan-item-type {
    color: rgba(255, 255, 255, 0.9);
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan2 .plan-item-detail {
    color: rgba(255, 232, 205, 0.9);
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan2 .plan-item-detail .profit-rate {
    color: #ffffff;
}

.services-content .vip-membership .vip-plans ul li .plan-item#plan2 .plan-item-detail span {
    color: rgba(255, 243, 229, 0.8);
}

.services-content .vip-membership .vip-detail {
    float: left;
    width: 45%;
}

@media only screen and (max-width: 710px) {
    .services-content .vip-membership .vip-detail {
        width: 100%;
    }
}

.services-content .vip-membership .vip-detail .vip-description h2 {
    color: #d48805;
    margin-bottom: 50px;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-detail .vip-description h2 {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-detail .vip-description h2 {
        margin-bottom: 15px;
    }
}

.services-content .vip-membership .vip-detail .vip-description p {
    color: #9a9a8e;
    text-align: justify;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-detail .vip-description p {
        text-indent: 0px;
    }
}

.services-content .vip-membership .vip-detail .box-title {
    font-size: 13px;
    color: rgba(34, 54, 65, 0.5);
    background: #fff;
    padding-right: 10px;
    position: absolute;
    top: -11px;
    font-weight: 500;
    left: 0;
}

.services-content .vip-membership .vip-detail .will-get {
    border-top: 1px solid #e0e7ea;
    margin-top: 50px;
    padding: 40px 0;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-detail .will-get {
        margin-top: 35px;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-detail .will-get {
        margin-top: 30px;
        padding: 20px 0;
    }
}

.services-content .vip-membership .vip-detail .will-get ul li {
    padding: 15px 10px 15px 40px;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-detail .will-get ul li {
        padding: 10px 10px 10px 40px;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .vip-membership .vip-detail .will-get ul li {
        padding: 7px 10px 7px 40px;
    }
}

.services-content .vip-membership .vip-detail .will-get ul li span {
    font-size: 16px;
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-detail .will-get ul li span {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .services-content .vip-membership .vip-detail .will-get ul li span {
        font-size: 13px;
    }
}

.services-content .vip-membership .vip-detail .will-get ul li span b {
    font-weight: 600;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #b1c2cb;
}

.services-content .vip-membership .vip-detail .will-get ul li svg {
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    top: -moz-calc((100% - 25px) / 2);
    top: -webkit-calc((100% - 25px) / 2);
    top: calc((100% - 25px) / 2);
}

@media only screen and (max-width: 768px) {
    .services-content .vip-membership .vip-detail .will-get ul li svg {
        width: 20px;
        height: 20px;
        top: -moz-calc((100% - 20px) / 2);
        top: -webkit-calc((100% - 20px) / 2);
        top: calc((100% - 20px) / 2);
    }
}

.services-content .vip-membership .vip-detail .will-get ul li svg.bank-wire {
    stroke: #405c6b;
}

.services-content .vip-membership .vip-detail .trust-us {
    border-top: 1px solid #e0e7ea;
    position: relative;
}

@media only screen and (max-width: 710px) {
    .services-content .vip-membership .vip-detail .trust-us {
        text-align: center;
    }
}

.services-content .vip-membership .vip-detail .trust-us ul {
    padding: 30px 0 50px 0;
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-detail .trust-us ul {
        padding: 20px 0 30px 0;
    }
}

.services-content .vip-membership .vip-detail .trust-us ul li {
    display: inline-block;
    margin-right: 80px;
    text-align: center;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-detail .trust-us ul li {
        margin-right: 60px;
    }
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-detail .trust-us ul li {
        margin-right: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .services-content .vip-membership .vip-detail .trust-us ul li {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .vip-membership .vip-detail .trust-us ul li {
        margin: 0 15px;
    }
}

.services-content .vip-membership .vip-detail .trust-us ul li svg {
    width: 40px;
    height: 35px;
    stroke: #638597;
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-detail .trust-us ul li svg {
        width: 35px;
        height: 30px;
    }
}

.services-content .vip-membership .vip-detail .trust-us ul li span {
    display: block;
    margin-top: 7px;
    color: #616060;
    font-weight: 500;
    font-size: 12px;
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-detail .trust-us ul li span {
        font-size: 11px;
    }
}

.services-content .vip-membership .vip-detail .trust-us ul li:hover {
    transform: scale(1.1);
}

.services-content .vip-membership .vip-detail .trust-us ul li:hover span {
    color: #223641;
}

.services-content .vip-membership .vip-detail .trust-us ul li:hover svg {
    stroke: #385869;
}

.services-content .vip-membership .vip-detail .btn {
    width: 330px;
    text-transform: initial;
}

@media only screen and (max-width: 1199px) {
    .services-content .vip-membership .vip-detail .btn {
        width: 305px;
    }
}

@media only screen and (max-width: 710px) {
    .services-content .vip-membership .vip-detail .btn {
        width: unset;
    }
}

.services-content .vip-membership .vip-detail .btn svg {
    width: 15px;
    height: 15px;
    right: 80px;
    top: -moz-calc((100% - 15px) / 2);
    top: -webkit-calc((100% - 15px) / 2);
    top: calc((100% - 15px) / 2);
}

@media only screen and (max-width: 991px) {
    .services-content .vip-membership .vip-detail .btn svg {
        width: 12px;
        height: 12px;
        right: 40px;
        top: -moz-calc((100% - 12px) / 2);
        top: -webkit-calc((100% - 12px) / 2);
        top: calc((100% - 12px) / 2);
    }
}

.plan-item {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.plan-item .referral-compound {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .plan-item .referral-compound {
        padding: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .plan-item .referral-compound {
        padding: 15px 10px;
    }
}

@media only screen and (max-width: 710px) {
    .plan-item .referral-compound {
        opacity: 0.8;
    }
}

.plan-item .referral-compound .referral {
    font-size: 16px;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    padding: 5px 15px;
}

@media only screen and (max-width: 1199px) {
    .plan-item .referral-compound .referral {
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .plan-item .referral-compound .referral {
        font-size: 12px;
    }
}

@media only screen and (max-width: 480px) {
    .plan-item .referral-compound .referral {
        font-size: 11px;
        padding: 5px;
    }
}

.plan-item .referral-compound .compound {
    font-size: 11px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 991px) {
    .plan-item .referral-compound .compound {
        font-size: 10px;
    }
}

.plan-item .plan-item-type {
    position: absolute;
    font-size: 13px;
}

@media only screen and (max-width: 768px) {
    .plan-item .plan-item-type {
        font-size: 12px;
    }
}

.plan-item .plan-item-detail {
    position: absolute;
    font-size: 27px;
    color: #fff;
    line-height: 1;
    text-align: left;
}

@media only screen and (max-width: 991px) {
    .plan-item .plan-item-detail {
        font-size: 24px;
    }
}

@media only screen and (max-width: 768px) {
    .plan-item .plan-item-detail {
        font-size: 20px;
    }
}

.plan-item .plan-item-detail .profit-rate {
    display: inline-block;
    font-size: 35px;
    margin-right: 5px;
}

@media only screen and (max-width: 991px) {
    .plan-item .plan-item-detail .profit-rate {
        font-size: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .plan-item .plan-item-detail .profit-rate {
        font-size: 25px;
    }
}

.plan-item .plan-item-detail span {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

@media only screen and (max-width: 991px) {
    .plan-item .plan-item-detail span {
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) {
    .plan-item .plan-item-detail span {
        font-size: 10px;
    }
}

.plan-item.basic .plan-item-type {
    color: #fbd28c;
}

.plan-item.basic .plan-item-detail {
    color: #fbd28c;
}

.plan-item.basic .plan-item-detail .profit-rate {
    color: #f5ab2b;
}

.plan-item.basic .plan-item-detail span {
    color: #fff;
}

.plan-item.vip {
    background: #ca8840;
    background: -moz-linear-gradient(-45deg, #ca8840 0%, #e5bd6f 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #ca8840), color-stop(100%, #e5bd6f));
    background: -webkit-linear-gradient(-45deg, #ca8840 0%, #e5bd6f 100%);
    background: -o-linear-gradient(-45deg, #ca8840 0%, #e5bd6f 100%);
    background: -ms-linear-gradient(-45deg, #ca8840 0%, #e5bd6f 100%);
    background: linear-gradient(135deg, #ca8840 0%, #e5bd6f 100%);
}

.plan-item.vip .plan-item-type {
    color: rgba(255, 251, 243, 0.9);
}

.plan-item.vip .plan-item-detail .profit-rate {
    color: #955e20;
    text-shadow: 1px 0 0 #ddae62;
}

.plan-item.vip .plan-item-detail span {
    color: #fffbf3;
}

.plan-item.p-one .plan-item-type {
    top: 30px;
    right: 50px;
}

@media only screen and (max-width: 991px) {
    .plan-item.p-one .plan-item-type {
        top: 15px;
        right: 25px;
    }
}

.plan-item.p-one .plan-item-detail {
    top: 40px;
    left: 60px;
}

@media only screen and (max-width: 991px) {
    .plan-item.p-one .plan-item-detail {
        top: 20px;
        left: 25px;
    }
}

.plan-item.p-two .plan-item-type {
    top: 30px;
    left: 50px;
}

@media only screen and (max-width: 991px) {
    .plan-item.p-two .plan-item-type {
        top: 20px;
        left: 25px;
    }
}

.plan-item.p-two .plan-item-detail {
    top: 36px;
    right: 40px;
}

@media only screen and (max-width: 991px) {
    .plan-item.p-two .plan-item-detail {
        top: 20px;
        right: 25px;
    }
}

.plan-item .wave-svg {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
}

@media only screen and (max-width: 710px) {
    .plan-item .pin-svg {
        display: none;
    }
}

.plan-item:hover.basic {
    -webkit-box-shadow: 0 30px 40px 0 rgba(245, 171, 43, 0.45);
    -moz-box-shadow: 0 30px 40px 0 rgba(245, 171, 43, 0.45);
    box-shadow: 0 30px 40px 0 rgba(245, 171, 43, 0.45);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

@media only screen and (max-width: 710px) {
    .plan-item:hover.basic {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.plan-item:hover.vip {
    transform: translate(-5px, -5px) scale(1.01);
    -webkit-box-shadow: 0 47px 38px 0 rgba(176, 130, 49, 0.3);
    -moz-box-shadow: 0 47px 38px 0 rgba(176, 130, 49, 0.3);
    box-shadow: 0 47px 38px 0 rgba(176, 130, 49, 0.3);
}

@media only screen and (max-width: 710px) {
    .plan-item:hover.vip {
        transform: translate(0, 0) scale(1);
    }
}

.inner-page {
    background: #293c46;
    position: relative;
    min-height: 100vh;
}

.inner-page:after {
    position: absolute;
    display: block;
    content: "";
    background: url("../img/3.jpg") 0 0/cover no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.inner-page .registration-complete {
    position: relative;
    z-index: 2;
    margin: 50px auto 160px auto;
    width: 90%;
    max-width: 550px;
    padding: 65px;
    text-align: center;
    background: #375362;
}

.inner-page .registration-complete img {
    width: 127px;
    height: 127px;
}

.inner-page .registration-complete .title {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-top: 30px;
    display: block;
}

.inner-page .registration-complete .thanks {
    margin-top: 50px;
    font-size: 14px;
}

.inner-page .registration-complete .thanks span {
    color: #afe9dc;
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
}

.inner-page .registration-complete .thanks p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.inner-page .registration-complete .generated-username {
    margin: 50px auto auto;
    width: 90%;
    max-width: 270px;
    color: #fff;
}

.inner-page .registration-complete .generated-username .username {
    padding: 18px 20px 20px;
    background: #405c6b;
    color: #afe9dc;
    font-weight: 500;
    font-size: 15px;
    margin-top: 15px;
}

.inner-page .registration-complete .generated-username .btn {
    width: 100%;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 14px;
}

.inner-page .registration-complete .generated-username .btn svg {
    fill: #f5ab2b;
}

.inner-content {
    position: relative;
    z-index: 1;
    margin: 120px auto auto;
    padding-bottom: 120px;
}

@media only screen and (max-width: 768px) {
    .inner-content {
        margin-top: 80px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 500px) {
    .inner-content {
        padding-bottom: 50px;
    }
}

.inner-content .inner-content-header {
    height: 90px;
    background: rgba(45, 74, 89, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #fff;
}

.inner-content .error-msg {
    letter-spacing: 1px;
}

/* .inner-content .error-msg svg {
      display: none; } */
.inner-content .row-form {
    display: flex;
    justify-content: space-between;
}

.signup-content {
    width: 100%;
    max-width: 1100px;
}

.signup-content h2 {
    width: 100%;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.signup-content .inner-content-header {
    height: 140px;
}

.signup-content .signup-steps .signup-body {
    background: #fff;
    position: relative;
}

.signup-content .signup-steps .signup-body .step-holder {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
}

@media only screen and (max-width: 550px) {
    .signup-content .signup-steps .signup-body .step-holder {
        padding-top: 10px;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(150%);
}

.signup-content .signup-steps .signup-body .step-holder .step-content.active {
    position: relative;
    transform: translateX(0);
}

.signup-content .signup-steps .signup-body .step-holder .step-content.complete {
    position: absolute;
    transform: translateX(-150%);
}

.signup-content .signup-steps .signup-body .step-holder .step-content .input-holder {
    margin-bottom: 15px;
}

@media only screen and (max-width: 650px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content .row-form {
        flex-direction: column;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules {
    margin-top: 15px;
}

.signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules input[type="checkbox"] {
    display: none;
}

.signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules input[type="checkbox"]:checked + label {
    color: #223641;
}

.signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules input[type="checkbox"]:checked + label:before {
    background-image: url("../img/checkmark-green.svg");
}

.signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules input[type="checkbox"]:checked + label a {
    color: #395fcd;
}

@media only screen and (max-width: 500px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules {
        text-align: center;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules label {
    color: rgba(34, 54, 65, 0.7);
    position: relative;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules label {
        font-size: 10px;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules label:before {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    content: "";
    border-radius: 3px;
    width: 15px;
    height: 15px;
    border: 1px solid #e4e3e3;
    margin-right: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
}

.signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules label a {
    color: rgba(57, 95, 205, 0.7);
    text-decoration: underline;
}

@media only screen and (max-width: 480px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content .accept-rules label a {
        display: block;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step1, .signup-content .signup-steps .signup-body .step-holder .step-content#step2 {
    margin: auto;
    padding: 50px 50px 40px 50px;
}

@media only screen and (max-width: 991px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step1, .signup-content .signup-steps .signup-body .step-holder .step-content#step2 {
        padding: 50px 30px 40px 30px;
    }
}

@media only screen and (max-width: 768px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step1, .signup-content .signup-steps .signup-body .step-holder .step-content#step2 {
        padding: 40px 15px 30px 15px;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step1 .input-holder, .signup-content .signup-steps .signup-body .step-holder .step-content#step2 .input-holder {
    width: 48%;
    display: inline-block;
}

@media only screen and (max-width: 650px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step1 .input-holder, .signup-content .signup-steps .signup-body .step-holder .step-content#step2 .input-holder {
        width: 100%;
        display: block;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step2 {
    padding: 60px 50px 30px 50px;
}

@media only screen and (max-width: 991px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step2 {
        padding: 60px 30px 30px 30px;
    }
}

@media only screen and (max-width: 768px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step2 {
        width: 100%;
        padding: 40px 15px;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step3 {
    padding: 70px 50px 60px 50px;
}

@media only screen and (max-width: 991px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step3 {
        padding: 70px 30px 60px 30px;
    }
}

@media only screen and (max-width: 768px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step3 {
        padding: 40px 15px;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step3 .security-detail .input-holder {
    width: 48%;
    display: inline-block;
}

@media only screen and (max-width: 650px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step3 .security-detail .input-holder {
        width: 100%;
        display: block;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step3 .security-detail .input-holder:first-of-type {
    margin-right: 20px;
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step3 select {
    line-height: 1.6;
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 {
    padding: 65px 50px 80px 50px;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 {
        padding: 65px 30px 80px 30px;
    }
}

@media only screen and (max-width: 768px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 {
        padding: 40px 30px;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 h4 {
    color: #f5ab2b;
    margin-bottom: 20px;
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 p {
    margin-top: 15px;
}

@media only screen and (max-width: 450px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 p {
        text-align: justify;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 .register-username {
    padding: 10px 30px 10px 30px;
    text-align: center;
    background: #405c6b;
    display: inline-block;
    color: #fefefe;
    font-size: 16px;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .register-username {
        font-size: 14px;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 span {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #616060;
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action {
    margin-top: 40px;
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action a {
    display: inline-block;
    vertical-align: middle;
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn {
    font-size: 16px;
    text-transform: initial;
}

@media only screen and (max-width: 991px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn {
        font-size: 12px;
    }
}

@media only screen and (max-width: 550px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn {
        width: 90%;
        margin: auto;
    }
}

@media only screen and (max-width: 400px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn {
        width: 100%;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.btn--dark {
    padding: 15px 90px 15px 40px;
    margin-right: 20px;
}

@media only screen and (max-width: 991px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.btn--dark {
        padding: 11px 70px 11px 30px;
    }
}

@media only screen and (max-width: 600px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.btn--dark {
        padding: 7px 50px 7px 20px;
    }
}

@media only screen and (max-width: 550px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.btn--dark {
        margin-right: 0px;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.btn--dark svg {
    right: 50px;
}

@media only screen and (max-width: 600px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.btn--dark svg {
        right: 20px;
    }
}

.signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.download {
    padding: 14px 30px 16px 30px;
}

@media only screen and (max-width: 991px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.download {
        padding: 10px 30px 12px 30px;
    }
}

@media only screen and (max-width: 600px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.download {
        padding: 5px 20px 7px 20px;
    }
}

@media only screen and (max-width: 550px) {
    .signup-content .signup-steps .signup-body .step-holder .step-content#step4 .complete-action .btn.download {
        margin-top: 15px;
    }
}

.signup-content .signup-steps .signup-body .step-control .btn-next {
    position: relative;
}

.signup-content .signup-steps .signup-body .step-control .btn-next .loading {
    position: absolute;
    text-align: center;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    top: 0;
    left: 0;
    z-index: 1;
    transform: translateX(-100%);
}

.signup-content .signup-steps .signup-body .step-control .btn-next .loading img {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -moz-calc((100% - 30px) / 2);
    top: -webkit-calc((100% - 30px) / 2);
    top: calc((100% - 30px) / 2);
    left: -moz-calc((100% - 30px) / 2);
    left: -webkit-calc((100% - 30px) / 2);
    left: calc((100% - 30px) / 2);
}

.signup-content .signup-steps .signup-body .step-control .btn-next.waiting .loading {
    display: block;
    transform: translateX(0);
}

.inner-caption {
    font-size: 12px;
    font-weight: 400;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 660px) {
    .inner-caption {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.inner-caption span {
    color: #eeedf0;
    font-size: 15px;
}

@media only screen and (max-width: 991px) {
    .inner-caption span {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    .inner-caption span {
        font-size: 13px;
    }
}

@media only screen and (max-width: 660px) {
    .inner-caption span {
        margin-bottom: 10px;
    }
}

.inner-caption span a {
    font-weight: 500;
    font-size: 16px;
}

@media only screen and (max-width: 991px) {
    .inner-caption span a {
        font-size: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .inner-caption span a {
        font-size: 14px;
    }
}

.step-control {
    border-top: 1px solid #dfe6e8;
    padding: 35px 50px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 991px) {
    .step-control {
        padding: 30px 40px;
    }
}

@media only screen and (max-width: 768px) {
    .step-control {
        padding: 20px;
    }
}

@media only screen and (max-width: 450px) {
    .step-control {
        padding: 10px;
    }
}

.step-control .btn {
    text-transform: initial;
}

.step-control .btn.btn-prev {
    color: #223641;
    padding: 12px 35px 12px 35px;
}

@media only screen and (max-width: 991px) {
    .step-control .btn.btn-prev {
        padding: 5px 35px 9px 35px;
    }
}

@media only screen and (max-width: 768px) {
    .step-control .btn.btn-prev {
        padding: 6px 30px 6px 35px;
    }
}

@media only screen and (max-width: 450px) {
    .step-control .btn.btn-prev {
        padding: 6px 20px 6px 35px;
    }
}

.step-control .btn.btn-prev svg {
    stroke: #223641;
    left: 0px;
    transform: rotate(180deg);
}

@media only screen and (max-width: 500px) {
    .step-control .btn.btn--twoPart {
        padding-right: 50px !important;
        padding-left: 25px !important;
    }
}

@media only screen and (max-width: 500px) {
    .step-control .btn.btn--twoPart > div {
        width: 30px;
    }
}

.error-msg {
    font-size: 13px;
    padding: 10px 10px 10px 20px;
    position: relative;
    margin-top: 10px;
    line-height: 1;
    color: #f5ab2b;
}

@media only screen and (max-width: 600px) {
    .error-msg {
        font-size: 11px;
    }
}

.error-msg svg {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 15px;
    stroke: #f5ab2b;
    top: -moz-calc((100% - 16px) / 2);
    top: -webkit-calc((100% - 16px) / 2);
    top: calc((100% - 16px) / 2);
}

.success-msg {
    font-size: 12px;
    padding: 10px 10px 10px 20px;
    position: relative;
    margin-top: 15px;
    line-height: 1;
    color: #2ad288;
}

@media only screen and (max-width: 600px) {
    .success-msg {
        font-size: 11px;
    }
}

.success-msg svg {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 15px;
    top: -moz-calc((100% - 16px) / 2);
    top: -webkit-calc((100% - 16px) / 2);
    top: calc((100% - 16px) / 2);
}

.step-nav {
    width: 100%;
    left: 0;
    top: -22px;
    position: absolute;
    padding: 0px 50px;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 991px) {
    .step-nav {
        padding: 0px 10px;
        top: -30px;
    }
}

@media only screen and (max-width: 550px) {
    .step-nav {
        top: -58px;
        padding: 0px;
    }
}

.step-nav li {
    position: relative;
    padding: 0px 10px 10px 75px;
    line-height: 1;
    font-size: 15px;
    color: rgba(34, 54, 65, 0.7);
}

@media only screen and (max-width: 991px) {
    .step-nav li {
        font-size: 13px;
        padding-left: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .step-nav li {
        font-size: 11px;
        padding-left: 45px;
    }
}

@media only screen and (max-width: 550px) {
    .step-nav li {
        font-size: 9px;
        padding: 0 5px 45px 5px;
        color: rgba(255, 255, 255, 0.5);
        text-align: center;
    }
}

.step-nav li .step-icon {
    width: 57px;
    height: 57px;
    border-radius: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-box-shadow: 0 10px 10px 0 rgba(95, 133, 152, 0.14);
    -moz-box-shadow: 0 10px 10px 0 rgba(95, 133, 152, 0.14);
    box-shadow: 0 10px 10px 0 rgba(95, 133, 152, 0.14);
}

@media only screen and (max-width: 991px) {
    .step-nav li .step-icon {
        width: 50px;
        height: 50px;
        top: -moz-calc((100% - 50px) / 2);
        top: -webkit-calc((100% - 50px) / 2);
        top: calc((100% - 50px) / 2);
    }
}

@media only screen and (max-width: 768px) {
    .step-nav li .step-icon {
        width: 40px;
        height: 40px;
        top: -moz-calc((100% - 40px) / 2);
        top: -webkit-calc((100% - 40px) / 2);
        top: calc((100% - 40px) / 2);
    }
}

@media only screen and (max-width: 550px) {
    .step-nav li .step-icon {
        bottom: 0;
        top: unset;
        left: -moz-calc((100% - 40px) / 2);
        left: -webkit-calc((100% - 40px) / 2);
        left: calc((100% - 40px) / 2);
    }
}

.step-nav li .step-icon svg {
    width: 18px;
    height: 20px;
    position: absolute;
    stroke: #638597;
    top: -moz-calc((100% - 20px) / 2);
    top: -webkit-calc((100% - 20px) / 2);
    top: calc((100% - 20px) / 2);
    left: -moz-calc((100% - 18px) / 2);
    left: -webkit-calc((100% - 18px) / 2);
    left: calc((100% - 18px) / 2);
}

@media only screen and (max-width: 991px) {
    .step-nav li .step-icon svg {
        width: 15px;
        height: 17px;
        top: -moz-calc((100% - 15px) / 2);
        top: -webkit-calc((100% - 15px) / 2);
        top: calc((100% - 15px) / 2);
        left: -moz-calc((100% - 17px) / 2);
        left: -webkit-calc((100% - 17px) / 2);
        left: calc((100% - 17px) / 2);
    }
}

@media only screen and (max-width: 768px) {
    .step-nav li .step-icon svg {
        width: 12px;
        height: 14px;
        top: -moz-calc((100% - 12px) / 2);
        top: -webkit-calc((100% - 12px) / 2);
        top: calc((100% - 12px) / 2);
        left: -moz-calc((100% - 14px) / 2);
        left: -webkit-calc((100% - 14px) / 2);
        left: calc((100% - 14px) / 2);
    }
}

.step-nav li .step-icon svg.primitive {
    opacity: 1;
    visibility: visible;
}

.step-nav li .step-icon svg.ended {
    opacity: 0;
    visibility: hidden;
}

.step-nav li .step-counter {
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    max-width: 65px;
    line-height: 23px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .step-nav li .step-counter {
        font-size: 10px;
    }
}

@media only screen and (max-width: 550px) {
    .step-nav li .step-counter {
        display: none;
    }
}

.step-nav li .step-title {
    font-size: 16px;
    display: block;
    margin: 10px 0 5px 0;
    color: #223641;
}

@media only screen and (max-width: 991px) {
    .step-nav li .step-title {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .step-nav li .step-title {
        font-size: 13px;
        margin: 5px 0;
    }
}

@media only screen and (max-width: 550px) {
    .step-nav li .step-title {
        font-size: 11px;
        color: #fff;
    }
}

.step-nav li.active .step-counter {
    background: rgba(239, 242, 244, 0.1);
}

.step-nav li.active .step-icon {
    box-shadow: 0 3px 3px 0 rgba(42, 210, 137, 0.11), 0 10px 16px 0 rgba(42, 210, 137, 0.21);
}

.step-nav li.active .step-icon svg {
    stroke: #f5ab2b;
}

.step-nav li.complete .step-icon {
    background: #f5ab2b;
    box-shadow: 0 10px 10px 0 rgba(42, 210, 137, 0.25);
}

.step-nav li.complete .step-icon svg {
    stroke: #fff;
}

.step-nav li.complete .step-icon svg.primitive {
    opacity: 0;
    visibility: hidden;
}

.step-nav li.complete .step-icon svg.ended {
    opacity: 1;
    visibility: visible;
}

.login-content {
    width: 100%;
    max-width: 945px;
}

.login-content .login-body {
    background: #fff;
    position: relative;
}

.login-content .login-body .step-nav {
    justify-content: center;
    top: -22px;
}

@media only screen and (max-width: 991px) {
    .login-content .login-body .step-nav {
        top: 0px;
    }
}

.login-content .login-body .step-nav li {
    padding: 0px;
    width: 63px;
}

@media only screen and (max-width: 768px) {
    .login-content .login-body .step-nav li {
        width: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .login-content .login-body .step-nav li .step-icon {
        top: calc((100% - 40px) / 2);
    }
}

.login-content .login-body .login-form {
    margin: auto;
    padding: 80px 50px 50px 50px;
}

@media only screen and (max-width: 991px) {
    .login-content .login-body .login-form {
        padding: 80px 30px 50px 30px;
    }
}

@media only screen and (max-width: 768px) {
    .login-content .login-body .login-form {
        padding: 40px 15px;
    }
}

@media only screen and (max-width: 650px) {
    .login-content .login-body .login-form .row-form {
        flex-direction: column;
    }
}

.login-content .login-body .login-form .input-holder {
    width: 48%;
    display: inline-block;
    margin-bottom: 10px;
}

@media only screen and (max-width: 650px) {
    .login-content .login-body .login-form .input-holder {
        width: 100%;
    }
}

.login-content .login-body .login-form .input-holder.full {
    width: 100%;
}

.login-content .login-body .login-form .input-holder.captcha-input img {
    position: absolute;
    width: 88px;
    height: 35px;
    right: 35px;
    top: -moz-calc((100% - 35px) / 2);
    top: -webkit-calc((100% - 35px) / 2);
    top: calc((100% - 35px) / 2);
}

.login-content .login-body .login-form .input-holder.captcha-input input {
    padding-right: 100px;
    background: #fff;
    border: 1px solid rgba(34, 54, 65, 0.1);
}

.login-content .login-body .login-form .input-holder.captcha-input input:focus {
    background: transparent;
    border-color: #f5ab2b;
}

.login-content .login-body .login-form .input-holder.captcha-input input:focus + span {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.login-content .login-body .login-form .input-holder.captcha-input.error input {
    border-color: #f5ab2b;
}

@media only screen and (max-width: 540px) {
    .login-content .step-control {
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 540px) {
    .login-content .step-control .btn-prev svg {
        display: none;
    }
}

.recover-password-content {
    width: 100%;
    max-width: 945px;
}

.recover-password-content .recover-body {
    background: #fff;
    position: relative;
    padding: 0 60px;
}

@media only screen and (max-width: 991px) {
    .recover-password-content .recover-body {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 768px) {
    .recover-password-content .recover-body {
        padding: 0 20px;
    }
}

.recover-password-content .recover-body .step-nav {
    justify-content: center;
    top: -22px;
}

@media only screen and (max-width: 991px) {
    .recover-password-content .recover-body .step-nav {
        top: 0px;
    }
}

.recover-password-content .recover-body .step-nav li {
    padding: 0px;
    width: 63px;
}

@media only screen and (max-width: 768px) {
    .recover-password-content .recover-body .step-nav li {
        width: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .recover-password-content .recover-body .step-nav li .step-icon {
        top: calc((100% - 40px) / 2);
    }
}

.recover-password-content .recover-body .recover-content {
    padding: 90px 0 70px 0;
}

.recover-password-content .recover-body .recover-content .recover-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (max-width: 650px) {
    .recover-password-content .recover-body .recover-content .recover-form {
        flex-direction: column;
    }
}

.recover-password-content .recover-body .recover-content .recover-form .input-holder {
    width: 70%;
}

@media only screen and (max-width: 650px) {
    .recover-password-content .recover-body .recover-content .recover-form .input-holder {
        width: 100%;
        margin-bottom: 20px;
    }
}

.secure-login-content {
    width: 100%;
    max-width: 945px;
}

.secure-login-content .secure-login {
    background: #fff;
    position: relative;
    padding: 0 60px;
}

@media only screen and (max-width: 991px) {
    .secure-login-content .secure-login {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 768px) {
    .secure-login-content .secure-login {
        padding: 0 20px;
    }
}

.secure-login-content .secure-login .step-nav {
    justify-content: center;
    top: -22px;
}

@media only screen and (max-width: 991px) {
    .secure-login-content .secure-login .step-nav {
        top: 0px;
    }
}

.secure-login-content .secure-login .step-nav li {
    padding: 0px;
    width: 63px;
}

@media only screen and (max-width: 768px) {
    .secure-login-content .secure-login .step-nav li {
        width: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .secure-login-content .secure-login .step-nav li .step-icon {
        top: calc((100% - 40px) / 2);
    }
}

.secure-login-content .secure-login .secure-login-form {
    padding: 90px 0 70px 0;
    width: 100%;
    max-width: 660px;
    margin: auto;
}

@media only screen and (max-width: 650px) {
    .secure-login-content .secure-login .secure-login-form {
        padding: 70px 0;
    }
}

.secure-login-content .secure-login .secure-login-form .enter-code {
    display: block;
    font-size: 15px;
    font-weight: 500px;
    color: #616060;
    margin-bottom: 25px;
}

@media only screen and (max-width: 991px) {
    .secure-login-content .secure-login .secure-login-form .enter-code {
        font-size: 13px;
    }
}

.secure-login-content .secure-login .secure-login-form .input-holder {
    width: 55%;
    margin-right: 50px;
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width: 1199px) {
    .secure-login-content .secure-login .secure-login-form .input-holder {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .secure-login-content .secure-login .secure-login-form .input-holder {
        margin-left: 0;
        width: -moz-calc((100% - 225px));
        width: -webkit-calc((100% - 225px));
        width: calc((100% - 225px));
    }
}

@media only screen and (max-width: 600px) {
    .secure-login-content .secure-login .secure-login-form .input-holder {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.secure-login-content .secure-login .secure-login-form .btn {
    width: 200px;
    font-size: 16px;
    text-transform: initial;
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width: 768px) {
    .secure-login-content .secure-login .secure-login-form .btn {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    .secure-login-content .secure-login .secure-login-form .btn {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .dashboard-content {
        margin-top: 48px;
    }
}

.dashboard-content .membership-type {
    display: none;
    background: #88a1db;
    background: -moz-linear-gradient(left, #88a1db 0%, #6a82c4 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #88a1db), color-stop(100%, #6a82c4));
    background: -webkit-linear-gradient(left, #88a1db 0%, #6a82c4 100%);
    background: -o-linear-gradient(left, #88a1db 0%, #6a82c4 100%);
    background: -webkit-gradient(linear, left top, right top, from(#88a1db), to(#6a82c4));
    background: linear-gradient(to right, #88a1db 0%, #6a82c4 100%);
}

.dashboard-content .membership-type .membership-content {
    padding: 15px 0 15px 70px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .membership-type .membership-content {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-content .membership-type .membership-content {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 500px) {
    .dashboard-content .membership-type .membership-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.dashboard-content .membership-type .membership-content #membership-icon {
    width: 52px;
    height: 73px;
    left: 0;
    top: 0;
    position: absolute;
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .membership-type .membership-content #membership-icon {
        width: 45px;
        height: 65px;
    }
}

.dashboard-content .membership-type .membership-content .account-type {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 4px 5px rgba(56, 93, 185, 0.35);
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .membership-type .membership-content .account-type {
        font-size: 17px;
    }
}

@media only screen and (max-width: 768px) {
    .dashboard-content .membership-type .membership-content .account-type {
        font-size: 15px;
    }
}

@media only screen and (max-width: 610px) {
    .dashboard-content .membership-type .membership-content ul {
        margin-top: 10px;
    }
}

.dashboard-content .membership-type .membership-content ul li {
    display: inline-block;
    padding: 0 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .membership-type .membership-content ul li {
        font-size: 12px;
        padding: 0 10px;
    }
}

@media only screen and (max-width: 768px) {
    .dashboard-content .membership-type .membership-content ul li {
        font-size: 11px;
        padding: 0 5px;
    }
}

@media only screen and (max-width: 500px) {
    .dashboard-content .membership-type .membership-content ul li {
        display: block;
        padding: 5px 0;
    }
}

.dashboard-content .membership-type .membership-content ul li span {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding-left: 5px;
    margin-left: 5px;
    border-left: 1px solid #5e76a4;
    line-height: 1;
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .membership-type .membership-content ul li span {
        font-size: 13px;
    }
}

@media only screen and (max-width: 768px) {
    .dashboard-content .membership-type .membership-content ul li span {
        font-size: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-content .membership-type .membership-content .btn {
        margin-top: 20px;
        flex-grow: 1;
    }
}

.dashboard-content .invest-section {
    background: #fff;
    margin-top: 20px;
    -webkit-box-shadow: 0 2px 7px 0 rgba(152, 173, 185, 0.1);
    -moz-box-shadow: 0 2px 7px 0 rgba(152, 173, 185, 0.1);
    box-shadow: 0 2px 7px 0 rgba(152, 173, 185, 0.1);
}

.dashboard-content .invest-section .payment-balance {
    position: relative;
}

.dashboard-content .invest-section .payment-balance .payement-wrap {
    padding: 30px;
    width: 45%;
    float: right;
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap {
        padding: 40px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap {
        padding: 10px;
        height: 255px;
    }
}

@media only screen and (max-width: 700px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap {
        width: 100%;
        float: unset;
        height: unset;
    }
}

.dashboard-content .invest-section .payment-balance .payement-wrap .payement-wrap-title {
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 120px;
    display: none;
}

.dashboard-content .invest-section .payment-balance .payement-wrap ul {
    width: 100%;
    vertical-align: middle;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media only screen and (max-width: 500px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap ul {
        width: 100%;
        float: unset;
        display: block;
    }
}

.dashboard-content .invest-section .payment-balance .payement-wrap ul li {
    padding: 10px 10px 10px 40px;
    position: relative;
    font-size: 10px;
    color: #616060;
    display: block;
    text-align: left;
    width:30%;
    float:left;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap ul li {
        padding-bottom: 5px;
        padding-top: 5px;
    }
}

@media only screen and (max-width: 700px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap ul li {
        padding-bottom: 10px;
        padding-top: 10px;
    }
}

@media only screen and (max-width: 600px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap ul li {
        padding-bottom: 5px;
        padding-top: 5px;
    }
}

@media only screen and (max-width: 500px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap ul li {
        display: inline-block;
        width: -moz-calc((100% - 10px) / 2);
        width: -webkit-calc((100% - 10px) / 2);
        width: calc((100% - 10px) / 2);
    }
}

.dashboard-content .invest-section .payment-balance .payement-wrap ul li img {
    position: absolute;
    width: 32px;
    height: 32px;
    left: 0;
    top: -moz-calc((100% - 32px) / 2);
    top: -webkit-calc((100% - 32px) / 2);
    top: calc((100% - 32px) / 2);
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap ul li svg {
        width: 29px;
        height: 29px;
        top: -moz-calc((100% - 29px) / 2);
        top: -webkit-calc((100% - 29px) / 2);
        top: calc((100% - 29px) / 2);
    }
}

.dashboard-content .invest-section .payment-balance .payement-wrap ul li span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #16a716;
}

.dashboard-content .invest-section .payment-balance .payement-wrap ul li:last-child {
    margin-right: 0;
}

.dashboard-content .invest-section .payment-balance .payement-wrap .balance-chart {
    text-align: center;
    font-size: 18px;
    width: 100%;
    float: left;
    position: relative;
}

@media only screen and (max-width: 700px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap .balance-chart {
        width: 50%;
    }
}

@media only screen and (max-width: 500px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap .balance-chart {
        float: unset;
        display: block;
        margin: auto;
    }
}

.dashboard-content .invest-section .payment-balance .payement-wrap .balance-chart .total-balance {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    font-size: 12px;
    font-weight: 500;
    top: 0;
    left: 0;
}

@media only screen and (min-width: 701px) and (max-width: 991px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap .balance-chart .total-balance {
        padding-top: 88%;
    }
}

@media only screen and (max-width: 500px) {
    .dashboard-content .invest-section .payment-balance .payement-wrap .balance-chart .total-balance {
        position: relative;
        padding-top: 0%;
    }
}

.dashboard-content .invest-section .payment-balance .payement-wrap .balance-chart .total-balance span {
    display: block;
    font-size: 14px;
    color: #16a716;
}

.dashboard-content .invest-section .payment-balance .payement-wrap .balance-chart .doughnut-chart {
    position: relative;
    z-index: 2;
}

.dashboard-content .invest-section .payment-balance .earning-chart {
    float: left;
    position: absolute;
    width: 55%;
    background: #315061;
    height: 100%;
    padding: 30px;
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .invest-section .payment-balance .earning-chart {
        padding: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .payment-balance .earning-chart {
        padding: 10px;
    }
}

@media only screen and (max-width: 700px) {
    .dashboard-content .invest-section .payment-balance .earning-chart {
        width: 100%;
        float: unset;
        display: block;
        position: relative;
        max-height: 300px;
    }
}

.dashboard-content .invest-section .payment-balance .earning-chart .earning-chart-top {
    font-size: 18px;
    font-weight: 500;
    color: #f5f9fa;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .payment-balance .earning-chart .earning-chart-top {
        font-size: 15px;
    }
}

@media only screen and (max-width: 400px) {
    .dashboard-content .invest-section .payment-balance .earning-chart .earning-chart-top {
        font-size: 14px;
    }
}

.dashboard-content .invest-section .payment-balance .earning-chart .earning-chart-top ul {
    float: right;
}

.dashboard-content .invest-section .payment-balance .earning-chart .earning-chart-top ul li {
    display: inline-block;
    font-size: 10px;
    color: rgba(245, 249, 250, 0.5);
    margin-left: 10px;
    cursor: pointer;
}

.dashboard-content .invest-section .payment-balance .earning-chart .earning-chart-top ul li.active, .dashboard-content .invest-section .payment-balance .earning-chart .earning-chart-top ul li:hover {
    color: #f5ab2b;
}

.dashboard-content .invest-section .payment-balance .earning-chart .line-chart {
    width: 100%;
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .invest-section .payment-balance .earning-chart .line-chart {
        height: 180px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .payment-balance .earning-chart .line-chart {
        height: 190px;
    }
}

.dashboard-content .invest-section .payment-balance .earning-chart .not-found {
    position: absolute;
    display: none;
    z-index: 1;
    margin: auto;
    color: #fff;
    top: -moz-calc((100% - 37px) / 2);
    top: -webkit-calc((100% - 37px) / 2);
    top: calc((100% - 37px) / 2);
    left: -moz-calc((100% - 200px) / 2);
    left: -webkit-calc((100% - 200px) / 2);
    left: calc((100% - 200px) / 2);
}

@media only screen and (max-width: 768px) {
    .dashboard-content .invest-section .payment-balance .earning-chart .not-found {
        top: -moz-calc((100% - 32px) / 2);
        top: -webkit-calc((100% - 32px) / 2);
        top: calc((100% - 32px) / 2);
        left: -moz-calc((100% - 160px) / 2);
        left: -webkit-calc((100% - 160px) / 2);
        left: calc((100% - 160px) / 2);
    }
}

@media only screen and (max-width: 500px) {
    .dashboard-content .invest-section .payment-balance .earning-chart .not-found {
        top: -moz-calc((100% - 28px) / 2);
        top: -webkit-calc((100% - 28px) / 2);
        top: calc((100% - 28px) / 2);
        left: -moz-calc((100% - 146px) / 2);
        left: -webkit-calc((100% - 146px) / 2);
        left: calc((100% - 146px) / 2);
    }
}

.dashboard-content .invest-section .payment-balance .earning-chart .not-found span {
    color: #fff;
}

.dashboard-content .invest-section .payment-balance .earning-chart.no-data .earning-chart-top {
    text-align: center;
}

.dashboard-content .invest-section .payment-balance .earning-chart.no-data .earning-chart-top ul {
    display: none;
}

.dashboard-content .invest-section .payment-balance .earning-chart.no-data .line-chart {
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.dashboard-content .invest-section .payment-balance .earning-chart.no-data .not-found {
    display: flex;
}

.dashboard-content .invest-section .total-amount {
    padding: 30px 40px;
    border-top: 1px solid rgba(138, 160, 166, 0.3);
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .invest-section .total-amount {
        padding: 25px;
    }
}

@media only screen and (max-width: 400px) {
    .dashboard-content .invest-section .total-amount {
        padding: 20px 15px;
    }
}

.dashboard-content .invest-section .total-amount .btn {
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    padding: 12px 35px 12px 20px;
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .invest-section .total-amount .btn {
        font-size: 13px;
        padding: 12px 25px 12px 15px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .total-amount .btn {
        font-size: 12px;
        margin: 20px auto auto;
        display: block;
        text-align: center;
    }
}

.dashboard-content .invest-section .total-amount ul {
    display: inline-block;
    vertical-align: middle;
    width: 75%;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .total-amount ul {
        width: 100%;
    }
}

.dashboard-content .invest-section .total-amount ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 35px;
    color: #616060;
    width: 39%;
}

@media only screen and (max-width: 650px) {
    .dashboard-content .invest-section .total-amount ul li {
        width: 49%;
    }
}

@media only screen and (max-width: 400px) {
    .dashboard-content .invest-section .total-amount ul li {
        padding-left: 30px;
    }
}

.dashboard-content .invest-section .total-amount ul li svg {
    position: absolute;
    width: 27px;
    height: 27px;
    stroke: #f5ab2b;
    left: 0;
    top: -moz-calc((100% - 27px) / 2);
    top: -webkit-calc((100% - 27px) / 2);
    top: calc((100% - 27px) / 2);
}

@media only screen and (max-width: 400px) {
    .dashboard-content .invest-section .total-amount ul li svg {
        width: 25px;
        height: 25px;
    }
}

.dashboard-content .invest-section .total-amount ul li span {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.1;
    color: #223641;
    width: 52px;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .total-amount ul li span {
        font-size: 10px;
    }
}

@media only screen and (max-width: 500px) {
    .dashboard-content .invest-section .total-amount ul li span {
        width: unset;
    }
}

@media only screen and (max-width: 400px) {
    .dashboard-content .invest-section .total-amount ul li span {
        font-size: 9px;
    }
}

.dashboard-content .invest-section .total-amount ul li strong {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    color: #223641;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .invest-section .total-amount ul li strong {
        font-size: 16px;
        margin-left: 15px;
    }
}

@media only screen and (max-width: 500px) {
    .dashboard-content .invest-section .total-amount ul li strong {
        display: block;
        margin-left: 0;
    }
}

@media only screen and (max-width: 400px) {
    .dashboard-content .invest-section .total-amount ul li strong {
        font-size: 14px;
    }
}

.dashboard-content .invest-section .total-amount ul li:last-child {
    padding-left: 0;
    width: 20%;
}

@media only screen and (max-width: 650px) {
    .dashboard-content .invest-section .total-amount ul li:last-child {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
}

.dashboard-content .invest-section .total-amount ul li:last-child .last-access {
    display: block;
    color: #616060;
    width: unset;
}

@media only screen and (max-width: 650px) {
    .dashboard-content .invest-section .total-amount ul li:last-child .last-access {
        display: inline-block;
        margin-left: 20px;
    }
}

.dashboard-content .dashboard-status {
    margin-top: 25px;
}

.dashboard-content .dashboard-status .status-item .status-title {
    padding-left: 42px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    display: block;
}

@media only screen and (max-width: 500px) {
    .dashboard-content .dashboard-status .status-item .status-title {
        font-size: 14px;
    }
}

.dashboard-content .dashboard-status .status-item .status-title svg {
    position: absolute;
    width: 19px;
    height: 19px;
    left: 10px;
    top: -moz-calc((100% - 19px) / 2);
    top: -webkit-calc((100% - 19px) / 2);
    top: calc((100% - 19px) / 2);
}

.dashboard-content .dashboard-status .status-item .amount-chart {
    background: #fff;
    margin-top: 20px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    -moz-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
}

.dashboard-content .dashboard-status .status-item .amount-chart .amounts {
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 500px) {
    .dashboard-content .dashboard-status .status-item .amount-chart .amounts {
        padding: 20px;
    }
}

@media only screen and (max-width: 400px) {
    .dashboard-content .dashboard-status .status-item .amount-chart .amounts {
        flex-direction: column;
        padding: 10px;
    }
}

.dashboard-content .dashboard-status .status-item .amount-chart .amounts li {
    font-weight: 500;
    line-height: 1.2;
    vertical-align: middle;
    color: rgba(34, 54, 65, 0.7);
}

@media only screen and (max-width: 400px) {
    .dashboard-content .dashboard-status .status-item .amount-chart .amounts li {
        padding: 6px;
        width: 100%;
    }
}

.dashboard-content .dashboard-status .status-item .amount-chart .amounts li span {
    display: block;
    font-size: 14px;
    color: #223641;
    font-weight: 500;
}

@media only screen and (max-width: 400px) {
    .dashboard-content .dashboard-status .status-item .amount-chart .amounts li span {
        float: right;
        font-size: 13px;
    }
}

.dashboard-content .dashboard-status .status-item .amount-chart .amounts li b {
    font-weight: 500;
    font-size: 10px;
}

@media only screen and (max-width: 400px) {
    .dashboard-content .dashboard-status .status-item .amount-chart .amounts li b {
        display: none;
    }
}

.dashboard-content .dashboard-status .status-item .amount-chart .status-chart {
    padding: 0 10px 30px 10px;
    background: #fff;
}

.dashboard-content .dashboard-status .status-item .amount-chart .status-chart .bar-chart {
    width: 100%;
    height: 100%;
}

.dashboard-content .dashboard-status .status-item .amount-chart .status-chart .not-found {
    position: absolute;
    display: none;
    top: -moz-calc((100% - 37px) / 2);
    top: -webkit-calc((100% - 37px) / 2);
    top: calc((100% - 37px) / 2);
    left: -moz-calc((100% - 250px) / 2);
    left: -webkit-calc((100% - 250px) / 2);
    left: calc((100% - 250px) / 2);
}

@media only screen and (max-width: 768px) {
    .dashboard-content .dashboard-status .status-item .amount-chart .status-chart .not-found {
        top: -moz-calc((100% - 32px) / 2);
        top: -webkit-calc((100% - 32px) / 2);
        top: calc((100% - 32px) / 2);
        left: -moz-calc((100% - 200px) / 2);
        left: -webkit-calc((100% - 200px) / 2);
        left: calc((100% - 200px) / 2);
    }
}

@media only screen and (max-width: 500px) {
    .dashboard-content .dashboard-status .status-item .amount-chart .status-chart .not-found {
        top: -moz-calc((100% - 28px) / 2);
        top: -webkit-calc((100% - 28px) / 2);
        top: calc((100% - 28px) / 2);
        left: -moz-calc((100% - 180px) / 2);
        left: -webkit-calc((100% - 180px) / 2);
        left: calc((100% - 180px) / 2);
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-content .dashboard-status .status-item .amount-chart .status-chart.no-data {
        min-height: 200px;
    }
}

.dashboard-content .dashboard-status .status-item .amount-chart .status-chart.no-data .not-found {
    display: flex;
}

.dashboard-content .dashboard-status .status-item .amount-chart .status-chart.no-data .bar-chart {
    opacity: 0.5;
    pointer-events: none;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .dashboard-status .status-item .amount-chart .status-chart.no-data .bar-chart {
        height: 200px !important;
    }
}

.dashboard-content .dashboard-status .status-item.investment .status-title svg {
    stroke: #f5ab2b;
}

.dashboard-content .dashboard-status .status-item.investment .amounts li:first-child {
    color: #223641;
}

.dashboard-content .dashboard-status .status-item.investment .amounts li:first-child span {
    color: #f5ab2b;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .dashboard-status .status-item.withdraw {
        margin-top: 30px;
    }
}

.dashboard-content .dashboard-status .status-item.withdraw .status-title svg {
    stroke: #f5ab2b;
}

.dashboard-content .dashboard-status .status-item.withdraw .amounts li:first-child {
    color: #223641;
}

.dashboard-content .dashboard-status .status-item.withdraw .amounts li:first-child span {
    color: #f5ab2b;
}

.dashboard-content .history-profile-status {
    margin-top: 20px;
    position: relative;
}

.dashboard-content .history-profile-status .profile-status {
    text-align: center;
    padding: 120px 35px 40px 35px;
    background: #fff;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    float: right;
    width: 21%;
    line-height: 1.2;
    -webkit-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    -moz-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
}

@media only screen and (max-width: 1199px) {
    .dashboard-content .history-profile-status .profile-status {
        padding: 120px 20px 30px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-content .history-profile-status .profile-status {
        display: none;
        padding: 100px 20px 40px 20px;
        font-size: 14px;
        box-shadow: 0 4px 15px 0 rgba(42, 210, 137, 0.15), 0 0px 1px 0 rgba(42, 210, 137, 0.3);
        width: 100%;
        text-align: left;
        line-height: 40px;
        text-align: center;
    }
}

.dashboard-content .history-profile-status .profile-status .profile-status-icon {
    width: 63px;
    height: 63px;
    position: absolute;
    background: #f5ab2b;
    border-radius: 100%;
    top: 40px;
    left: -moz-calc((100% - 63px) / 2);
    left: -webkit-calc((100% - 63px) / 2);
    left: calc((100% - 63px) / 2);
}

@media only screen and (max-width: 991px) {
    .dashboard-content .history-profile-status .profile-status .profile-status-icon {
        top: 25px;
        width: 45px;
        height: 45px;
    }
}

.dashboard-content .history-profile-status .profile-status .profile-status-icon svg {
    stroke: #fff;
    position: absolute;
    width: 21px;
    height: 30px;
    top: -moz-calc((100% - 30px) / 2);
    top: -webkit-calc((100% - 30px) / 2);
    top: calc((100% - 30px) / 2);
    left: -moz-calc((100% - 21px) / 2);
    left: -webkit-calc((100% - 21px) / 2);
    left: calc((100% - 21px) / 2);
}

.dashboard-content .history-profile-status .profile-status p {
    color: #616060;
    line-height: 1;
    display: block;
    margin: 20px 0 0 0px;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .history-profile-status .profile-status p {
        margin: 15px 0 0 0px;
        display: block;
        vertical-align: middle;
        margin-top: -5px;
    }
}

@media only screen and (max-width: 600px) {
    .dashboard-content .history-profile-status .profile-status p {
        font-size: 12px;
    }
}

.dashboard-content .history-profile-status .profile-status .btn {
    width: 100%;
    padding: 3px 10px;
    margin-top: 35px;
    text-transform: initial;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .history-profile-status .profile-status .btn {
        width: 200;
        margin: 20px auto auto;
        display: block;
        text-align: center;
    }
}

.dashboard-content .history-profile-status .history-status {
    float: left;
    width: 78%;
    position: absolute;
    height: 100%;
    background: #fff;
    line-height: 40px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    -moz-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
}

@media only screen and (max-width: 991px) {
    .dashboard-content .history-profile-status .history-status {
        position: relative;
        float: unset;
        margin-bottom: 20px;
        width: 100%;
        padding-bottom: 15px;
    }
}

.dashboard-content .history-profile-status .history-status .history-filter {
    font-weight: 500;
    padding: 25px 45px;
    border-bottom: 1px solid rgba(138, 160, 166, 0.2);
    font-size: 18px;
    cursor: pointer;
}

@media only screen and (max-width: 991px) {
    .dashboard-content .history-profile-status .history-status .history-filter {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 400px) {
    .dashboard-content .history-profile-status .history-status .history-filter {
        font-size: 16px;
        line-height: 35px;
        padding: 10px;
    }
}

.dashboard-content .history-profile-status .history-status .history-filter ul {
    display: inline-block;
    font-size: 12px;
    margin-left: 60px;
}

@media only screen and (max-width: 600px) {
    .dashboard-content .history-profile-status .history-status .history-filter ul {
        display: block;
        margin-left: 0px;
    }
}

.dashboard-content .history-profile-status .history-status .history-filter ul li {
    display: inline-block;
    margin-left: 20px;
    color: rgba(34, 54, 65, 0.5);
}

@media only screen and (max-width: 480px) {
    .dashboard-content .history-profile-status .history-status .history-filter ul li {
        margin-left: 10px;
        font-size: 11px;
    }
}

@media only screen and (max-width: 400px) {
    .dashboard-content .history-profile-status .history-status .history-filter ul li {
        font-size: 10px;
        margin-left: 6px;
        line-height: 35px;
    }
}

.dashboard-content .history-profile-status .history-status .history-filter ul li.active, .dashboard-content .history-profile-status .history-status .history-filter ul li:hover {
    color: #223641;
}

.dashboard-content .history-profile-status .history-status .result-holder {
    height: 190px;
    overflow-y: auto;
}

.dashboard-content .history-profile-status .history-status .result-holder h4 {
    color: rgba(34, 54, 65, 0.5);
    width: 100%;
    text-align: center;
    margin-top: 55px;
}

.dashboard-content .history-profile-status .history-status.full {
    width: 100%;
    position: relative;
}

.general-menu {
    margin: 20px 0 40px 0;
}

@media only screen and (max-width: 600px) {
    .general-menu {
        text-align: center;
        width: 100%;
    }
}

.general-menu li {
    cursor: pointer;
    display: inline-block;
    padding: 5px 13px;
    color: rgba(34, 54, 65, 0.5);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
    .general-menu li {
        font-size: 11px;
    }
}

@media only screen and (max-width: 400px) {
    .general-menu li {
        font-size: 10px;
    }
}

.general-menu li:hover, .general-menu li.active {
    color: #223641;
}

.dashboard-title {
    display: block;
    margin: 30px 0;
    padding-left: 30px;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .dashboard-title {
        margin: 20px 0;
    }
}

.dashboard-title svg {
    width: 17px;
    height: 21px;
    stroke: #7e9aa9;
    position: absolute;
    bottom: 3px;
    left: 0;
}

.dashboard-box, .transaction-content .transaction-statistic, .transaction-content .transaction-list .transaction-item .transaction-summary, .referral-content .referral-top .statistics-wrap, .referral-content .referral-list, .referral-content .plan-commision {
    background: #fff;
    -webkit-box-shadow: 0 12px 16px 0 rgba(107, 134, 149, 0.13);
    -moz-box-shadow: 0 12px 16px 0 rgba(107, 134, 149, 0.13);
    box-shadow: 0 12px 16px 0 rgba(107, 134, 149, 0.13);
}

.transaction-content .dashboard-title {
    padding-left: 40px;
}

.transaction-content .dashboard-title svg {
    width: 28px;
    height: 26px;
    bottom: 0;
}

.transaction-content .transaction-filter {
    background: #fff;
    padding: 50px 30px 40px 30px;
}

@media only screen and (max-width: 768px) {
    .transaction-content .transaction-filter {
        padding: 30px 25px;
    }
}

@media only screen and (max-width: 500px) {
    .transaction-content .transaction-filter {
        padding: 30px 15px;
    }
}

.transaction-content .transaction-filter .input-holder {
    background: transparent;
    border: 1px solid #f5ab2b;
    display: inline-block;
    margin-bottom: 20px;
}

.transaction-content .transaction-filter .input-holder span {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.transaction-content .transaction-filter .input-holder.fromdate, .transaction-content .transaction-filter .input-holder.todate {
    width: 260px;
    margin-right: 10px;
}

@media only screen and (max-width: 991px) {
    .transaction-content .transaction-filter .input-holder.fromdate, .transaction-content .transaction-filter .input-holder.todate {
        width: 48%;
    }
}

@media only screen and (max-width: 480px) {
    .transaction-content .transaction-filter .input-holder.fromdate, .transaction-content .transaction-filter .input-holder.todate {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .transaction-content .transaction-filter .input-holder.todate {
        margin-right: 0;
    }
}

.transaction-content .transaction-filter .input-holder.choose-balance, .transaction-content .transaction-filter .input-holder.transaction-type {
    width: 150px;
    margin-right: 10px;
}

.transaction-content .transaction-filter .input-holder.choose-balance > div, .transaction-content .transaction-filter .input-holder.transaction-type > div {
    width: 95%;
}

.transaction-content .transaction-filter .input-holder.choose-balance .input-title, .transaction-content .transaction-filter .input-holder.transaction-type .input-title {
    left: 15px;
}

@media only screen and (max-width: 991px) {
    .transaction-content .transaction-filter .input-holder.choose-balance, .transaction-content .transaction-filter .input-holder.transaction-type {
        width: 36%;
    }
}

@media only screen and (max-width: 768px) {
    .transaction-content .transaction-filter .input-holder.choose-balance, .transaction-content .transaction-filter .input-holder.transaction-type {
        width: 30%;
    }
}

@media only screen and (max-width: 480px) {
    .transaction-content .transaction-filter .input-holder.choose-balance, .transaction-content .transaction-filter .input-holder.transaction-type {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.transaction-content .transaction-filter .input-holder > div {
    display: inline-block;
    position: relative;
}

.transaction-content .transaction-filter .input-holder > div .arrow-icon {
    position: absolute;
    width: 6px;
    height: 11px;
    right: 15px;
    stroke: #638597;
    top: -moz-calc((100% - 9px) / 2);
    top: -webkit-calc((100% - 9px) / 2);
    top: calc((100% - 9px) / 2);
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-filter .input-holder > div .arrow-icon {
        width: 5px;
        height: 8px;
        right: 10px;
        top: -moz-calc((100% - 7px) / 2);
        top: -webkit-calc((100% - 7px) / 2);
        top: calc((100% - 7px) / 2);
    }
}

.transaction-content .transaction-filter .input-holder > div select {
    background: transparent;
    width: 100%;
    padding: 10px 35px 10px 15px;
    cursor: pointer;
    color: rgba(34, 54, 65, 0.5);
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-filter .input-holder > div select {
        padding: 10px 20px 10px 10px;
    }
}

.transaction-content .transaction-filter .input-holder > div:hover .arrow-icon {
    stroke: #2ad288;
}

.transaction-content .transaction-filter .input-holder > div:hover select {
    color: #223641;
}

.transaction-content .transaction-filter .btn {
    float: right;
    padding: 5px 35px 5px 55px;
    text-transform: initial;
    font-size: 16px;
}

@media only screen and (max-width: 1199px) {
    .transaction-content .transaction-filter .btn {
        display: block;
        margin: 20px auto auto;
        float: unset;
    }
}

@media only screen and (max-width: 991px) {
    .transaction-content .transaction-filter .btn {
        margin: 0 10px 0 0;
        float: right;
    }
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-filter .btn {
        font-size: 14px;
        padding: 5px 35px 7px 45px;
    }
}

@media only screen and (max-width: 480px) {
    .transaction-content .transaction-filter .btn {
        display: block;
        margin: 10px auto auto;
        float: unset;
        font-size: 13px;
        width: 100%;
        padding: 5px 35px;
    }
}

.transaction-content .transaction-filter .btn .search-icon {
    position: absolute;
    width: 13px;
    height: 13px;
    left: 15px;
    transform: none;
    top: -moz-calc((100% - 13px) / 2);
    top: -webkit-calc((100% - 13px) / 2);
    top: calc((100% - 13px) / 2);
}

@media only screen and (max-width: 480px) {
    .transaction-content .transaction-filter .btn .search-icon {
        position: relative;
        vertical-align: middle;
        display: inline-block;
        left: unset;
        top: unset;
    }
}

.transaction-content .transaction-statistic {
    margin: 30px 0;
    padding: 25px 0px;
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-statistic {
        padding: 0px;
    }
}

@media only screen and (max-width: 400px) {
    .transaction-content .transaction-statistic {
        margin: 20px 0 10px 0;
    }
}

.transaction-content .transaction-statistic > div {
    float: left;
    width: 50%;
    padding: 0px 30px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(34, 54, 65, 0.7);
}

@media only screen and (max-width: 768px) {
    .transaction-content .transaction-statistic > div {
        padding: 0px 20px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-statistic > div {
        width: 100%;
        padding: 15px 20px;
    }
}

.transaction-content .transaction-statistic > div span {
    font-size: 15px;
    color: #223641;
    margin-left: 25px;
}

@media only screen and (max-width: 768px) {
    .transaction-content .transaction-statistic > div span {
        font-size: 14px;
    }
}

.transaction-content .transaction-statistic > div.total-transaction {
    text-align: right;
    border-right: 1px solid #e9eeef;
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-statistic > div.total-transaction {
        text-align: center;
        border-right: none;
        border-bottom: 1px solid rgba(233, 238, 239, 0.5);
    }
}

.transaction-content .transaction-statistic > div.this-period {
    text-align: left;
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-statistic > div.this-period {
        text-align: center;
    }
}

.transaction-content .transaction-list .transaction-item {
    margin: 10px 0;
    width: 100%;
}

.transaction-content .transaction-list .transaction-item .transaction-summary {
    padding: 15px 25px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary {
        flex-direction: column;
        padding: 15px;
    }
}

.transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 70%;
    align-items: center;
    font-size: 13px;
    color: #616060;
}

@media only screen and (max-width: 1199px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount {
        font-size: 12px;
    }
}

@media only screen and (max-width: 700px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount {
        width: 100%;
        font-size: 11px;
        justify-content: space-between;
    }
}

.transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount .item-icon {
    padding-left: 50px;
    position: relative;
    width: 35%;
}

@media only screen and (max-width: 1199px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount .item-icon {
        padding-left: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount .item-icon {
        width: 50%;
        padding-left: 30px;
    }
}

.transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount .item-icon svg {
    width: 34px;
    height: 34px;
    position: absolute;
    left: 0;
    top: -moz-calc((100% - 34px) / 2);
    top: -webkit-calc((100% - 34px) / 2);
    top: calc((100% - 34px) / 2);
}

@media only screen and (max-width: 1199px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount .item-icon svg {
        width: 27px;
        height: 27px;
        top: -moz-calc((100% - 27px) / 2);
        top: -webkit-calc((100% - 27px) / 2);
        top: calc((100% - 27px) / 2);
    }
}

@media only screen and (max-width: 480px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount .item-icon svg {
        width: 23px;
        height: 23px;
        top: -moz-calc((100% - 23px) / 2);
        top: -webkit-calc((100% - 23px) / 2);
        top: calc((100% - 23px) / 2);
    }
}

.transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount strong {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: rgba(34, 54, 65, 0.7);
    line-height: 1;
}

@media only screen and (max-width: 1199px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount strong {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount strong {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .payment-amount span {
        width: 45%;
        text-align: right;
    }
}

.transaction-content .transaction-list .transaction-item .transaction-summary .datetime {
    position: relative;
    font-size: 13px;
    color: rgba(34, 54, 65, 0.5);
}

@media only screen and (max-width: 1199px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .datetime {
        font-size: 11px;
    }
}

@media only screen and (max-width: 700px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .datetime {
        align-self: flex-end;
        margin-top: 5px;
        font-size: 10px;
    }
}

.transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid #909a9f;
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
}

@media only screen and (max-width: 991px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction {
        width: 25px;
        height: 25px;
        margin-left: 5px;
    }
}

.transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction:after {
    position: absolute;
    display: block;
    content: "Detail";
    font-size: 11px;
    color: rgba(34, 54, 65, 0.5);
    width: 100%;
    text-align: center;
    left: 0;
    bottom: -15px;
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 991px) {
    .transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction:after {
        display: none;
    }
}

.transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction svg {
    position: absolute;
    width: 7px;
    height: 12px;
    stroke: #909a9f;
    transform: rotate(-90deg);
    top: -moz-calc((100% - 12px) / 2);
    top: -webkit-calc((100% - 12px) / 2);
    top: calc((100% - 12px) / 2);
    left: -moz-calc((100% - 7px) / 2);
    left: -webkit-calc((100% - 7px) / 2);
    left: calc((100% - 7px) / 2);
}

.transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction:hover {
    border-color: #2ad288;
}

.transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction:hover svg {
    stroke: #2ad288;
}

.transaction-content .transaction-list .transaction-item .transaction-summary .datetime .toggle-transaction:hover:after {
    color: #2ad288;
}

.transaction-content .transaction-list .transaction-item .transaction-detail {
    background: #fff;
    padding: 30px;
    display: none;
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-list .transaction-item .transaction-detail {
        padding: 20px;
    }
}

.transaction-content .transaction-list .transaction-item .transaction-detail span {
    font-size: 14px;
    color: #616060;
    font-weight: 500;
    display: block;
}

@media only screen and (max-width: 600px) {
    .transaction-content .transaction-list .transaction-item .transaction-detail span {
        font-size: 13px;
    }
}

.transaction-content .transaction-list .transaction-item .transaction-detail p {
    color: rgba(34, 54, 65, 0.5);
    margin: 5px 0;
}

.transaction-content .transaction-list .transaction-item .transaction-detail .btn {
    border-radius: 5px;
    background: #f5ab2b;
    color: #fff;
    float: right;
}

@media only screen and (max-width: 400px) {
    .transaction-content .transaction-list .transaction-item .transaction-detail .btn {
        display: block;
        margin: auto;
        float: unset;
    }
}

.transaction-content .transaction-list .transaction-item.open {
    -webkit-box-shadow: 0 5px 13px 0 rgba(192, 198, 201, 0.7);
    -moz-box-shadow: 0 5px 13px 0 rgba(192, 198, 201, 0.7);
    box-shadow: 0 5px 13px 0 rgba(192, 198, 201, 0.7);
}

.transaction-content .transaction-list .transaction-item.open .transaction-summary {
    box-shadow: none;
    border-bottom: 1px solid rgba(34, 54, 65, 0.07);
}

.transaction-content .transaction-list .transaction-item.open .transaction-summary .toggle-transaction {
    border-color: #2ad288;
}

.transaction-content .transaction-list .transaction-item.open .transaction-summary .toggle-transaction:after {
    opacity: 0;
    visibility: hidden;
}

.transaction-content .transaction-list .transaction-item.open .transaction-summary .toggle-transaction svg {
    stroke: #2ad288;
    transform: rotate(90deg);
}

.dashboard-step-nav {
    float: left;
    width: 20%;
    padding: 70px 0;
    border-right: 1px solid #dfe6e8;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 991px) {
    .dashboard-step-nav {
        padding: 50px 0;
    }
}

@media only screen and (max-width: 768px) {
    .dashboard-step-nav {
        width: 100%;
        position: relative;
        padding: 0px 40px;
        border-top: 1px solid #dfe6e8;
        border-right: none;
    }
}

@media only screen and (max-width: 600px) {
    .dashboard-step-nav {
        padding: 0px 20px;
    }
}

@media only screen and (max-width: 400px) {
    .dashboard-step-nav {
        padding: 0px;
    }
}

.dashboard-step-nav li {
    position: relative;
    padding: 35px 30px 35px 10px;
    text-align: right;
    color: rgba(34, 54, 65, 0.5);
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .dashboard-step-nav li {
        display: inline-block;
        text-align: center;
        padding: 25px 10px;
        width: -moz-calc((100% - 20px) / 3);
        width: -webkit-calc((100% - 20px) / 3);
        width: calc((100% - 20px) / 3);
    }
}

@media only screen and (max-width: 600px) {
    .dashboard-step-nav li {
        font-size: 10px;
        padding: 25px 10px 20px 10px;
    }
}

@media only screen and (max-width: 480px) {
    .dashboard-step-nav li {
        padding: 25px 5px 10px 5px;
        font-size: 9px;
    }
}

.dashboard-step-nav li a {
    display: block;
    width: 100%;
    height: 100%;
}

.dashboard-step-nav li span {
    display: block;
    font-size: 13px;
}

@media only screen and (max-width: 600px) {
    .dashboard-step-nav li span {
        font-size: 11px;
    }
}

@media only screen and (max-width: 480px) {
    .dashboard-step-nav li span {
        font-size: 10px;
    }
}

.dashboard-step-nav li .step-counter {
    position: absolute;
    width: 28px;
    height: 28px;
    background: #dfe6e8;
    border-radius: 100%;
    text-align: center;
    padding: 1px;
    right: -14px;
    z-index: 1;
    top: -moz-calc((100% - 28px) / 2);
    top: -webkit-calc((100% - 28px) / 2);
    top: calc((100% - 28px) / 2);
}

@media only screen and (max-width: 768px) {
    .dashboard-step-nav li .step-counter {
        top: -14px;
        right: -moz-calc((100% - 28px) / 2);
        right: -webkit-calc((100% - 28px) / 2);
        right: calc((100% - 28px) / 2);
    }
}

.dashboard-step-nav li .step-counter span {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    width: 7px;
    text-align: center;
    top: -moz-calc((100% - 14px) / 2);
    top: -webkit-calc((100% - 14px) / 2);
    top: calc((100% - 14px) / 2);
    left: -moz-calc((100% - 7px) / 2);
    left: -webkit-calc((100% - 7px) / 2);
    left: calc((100% - 7px) / 2);
}

.dashboard-step-nav li .step-counter svg {
    position: absolute;
    stroke: #fff;
    opacity: 0;
    visibility: hidden;
    width: 13px;
    height: 11px;
    top: -moz-calc((100% - 11px) / 2);
    top: -webkit-calc((100% - 11px) / 2);
    top: calc((100% - 11px) / 2);
    left: -moz-calc((100% - 13px) / 2);
    left: -webkit-calc((100% - 13px) / 2);
    left: calc((100% - 13px) / 2);
}

.dashboard-step-nav li:after {
    position: absolute;
    display: block;
    content: "";
    width: 2px;
    background: #f5ab2b;
    height: 0;
    top: 50%;
    right: -1px;
}

@media only screen and (max-width: 768px) {
    .dashboard-step-nav li:after {
        top: -1px;
        right: unset;
        left: 50%;
        height: 2px;
    }
}

.dashboard-step-nav li:last-child:after {
    display: none;
}

.dashboard-step-nav li.active {
    color: #223641;
    font-weight: 600;
}

.dashboard-step-nav li.active .step-counter {
    padding: 5px;
    background: #fff;
    width: 35px;
    height: 35px;
    right: -17px;
    box-shadow: 0 3px 3px 0 rgba(42, 210, 137, 0.11), 0 10px 16px 0 rgba(42, 210, 137, 0.31);
    top: -moz-calc((100% - 35px) / 2);
    top: -webkit-calc((100% - 35px) / 2);
    top: calc((100% - 35px) / 2);
}

@media only screen and (max-width: 768px) {
    .dashboard-step-nav li.active .step-counter {
        top: -17px;
        right: -moz-calc((100% - 35px) / 2);
        right: -webkit-calc((100% - 35px) / 2);
        right: calc((100% - 35px) / 2);
    }
}

.dashboard-step-nav li.active .step-counter span {
    color: #f5ab2b;
}

.dashboard-step-nav li.complete .step-counter {
    background: #f5ab2b;
}

.dashboard-step-nav li.complete .step-counter span {
    opacity: 0;
    visibility: hidden;
}

.dashboard-step-nav li.complete .step-counter svg {
    opacity: 1;
    visibility: visible;
}

.dashboard-step-nav li.complete:after {
    height: 120%;
}

@media only screen and (max-width: 768px) {
    .dashboard-step-nav li.complete:after {
        height: 2px;
        width: 120%;
    }
}

.dashboard-step-holder {
    float: right;
    width: 80%;
    min-height: 400px;
    position: relative;
}

.dashboard-step-holder.empty-content {
    width: 100%;
    min-height: unset;
}

@media only screen and (max-width: 768px) {
    .dashboard-step-holder {
        width: 100%;
        min-height: unset;
    }
}

.dashboard-step-holder .dashboard-step-content {
    padding: 70px 90px;
    position: absolute;
    transform: translateY(-150%);
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

@media only screen and (max-width: 1199px) {
    .dashboard-step-holder .dashboard-step-content {
        padding: 70px 40px;
    }
}

@media only screen and (max-width: 768px) {
    .dashboard-step-holder .dashboard-step-content {
        padding: 20px 40px 40px;
    }
}

@media only screen and (max-width: 600px) {
    .dashboard-step-holder .dashboard-step-content {
        padding: 35px 20px;
    }
}

.dashboard-step-holder .dashboard-step-content.active {
    position: relative;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 0;
}

.dashboard-step-holder .dashboard-step-content.complete {
    transform: translateY(150%);
}

@media only screen and (max-width: 768px) {
    .dashboard-step-holder .dashboard-step-content.complete {
        transform: translateY(170%);
    }
}

@media only screen and (max-width: 768px) {
    .dashboard-step-holder .dashboard-step-content .dashboard-step-title {
        display: none;
    }
}

.dashboard-step-holder .dashboard-step-content .dashboard-step-title span {
    font-size: 15px;
    color: rgba(34, 54, 65, 0.5);
    display: block;
}

@media only screen and (max-width: 991px) {
    .dashboard-step-holder .dashboard-step-content .dashboard-step-title span {
        font-size: 13px;
    }
}

.dashboard-step-holder .dashboard-step-content .dashboard-step-title strong {
    font-size: 20px;
    color: #223641;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .dashboard-step-holder .dashboard-step-content .dashboard-step-title strong {
        font-size: 16px;
    }
}

.dashboard-step-top {
    position: relative;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .dashboard-step-top {
        padding-top: 30px;
    }
}

.investment-content .investment-step {
    overflow: hidden;
    background: #fff;
}

@media only screen and (max-width: 768px) {
    .investment-content .investment-step .container {
        padding: 0;
    }
}

.investment-content .investment-step .choose-balance p {
    margin-top: 30px;
    color: rgba(34, 54, 65, 0.5);
}

@media only screen and (max-width: 600px) {
    .investment-content .investment-step .choose-balance p {
        margin-top: 10px;
    }
}

.investment-content .investment-step .choose-balance .balance-payment {
    margin-top: 60px;
}

@media only screen and (max-width: 600px) {
    .investment-content .investment-step .choose-balance .balance-payment {
        margin-top: 30px;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .title-method {
    text-align: right;
    display: block;
    margin-bottom: 10px;
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .investment-content .investment-step .choose-balance .balance-payment .title-method {
        display: none;
    }
}

@media only screen and (max-width: 700px) {
    .investment-content .investment-step .choose-balance .balance-payment .title-method {
        display: none;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .title-method span {
    margin-right: 10px;
    font-size: 12px;
    color: rgba(34, 54, 65, 0.5);
    display: inline-block;
}

.investment-content .investment-step .choose-balance .balance-payment .radio-payment {
    display: none;
}

.investment-content .investment-step .choose-balance .balance-payment .radio-payment:checked + label {
    border-color: transparent;
    box-shadow: 0 21px 29px 0 rgba(152, 173, 185, 0.24), 0 2px 4px 0 rgba(152, 173, 185, 0.25);
}

.investment-content .investment-step .choose-balance .balance-payment .radio-payment:checked + label .payment-item {
    border: none;
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item {
    padding: 20px 10px;
    border-top: 1px solid #e8e9ea;
    display: block;
    cursor: pointer;
    width: 100%;
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item {
        padding: 0px 25px;
    }
}

@media only screen and (max-width: 768px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item {
        padding: 10px;
    }
}

@media only screen and (max-width: 700px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item {
        padding: 0px 25px;
    }
}

@media only screen and (max-width: 600px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item {
        padding: 0px 10px;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type {
        padding: 22px 0px;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type .payment-type {
    position: relative;
    padding-left: 42px;
    font-size: 15px;
    color: #616060;
    font-weight: 500;
    width: 150px;
}

@media only screen and (max-width: 1199px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type .payment-type {
        font-size: 13px;
    }
}

@media only screen and (max-width: 600px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type .payment-type {
        font-size: 12px;
        padding-left: 30px;
        width: 120px;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type .payment-type svg {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
    top: -moz-calc((100% - 30px) / 2);
    top: -webkit-calc((100% - 30px) / 2);
    top: calc((100% - 30px) / 2);
}

@media only screen and (max-width: 600px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type .payment-type svg {
        width: 25px;
        height: 25px;
        top: -moz-calc((100% - 25px) / 2);
        top: -webkit-calc((100% - 25px) / 2);
        top: calc((100% - 25px) / 2);
    }
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type .balance-amount {
    font-weight: 500;
    font-size: 16px;
    float: right;
}

@media only screen and (max-width: 1199px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type .balance-amount {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .amount-type .balance-amount {
        font-size: 13px;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: auto;
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item {
        width: 270px;
    }
}

@media only screen and (max-width: 700px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item {
        width: 270px;
    }
}

@media only screen and (max-width: 400px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item {
        width: 100%;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .method-pay {
    display: none;
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .method-pay:checked .from-method {
    color: #fff;
    background: #f5ab2b;
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .method-pay:checked + label {
    color: #fff;
    background: #f5ab2b;
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .method-pay:checked + label .rb-select {
    border-color: #fff;
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .method-pay:checked + label .rb-select:after {
    background: #fff;
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .from-method {
    width: 50%;
    float: left;
    padding: 10px 5px 10px 20px;
    cursor: pointer;
    background: #f5f9fa;
    line-height: 1;
    text-align: center;
    position: relative;
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .from-method span {
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 600px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .from-method {
        font-size: 10px;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .from-method .rb-select {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #223641;
    left: 10px;
    top: -moz-calc((100% - 12px) / 2);
    top: -webkit-calc((100% - 12px) / 2);
    top: calc((100% - 12px) / 2);
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item .from-method .rb-select:after {
    position: absolute;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: -moz-calc((100% - 8px) / 2);
    top: -webkit-calc((100% - 8px) / 2);
    top: calc((100% - 8px) / 2);
    left: -moz-calc((100% - 8px) / 2);
    left: -webkit-calc((100% - 8px) / 2);
    left: calc((100% - 8px) / 2);
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item.full {
    width: 50%;
    float: right;
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item.full {
        float: unset;
        width: 135px;
    }
}

@media only screen and (max-width: 700px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item.full {
        float: unset;
        width: 135px;
    }
}

@media only screen and (max-width: 400px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item.full {
        width: 50%;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .method-item.full .from-method {
    width: 100%;
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .holder-method {
    display: inline-block;
    width: 270px;
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item .holder-method strong {
    width: 100%;
    display: none;
    margin-bottom: 10px;
    text-align: center;
    font-size: 10px;
    color: rgba(34, 54, 65, 0.7);
    font-weight: 500;
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .holder-method strong {
        display: block;
    }
}

@media only screen and (max-width: 700px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .holder-method strong {
        display: block;
    }
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .holder-method {
        width: 100%;
        text-align: center;
        margin-top: 25px;
    }
}

@media only screen and (max-width: 700px) {
    .investment-content .investment-step .choose-balance .balance-payment .payment-item .holder-method {
        width: 100%;
        text-align: center;
        margin-top: 25px;
    }
}

.investment-content .investment-step .choose-balance .balance-payment .payment-item:first-of-type {
    border: none;
}

.investment-content .investment-step .choose-plan .choosed-balance {
    margin-top: 40px;
    padding-left: 155px;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .choosed-balance {
        padding: 30px 0 0 0;
    }
}

@media only screen and (max-width: 768px) {
    .investment-content .investment-step .choose-plan .choosed-balance {
        margin-top: 0;
    }
}

.investment-content .investment-step .choose-plan .choosed-balance:after {
    position: absolute;
    display: block;
    content: attr(data-val);
    font-size: 15px;
    left: 0;
    top: -moz-calc((100% - 21px) / 2);
    top: -webkit-calc((100% - 21px) / 2);
    top: calc((100% - 21px) / 2);
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .choosed-balance:after {
        font-size: 13px;
        top: 0;
        left: 0;
    }
}

.investment-content .investment-step .choose-plan .choosed-balance > div {
    padding: 20px 30px;
    background: #f5f9fa;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .choosed-balance > div {
        padding: 15px 20px;
    }
}

.investment-content .investment-step .choose-plan .choosed-balance > div .payment-type {
    position: relative;
    padding-left: 40px;
    font-size: 12px;
    font-weight: 500;
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .choosed-balance > div .payment-type {
        padding-left: 25px;
        font-size: 11px;
    }
}

.investment-content .investment-step .choose-plan .choosed-balance > div .payment-type svg {
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    top: -moz-calc((100% - 25px) / 2);
    top: -webkit-calc((100% - 25px) / 2);
    top: calc((100% - 25px) / 2);
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .choosed-balance > div .payment-type svg {
        width: 20px;
        height: 20px;
        top: -moz-calc((100% - 20px) / 2);
        top: -webkit-calc((100% - 20px) / 2);
        top: calc((100% - 20px) / 2);
    }
}

.investment-content .investment-step .choose-plan .choosed-balance > div .invest-method {
    font-size: 13px;
    margin-left: 10px;
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .choosed-balance > div .invest-method {
        font-size: 12px;
    }
}

@media only screen and (max-width: 400px) {
    .investment-content .investment-step .choose-plan .choosed-balance > div .invest-method {
        float: right;
    }
}

.investment-content .investment-step .choose-plan .choosed-balance > div .balance-amount {
    font-size: 15px;
    float: right;
    font-weight: 500;
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .choosed-balance > div .balance-amount {
        font-size: 13px;
    }
}

@media only screen and (max-width: 400px) {
    .investment-content .investment-step .choose-plan .choosed-balance > div .balance-amount {
        float: unset;
        display: block;
        width: 100%;
        margin-top: 5px;
        text-align: right;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap {
    margin-top: 35px;
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .plans-wrap {
        margin-top: 25px;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list {
    display: inline-block;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan {
    width: 40%;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan {
        width: 100%;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li {
    max-width: 146px;
    width: -moz-calc((100% / 2));
    width: -webkit-calc((100% / 2));
    width: calc((100% / 2));
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li {
        width: -moz-calc((100% / 3));
        width: -webkit-calc((100% / 3));
        width: calc((100% / 3));
    }
}

@media only screen and (max-width: 500px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li {
        width: -moz-calc((100% - 20px) / 2);
        width: -webkit-calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li .plan-type {
    background: #48748b;
    background: -moz-linear-gradient(-45deg, #4c4c4c 0%, #e4852f 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #48748b), color-stop(100%, #2f556a));
    background: -webkit-linear-gradient(-45deg, #4c4c4c 0%, #e4852f 100%);
    background: -o-linear-gradient(-45deg, #4c4c4c 0%, #e4852f 100%);
    background: -ms-linear-gradient(-45deg, #4c4c4c 0%, #e4852f 100%);
    background: linear-gradient(135deg, #4c4c4c 0%, #e4852f 100%);
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li .plan-type:after {
    color: #8eacbc;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li:first-child:before {
    display: none;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li label:before {
    -webkit-box-shadow: 0 9px 18px 0 rgba(98, 140, 163, 0.53);
    -moz-box-shadow: 0 9px 18px 0 rgba(98, 140, 163, 0.53);
    box-shadow: 0 9px 18px 0 rgba(98, 140, 163, 0.53);
    background: #48748b;
    background: -moz-linear-gradient(-45deg, #4c4c4c 0%, #e4852f 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #48748b), color-stop(100%, #2f556a));
    background: -webkit-linear-gradient(-45deg, #4c4c4c 0%, #e4852f 100%);
    background: -o-linear-gradient(-45deg, #4c4c4c 0%, #e4852f 100%);
    background: -ms-linear-gradient(-45deg, #4c4c4c 0%, #e4852f 100%);
    background: linear-gradient(135deg, #4c4c4c 0%, #e4852f 100%);
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li input[type="radio"]:checked + label .min-invest,
.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li input[type="radio"]:checked + label .max-invest {
    color: rgba(188, 215, 229, 0.8);
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li input[type="radio"]:checked + label .min-invest span,
.investment-content .investment-step .choose-plan .plans-wrap .plan-list.basic-plan li input[type="radio"]:checked + label .max-invest span {
    color: #bcd7e5;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan {
    width: 59%;
    position: relative;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan {
        width: 100%;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 400px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan {
        margin-top: 0;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan .become-vip {
    text-align: center;
    position: absolute;
    display: none;
    top: 40px;
    width: 100%;
    left: 0;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan .become-vip > div {
    font-weight: 500;
    text-align: center;
    padding: 15px 20px;
    color: #f5ab2b;
    font-size: 13px;
    background: #fff;
    box-shadow: 0 8px 38px 0 rgba(235, 135, 137, 0.23), 0 3px 7px 0 rgba(235, 135, 137, 0.15);
    position: relative;
    display: inline-block;
    margin: auto;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan .become-vip > div span {
    display: block;
    margin-bottom: 10px;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan .become-vip > div .btn {
    padding: 5px 35px;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li {
    max-width: 147px;
    width: -moz-calc((100% / 3));
    width: -webkit-calc((100% / 3));
    width: calc((100% / 3));
}

@media only screen and (max-width: 500px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li {
        width: -moz-calc((100% - 20px) / 2);
        width: -webkit-calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
    }
}

@media only screen and (min-width: 401px) and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li:first-child:before {
        display: none;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li .plan-type {
    background: #e5bd6f;
    background: -moz-linear-gradient(-45deg, #e5bd6f 0%, #ca8840 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #e5bd6f), color-stop(100%, #ca8840));
    background: -webkit-linear-gradient(-45deg, #e5bd6f 0%, #ca8840 100%);
    background: -o-linear-gradient(-45deg, #e5bd6f 0%, #ca8840 100%);
    background: -ms-linear-gradient(-45deg, #e5bd6f 0%, #ca8840 100%);
    background: linear-gradient(135deg, #e5bd6f 0%, #ca8840 100%);
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li .plan-type:after {
    color: #955e20;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li label:before {
    -webkit-box-shadow: 0 9px 18px 0 rgba(221, 175, 94, 0.53);
    -moz-box-shadow: 0 9px 18px 0 rgba(221, 175, 94, 0.53);
    box-shadow: 0 9px 18px 0 rgba(221, 175, 94, 0.53);
    background: #e5bd6f;
    background: -moz-linear-gradient(-45deg, #e5bd6f 0%, #ca8840 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #e5bd6f), color-stop(100%, #ca8840));
    background: -webkit-linear-gradient(-45deg, #e5bd6f 0%, #ca8840 100%);
    background: -o-linear-gradient(-45deg, #e5bd6f 0%, #ca8840 100%);
    background: -ms-linear-gradient(-45deg, #e5bd6f 0%, #ca8840 100%);
    background: linear-gradient(135deg, #e5bd6f 0%, #ca8840 100%);
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li input[type="radio"]:checked + label .min-invest,
.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li input[type="radio"]:checked + label .max-invest {
    color: rgba(249, 215, 149, 0.8);
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li input[type="radio"]:checked + label .min-invest span,
.investment-content .investment-step .choose-plan .plans-wrap .plan-list.vip-plan li input[type="radio"]:checked + label .max-invest span {
    color: #f9d795;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li {
    float: left;
    text-align: center;
    position: relative;
    min-height: 215px;
}

@media only screen and (max-width: 500px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li {
        min-height: unset;
        border: 1px solid rgba(98, 140, 163, 0.3);
        border-radius: 3px;
        margin: 3px;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li:before {
    position: absolute;
    display: block;
    width: 1px;
    height: 70%;
    background: #dfe6e8;
    content: "";
    left: 0;
    top: 22%;
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li:before {
        top: 15%;
    }
}

@media only screen and (max-width: 400px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li:before {
        display: none;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li .plan-type {
    color: #fff;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    padding: 5px;
    border-radius: 3px;
    display: block;
    z-index: 1;
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li .plan-type {
        font-size: 12px;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li .plan-type:after {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 12px;
    content: attr(data-val);
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li .profit-rate {
    font-size: 18px;
    margin-top: 10px;
    display: block;
    font-weight: 500;
    position: relative;
    z-index: 1;
    line-height: 1;
}

@media only screen and (max-width: 1199px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li .profit-rate {
        font-size: 17px;
    }
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li .profit-rate {
        font-size: 16px;
        margin-top: 6px;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li .min-invest,
.investment-content .investment-step .choose-plan .plans-wrap .plan-list li .max-invest {
    font-size: 10px;
    text-align: left;
    color: rgba(34, 54, 65, 0.5);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li .min-invest span,
.investment-content .investment-step .choose-plan .plans-wrap .plan-list li .max-invest span {
    float: right;
    color: #616060;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li .min-invest {
    margin-top: 20px;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li .max-invest {
    margin-top: 5px;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li label {
    position: relative;
    padding: 40px 20px 25px 20px;
    display: block;
    cursor: pointer;
}

@media only screen and (max-width: 1199px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li label {
        padding: 40px 10px 25px 10px;
    }
}

@media only screen and (max-width: 500px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li label {
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 400px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li label {
        padding: 25px 10px 20px 10px;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li label:after {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 2px;
    background: #fff url("../img/checkmark.svg") center no-repeat;
    background-size: 11px 13px;
    top: 25px;
    left: -moz-calc((100% - 18px) / 2);
    left: -webkit-calc((100% - 18px) / 2);
    left: calc((100% - 18px) / 2);
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li label:after {
        width: 14px;
        height: 14px;
        left: -moz-calc((100% - 14px) / 2);
        left: -webkit-calc((100% - 14px) / 2);
        left: calc((100% - 14px) / 2);
    }
}

@media only screen and (max-width: 400px) {
    .investment-content .investment-step .choose-plan .plans-wrap .plan-list li label:after {
        top: 15px;
    }
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li label:before {
    position: absolute;
    display: block;
    content: "";
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 3px;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li input[type="radio"] {
    display: none;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li input[type="radio"]:checked + label {
    color: #fff;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li input[type="radio"]:checked + label:before {
    opacity: 1;
    visibility: visible;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li input[type="radio"]:checked + label:after {
    opacity: 1;
    visibility: visible;
}

.investment-content .investment-step .choose-plan .plans-wrap .plan-list li input[type="radio"]:checked + label .plan-type {
    background: transparent;
}

.investment-content .investment-step .choose-plan .plans-wrap.basic .vip-plan li {
    pointer-events: none;
    opacity: 0.4;
}

.investment-content .investment-step .choose-plan .plans-wrap.basic .vip-plan li .plan-type {
    background: #bac5cb;
}

.investment-content .investment-step .choose-plan .plans-wrap.basic .vip-plan li .plan-type:after {
    color: #fff;
}

.investment-content .investment-step .choose-plan .plans-wrap.basic .vip-plan .become-vip {
    display: block;
}

.investment-content .investment-step .choose-plan .invest-amount-wrap {
    font-size: 15px;
    margin-top: 30px;
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs {
    display: inline-block;
    vertical-align: middle;
    width: 500px;
    margin-left: 20px;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs {
        display: block;
        margin-top: 20px;
        margin-left: 0;
        width: 100%;
    }
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder {
    width: 50%;
    float: left;
}

@media only screen and (max-width: 768px) {
    .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder {
        width: 60%;
    }
}

@media only screen and (max-width: 500px) {
    .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder {
        width: 100%;
    }
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder input {
    padding-right: 70px;
    background: transparent;
    border-color: #f5ab2b;
}

@media only screen and (max-width: 768px) {
    .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder input {
        padding-right: 55px;
    }
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder input + span {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder.usd:after {
    position: absolute;
    display: block;
    content: "USD";
    font-size: 16px;
    font-weight: 500;
    color: rgba(34, 54, 65, 0.5);
    right: 20px;
    top: 17px;
}

@media only screen and (max-width: 768px) {
    .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder.usd:after {
        font-size: 14px;
        top: 12px;
    }
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder.compound {
    width: 45%;
    float: right;
}

@media only screen and (max-width: 768px) {
    .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder.compound {
        width: 38%;
    }
}

@media only screen and (max-width: 500px) {
    .investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder.compound {
        width: 100%;
        margin-top: 15px;
    }
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder.compound select {
    background: transparent;
    border-color: #f5ab2b;
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder.compound select + span {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .input-holder.compound select svg {
    position: absolute;
    width: 12px;
    height: 11px;
    stroke: #616060;
    right: 30px;
    top: -moz-calc((100% - 11px) / 2);
    top: -webkit-calc((100% - 11px) / 2);
    top: calc((100% - 11px) / 2);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .invest-amount {
    top: 0;
    left: 0;
    position: relative;
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .invest-amount.full .input-holder {
    width: 100%;
    float: left;
}

.investment-content .investment-step .choose-plan .invest-amount-wrap .invest-amount-inputs .invest-amount.full .input-holder.compound {
    width: 0%;
    opacity: 0;
    visibility: hidden;
}

.investment-content .investment-step .choose-plan .calculate-result {
    margin-top: 70px;
    width: 100%;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .calculate-result {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .calculate-result {
        text-align: center;
        margin-top: 20px;
    }
}

.investment-content .investment-step .choose-plan .calculate-result li {
    display: inline-block;
    padding-left: 55px;
    font-size: 12px;
    color: #616060;
    font-weight: 500;
    position: relative;
    width: -moz-calc((100% - 20px) / 3);
    width: -webkit-calc((100% - 20px) / 3);
    width: calc((100% - 20px) / 3);
}

@media only screen and (max-width: 1199px) {
    .investment-content .investment-step .choose-plan .calculate-result li {
        padding-left: 45px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .calculate-result li {
        padding-left: 10px;
        padding-top: 30px;
        font-size: 11px;
    }
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .calculate-result li {
        font-size: 11px;
        width: 100%;
        padding: 5px 0 5px 35px;
        margin: auto;
        margin-bottom: 10px;
        text-align: left;
        display: block;
    }
}

.investment-content .investment-step .choose-plan .calculate-result li > div {
    display: block;
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .calculate-result li > div {
        float: right;
    }
}

.investment-content .investment-step .choose-plan .calculate-result li span {
    font-size: 18px;
    color: #223641;
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width: 1199px) {
    .investment-content .investment-step .choose-plan .calculate-result li span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .calculate-result li span {
        font-size: 14px;
    }
}

.investment-content .investment-step .choose-plan .calculate-result li b {
    font-size: 15px;
    color: rgba(34, 54, 65, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .calculate-result li b {
        font-size: 13px;
    }
}

.investment-content .investment-step .choose-plan .calculate-result li svg {
    position: absolute;
    width: 40px;
    height: 30px;
    left: 10px;
    top: 0;
    top: -moz-calc((100% - 30px) / 2);
    top: -webkit-calc((100% - 30px) / 2);
    top: calc((100% - 30px) / 2);
}

@media only screen and (max-width: 1199px) {
    .investment-content .investment-step .choose-plan .calculate-result li svg {
        width: 32px;
        height: 25px;
        top: -moz-calc((100% - 25px) / 2);
        top: -webkit-calc((100% - 25px) / 2);
        top: calc((100% - 25px) / 2);
    }
}

@media only screen and (min-width: 481px) and (max-width: 991px) {
    .investment-content .investment-step .choose-plan .calculate-result li svg {
        top: 0;
    }
}

@media only screen and (max-width: 480px) {
    .investment-content .investment-step .choose-plan .calculate-result li svg {
        left: 0;
    }
}

.investment-content .investment-step .confirm-invest p {
    margin-top: 30px;
}

@media only screen and (max-width: 600px) {
    .investment-content .investment-step .confirm-invest p {
        margin-top: 15px;
    }
}

.investment-content .investment-step .confirm-invest .summary-invest {
    padding: 20px 35px;
    border: 1px solid #dfe6e8;
    margin-top: 40px;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest .summary-invest {
        padding: 15px 25px;
    }
}

@media only screen and (max-width: 768px) {
    .investment-content .investment-step .confirm-invest .summary-invest {
        padding: 15px;
    }
}

@media only screen and (max-width: 550px) {
    .investment-content .investment-step .confirm-invest .summary-invest {
        text-align: center;
    }
}

.investment-content .investment-step .confirm-invest .summary-invest svg {
    width: 26px;
    height: 26px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest .summary-invest svg {
        margin-right: 10px;
    }
}

.investment-content .investment-step .confirm-invest .summary-invest .amount-invest {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: #616060;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest .summary-invest .amount-invest {
        font-size: 13px;
    }
}

@media only screen and (max-width: 550px) {
    .investment-content .investment-step .confirm-invest .summary-invest .amount-invest {
        display: block;
        font-size: 12px;
    }
}

.investment-content .investment-step .confirm-invest .summary-invest .amount-invest span {
    font-weight: 500;
    margin-left: 10px;
}

.investment-content .investment-step .confirm-invest .summary-invest .selected-plan {
    float: right;
    font-size: 15px;
    color: #616060;
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest .summary-invest .selected-plan {
        font-size: 13px;
        float: unset;
        display: block;
        margin-top: 5px;
        padding-left: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .investment-content .investment-step .confirm-invest .summary-invest .selected-plan {
        font-size: 13px;
    }
}

@media only screen and (max-width: 550px) {
    .investment-content .investment-step .confirm-invest .summary-invest .selected-plan {
        font-size: 12px;
        float: unset;
        display: block;
        margin-top: 5px;
    }
}

.investment-content .investment-step .confirm-invest .summary-invest .selected-plan span {
    font-size: 18px;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest .summary-invest .selected-plan span {
        font-size: 16px;
    }
}

@media only screen and (max-width: 550px) {
    .investment-content .investment-step .confirm-invest .summary-invest .selected-plan span {
        font-size: 14px;
    }
}

.investment-content .investment-step .confirm-invest-direct p {
    margin-top: 30px;
}

@media only screen and (max-width: 600px) {
    .investment-content .investment-step .confirm-invest-direct p {
        margin-top: 15px;
    }
}

.investment-content .investment-step .confirm-invest-direct .direct-invest {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
    position: relative;
    padding-bottom: 30px;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest-direct .direct-invest {
        margin-top: 30px;
        flex-direction: column;
    }
}

.investment-content .investment-step .confirm-invest-direct .direct-invest > div {
    font-size: 15px;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest-direct .direct-invest > div {
        font-size: 13px;
    }
}

.investment-content .investment-step .confirm-invest-direct .direct-invest > div.invest-direct-address {
    width: 70%;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest-direct .direct-invest > div.invest-direct-address {
        width: 100%;
    }
}

.investment-content .investment-step .confirm-invest-direct .direct-invest > div.invest-direct-address .input-holder {
    margin-top: 20px;
}

.investment-content .investment-step .confirm-invest-direct .direct-invest > div.invest-direct-address .input-holder input {
    background: #f7fafb;
    border-color: transparent;
    color: rgba(34, 54, 65, 0.5);
}

.investment-content .investment-step .confirm-invest-direct .direct-invest > div.invest-direct-address .amount-direct {
    font-size: 18px;
    color: #2ad288;
    margin: 0 5px;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest-direct .direct-invest > div.invest-direct-address .amount-direct {
        font-size: 16px;
    }
}

.investment-content .investment-step .confirm-invest-direct .direct-invest > div.qr-code {
    width: 29%;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest-direct .direct-invest > div.qr-code {
        width: 100%;
        margin-top: 15px;
    }
}

.investment-content .investment-step .confirm-invest-direct .direct-invest > div.qr-code span {
    display: block;
    font-size: 13px;
    margin-top: 10px;
}

.investment-content .investment-step .confirm-invest-direct .direct-invest .order-status {
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

@media only screen and (max-width: 991px) {
    .investment-content .investment-step .confirm-invest-direct .direct-invest .order-status {
        text-align: center;
    }
}

.withdraw-content .withdraw-step {
    overflow: hidden;
    background: #fff;
}

.withdraw-content .withdraw-step .balance-list {
    margin-top: 50px;
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .balance-list {
        margin-top: 30px;
    }
}

.withdraw-content .withdraw-step .balance-list label {
    cursor: pointer;
    border-top: 1px solid #e8e9ea;
    padding: 25px 5px 25px 40px;
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .balance-list label {
        padding: 30px 20px 15px 20px;
        margin-bottom: 15px;
        border: none;
        border-radius: 3px;
        border: 1px solid rgba(232, 233, 234, 0.5);
    }
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .balance-list label {
        padding: 20px 10px 10px;
    }
}

.withdraw-content .withdraw-step .balance-list label:before {
    position: absolute;
    display: block;
    content: "";
    width: 18px;
    height: 18px;
    background: #fff url("../img/checkmark-green.svg") center no-repeat;
    background-size: 13px 11px;
    left: 10px;
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    top: -moz-calc((100% - 18px) / 2);
    top: -webkit-calc((100% - 18px) / 2);
    top: calc((100% - 18px) / 2);
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .balance-list label:before {
        width: 25px;
        height: 25px;
        border-radius: 100%;
        top: -12px;
        left: -moz-calc((100% - 25px) / 2);
        left: -webkit-calc((100% - 25px) / 2);
        left: calc((100% - 25px) / 2);
    }
}

.withdraw-content .withdraw-step .balance-list label:first-of-type {
    border: none;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .balance-list label:first-of-type {
        border: 1px solid rgba(232, 233, 234, 0.5);
    }
}

.withdraw-content .withdraw-step .balance-list input[type="radio"] {
    display: none;
}

.withdraw-content .withdraw-step .balance-list input[type="radio"]:checked + label {
    box-shadow: 0 3px 3px 0 rgba(42, 210, 137, 0.11), 0 10px 16px 0 rgba(42, 210, 137, 0.21);
    background: #fff;
}

@media only screen and (min-width: 1200px) {
    .withdraw-content .withdraw-step .balance-list input[type="radio"]:checked + label {
        border-color: transparent;
    }
}

.withdraw-content .withdraw-step .balance-list input[type="radio"]:checked + label:before {
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .balance-list input[type="radio"]:checked + label:before {
        box-shadow: 0 3px 3px 0 rgba(42, 210, 137, 0.11), 0 10px 16px 0 rgba(42, 210, 137, 0.21);
    }
}

.withdraw-content .withdraw-step .balance-list input[type="radio"]:checked + label .account-address > div {
    background: #fff;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .balance-list input[type="radio"]:checked + label .account-address > div {
        background: #f5f9fa;
    }
}

.withdraw-content .withdraw-step .balance-list .payment-type {
    display: inline-block;
    vertical-align: middle;
    padding-left: 30px;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #616060;
    width: 160px;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .balance-list .payment-type {
        width: unset;
    }
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .balance-list .payment-type {
        font-size: 11px;
    }
}

.withdraw-content .withdraw-step .balance-list .payment-type svg {
    width: 27px;
    height: 27px;
    position: absolute;
    left: 0;
    top: -moz-calc((100% - 27px) / 2);
    top: -webkit-calc((100% - 27px) / 2);
    top: calc((100% - 27px) / 2);
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .balance-list .payment-type svg {
        width: 20px;
        height: 20px;
        top: -moz-calc((100% - 20px) / 2);
        top: -webkit-calc((100% - 20px) / 2);
        top: calc((100% - 20px) / 2);
    }
}

.withdraw-content .withdraw-step .balance-list .balance-amount {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .balance-list .balance-amount {
        float: right;
        width: unset;
    }
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .balance-list .balance-amount {
        font-size: 12px;
    }
}

.withdraw-content .withdraw-step .balance-list .account-address {
    display: inline-block;
    vertical-align: middle;
    width: 380px;
    text-align: right;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .balance-list .account-address {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 10px;
        border-top: 1px solid rgba(232, 233, 234, 0.5);
        padding-top: 15px;
    }
}

.withdraw-content .withdraw-step .balance-list .account-address > div {
    width: 270px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 5px 15px;
    background: #f5f9fa;
    margin-left: 10px;
    word-wrap: break-word;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .balance-list .account-address > div {
        width: 100%;
        display: block;
        word-wrap: break-word;
        margin-left: 0;
        margin-top: 3px;
    }
}

.withdraw-content .withdraw-step .balance-list .account-address > div a {
    display: none;
}

.withdraw-content .withdraw-step .balance-list .account-address > div a svg {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}

.withdraw-content .withdraw-step .balance-list .account-address > div.no-address a {
    display: block;
}

.withdraw-content .withdraw-step .choose-balance {
    padding: 70px;
}

@media only screen and (max-width: 991px) {
    .withdraw-content .withdraw-step .choose-balance {
        padding: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .withdraw-content .withdraw-step .choose-balance {
        padding: 35px 20px;
    }
}

.withdraw-content .withdraw-step .choose-balance p {
    margin-top: 20px;
    color: rgba(34, 54, 65, 0.5);
}

@media only screen and (max-width: 768px) {
    .withdraw-content .withdraw-step .choose-balance p {
        margin-top: 0px;
    }
}

.withdraw-content .withdraw-step .withdraw-amount {
    padding: 70px;
}

@media only screen and (max-width: 991px) {
    .withdraw-content .withdraw-step .withdraw-amount {
        padding: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .withdraw-content .withdraw-step .withdraw-amount {
        padding: 35px 20px;
    }
}

.withdraw-content .withdraw-step .withdraw-amount p {
    margin-top: 20px;
    color: rgba(34, 54, 65, 0.5);
}

.withdraw-content .withdraw-step .withdraw-amount .balance-list {
    border-color: transparent;
    background: #fff;
    box-shadow: 0 21px 29px 0 rgba(152, 173, 185, 0.24), 0 1px 3px 0 rgba(152, 173, 185, 0.2);
    margin-top: 20px;
}

.withdraw-content .withdraw-step .withdraw-amount .balance-list label {
    padding-left: 10px;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .withdraw-amount .balance-list label {
        padding: 15px 20px;
    }
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .withdraw-amount .balance-list label {
        padding: 15px 10px 10px;
    }
}

.withdraw-content .withdraw-step .withdraw-amount .balance-list:before {
    opacity: 1;
    visibility: visible;
}

.withdraw-content .withdraw-step .withdraw-amount .balance-list .account-address > div {
    background: #f5f9fa;
}

.withdraw-content .withdraw-step .withdraw-amount .amount-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

@media only screen and (max-width: 600px) {
    .withdraw-content .withdraw-step .withdraw-amount .amount-input {
        margin-top: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.withdraw-content .withdraw-step .withdraw-amount .amount-input .input-holder {
    width: 60%;
    margin-bottom: 0;
}

@media only screen and (max-width: 600px) {
    .withdraw-content .withdraw-step .withdraw-amount .amount-input .input-holder {
        width: 100%;
        margin-top: 15px;
    }
}

.withdraw-content .withdraw-step .withdraw-amount .amount-input .input-holder:after {
    position: absolute;
    display: block;
    content: "USD";
    font-size: 16px;
    font-weight: 500;
    color: rgba(34, 54, 65, 0.5);
    right: 20px;
    top: 17px;
}

@media only screen and (max-width: 768px) {
    .withdraw-content .withdraw-step .withdraw-amount .amount-input .input-holder:after {
        top: 12px;
        font-size: 13px;
    }
}

.withdraw-content .withdraw-step .withdraw-amount .amount-input .input-holder input {
    padding-right: 70px;
}

.withdraw-content .withdraw-step .confirm-withdraw {
    padding: 70px;
}

@media only screen and (max-width: 991px) {
    .withdraw-content .withdraw-step .confirm-withdraw {
        padding: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .withdraw-content .withdraw-step .confirm-withdraw {
        padding: 35px 25px;
    }
}

.withdraw-content .withdraw-step .confirm-withdraw p {
    margin-top: 30px;
}

@media only screen and (max-width: 600px) {
    .withdraw-content .withdraw-step .confirm-withdraw p {
        margin-top: 15px;
    }
}

.withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid #dfe6e8;
    margin-top: 40px;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 768px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw {
        margin-top: 30px;
        padding: 15px 10px;
    }
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw {
        align-items: center;
    }
}

.withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .amount-withdraw {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: #616060;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .amount-withdraw {
        font-size: 13px;
    }
}

.withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .amount-withdraw span {
    font-weight: 500;
    margin-left: 10px;
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .amount-withdraw span {
        display: block;
        margin: auto;
    }
}

.withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .amount-withdraw svg {
    width: 26px;
    height: 26px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .amount-withdraw svg {
        display: block;
        margin: auto;
    }
}

.withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .pay-address {
    font-size: 12px;
    color: #f5ab2b;
    word-wrap: break-word;
    text-align: center;
}

@media only screen and (max-width: 1199px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .pay-address {
        padding-left: 35px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 500px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .pay-address {
        padding-left: 0px;
        margin-top: 15px;
        max-width: 300px;
    }
}

@media only screen and (max-width: 400px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .pay-address {
        max-width: 200px;
    }
}

.withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .pay-address span {
    font-weight: 500;
    color: #616060;
    word-wrap: break-word;
}

@media only screen and (max-width: 450px) {
    .withdraw-content .withdraw-step .confirm-withdraw .summary-withdraw .pay-address span {
        display: block;
    }
}

.withdraw-content .withdraw-step .confirm-withdraw .tfa-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    font-size: 15px;
}

@media only screen and (max-width: 991px) {
    .withdraw-content .withdraw-step .confirm-withdraw .tfa-input {
        flex-direction: column;
        align-items: flex-start;
        font-size: 13px;
    }
}

@media only screen and (max-width: 768px) {
    .withdraw-content .withdraw-step .confirm-withdraw .tfa-input {
        margin-top: 30px;
    }
}

.withdraw-content .withdraw-step .confirm-withdraw .tfa-input .input-holder {
    width: 60%;
}

@media only screen and (max-width: 991px) {
    .withdraw-content .withdraw-step .confirm-withdraw .tfa-input .input-holder {
        width: 100%;
        margin-top: 15px;
    }
}

.error-content {
    background: #fefefe;
    padding: 90px;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .error-content {
        padding: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .error-content {
        padding: 30px 20px;
    }
}

.error-content p {
    margin: 30px auto auto;
    padding-left: 50px;
    position: relative;
    max-width: 550px;
    width: 100%;
    text-align: left;
    color: #f27949;
}

@media only screen and (max-width: 768px) {
    .error-content p {
        padding-left: 30px;
    }
}

.error-content p:after {
    position: absolute;
    width: 1px;
    height: 90%;
    background: #f27949;
    top: 5px;
    content: "";
    left: 30px;
}

@media only screen and (max-width: 768px) {
    .error-content p:after {
        left: 20px;
    }
}

.error-content p span {
    position: absolute;
    font-size: 30px;
    color: #f27949;
    left: 0;
    text-transform: uppercase;
    font-weight: 500;
    top: -moz-calc((100% - 30px) / 2);
    top: -webkit-calc((100% - 30px) / 2);
    top: calc((100% - 30px) / 2);
}

@media only screen and (max-width: 768px) {
    .error-content p span {
        font-size: 22px;
        top: -moz-calc((100% - 10px) / 2);
        top: -webkit-calc((100% - 10px) / 2);
        top: calc((100% - 10px) / 2);
    }
}

.error-content .btn {
    margin-top: 50px;
    width: 200px;
}

.error-content .btn svg {
    right: 80px;
}

.success-content {
    background: #fefefe;
    padding: 90px;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .success-content {
        padding: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .success-content {
        padding: 30px 20px;
    }
}

.success-content .success-icon {
    width: 66px;
    height: 66px;
}

@media only screen and (max-width: 991px) {
    .success-content .success-icon {
        width: 55px;
        height: 55px;
    }
}

@media only screen and (max-width: 768px) {
    .success-content .success-icon {
        width: 40px;
        height: 40px;
    }
}

.success-content strong {
    display: block;
    color: #f5ab2b;
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
}

@media only screen and (max-width: 991px) {
    .success-content strong {
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .success-content strong {
        font-size: 16px;
    }
}

.success-content p {
    color: #616060;
    margin: 30px auto auto;
    max-width: 400px;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    .success-content p {
        margin-top: 20px;
    }
}

.success-content .btn {
    margin-top: 50px;
    text-transform: initial;
    padding: 10px 25px;
    font-size: 16px;
}

@media only screen and (max-width: 991px) {
    .success-content .btn {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {
    .success-content .btn {
        font-size: 13px;
        margin-top: 20px;
        padding: 7px 25px;
    }
}

.edit-account .edit-account-content {
    background: #fff;
    margin-top: 30px;
    padding: 40px 90px;
}

@media only screen and (max-width: 991px) {
    .edit-account .edit-account-content {
        padding: 40px;
    }
}

@media only screen and (max-width: 500px) {
    .edit-account .edit-account-content {
        padding: 30px 20px;
    }
}

.edit-account .edit-account-content .group-title {
    font-size: 15px;
    font-weight: 500;
    color: #616060;
    margin-bottom: 30px;
    display: block;
}

@media only screen and (max-width: 600px) {
    .edit-account .edit-account-content .group-title {
        font-size: 13px;
        margin-bottom: 20px;
    }
}

.edit-account .edit-account-content .input-group {
    margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
    .edit-account .edit-account-content .input-group {
        margin-bottom: 30px;
    }
}

.edit-account .edit-account-content .input-group .input-row {
    margin-top: 15px;
}

@media only screen and (max-width: 600px) {
    .edit-account .edit-account-content .input-group .input-row {
        margin-top: 0px;
    }
}

.edit-account .edit-account-content .input-group .input-row .input-holder {
    width: 48%;
}

@media only screen and (max-width: 600px) {
    .edit-account .edit-account-content .input-group .input-row .input-holder {
        width: 100%;
        margin-bottom: 15px;
    }
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(1) {
    float: left;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(2) {
    float: right;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(3) {
    float: left;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(4) {
    float: right;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(5) {
    float: left;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(6) {
    float: right;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(7) {
    float: left;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(8) {
    float: right;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(9) {
    float: left;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(10) {
    float: right;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(11) {
    float: left;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(12) {
    float: right;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(13) {
    float: left;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(14) {
    float: right;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(15) {
    float: left;
}

.edit-account .edit-account-content .input-group .input-row .input-holder:nth-child(16) {
    float: right;
}

.edit-account .edit-account-content .input-group .input-row .input-holder.full {
    width: 100%;
}

.edit-account .edit-account-content .input-group.account-settings .input-holder svg {
    position: absolute;
    width: 22px;
    height: 22px;
    left: 35px;
    top: -moz-calc((100% - 22px) / 2);
    top: -webkit-calc((100% - 22px) / 2);
    top: calc((100% - 22px) / 2);
}

@media only screen and (max-width: 768px) {
    .edit-account .edit-account-content .input-group.account-settings .input-holder svg {
        left: 15px;
    }
}

.edit-account .edit-account-content .input-group.account-settings .input-holder input {
    padding-left: 70px;
}

@media only screen and (max-width: 768px) {
    .edit-account .edit-account-content .input-group.account-settings .input-holder input {
        padding-left: 45px;
    }
}

.edit-account .edit-account-content .btn {
    float: right;
    text-transform: initial;
    padding: 7px 35px;
    font-size: 16px;
}

@media only screen and (max-width: 768px) {
    .edit-account .edit-account-content .btn {
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px) {
    .edit-account .edit-account-content .btn {
        font-size: 13px;
        margin-top: 20px;
        width: 100%;
    }
}

.edit-account .profile-security {
    margin-top: 30px;
    padding: 65px 100px;
    background: #fefefe;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: #616060;
}

@media only screen and (max-width: 1199px) {
    .edit-account .profile-security {
        padding: 65px 40px;
    }
}

@media only screen and (max-width: 991px) {
    .edit-account .profile-security {
        padding: 65px 20px;
    }
}

@media only screen and (max-width: 768px) {
    .edit-account .profile-security {
        font-size: 14px;
    }
}

@media only screen and (max-width: 700px) {
    .edit-account .profile-security {
        flex-direction: column;
    }
}

@media only screen and (max-width: 500px) {
    .edit-account .profile-security {
        padding: 50px 20px;
    }
}

.edit-account .profile-security .input-holder {
    width: 50%;
    margin: 0 10px;
}

@media only screen and (max-width: 991px) {
    .edit-account .profile-security .input-holder {
        width: 40%;
    }
}

@media only screen and (max-width: 700px) {
    .edit-account .profile-security .input-holder {
        margin: 30px 0px;
        width: 100%;
    }
}

.edit-account .profile-security .input-holder input {
    background: transparent;
    border-color: #f5ab2b;
}

.edit-account .profile-security .input-holder input + span {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.edit-account .profile-security .btn {
    width: 200px;
}

@media only screen and (max-width: 991px) {
    .edit-account .profile-security .btn {
        width: 150px;
    }
}

@media only screen and (max-width: 500px) {
    .edit-account .profile-security .btn {
        width: 100%;
    }
}

.tfa-content .tfa-steps {
    padding: 60px 100px;
    background: #fff;
}

@media only screen and (max-width: 1199px) {
    .tfa-content .tfa-steps {
        padding: 40px 35px;
    }
}

@media only screen and (max-width: 600px) {
    .tfa-content .tfa-steps {
        padding: 30px 20px;
    }
}

.tfa-content .tfa-steps h4 {
    margin-bottom: 60px;
    font-weight: 500;
}

@media only screen and (max-width: 1199px) {
    .tfa-content .tfa-steps h4 {
        margin-bottom: 45px;
    }
}

@media only screen and (max-width: 600px) {
    .tfa-content .tfa-steps h4 {
        margin-bottom: 30px;
    }
}

.tfa-content .tfa-steps .tfa-step-item {
    position: relative;
    margin-bottom: 50px;
}

.tfa-content .tfa-steps .tfa-step-item .step-desc {
    display: inline-block;
    vertical-align: middle;
    width: 390px;
    position: relative;
    padding-left: 70px;
    font-size: 15px;
}

@media only screen and (max-width: 1199px) {
    .tfa-content .tfa-steps .tfa-step-item .step-desc {
        width: 320px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .tfa-content .tfa-steps .tfa-step-item .step-desc {
        width: 100%;
        font-size: 13px;
    }
}

.tfa-content .tfa-steps .tfa-step-item .step-desc span {
    position: absolute;
    color: rgba(34, 54, 65, 0.5);
    font-size: 13px;
    padding: 3px 20px 5px 0;
    border-right: 1px solid #e4eaeb;
    left: 0;
    top: -moz-calc((100% - 26px) / 2);
    top: -webkit-calc((100% - 26px) / 2);
    top: calc((100% - 26px) / 2);
}

.tfa-content .tfa-steps .tfa-step-item .step-action {
    display: inline-block;
    vertical-align: middle;
    width: -moz-calc((100% - 400px));
    width: -webkit-calc((100% - 400px));
    width: calc((100% - 400px));
}

@media only screen and (max-width: 1199px) {
    .tfa-content .tfa-steps .tfa-step-item .step-action {
        width: -moz-calc((100% - 350px));
        width: -webkit-calc((100% - 350px));
        width: calc((100% - 350px));
    }
}

@media only screen and (max-width: 991px) {
    .tfa-content .tfa-steps .tfa-step-item .step-action {
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }
}

.tfa-content .tfa-steps .tfa-step-item .step-action .download-app {
    display: inline-block;
    padding: 25px 45px 25px 55px;
    position: relative;
    background: #fff;
    color: rgba(34, 54, 65, 0.5);
    font-size: 15px;
    font-weight: 500;
    -webkit-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    -moz-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
}

@media only screen and (max-width: 1199px) {
    .tfa-content .tfa-steps .tfa-step-item .step-action .download-app {
        padding: 20px 30px 20px 55px;
    }
}

@media only screen and (max-width: 991px) {
    .tfa-content .tfa-steps .tfa-step-item .step-action .download-app {
        padding: 15px 20px 15px 45px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 480px) {
    .tfa-content .tfa-steps .tfa-step-item .step-action .download-app {
        display: block;
        width: 250px;
        margin: auto;
    }
}

.tfa-content .tfa-steps .tfa-step-item .step-action .download-app svg {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 20px;
    opacity: 0.7;
    top: -moz-calc((100% - 20px) / 2);
    top: -webkit-calc((100% - 20px) / 2);
    top: calc((100% - 20px) / 2);
}

@media only screen and (max-width: 991px) {
    .tfa-content .tfa-steps .tfa-step-item .step-action .download-app svg {
        width: 15px;
        height: 15px;
        top: -moz-calc((100% - 15px) / 2);
        top: -webkit-calc((100% - 15px) / 2);
        top: calc((100% - 15px) / 2);
    }
}

.tfa-content .tfa-steps .tfa-step-item .step-action .download-app:first-of-type {
    margin-right: 25px;
}

@media only screen and (max-width: 480px) {
    .tfa-content .tfa-steps .tfa-step-item .step-action .download-app:first-of-type {
        margin: 0 auto 15px auto;
    }
}

.tfa-content .tfa-steps .tfa-step-item .step-action .download-app:hover {
    color: #223641;
    -webkit-box-shadow: 0 5px 13px 0 rgba(152, 173, 185, 0.7);
    -moz-box-shadow: 0 5px 13px 0 rgba(152, 173, 185, 0.7);
    box-shadow: 0 5px 13px 0 rgba(152, 173, 185, 0.7);
}

.tfa-content .tfa-steps .tfa-step-item .step-action .download-app:hover svg {
    opacity: 1;
}

.tfa-content .tfa-steps .tfa-step-item .step-action .input-holder {
    margin: 0;
    width: 100%;
    display: inline-block;
}

.tfa-content .tfa-steps .tfa-step-item .step-action .input-holder input {
    background: transparent;
    border-color: #f5ab2b;
}

.tfa-content .tfa-steps .tfa-step-item .step-action .input-holder input + span {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.tfa-content .tfa-steps .tfa-step-item .step-action .input-holder.bycopy {
    width: 55%;
    float: left;
    margin-top: 30px;
}

@media only screen and (max-width: 650px) {
    .tfa-content .tfa-steps .tfa-step-item .step-action .input-holder.bycopy {
        width: 100%;
    }
}

.tfa-content .tfa-steps .tfa-step-item .step-action .input-holder.bycopy input {
    background: #f7fafb;
    border-color: transparent;
}

.tfa-content .tfa-steps .tfa-step-item .step-action .qr-scan {
    float: right;
    font-size: 13px;
    color: #616060;
    text-align: center;
    margin-left: 30px;
}

@media only screen and (max-width: 650px) {
    .tfa-content .tfa-steps .tfa-step-item .step-action .qr-scan {
        float: unset;
    }
}

.tfa-content .tfa-steps .tfa-step-item .step-action .qr-scan img {
    width: 90px;
    height: 90px;
    display: block;
    margin: auto auto 10px auto;
}

.tfa-content .tfa-steps .btn {
    float: right;
    text-transform: initial;
}

@media only screen and (max-width: 650px) {
    .tfa-content .tfa-steps .btn {
        float: unset;
        margin: auto;
        display: block;
    }
}

.tfa-content .security-setting {
    padding: 60px 100px 50px 100px;
    background: #fff;
}

@media only screen and (max-width: 991px) {
    .tfa-content .security-setting {
        padding: 40px;
    }
}

@media only screen and (max-width: 600px) {
    .tfa-content .security-setting {
        padding: 40px 20px;
    }
}

.tfa-content .security-setting .security-options {
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
    .tfa-content .security-setting .security-options {
        margin-top: 30px;
    }
}

.tfa-content .security-setting .security-options input[type="checkbox"] {
    display: none;
}

.tfa-content .security-setting .security-options input[type="checkbox"]:checked + label {
    color: #223641;
    -webkit-box-shadow: 0 5px 13px 0 rgba(192, 198, 201, 0.7);
    -moz-box-shadow: 0 5px 13px 0 rgba(192, 198, 201, 0.7);
    box-shadow: 0 5px 13px 0 rgba(192, 198, 201, 0.7);
}

.tfa-content .security-setting .security-options input[type="checkbox"]:checked + label:before {
    background-image: url("../img/checkmark-green.svg");
}

.tfa-content .security-setting .security-options input[type="checkbox"]:checked + label.lbl-disable:before {
    background-image: url("../img/error.svg");
}

.tfa-content .security-setting .security-options label {
    width: 22%;
    padding: 20px 10px 20px 45px;
    background: #fff;
    color: rgba(34, 54, 65, 0.5);
    font-size: 15px;
    text-align: left;
    cursor: pointer;
    position: relative;
    -webkit-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    -moz-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
}

@media only screen and (max-width: 1199px) {
    .tfa-content .security-setting .security-options label {
        font-size: 13px;
        width: 24%;
    }
}

@media only screen and (max-width: 991px) {
    .tfa-content .security-setting .security-options label {
        font-size: 11px;
        padding-left: 35px;
    }
}

@media only screen and (max-width: 700px) {
    .tfa-content .security-setting .security-options label {
        width: 49%;
        margin-top: 8px;
        padding: 15px 10px 15px 35px;
        font-size: 10px;
    }
}

@media only screen and (max-width: 400px) {
    .tfa-content .security-setting .security-options label {
        padding-left: 28px;
    }
}

.tfa-content .security-setting .security-options label:before {
    position: absolute;
    display: block;
    content: "";
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    left: 20px;
    border: 1px solid rgba(34, 54, 65, 0.1);
    border-radius: 2px;
    top: -moz-calc((100% - 15px) / 2);
    top: -webkit-calc((100% - 15px) / 2);
    top: calc((100% - 15px) / 2);
}

@media only screen and (max-width: 991px) {
    .tfa-content .security-setting .security-options label:before {
        left: 15px;
    }
}

@media only screen and (max-width: 400px) {
    .tfa-content .security-setting .security-options label:before {
        left: 8px;
    }
}

.tfa-content .security-setting .authentication-code {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    align-items: center;
}

@media only screen and (max-width: 991px) {
    .tfa-content .security-setting .authentication-code {
        font-size: 13px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 700px) {
    .tfa-content .security-setting .authentication-code {
        flex-direction: column;
    }
}

.tfa-content .security-setting .authentication-code .input-holder {
    width: 50%;
}

@media only screen and (max-width: 991px) {
    .tfa-content .security-setting .authentication-code .input-holder {
        width: 60%;
    }
}

@media only screen and (max-width: 700px) {
    .tfa-content .security-setting .authentication-code .input-holder {
        width: 100%;
        margin-top: 15px;
    }
}

.tfa-content .security-setting .btn {
    margin-top: 30px;
    float: right;
    text-transform: initial;
}

@media only screen and (max-width: 680px) {
    .tfa-content .security-setting .btn {
        float: unset;
        display: block;
        margin: 30px auto auto;
    }
}

@media only screen and (max-width: 400px) {
    .tfa-content .security-setting .btn {
        width: 100%;
    }
}

.deposit-content .dashboard-title {
    padding-left: 40px;
}

@media only screen and (max-width: 1199px) {
    .deposit-content .dashboard-title {
        padding-left: 35px;
    }
}

.deposit-content .dashboard-title svg {
    width: 21px;
    height: 18px;
    bottom: 5px;
}

@media only screen and (max-width: 1199px) {
    .deposit-content .dashboard-title svg {
        width: 19px;
        height: 16px;
        bottom: 4px;
    }
}

.deposit-content .deposit-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e4ecf0;
    padding-bottom: 30px;
}

@media only screen and (max-width: 991px) {
    .deposit-content .deposit-top {
        flex-direction: column-reverse;
        padding-bottom: 20px;
    }
}

.deposit-content .deposit-top .deposit-filter {
    font-size: 12px;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .deposit-content .deposit-top .deposit-filter {
        margin-top: 20px;
    }
}

.deposit-content .deposit-top .deposit-filter span {
    display: inline-block;
    margin-right: 20px;
}

@media only screen and (max-width: 400px) {
    .deposit-content .deposit-top .deposit-filter span {
        display: block;
        margin-bottom: 5px;
    }
}

.deposit-content .deposit-top .deposit-filter li {
    display: inline-block;
    margin-right: 10px;
    color: rgba(34, 54, 65, 0.7);
    cursor: pointer;
}

.deposit-content .deposit-top .deposit-filter li:hover, .deposit-content .deposit-top .deposit-filter li.active {
    color: #223641;
}

.deposit-content .deposit-top .deposit-statistic {
    background: #fff;
    padding: 20px 0;
    display: inline-block;
    -webkit-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    -moz-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
}

@media only screen and (max-width: 768px) {
    .deposit-content .deposit-top .deposit-statistic {
        padding: 15px 0;
    }
}

@media only screen and (max-width: 550px) {
    .deposit-content .deposit-top .deposit-statistic {
        width: 100%;
        text-align: center;
        padding: 0;
    }
}

.deposit-content .deposit-top .deposit-statistic > div {
    padding: 0 30px;
    font-size: 13px;
    font-weight: 500;
    color: #616060;
    display: inline-block;
}

@media only screen and (max-width: 768px) {
    .deposit-content .deposit-top .deposit-statistic > div {
        padding: 0 15px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 550px) {
    .deposit-content .deposit-top .deposit-statistic > div {
        display: block;
        padding: 10px 15px;
    }
}

.deposit-content .deposit-top .deposit-statistic > div span {
    margin-left: 20px;
    color: #223641;
    font-size: 15px;
}

@media only screen and (max-width: 768px) {
    .deposit-content .deposit-top .deposit-statistic > div span {
        font-size: 13px;
    }
}

.deposit-content .deposit-list {
    background: #fff;
    padding: 70px 0px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
    .deposit-content .deposit-list {
        padding: 40px 0px;
    }
}

@media only screen and (max-width: 620px) {
    .deposit-content .deposit-list {
        justify-content: center;
    }
}

.deposit-content .deposit-list .deposit-item {
    position: relative;
    height: 220px;
    margin-bottom: 8px;
    border-radius: 3px;
    margin-right: 8px;
    overflow: hidden;
    width: -moz-calc((100% - 25px) / 3);
    width: -webkit-calc((100% - 25px) / 3);
    width: calc((100% - 25px) / 3);
}

@media only screen and (max-width: 991px) {
    .deposit-content .deposit-list .deposit-item {
        width: -moz-calc((100% - 25px) / 2);
        width: -webkit-calc((100% - 25px) / 2);
        width: calc((100% - 25px) / 2);
    }
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item {
        height: 180px;
    }
}

@media only screen and (max-width: 620px) {
    .deposit-content .deposit-list .deposit-item {
        width: 335px;
        height: 160px;
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media only screen and (max-width: 400px) {
    .deposit-content .deposit-list .deposit-item {
        width: 100%;
    }
}

.deposit-content .deposit-list .deposit-item .amount-deposit {
    font-size: 14px;
    position: absolute;
    top: 50px;
    left: 30px;
    z-index: 1;
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item .amount-deposit {
        font-size: 12px;
        top: 40px;
        left: 20px;
    }
}

.deposit-content .deposit-list .deposit-item .amount-deposit span {
    font-size: 22px;
    font-weight: 500;
    display: block;
    line-height: 1;
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item .amount-deposit span {
        font-size: 18px;
    }
}

.deposit-content .deposit-list .deposit-item .amount-deposit span b {
    font-size: 14px;
    margin-left: 5px;
    font-weight: 500;
}

.deposit-content .deposit-list .deposit-item .plan-type {
    position: absolute;
    font-size: 12px;
    z-index: 1;
}

.deposit-content .deposit-list .deposit-item .date-payment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 25px;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
    .deposit-content .deposit-list .deposit-item .date-payment {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item .date-payment {
        padding: 0 15px;
    }
}

.deposit-content .deposit-list .deposit-item .date-payment .payment-type {
    padding: 7px 20px 7px 45px;
    border-radius: 20px;
    position: relative;
}

@media only screen and (max-width: 1199px) {
    .deposit-content .deposit-list .deposit-item .date-payment .payment-type {
        padding: 7px 15px 7px 40px;
    }
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item .date-payment .payment-type {
        padding: 5px 10px 5px 30px;
        font-size: 12px;
    }
}

.deposit-content .deposit-list .deposit-item .date-payment .payment-type svg {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: -moz-calc((100% - 20px) / 2);
    top: -webkit-calc((100% - 20px) / 2);
    top: calc((100% - 20px) / 2);
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item .date-payment .payment-type svg {
        left: 5px;
    }
}

.deposit-content .deposit-list .deposit-item .date-payment .date-deposit {
    font-size: 10px;
}

.deposit-content .deposit-list .deposit-item .date-payment .date-deposit b {
    font-weight: 400;
    opacity: 0.7;
}

.deposit-content .deposit-list .deposit-item:after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.deposit-content .deposit-list .deposit-item .remaining-days {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item .remaining-days {
        padding: 9px 12px;
    }
}

@media only screen and (max-width: 620px) {
    .deposit-content .deposit-list .deposit-item .remaining-days {
        padding: 5px 12px;
    }
}

.deposit-content .deposit-list .deposit-item .remaining-days .remain {
    font-size: 11px;
    color: #fff;
}

.deposit-content .deposit-list .deposit-item .remaining-days .remain span {
    font-weight: 500;
    margin-left: 5px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item .remaining-days .remain span {
        margin-left: 5px;
        font-size: 13px;
    }
}

.deposit-content .deposit-list .deposit-item.basic {
    background: rgba(233, 243, 250, 0.9);
    background: -moz-linear-gradient(top, rgba(233, 243, 250, 0.9) 0%, rgba(223, 228, 236, 0.9) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(233, 243, 250, 0.9)), color-stop(100%, rgba(223, 228, 236, 0.9)));
    background: -webkit-linear-gradient(top, rgba(233, 243, 250, 0.9) 0%, rgba(223, 228, 236, 0.9) 100%);
    background: -o-linear-gradient(top, rgba(233, 243, 250, 0.9) 0%, rgba(223, 228, 236, 0.9) 100%);
    background: -ms-linear-gradient(top, rgba(233, 243, 250, 0.9) 0%, rgba(223, 228, 236, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(233, 243, 250, 0.9) 0%, rgba(223, 228, 236, 0.9) 100%);
}

.deposit-content .deposit-list .deposit-item.basic:after {
    background: url("../img/basic-line.html") 32% 96%/175% no-repeat;
}

@media only screen and (max-width: 620px) {
    .deposit-content .deposit-list .deposit-item.basic:after {
        background-position-y: 60px;
    }
}

.deposit-content .deposit-list .deposit-item.basic .amount-deposit {
    color: #fff;
    top: 20px;
}

.deposit-content .deposit-list .deposit-item.basic .amount-deposit span {
    color: #f5ab2b;
}

.deposit-content .deposit-list .deposit-item.basic .amount-deposit span b {
    color: #fff;
}

.deposit-content .deposit-list .deposit-item.basic .plan-type {
    right: 35px;
    top: 25px;
    color: #fff;
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item.basic .plan-type {
        right: 20px;
        top: 15px;
    }
}

.deposit-content .deposit-list .deposit-item.basic .date-payment {
    bottom: 70px;
    color: #426578;
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item.basic .date-payment {
        bottom: 60px;
    }
}

@media only screen and (max-width: 620px) {
    .deposit-content .deposit-list .deposit-item.basic .date-payment {
        bottom: 43px;
    }
}

.deposit-content .deposit-list .deposit-item.basic .date-payment .payment-type {
    background: #fff;
}

.deposit-content .deposit-list .deposit-item.basic .date-payment .date-deposit {
    color: #fff;
}

.deposit-content .deposit-list .deposit-item.basic .remaining-days {
    background: #80bdde;
    background: -moz-linear-gradient(left, #80bdde 0%, #5fa4ca 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #80bdde), color-stop(100%, #5fa4ca));
    background: -webkit-linear-gradient(left, #80bdde 0%, #5fa4ca 100%);
    background: -o-linear-gradient(left, #80bdde 0%, #5fa4ca 100%);
    background: -webkit-gradient(linear, left top, right top, from(#80bdde), to(#5fa4ca));
    background: linear-gradient(to right, #80bdde 0%, #5fa4ca 100%);
}

.deposit-content .deposit-list .deposit-item.vip {
    background: rgba(243, 241, 239, 0.5);
    background: -moz-linear-gradient(top, rgba(243, 241, 239, 0.5) 0%, #e9e5df 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(243, 241, 239, 0.5)), color-stop(100%, #e9e5df));
    background: -webkit-linear-gradient(top, rgba(243, 241, 239, 0.5) 0%, #e9e5df 100%);
    background: -o-linear-gradient(top, rgba(243, 241, 239, 0.5) 0%, #e9e5df 100%);
    background: -ms-linear-gradient(top, rgba(243, 241, 239, 0.5) 0%, #e9e5df 100%);
    background: linear-gradient(to bottom, rgba(243, 241, 239, 0.5) 0%, #e9e5df 100%);
}

.deposit-content .deposit-list .deposit-item.vip:after {
    background: url("../img/vip-line.html") 38% 19%/136% no-repeat;
}

.deposit-content .deposit-list .deposit-item.vip .amount-deposit {
    color: #dbb588;
}

.deposit-content .deposit-list .deposit-item.vip .amount-deposit span {
    color: #a57650;
}

.deposit-content .deposit-list .deposit-item.vip .amount-deposit span b {
    color: #dbb588;
}

.deposit-content .deposit-list .deposit-item.vip .plan-type {
    left: 30px;
    top: 20px;
    color: #dbb588;
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item.vip .plan-type {
        top: 15px;
        left: 20px;
    }
}

.deposit-content .deposit-list .deposit-item.vip .date-payment {
    bottom: 70px;
    color: #a77f5f;
}

@media only screen and (max-width: 700px) {
    .deposit-content .deposit-list .deposit-item.vip .date-payment {
        bottom: 60px;
    }
}

@media only screen and (max-width: 620px) {
    .deposit-content .deposit-list .deposit-item.vip .date-payment {
        bottom: 43px;
    }
}

.deposit-content .deposit-list .deposit-item.vip .date-payment .payment-type {
    background: #fff;
}

.deposit-content .deposit-list .deposit-item.vip .date-payment .date-deposit {
    color: rgba(167, 127, 95, 0.7);
}

.deposit-content .deposit-list .deposit-item.vip .vip-icon {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    stroke: rgba(165, 118, 80, 0.5);
    position: absolute;
    width: 25px;
    height: 25px;
    top: -1px;
    right: 30px;
}

.deposit-content .deposit-list .deposit-item.vip .vip-stick {
    padding: 2px 10px;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    border-radius: 3px;
    position: absolute;
    top: 35px;
    right: 25px;
    z-index: 2;
    background: #d9bd99;
    background: -moz-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #d9bd99), color-stop(100%, #ba8950));
    background: -webkit-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -o-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -webkit-gradient(linear, left top, right top, from(#d9bd99), to(#ba8950));
    background: linear-gradient(to right, #d9bd99 0%, #ba8950 100%);
}

.deposit-content .deposit-list .deposit-item.vip .remaining-days {
    background: #d9bd99;
    background: -moz-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #d9bd99), color-stop(100%, #ba8950));
    background: -webkit-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -o-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -webkit-gradient(linear, left top, right top, from(#d9bd99), to(#ba8950));
    background: linear-gradient(to right, #d9bd99 0%, #ba8950 100%);
}

.banners-content .dashboard-title {
    padding-left: 0;
}

.banners-content .banner-list {
    margin-top: 60px;
    position: relative;
}

@media only screen and (max-width: 1400px) {
    .banners-content .banner-list {
        padding-left: 110px;
    }
}

@media only screen and (max-width: 991px) {
    .banners-content .banner-list {
        padding-left: 0;
    }
}

.banners-content .banners-menu {
    position: absolute;
    width: 100px;
    background: #fff;
    top: 0px;
    z-index: 1;
    left: 150px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(152, 173, 185, 0.25);
    -moz-box-shadow: 0 2px 4px 0 rgba(152, 173, 185, 0.25);
    box-shadow: 0 2px 4px 0 rgba(152, 173, 185, 0.25);
}

.banners-content .banners-menu.fixed {
    position: fixed;
    top: 30px;
}

@media only screen and (max-width: 1700px) {
    .banners-content .banners-menu {
        left: 50px;
    }
}

@media only screen and (max-width: 1500px) {
    .banners-content .banners-menu {
        left: 0px;
    }
}

@media only screen and (max-width: 1199px) {
    .banners-content .banners-menu {
        width: 70px;
    }
}

@media only screen and (max-width: 875px) {
    .banners-content .banners-menu {
        display: none;
    }
}

.banners-content .banners-menu li {
    border-top: 1px solid #e4eaec;
    cursor: pointer;
}

.banners-content .banners-menu li a {
    font-size: 15px;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
    color: rgba(34, 54, 65, 0.5);
    padding: 20px 5px;
}

@media only screen and (max-width: 1199px) {
    .banners-content .banners-menu li a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .banners-content .banners-menu li a {
        font-size: 12px;
    }
}

.banners-content .banners-menu li a b {
    font-weight: 500;
}

.banners-content .banners-menu li:first-child {
    border: none;
}

.banners-content .banners-menu li:hover {
    border-color: transparent;
    -webkit-box-shadow: 0 5px 13px 0 rgba(192, 198, 201, 0.7);
    -moz-box-shadow: 0 5px 13px 0 rgba(192, 198, 201, 0.7);
    box-shadow: 0 5px 13px 0 rgba(192, 198, 201, 0.7);
}

.banners-content .banners-menu li:hover a {
    color: #223641;
}

.banners-content .banner-items {
    overflow: auto;
}

.banners-content .banner-items .banner-holder {
    margin-bottom: 50px;
}

.banners-content .banner-items .banner-holder .banner-size {
    font-size: 18px;
    color: #616060;
    font-weight: 500;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    .banners-content .banner-items .banner-holder .banner-size {
        font-size: 16px;
    }
}

.banners-content .banner-items .banner-holder .banner-size span {
    font-size: 16px;
    font-weight: 500;
    color: #223641;
    margin-left: 15px;
}

@media only screen and (max-width: 600px) {
    .banners-content .banner-items .banner-holder .banner-size span {
        font-size: 14px;
        margin-left: 5px;
    }
}

.banners-content .banner-items .banner-holder .input-holder {
    width: 80%;
    margin: 20px 0 0;
}

@media only screen and (max-width: 600px) {
    .banners-content .banner-items .banner-holder .input-holder {
        width: 100%;
    }
}

.banners-content .banner-items .banner-holder .input-holder textarea {
    border: none;
    resize: none;
    background: #fff;
    overflow: hidden;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: rgba(34, 54, 65, 0.5);
    padding-top: 20px;
    padding-right: 80px;
    min-height: 40px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    -moz-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
    box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
}

@media only screen and (max-width: 600px) {
    .banners-content .banner-items .banner-holder .input-holder textarea {
        min-height: 80px;
    }
}

.banners-content .banner-items .banner-holder .banner-img {
    overflow-x: auto;
}

.hidden-menu {
    text-align: center;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: auto;
    background-color: #fff;
    z-index: 7;
    top: 0;
    left: 0px;
    bottom: 0;
    right: 0;
    padding: 40px;
    transform: translateX(-500px);
}

.hidden-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0px);
}

.hidden-menu .hidden-menu-close {
    float: right;
    width: 30px;
    height: 30px;
}

.hidden-menu .hidden-menu-close svg {
    width: 15px;
    height: 15px;
    stroke: #f5ab2b;
}

.hidden-menu .menuList {
    margin-top: 20px;
}

.hidden-menu .menuList li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.hidden-menu .menuList li a {
    display: block;
    padding: 15px 0;
}

.hidden-menu .menuList li:last-child {
    border: none;
}

.hidden-menu .menuList li:hover {
    color: #f5ab2b;
}

.modal-content {
    background: #fefefe;
    width: 90%;
    margin: 10% auto;
    max-width: 945px;
    text-align: center;
    box-shadow: 0 2px 4px 0 rgba(48, 48, 47, 0.4), 0 2px 10px 0 rgba(48, 48, 47, 0.4);
    border-radius: 5px;
    position: relative;
}

@media only screen and (max-width: 500px) {
    .modal-content {
        margin-top: 20%;
    }
}

.modal-content .modal-close {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 15px;
    right: 15px;
    z-index: 3;
    background: url("../img/close.svg") center no-repeat;
}

.modal-content.vip-subscription .vip-subscription-top {
    padding: 60px 100px 30px 100px;
}

@media only screen and (max-width: 991px) {
    .modal-content.vip-subscription .vip-subscription-top {
        padding: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .modal-content.vip-subscription .vip-subscription-top {
        padding: 30px 15px;
    }
}

.modal-content.vip-subscription .vip-svg {
    width: 54px;
    height: 39px;
    fill: #a87c39;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.modal-content.vip-subscription h2 {
    margin-top: 5px;
    color: #523d1c;
    line-height: 1;
}

.modal-content.vip-subscription p {
    margin-top: 15px;
}

.modal-content.vip-subscription .vip-wrap {
    display: flex;
    margin-top: 40px;
}

@media only screen and (max-width: 650px) {
    .modal-content.vip-subscription .vip-wrap {
        flex-direction: column;
        margin-top: 15px;
    }
}

.modal-content.vip-subscription .vip-wrap .vip-detail {
    padding-left: 100px;
    width: 50%;
    text-align: left;
}

@media only screen and (max-width: 1199px) {
    .modal-content.vip-subscription .vip-wrap .vip-detail {
        padding-left: 70px;
    }
}

@media only screen and (max-width: 991px) {
    .modal-content.vip-subscription .vip-wrap .vip-detail {
        padding-left: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .modal-content.vip-subscription .vip-wrap .vip-detail {
        padding-left: 15px;
    }
}

@media only screen and (max-width: 650px) {
    .modal-content.vip-subscription .vip-wrap .vip-detail {
        width: 100%;
        padding-left: 0;
    }
}

.modal-content.vip-subscription .vip-wrap .vip-detail > div {
    padding: 10px;
    position: relative;
}

.modal-content.vip-subscription .vip-wrap .vip-detail > div svg {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    fill: #405c6b;
}

.modal-content.vip-subscription .vip-wrap .vip-detail > div span {
    font-size: 15px;
    color: rgba(34, 54, 65, 0.9);
    margin-left: 10px;
}

@media only screen and (max-width: 991px) {
    .modal-content.vip-subscription .vip-wrap .vip-detail > div span {
        font-size: 13px;
    }
}

.modal-content.vip-subscription .vip-wrap .vip-detail > div b {
    font-weight: 500;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #b0c1ca;
}

.modal-content.vip-subscription .vip-wrap .vip-detail > div:first-child svg {
    stroke: #405c6b;
}

.modal-content.vip-subscription .vip-price {
    display: inline-block;
    vertical-align: middle;
    color: #223641;
    padding: 10px 45px;
    margin-top: 20px;
    box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.3);
}

@media only screen and (max-width: 650px) {
    .modal-content.vip-subscription .vip-price {
        margin-top: 10px;
    }
}

.modal-content.vip-subscription .vip-price span {
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-width: 991px) {
    .modal-content.vip-subscription .vip-price span {
        font-size: 13px;
    }
}

.modal-content.vip-subscription .vip-price b {
    font-size: 20px;
    margin-left: 15px;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .modal-content.vip-subscription .vip-price b {
        font-size: 16px;
    }
}

.modal-content.vip-subscription .vip-price svg {
    width: 18px;
    height: 24px;
    fill: #f5ab2b;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.modal-content.vip-subscription .subscribe-action {
    text-align: center;
    padding: 35px;
    background: #7b95d2;
    background: -moz-linear-gradient(left, #7b95d2 0%, #6a82c4 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #7b95d2), color-stop(100%, #6a82c4));
    background: -webkit-linear-gradient(left, #7b95d2 0%, #6a82c4 100%);
    background: -o-linear-gradient(left, #7b95d2 0%, #6a82c4 100%);
    background: -webkit-gradient(linear, left top, right top, from(#7b95d2), to(#6a82c4));
    background: linear-gradient(to right, #7b95d2 0%, #6a82c4 100%);
}

@media only screen and (max-width: 991px) {
    .modal-content.vip-subscription .subscribe-action {
        padding: 25px;
    }
}

@media only screen and (max-width: 650px) {
    .modal-content.vip-subscription .subscribe-action {
        padding: 15px 15px 25px 15px;
    }
}

.modal-content.vip-subscription .subscribe-action .payment-list {
    color: #fff;
    margin: 0px auto 30px auto;
    font-size: 15px;
    font-weight: 500;
}

@media only screen and (max-width: 991px) {
    .modal-content.vip-subscription .subscribe-action .payment-list {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

.modal-content.vip-subscription .subscribe-action .payment-list ul {
    margin-top: 10px;
}

@media only screen and (max-width: 480px) {
    .modal-content.vip-subscription .subscribe-action .payment-list ul {
        width: 165px;
        margin: 10px auto auto;
    }
}

.modal-content.vip-subscription .subscribe-action .payment-list ul li {
    display: inline-block;
    font-weight: 400;
}

@media only screen and (max-width: 480px) {
    .modal-content.vip-subscription .subscribe-action .payment-list ul li {
        display: block;
        text-align: left;
        margin-bottom: 5px;
    }
}

.modal-content.vip-subscription .subscribe-action .payment-list label {
    font-size: 13px;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    position: relative;
    cursor: pointer;
}

@media only screen and (max-width: 480px) {
    .modal-content.vip-subscription .subscribe-action .payment-list label {
        width: 100%;
    }
}

.modal-content.vip-subscription .subscribe-action .payment-list label svg {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.5;
    position: relative;
    z-index: 1;
    mix-blend-mode: screen;
    filter: grayscale(100%) contrast(200%);
}

.modal-content.vip-subscription .subscribe-action .payment-list label:after {
    position: absolute;
    display: block;
    content: "";
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    top: 0px;
    left: 0%;
    z-index: 0;
}

.modal-content.vip-subscription .subscribe-action .payment-list input[type="radio"] {
    display: none;
}

.modal-content.vip-subscription .subscribe-action .payment-list input[type="radio"]:checked + label {
    color: #fff;
}

.modal-content.vip-subscription .subscribe-action .payment-list input[type="radio"]:checked + label:after {
    width: 100%;
}

.modal-content.vip-subscription .subscribe-action .payment-list input[type="radio"]:checked + label svg {
    opacity: 1;
    filter: none;
    mix-blend-mode: unset;
}

.modal-content.vip-subscription .subscribe-action .btn {
    vertical-align: middle;
    display: inline-block;
}

.modal-content.vip-subscription .subscribe-action .error-msg {
    margin: 20px auto auto auto;
    width: 220px;
}

.modal-content.compound {
    max-width: 450px;
}

.modal-content.video {
    background: transparent;
    box-shadow: none;
    padding-bottom: 30.25%;
    height: 0;
    max-width: 70%;
    height: auto;
}

@media only screen and (max-width: 500px) {
    .modal-content.video {
        max-width: 100%;
        padding-bottom: 47.25%;
    }
}

.modal-content.video iframe,
.modal-content.video object,
.modal-content.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-content.video .modal-close {
    top: -20px;
    right: 5px;
}

.compound-content {
    padding: 70px 30px 50px 30px;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    .compound-content {
        padding: 40px 20px;
    }
}

.compound-content h4 svg {
    width: 23px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

@media only screen and (max-width: 500px) {
    .compound-content h4 svg {
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }
}

.compound-content .input-holder {
    margin-top: 60px;
}

@media only screen and (max-width: 500px) {
    .compound-content .input-holder {
        margin-top: 40px;
    }
}

.compound-content .input-holder select {
    background: transparent;
    border-color: #f5ab2b;
}

.compound-content .btn {
    margin-top: 60px;
}

@media only screen and (max-width: 500px) {
    .compound-content .btn {
        margin-top: 30px;
    }
}

.modal-holder {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 6;
    display: none;
}

.modal-bg {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
}

.modal-bg.active {
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-width: 400px) {
    .deposit-process,
    .deposit-cancel {
        display: block;
        width: 100%;
        margin: 10px 0 0 0;
    }
}

.error-box {
    background: #f5ab2b;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    padding: 10px 25px;
    border-radius: 3px;
    margin: 15px 0;
    text-align: left;
    position: relative;
    padding-left: 40px;
}

.error-box svg {
    fill: #fff;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 10px;
    top: -moz-calc((100% - 15px) / 2);
    top: -webkit-calc((100% - 15px) / 2);
    top: calc((100% - 15px) / 2);
}

.success-box {
    background: #2ad288;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    margin: 5px 0 25px 0;
}

@media only screen and (max-width: 1199px) {
    .success-box {
        font-size: 12px;
    }
}

.success-box svg {
    stroke: #fff;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    width: 17px;
    height: 14px;
}

@media only screen and (max-width: 1199px) {
    .success-box svg {
        margin-right: 5px;
    }
}

.referral-content .referral-top {
    position: relative;
    margin-bottom: 20px;
}

.referral-content .referral-top .referral-link {
    padding: 35px 30px;
    float: left;
    width: 57%;
    background: #f1e6dd;
    border-radius: 3px 0 0 3px;
    min-height: 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1199px) {
    .referral-content .referral-top .referral-link {
        padding: 20px 15px;
    }
}

@media only screen and (max-width: 991px) {
    .referral-content .referral-top .referral-link {
        min-height: 230px;
    }
}

@media only screen and (max-width: 750px) {
    .referral-content .referral-top .referral-link {
        width: 100%;
        float: none;
        min-height: unset;
    }
}

.referral-content .referral-top .referral-link .input-holder {
    width: 70%;
    display: inline-block;
    margin-right: 20px;
    line-height: 1;
}

@media only screen and (max-width: 1199px) {
    .referral-content .referral-top .referral-link .input-holder {
        width: 100%;
        margin-right: 0px;
    }
}

.referral-content .referral-top .referral-link .input-holder span {
    background: #f1e6dd;
    color: #94a9b4;
}

.referral-content .referral-top .referral-link .input-holder .btn-copy {
    color: #94a9b4;
}

.referral-content .referral-top .referral-link .input-holder .btn-copy svg {
    stroke: #94a9b4;
}

.referral-content .referral-top .referral-link .input-holder input,
.referral-content .referral-top .referral-link .input-holder textarea {
    color: #fff;
    height: unset;
    line-height: 1;
    overflow: hidden;
    vertical-align: middle;
    padding-bottom: 10px;
}

.referral-content .referral-top .referral-link .btn {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 15px;
}

@media only screen and (max-width: 1199px) {
    .referral-content .referral-top .referral-link .btn {
        margin: 15px auto auto;
        display: block;
        text-align: center;
    }
}

.referral-content .referral-top .referral-link .referral-note {
    width: 100%;
}

.referral-content .referral-top .referral-link .success-box {
    width: 100%;
    margin-bottom: 15px;
}

.referral-content .referral-top .statistics-wrap {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: #fff;
    width: 43%;
    border-radius: 0px 3px 3px 0;
}

@media only screen and (max-width: 750px) {
    .referral-content .referral-top .statistics-wrap {
        width: 100%;
        float: none;
        position: relative;
        padding: 30px 60px;
    }
}

@media only screen and (max-width: 600px) {
    .referral-content .referral-top .statistics-wrap {
        padding: 20px 15px;
    }
}

@media only screen and (max-width: 500px) {
    .referral-content .referral-top .statistics-wrap {
        padding: 0;
    }
}

.referral-content .referral-top .statistics-wrap .chart-holder {
    float: left;
    width: 40%;
    position: relative;
    margin-top: -10px;
}

@media only screen and (max-width: 1199px) {
    .referral-content .referral-top .statistics-wrap .chart-holder {
        width: 44%;
    }
}

@media only screen and (max-width: 991px) {
    .referral-content .referral-top .statistics-wrap .chart-holder {
        width: 48%;
        float: none;
        margin: auto;
    }
}

@media only screen and (max-width: 750px) {
    .referral-content .referral-top .statistics-wrap .chart-holder {
        width: 190px;
        float: left;
        margin: -40px 0 0 0;
    }
}

@media only screen and (max-width: 500px) {
    .referral-content .referral-top .statistics-wrap .chart-holder {
        float: unset;
        margin: auto;
    }
}

.referral-content .referral-top .statistics-wrap .chart-holder .active-referral {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 13px;
    line-height: 1;
    padding-top: 67px;
}

@media only screen and (max-width: 1199px) {
    .referral-content .referral-top .statistics-wrap .chart-holder .active-referral {
        font-size: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .referral-content .referral-top .statistics-wrap .chart-holder .active-referral {
        font-size: 11px;
        padding-top: 55px;
    }
}

@media only screen and (max-width: 750px) {
    .referral-content .referral-top .statistics-wrap .chart-holder .active-referral {
        padding-top: 70px;
    }
}

.referral-content .referral-top .statistics-wrap .chart-holder .active-referral span {
    display: block;
    font-size: 25px;
    color: #2ad288;
    font-weight: 500;
    margin-bottom: 5px;
}

@media only screen and (max-width: 1199px) {
    .referral-content .referral-top .statistics-wrap .chart-holder .active-referral span {
        font-size: 22px;
    }
}

@media only screen and (max-width: 991px) {
    .referral-content .referral-top .statistics-wrap .chart-holder .active-referral span {
        font-size: 18px;
    }
}

.referral-content .referral-top .statistics-wrap .statistics-holder {
    width: 60%;
    padding: 45px 40px 45px 20px;
    float: right;
}

@media only screen and (max-width: 1199px) {
    .referral-content .referral-top .statistics-wrap .statistics-holder {
        width: 56%;
        padding: 35px 20px 35px 0px;
    }
}

@media only screen and (max-width: 991px) {
    .referral-content .referral-top .statistics-wrap .statistics-holder {
        width: 100%;
        padding: 15px 20px;
    }
}

@media only screen and (max-width: 750px) {
    .referral-content .referral-top .statistics-wrap .statistics-holder {
        width: 56%;
    }
}

@media only screen and (max-width: 500px) {
    .referral-content .referral-top .statistics-wrap .statistics-holder {
        width: 280px;
        float: none;
        display: block;
        margin: auto;
    }
}

.referral-content .referral-top .statistics-wrap .statistics-holder .referral-statistics {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e1e8eb;
    padding-bottom: 10px;
}

.referral-content .referral-top .statistics-wrap .statistics-holder .referral-statistics span {
    font-size: 12px;
    color: rgba(34, 54, 65, 0.5);
    width: 40%;
    padding-left: 35px;
    position: relative;
}

.referral-content .referral-top .statistics-wrap .statistics-holder .referral-statistics span b {
    position: absolute;
    left: 0;
    font-size: 22px;
    color: #223641;
    line-height: 1;
    top: -moz-calc((100% - 22px) / 2);
    top: -webkit-calc((100% - 22px) / 2);
    top: calc((100% - 22px) / 2);
}

.referral-content .referral-top .statistics-wrap .statistics-holder .referral-statistics ul {
    width: 40%;
}

.referral-content .referral-top .statistics-wrap .statistics-holder .referral-statistics ul span {
    padding-left: 0px;
}

.referral-content .referral-top .statistics-wrap .statistics-holder .commision-statistics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(34, 54, 65, 0.5);
    padding-top: 10px;
}

.referral-content .referral-top .statistics-wrap .statistics-holder .commision-statistics span {
    font-size: 16px;
    color: #223641;
    font-weight: 500;
}

.referral-content .referral-holder {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 991px) {
    .referral-content .referral-holder {
        flex-direction: column-reverse;
    }
}

.referral-content .referral-list {
    position: relative;
    border-radius: 3px;
    min-height: 415px;
    width: 58%;
}

@media only screen and (max-width: 991px) {
    .referral-content .referral-list {
        width: 100%;
    }
}

@media only screen and (max-width: 750px) {
    .referral-content .referral-list {
        min-height: 300px;
    }
}

.referral-content .referral-list:after {
    position: absolute;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    color: rgba(34, 54, 65, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.referral-content .referral-list .referral-table {
    padding: 10px 50px 20px 50px;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
    .referral-content .referral-list .referral-table {
        padding: 10px 30px 20px 30px;
    }
}

@media only screen and (max-width: 991px) {
    .referral-content .referral-list .referral-table {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 750px) {
    .referral-content .referral-list .referral-table {
        padding: 10px 20px;
    }
}

.referral-content .referral-list .referral-table .result-header {
    padding: 15px 0px;
    font-size: 12px;
    color: rgba(34, 54, 65, 0.5);
}

@media only screen and (max-width: 500px) {
    .referral-content .referral-list .referral-table .result-header {
        display: none;
    }
}

.referral-content .referral-list .referral-table .result-header > div {
    float: left;
    padding: 0 5px;
    word-wrap: break-word;
}

.referral-content .referral-list .referral-table .result-header > div:nth-child(1) {
    width: 35%;
}

.referral-content .referral-list .referral-table .result-header > div:nth-child(2) {
    width: 45%;
}

.referral-content .referral-list .referral-table .result-header > div:nth-child(3) {
    width: 20%;
}

.referral-content .referral-list .referral-table .result-row {
    border-bottom: 1px solid #ecf1f4;
    background: #fff;
}

.referral-content .referral-list .referral-table .result-row:last-child {
    border-bottom: none;
}

@media only screen and (max-width: 500px) {
    .referral-content .referral-list .referral-table .result-row {
        border: none;
        margin-bottom: 10px;
        -webkit-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.13);
        -moz-box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.13);
        box-shadow: 0 2px 5px 0 rgba(152, 173, 185, 0.13);
    }
}

.referral-content .referral-list .referral-table .result-row > div {
    float: left;
    padding: 15px 5px;
    word-wrap: break-word;
    font-size: 13px;
    color: rgba(34, 54, 65, 0.2);
    text-align: left;
}

@media only screen and (max-width: 600px) {
    .referral-content .referral-list .referral-table .result-row > div {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {
    .referral-content .referral-list .referral-table .result-row > div {
        text-align: center;
        padding: 10px;
        border-bottom: 1px solid #eff4f5;
    }
}

.referral-content .referral-list .referral-table .result-row > div:nth-child(1) {
    width: 35%;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

@media only screen and (max-width: 750px) {
    .referral-content .referral-list .referral-table .result-row > div:nth-child(1) {
        font-size: 12px;
    }
}

@media only screen and (max-width: 500px) {
    .referral-content .referral-list .referral-table .result-row > div:nth-child(1) {
        background-color: #eff4f5;
        width: 100%;
    }
}

.referral-content .referral-list .referral-table .result-row > div:nth-child(2) {
    width: 45%;
    color: #616060;
}

@media only screen and (max-width: 600px) {
    .referral-content .referral-list .referral-table .result-row > div:nth-child(2) {
        font-size: 11px;
    }
}

@media only screen and (max-width: 500px) {
    .referral-content .referral-list .referral-table .result-row > div:nth-child(2) {
        width: 100%;
    }
}

.referral-content .referral-list .referral-table .result-row > div:nth-child(3) {
    width: 20%;
}

@media only screen and (max-width: 500px) {
    .referral-content .referral-list .referral-table .result-row > div:nth-child(3) {
        width: 100%;
    }
}

.referral-content .referral-list .referral-table .result-row.active > div {
    color: #223641;
}

.referral-content .referral-list .referral-table .result-row.active > div:last-child {
    color: #2ad288;
}

.referral-content .referral-list .referral-start {
    position: absolute;
    font-size: 12px;
    color: #223641;
    top: 18px;
    left: 50px;
    display: none;
}

.referral-content .referral-list .not-found {
    position: absolute;
    margin: 0;
    display: none;
    top: -moz-calc((100% - 37px) / 2);
    top: -webkit-calc((100% - 37px) / 2);
    top: calc((100% - 37px) / 2);
    left: -moz-calc((100% - 250px) / 2);
    left: -webkit-calc((100% - 250px) / 2);
    left: calc((100% - 250px) / 2);
}

.referral-content .referral-list.no-data:after {
    display: none;
}

.referral-content .referral-list.no-data .referral-start {
    display: block;
}

.referral-content .referral-list.less-data:after {
    opacity: 1;
    visibility: visible;
}

.referral-content .plan-commision {
    border-radius: 3px;
    width: 41%;
}

@media only screen and (max-width: 991px) {
    .referral-content .plan-commision {
        margin-top: 15px;
        width: 100%;
    }
}

.referral-content .plan-commision .commission-title {
    font-size: 15px;
    font-weight: 500;
}

.referral-content .plan-commision .plan-list {
    padding: 30px 55px;
}

@media only screen and (max-width: 1199px) {
    .referral-content .plan-commision .plan-list {
        padding: 30px 35px;
    }
}

@media only screen and (max-width: 750px) {
    .referral-content .plan-commision .plan-list {
        padding: 20px 30px;
    }
}

@media only screen and (max-width: 400px) {
    .referral-content .plan-commision .plan-list {
        padding: 15px;
    }
}

.referral-content .plan-commision .plan-list ul {
    font-size: 12px;
    color: rgba(34, 54, 65, 0.5);
}

@media only screen and (max-width: 400px) {
    .referral-content .plan-commision .plan-list ul {
        font-size: 11px;
    }
}

.referral-content .plan-commision .plan-list ul li {
    margin-top: 10px;
    color: #616060;
}

.referral-content .plan-commision .plan-list ul li span {
    font-size: 18px;
    font-weight: 500;
    margin-right: 5px;
}

@media only screen and (max-width: 400px) {
    .referral-content .plan-commision .plan-list ul li span {
        font-size: 16px;
    }
}

.referral-content .plan-commision .plan-list ul li .plan-type {
    display: inline-block;
    font-size: 12px;
    padding: 10px 5px;
    width: 100px;
    border-radius: 3px;
    line-height: 1;
    margin-right: 20px;
    vertical-align: middle;
    text-align: center;
}

@media only screen and (max-width: 400px) {
    .referral-content .plan-commision .plan-list ul li .plan-type {
        margin-right: 10px;
        width: 90px;
        padding: 8px 5px;
    }
}

.referral-content .plan-commision .plan-list ul li .plan-type span {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

.referral-content .plan-commision .plan-list.basic {
    border-bottom: 1px solid #f4f5f5;
}

.referral-content .plan-commision .plan-list.basic ul {
    margin-top: 25px;
}

.referral-content .plan-commision .plan-list.basic .plan-type {
    background: #48748b;
    background: -moz-linear-gradient(top, #4c4c4c 0%, #e4852f 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #48748b), color-stop(100%, #2f556a));
    background: -webkit-linear-gradient(top, #4c4c4c 0%, #e4852f 100%);
    background: -o-linear-gradient(top, #4c4c4c 0%, #e4852f 100%);
    background: -ms-linear-gradient(top, #4c4c4c 0%, #e4852f 100%);
    background: linear-gradient(to bottom, #4c4c4c 0%, #e4852f 100%);
    color: #8eacbc;
}

.referral-content .plan-commision .plan-list.vip .plan-type {
    background: #d9bd99;
    background: -moz-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #d9bd99), color-stop(100%, #ba8950));
    background: -webkit-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -o-linear-gradient(left, #d9bd99 0%, #ba8950 100%);
    background: -webkit-gradient(linear, left top, right top, from(#d9bd99), to(#ba8950));
    background: linear-gradient(to right, #d9bd99 0%, #ba8950 100%);
    color: rgba(255, 255, 255, 0.8);
}

.holder-white {
    background: #fff;
}

.optional {
    font-size: 11px;
    color: rgba(34, 54, 65, 0.5);
    width: 100%;
    margin-bottom: 15px;
}

.all-images {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.empty-list {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #638597;
    text-align: center;
}

@media only screen and (max-width: 500px) {
    .empty-list {
        font-size: 14px;
    }
}

.empty-list span {
    display: block;
    margin-top: 10px;
}

.empty-list svg {
    display: block;
    margin: auto;
}

.empty-list.empty-deposit {
    margin: 100px auto;
}

@media only screen and (max-width: 500px) {
    .empty-list.empty-deposit {
        margin: 50px auto;
    }
}

.empty-list.empty-deposit svg {
    width: 69px;
    height: 58px;
}

@media only screen and (max-width: 500px) {
    .empty-list.empty-deposit svg {
        width: 59px;
        height: 48px;
    }
}

.empty-list.empty-referral {
    position: absolute;
    left: 0;
    top: -moz-calc((100% - 115px) / 2);
    top: -webkit-calc((100% - 115px) / 2);
    top: calc((100% - 115px) / 2);
}

.empty-list.empty-referral svg {
    width: 69px;
    height: 58px;
}

@media only screen and (max-width: 500px) {
    .empty-list.empty-referral svg {
        width: 59px;
        height: 48px;
    }
}

#ltc_form #txtadd {
    font-style: normal;
    font-size: 13px;
    color: rgba(34, 54, 65, 0.7);
    border-radius: 3px;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-all;
}

#ltc_form .input-holder {
    background: rgba(225, 226, 226, 0.4);
    padding: 12px 70px 12px 20px;
}

#doge_form #txtadd {
    font-style: normal;
    font-size: 13px;
    color: rgba(34, 54, 65, 0.7);
    border-radius: 3px;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-all;
}

#doge_form .input-holder {
    background: rgba(225, 226, 226, 0.4);
    padding: 12px 70px 12px 20px;
}

#eth_form #txtadd {
    font-style: normal;
    font-size: 13px;
    color: rgba(34, 54, 65, 0.7);
    border-radius: 3px;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-all;
}

#eth_form .input-holder {
    background: rgba(225, 226, 226, 0.4);
    padding: 12px 70px 12px 20px;
}

#bch_form #txtadd {
    font-style: normal;
    font-size: 13px;
    color: rgba(34, 54, 65, 0.7);
    border-radius: 3px;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-all;
}

#bch_form .input-holder {
    background: rgba(225, 226, 226, 0.4);
    padding: 12px 70px 12px 20px;
}

#dash_form #txtadd {
    font-style: normal;
    font-size: 13px;
    color: rgba(34, 54, 65, 0.7);
    border-radius: 3px;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-all;
}

#dash_form .input-holder {
    background: rgba(225, 226, 226, 0.4);
    padding: 12px 70px 12px 20px;
}

#btc_form #txtadd {
    font-style: normal;
    font-size: 13px;
    color: rgba(34, 54, 65, 0.7);
    border-radius: 3px;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-all;
}

@media only screen and (max-width: 600px) {
    #btc_form #txtadd {
        font-size: 11px;
    }
}

#btc_form .input-holder {
    background: rgba(225, 226, 226, 0.4);
    padding: 12px 70px 12px 20px;
}

@media only screen and (max-width: 400px) {
    #btc_form .input-holder {
        padding: 12px 65px 12px 5px;
    }
}

@media only screen and (max-width: 400px) {
    #copy-address {
        font-size: 10px;
        padding-left: 16px;
        right: 12px;
    }
}

.vip-navbar {
    display: none;
    text-align: center;
    margin-bottom: 5px;
    background: #fbaf39;
    background: -moz-linear-gradient(left, #fbaf39 0%, #f99f45 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, #fbaf39), color-stop(100%, #f99f45));
    background: -webkit-linear-gradient(left, #fbaf39 0%, #f99f45 100%);
    background: -o-linear-gradient(left, #fbaf39 0%, #f99f45 100%);
    background: -webkit-gradient(linear, left top, right top, from(#fbaf39), to(#f99f45));
    background: linear-gradient(to right, #fbaf39 0%, #f99f45 100%);
}

.vip-navbar .vip-navbar-content {
    padding: 11px 10px 11px 60px;
    color: #fff;
    font-size: 14px;
    word-wrap: break-word;
    position: relative;
    display: inline-block;
    margin: auto;
    text-align: left;
}

@media only screen and (max-width: 991px) {
    .vip-navbar .vip-navbar-content {
        font-size: 12px;
        padding-left: 55px;
    }
}

.vip-navbar .vip-navbar-content span {
    font-weight: 600;
}

.vip-navbar .vip-navbar-content img {
    width: 47px;
    height: 60px;
    position: absolute;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 991px) {
    .vip-navbar .vip-navbar-content img {
        width: 30px;
        height: 50px;
    }
}

.about-page__box {
    background-image: url("../img/about-page-box.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 8px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 25px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .about-page__box .cab-logo {
        margin-bottom: 10px;
    }
}

.about-page__box .cab-logo__text {
    display: block;
}

.about-page__box-text {
    max-width: 370px;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 575px) {

    .about-page__box {
        margin-top: 20px;
    }
    .about-page__box-text {
        margin-left: 0;
        text-align: center;
        flex-direction: column;
    }
}

.about-page__box-text p {
    font-weight: 500;
    font-size: 13px;
    color: #f8fafb !important;
    line-height: 1.5;
}

.pp .title {
    color: #815B1A;
    font-size: 28px;
    font-weight: 400;
    line-height: 53px;
    text-align: left;
}

.pp .pps {
    display: flex;
    justify-content: space-around;
    margin: 5rem 0 2rem 0;
    align-items: center;
    flex-wrap: wrap;
}


.pp .pps a {
    margin:10px;
}


.facts-section {
    position: relative;
    padding: 0px 0px 290px;
    background: #1c1e22;
    color: #ffffff;
    z-index: 2;
}

.facts-section.alternate {
    padding-bottom: 20px;
}

.facts-section .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    opacity: 0.30;
}

.facts-section.alternate .image-layer {
    display: none;
}

.fact-counter {
    position: relative;
}

.fact-counter .column {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
}

.fact-counter .column .inner {
    position: relative;
    padding: 35px 0px 0px;
}

.fact-counter .column .inner:before {
    position: absolute;
    content: '';
    left: -15px;
    right: -15px;
    top: 0;
    min-width: 100%;
    border-top: 4px solid var(--thm-base);
    transform: scaleX(0);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.fact-counter .column:hover .inner:before {
    transform: scaleX(1);
}

.fact-counter .column .inner:after {
    position: absolute;
    content: '';
    right: -15px;
    top: 0;
    bottom: -30px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.fact-counter .column:last-child .inner:after {
    display: none;
}

.fact-counter .column .inner .content {
    position: relative;
    text-align: center;
}

.fact-counter .column .inner .count-outer {
    position: relative;
    font-weight: 400;
    font-size: 24px;
    line-height: 1em;
    letter-spacing: 0px;
    display: block;
}

.fact-counter .column .inner .counter-title {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #999b9f;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.main-header {
    position: relative;
    padding: 0;
    color: #000000;
    background: #333742;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-header .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.40;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}

.main-header .shape-1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    background: url(../img/b-shape-1.png) right bottom no-repeat;
    z-index: 1;
}

.main-header .shape-2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    background: url(../img/b-shape-2.png) right top no-repeat;
    z-index: 1;
}