:root {
    --col_1: #FEFDFB;
    --col_2: #1B1C21;

    --col_3: #53CD9E;
    --col_4: #282C35;
    --col_5: #405163;

    --col_6: #afbbc7;
    --col_7: #0e1623;

    --col_8: #1D2027;

    --col_9: #3d4d5c;
    --col_10: #d4d9df;
    --col_11: #467495;
    --col_12: #3a4c60;
    --col_13: #f4f5f9;
    /*--col_12: #43515e;*/
}

/*GLOBAL START*/


body{
    color: var(--col_1);
    background: var(--col_2);
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

p{
    color: var(--col_5);
}

.txt-accepted,
.txt-completed,
.txt-success{
    color: var(--col_3);
}

.txt-pending{
    color: #60768d;
}

.txt-uppercase{
    text-transform: uppercase;
}

.show-800,
.show-600,
.show-700{
    display: none;
}

.txt-green{
    color: var(--col_3);
}

.txt-gray{
    color: var(--col_5) !important;
}

.spacer-20{
    padding: 10px;
}

.spacer-40{
    padding: 20px;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

#app{
    overflow-x: hidden;
    width: 100%;
    /*background: url("../img/bg_dash.jpg") no-repeat center top;*/
    background-size: 100% auto;
}

.zsiq_floatmain{
    z-index: 80!important;
}

.container{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.bg-1{
    background: #f7f6fb;
    color: var(--col_2);
}

.bg-2{
    background: #dcdce6;
    color: var(--col_2);
}

.menu-padding{
    padding-top: 85px;
}

.footer-padding{
    padding-bottom: 85px;
}

.app-top{
    position: absolute;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 0;
    height: 85px;
    overflow: hidden;
    transition: all .3s ease-in-out;
    background: transparent no-repeat right top;
}

.app-top.scroll{
    position: fixed;
    background: var(--col_8) no-repeat right top;
}

.app-top.dark{
    background: var(--col_8) no-repeat right top;
}

.app-top.open{
    position: fixed;
    min-height: 100vh;
    height: auto;
    background: var(--col_8) no-repeat right top;
    background-image: url("../img/bg_menu.svg");
    background-size: auto 100vh;
    opacity: 1;
}

.app-top-fix{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}
.app-top .logo{
    display: block;
}

.app-top .logo img{
    display: block;
    width: 180px;
}


.menu-toggle{
    cursor: pointer;
    outline: none;
}
.menu-toggle.open{}
.menu-toggle .menu-close{
    display: none;
}

.menu-toggle.open .menu-open{
    display: none;
}
.menu-toggle.open .menu-close{
    display: block;
}

.main-menu{
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 85px);
    justify-content: space-between;
}
.main-menu-top{
    display: grid;
    padding-top: 55px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 250px));
}

.main-nav{
    position: relative;
    overflow-y: scroll;
    flex: 1;
    padding-right: 80px;
    margin-top: 40px;
    max-height: 450px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*.main-nav:after{*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 30px;*/
/*    background: rgba(255, 0, 0, 0.4);*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 100px;*/
/*}*/

.main-nav::-webkit-scrollbar {
    display: none;
}

.main-nav a{
    display: block;
    color: var(--col_3);
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    margin-top: 10px;
    padding: 10px;
    transition: all .2s ease-in-out;
    border-left: 2px solid transparent;
}

.main-nav a:not(.active):hover{
    color: var(--col_1);
    padding-left: 20px;
    border-color: var(--col_3);
    background: rgba(255, 255, 255, 0.02);
}

.main-nav a.active{
    color: var(--col_1);
    padding-left: 10px;
    border-color: var(--col_1);
}

.main-menu-social{
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
}
.main-menu-social a{
    margin: 5px;
}
.main-menu-social a img{
    width: 25px;
    height: 25px;
}

.title-1{
    font-size: 4rem;
    line-height: 1;
    margin: 0;
    font-weight: normal;
}

.title-2{
    font-size: 3rem;
    font-weight: normal;
    line-height: 1.1;
}

.title-3{
    font-size: 3.5rem;
    line-height: 1;
    margin: 50px 0;
    font-weight: normal;
    max-width: 650px;
}

.title-4{
    font-size: 3.5rem;
    line-height: 1;
    margin: 50px 0;
    font-weight: normal;
    text-align: center;
}

p{}


.form{
    width: 100%;
    max-width: 600px;
}

.form-row{
    margin-bottom: 25px;
    font-family: 'Roboto Mono', monospace;
}

.form-row .fix{
    position: relative;
    width: 100%;
}


.form-row .name{
    font-weight: bold;
}
.form-row .value{
    color: var(--col_5);
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    padding-left: 0;
}

.form-row textarea.value{
    resize: vertical;
}


.form-row .fix:before{
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #aaa;
    transition: all .5s ease-in-out;
}

.form-row .fix:focus-within:before{
    width: 100%;
    background: var(--col_3);
}


.form-error{
    position: relative;
    color: #ff012f;
    padding: 5px 10px 5px 25px;
    font-size: 0.8rem;
    border-top: 1px solid #ff012f;
    top: -1px;
}

.form-error:before{
    position: absolute;
    font-weight: 700;
    font-size: 0.8rem;
    left: 0;
    top: 8px;
    content: '!';
    display: block;
    text-align: center;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border-radius: 50%;
    color: #fff;
    background: #ff012f;
}


.form-cta{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 257px));
    grid-gap: 20px;
}

.auth-container{
    padding-bottom: 100px;
}

.h-captcha{
    margin-bottom: 15px;
}

/* GLOBAL END*/


/*DASH START*/
.dash-container{
    position: relative;
}

.dash-logo{
    width: 150px;
}

.dash-1{
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    background: var(--col_8);
    border-right: 1px solid #30353E;
    width: 240px;
    height: 100vh;
    transition: right .2s linear;
}

.dash-1-1{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.dash-1-2{
    flex: 1;
    overflow-x: hidden;
}

.dash-menu-btn{
    display: block;
    position: relative;
    padding: 0 15px;
    transition: all .2s linear;
    outline: none;
    font-size: 0.8rem;
    color: var(--col_3);
    text-transform: uppercase;
}

.dash-menu-btn.active{
    background: rgba(255,255,255,0.05);
    /*color: var(--col_2);*/
    position: relative;
    top: -1px;
}

.dash-menu-btn:before{
    content: '';
    position: absolute;
    background: var(--col_3);
    left: -56px;
    top: 0;
    width: 55px;
    height: 45px;
    transition: all .2s ease-in-out;
}

.dash-menu-btn:hover:before,
.dash-menu-btn.active:before{
    left: 0;
}

.dash-menu-btn:not(.active):hover:before{
    background: var(--col_1);
}

.dash-menu-btn:hover{
    background: rgba(255,255,255,0.05);
}

.dash-menu-btn:hover img{
    filter: invert(0);
}


.dash-menu-btn img{
    width: 25px;
    height: 25px;
    opacity: 1;
    filter: invert(1);
}

.dash-menu-btn.active img{
    opacity: 1;
    filter: invert(0);
}

.dash-menu-btn span{
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: all .2s linear;
}

.dash-menu-btn:not(.active):focus span,
.dash-menu-btn:not(.active):hover span{
    border-color: transparent;
}

.dash-menu-btn .icon{
    margin-right: 25px;
}

.dash-menu-copyright{
    font-size: 0.6rem;
    color: var(--col_5);
}

.dash-1-3{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    background: rgba(255,255,255,0.02);
}

.dash-1-3 a{
    margin: 5px;
    transition: all .2s linear;
}

.dash-1-3 a:nth-child(3){
    opacity: 0.5;
}

.dash-1-3 a:hover{
    opacity: 1;
    filter: grayscale(0);
}


.dash-1-3 a img{
    width: 120px;
}

.dash-2{
    margin-left: 240px;
    padding: 0 20px;
    background: url("../img/bg_dash.jpg") no-repeat;
}

.dash-menu{
    position: relative;
    width: calc(100% + 20px);
    z-index: 9;
    height: 100%;
    overflow-y: scroll;
}
.dash-content{
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
    min-height: 100vh;
    position: relative;
}

.dash-mobile-show{
    display: none;
    align-items: center;
}

.dash-mobile-top{
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    height: 70px;
    padding-top: 10px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.dash-mobile-top.scroll{
    position: fixed;
    padding: 10px 20px 0 20px;
    background: var(--col_2);
    z-index: 5;
}

.dash-mobile-logo{
    width: 180px;
}

.dash-menu-open{
    cursor: pointer;
}

.dash-1-mobile{
    /*display: none;*/
}

.dash-1-mobile-1{
    position: relative;
    height: 70px;
    width: 100%;
    padding: 15px;
    align-items: center;
    background: rgba(255,255,255,0.02);
}


.dash-1-mobile-1-1{
    line-height: 1;
}

.dash-1-mobile-1-1-1{
    color: var(--col_3);
}
.dash-1-mobile-1-1-2{
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Roboto Mono', monospace;
}


.dash-menu-close{
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 10;
}

.dash-1-mobile-2{
    display: none;
    margin-bottom: 25px;
    padding: 15px;
    border-bottom: 1px solid var(--col_3);
    border-top: 1px solid var(--col_3);
}

.dash-1-mobile-ip{
    color: var(--col_3);
    font-family: 'Roboto Mono', monospace;
}

.mobile-menu-btn{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: space-between;
    background: var(--col_1);
    color: var(--col_2);
    font-size: 0.8rem;
    font-weight: normal;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
}

.mobile-menu-btn img{
    height: 30px;
    margin-left: 10px;
}

.mobile-menu-btn:hover{
    background: var(--col_3);
}


.dash-mobile-footer{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.table{
    margin: 25px 0;
    width: 100%;
    text-align: left;
    font-weight: 300;
    font-size: 0.8rem;
    border-collapse: collapse;
    font-family: 'Roboto Mono', monospace;
}
.table thead{}
.table thead tr{}
.table thead tr th{}

.table tbody{}
.table tbody tr:nth-child(odd){
    background: var(--col_4);
    border: 1px solid var(--col_5);
}

.table thead tr th,
.table tbody tr td{
    padding: 15px 10px;
}

.table tbody tr td{
    word-break: break-all;
}
.table tbody tr:nth-child(odd) td{
    /*border-top: 1px solid var(--col_5);*/
    /*border-bottom: 1px solid var(--col_5);*/
}

.table tbody tr:nth-child(odd) td:first-child{
    /*border-left: 1px solid var(--col_5);*/
}
.table tbody tr:nth-child(odd) td:last-child{
    /*border-right: 1px solid var(--col_5);*/
}

.table tbody tr td .name{
    display: none;
    font-weight: 500;
}

.table tbody tr td{
    opacity: 0.7;
}

.table tbody tr td .value img{
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    transform: translateY(-1px);
}


.table tbody tr td .value a{
    color: var(--col_3);
    border-bottom: 1px solid transparent;
    transition: all .2s linear;
    text-transform: uppercase;
}

.table tbody tr td .value a:hover{
    border-bottom: 1px solid var(--col_3);
}


.table tbody tr td img{
    max-width: 20px;
}

.table tbody tr.hidden{
    display: none;
}

.dash-title{
    color: var(--col_3);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    padding-left: 10px;
    position: relative;
    margin-top: 60px;
}

.dash-title:before{
    content: url("../img/logo/icon_only_green_white.svg");
    display: inline-block;
    width: 30px;
    margin-right: 5px;
    transform: translateY(4px);
}


.dash-affiliates-box{
    background: var(--col_4) url("../img/dash_pattern_1.jpg");
    background-size: cover;
    border: 1px solid var(--col_5);
    padding: 25px;
}

.dash-affiliate-link{
    text-align: center;
}

.dash-affiliate-link .link{
    margin-bottom: 5px;
    font-size: 1.3rem;
    word-break: break-all;
    font-family: 'Roboto Mono', monospace;
}

.dash-affiliate-link .copy{
    color: var(--col_3);
    display: inline-flex;
    align-items: center;
    font-weight: 100;
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
}

.dash-affiliate-link .copy img{
    height: 20px;
    margin-right: 15px;
}

.btn-1{
    background: var(--col_3);
    border: 1px solid var(--col_3);
    color: var(--col_2);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .2s ease-in-out;
    min-width: 180px;
    min-height: 50px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    text-align: left;
}

.btn-1:after{
    content: '';
    width: 25px;
    height: 35px;
    opacity: 0.8;
    background: url("../img/arrow_right.svg") no-repeat center center;
    transition: all .2s ease-in-out;
}

.btn-1 .text{
    line-height: 1;
    font-weight: 500;
    /*opacity: 0.7;*/
    text-transform: uppercase;
    transition: all .2s ease-in-out;
    padding-right: 50px;
}

.btn-1:hover{
    background: var(--col_1);
    border: 1px solid var(--col_1);
}

.btn-1.to-dark:hover{
    background: var(--col_2);
    border: 1px solid var(--col_2);
    color: var(--col_1);
}

.btn-1.to-dark:hover:after {
    background-image: url("../img/arrow_right_white.svg");
}


.btn-2:hover .text,
.btn-1:hover .text,
.btn-1:hover:after{
    opacity: 1;
}

.btn-1.white{
    background: var(--col_1);
    border: 1px solid var(--col_1);
}
.btn-1.white:hover{
    background: var(--col_3);
    border: 1px solid var(--col_3);
}

.btn-1.transparent{
    background: transparent;
    color: var(--col_3);
}

.btn-1.transparent:after {
    background-image: url("../img/arrow_right_green.svg");
}

.btn-1.transparent:hover:after{
    background-image: url("../img/arrow_right.svg");
}
.btn-1.transparent:hover{
    background: var(--col_3);
    color: var(--col_2);
    border: 1px solid var(--col_3);
}

.btn-1.transparent.to-white:hover{
    background: var(--col_1);
    color: var(--col_2);
    border: 1px solid var(--col_1);
}


.btn-1.transparent-2{
    background: transparent;
    border: 1px solid var(--col_2);
    color: var(--col_2);
}

.btn-1.transparent-2:hover{
    background: var(--col_2);
    color: var(--col_1);
}

.btn-1.transparent-2:hover:after {
    background-image: url("../img/arrow_right_white.svg");
}

.btn-2{
    display: flex;
    align-items: center;
}
.btn-2 .icon{
    background: var(--col_1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 57px;
    width: 57px;
    margin-right: 15px;
    transition: all .2s ease-in-out;
    padding: 10px;
}
.btn-2 .icon img{
    width: 40px;
}


.btn-2 .text{
    line-height: 1.2;
    font-weight: 500;
    opacity: 0.7;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
    padding-right: 50px;
}

.btn-2:hover .icon{
    background: var(--col_3);
}


.dash-affiliate-stats{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: auto;
    justify-content: space-around;
    grid-gap: 20px;
    border-top: 1px solid var(--col_3);
    margin-top: 30px;
    padding-top: 30px;
}

.dash-affiliate-stats .stats .name{
    font-size: 0.8rem;
}
.dash-affiliate-stats .stats .value{
    font-size: 1.4rem;
}

.dash-affiliate-stats .stats .value.undefined{
    color: #585d6b;
}

.dash-affiliate-stats .stats .value.success{
    color: var(--col_3) !important;
}

.dash-affiliate-stats .stats:last-child{
    display: flex;
    justify-content: flex-end;
}

.dash-affiliates-points{
    color: var(--col_3);
    padding-left: 30px;
    padding-top: 10px;
}

.dash-affiliates-levels{
    margin-top: 50px;
    padding-left: 30px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr;
    grid-template-areas: "rank icon bar";
    grid-gap: 20px;
}

.dash-affiliates-levels-1{
    grid-area: rank;
}

.dash-affiliates-levels-1 .stats{}
.dash-affiliates-levels-1 .stats .name{
    font-size: 1rem;
}

.affiliates-ranks{
    margin-top: 20px;
}
.affiliates-ranks li{
    text-transform: uppercase;
    opacity: 0.3;
    line-height: 20px;
}
.affiliates-ranks li.active{
    opacity: 1;
    font-size: 1.2rem;
}

.dash-affiliates-levels-2{
    grid-area: icon;
}

.dash-affiliates-levels-2 img{
    max-width: 200px;
    display: block;
    width: 100%;
}
.dash-affiliates-levels-3{
    grid-area: bar;
}


.affiliate-progress{}
.affiliate-progress-top{
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3px;
}

.affiliate-progress-top b{
    color: var(--col_3);
    font-size: 1.2rem;
}

.affiliate-progress-bar{
    width: 100%;
    border: 1px solid #444d54;
    background: #272b34;
    height: 12px;

}

.affiliate-progress-bar .bar{
    background: var(--col_3);
    height: 100%;

    -webkit-box-shadow: 0px 0px 10px 0px rgba(83,205,158,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(83,205,158,1);
    box-shadow: 0px 0px 10px 0px rgba(83,205,158,1);
}

.affiliate-progress-bottom{
    text-align: right;
    font-family: 'Roboto Mono', monospace;
    color: var(--col_3);
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.5;
}
.affiliate-progress-bottom span{
    color: #fff;
}

.affiliate-rewards{
    margin-top: 10px;
}

.affiliate-rewards .title{
    font-size: 1rem;
}
.affiliate-rewards ul{
    padding-left: 10px;
}
.affiliate-rewards ul li{}
.affiliate-rewards ul li:before{
    content: url("../img/icon_list_bullet.svg");
    width: 25px;
    display: inline-block;
    margin-right: 10px;
    color: var(--col_3);
}

.dash-affiliate-stats-2{
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-gap: 20px;
}
.dash-affiliate-stats-box{
    border: 1px solid #383c45;
    background: var(--col_4) url("../img/dash_pattern_1.jpg");
    background-size: cover;
    padding: 15px 20px;
}
.dash-affiliate-stats-box .title{
    text-align: center;
    color: var(--col_3);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.dash-affiliate-stats-box .values{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.dash-affiliate-stats-box .values .value{
    text-align: center;
}
.dash-affiliate-stats-box .values .value .number{
    border-bottom: 1px solid var(--col_3);
    padding-bottom: 10px;
    margin-bottom: 10px;
    line-height: 1;
    font-size: 2rem;
    word-break: break-all;
}
.dash-affiliate-stats-box .values .value .name{
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dash-cta-right{
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
}

.dash-cta-right .btn-1{
    /*margin-right: 25px;*/
}

.dash-top{
    display: grid;
    grid-template-columns: 1fr min-content min-content;
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
    padding-top: 20px;

}

.dash-top-info{
    position: relative;
    right: -1px;
    line-height: 1;
    width: 100%;
    border: 1px solid var(--col_3);
    min-height: 57px;
    padding: 0 15px 0 60px;
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    justify-content: center;
}
.dash-top-info .welcome{
    color: var(--col_3);
    font-size: 0.8rem;
}
.dash-top-info .name{
    font-size: 1rem;
    font-weight: 700;
    word-break: break-all;
    font-family: 'Roboto Mono', monospace;
}

.dash-tfa{
    position: absolute;
    left: 0;
    top: 0;
    background: #323641;
    height: calc(100%);
    width: 45px;
    padding: 0 10px;
    text-align: center;
    /*border-radius: 3px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.7rem;
    line-height: 1;
}

.dash-tfa img{
    width: 25px;
}


.dash-top-nav{
    display: grid;
    grid-template-columns: repeat(auto-fit, 120px);
    grid-template-rows: auto;
    margin-top: 20px;
    padding-left: 20px;
    grid-gap: 15px;
}

.dash-top-nav-element{
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all .2s linear;
}

.dash-top-nav-element:hover{
    color: var(--col_1);
    opacity: 1;
}


.dash-top-nav-element .icon{
    width: 20px;
    display: block;
    margin-right: 10px;
}


.dash-top-nav-element button{
    border: none;
    background: transparent;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
}

.dash-rate-container{
    display: flex;
    width: 100%;
    margin-top: 50px;
    align-items: flex-end;
}
.dash-table{
    position: relative;
    width: 100%;
    max-height: 400px;
    flex: 2;
    border: 1px solid var(--col_5);
    padding: 80px 20px;
    background: rgba(0,0,0,0.2);
    margin-right: 30px;
}


.deposit-source{
    color: var(--col_5);
    font-size: 0.8rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: -30px;
}

.dash-table-avg{
    position: absolute;
    width: 100%;
    top: 30px;
    left: 0;
    text-align: center;
    line-height: 1;
}
.dash-table-avg .name{
    font-size: 0.8rem;
}
.dash-table-avg .value{
    color: var(--col_3);
    font-weight: 700;
    font-size: 2.2rem;
    font-family: 'Roboto Mono', monospace;
}
.dash-table-title{
    position: absolute;
    width: 100%;
    bottom: 25px;
    left: 0;
    text-align: center;
    line-height: 1;
}
.dash-table-title .name{}
.dash-table-title .value{
    color: var(--col_3);
    font-size: 0.8rem;
    margin-top: 3px;
}

.dash-balances{
    display: grid;
    /*grid-template-columns: repeat(auto-fit, 210px);*/
    grid-template-columns: repeat(auto-fit, minmax(210px, 238px));

    grid-gap: 15px;
}

.dash-balance{
    display: grid;
    grid-template-columns: 50px auto;
}

.dash-balance.empty{
    filter: grayscale(1);
    opacity: 0.4;
}

.dash-balance.empty .dash-balance-1{
    background: var(--col_5);
}



.dash-balance-1{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--col_3);
}
.dash-balance-1 img{
    width: 25px;
}
.dash-balance-2{
    min-width: 110px;
    border: 1px solid #383c45;
    background: #282c35;
    padding: 5px 10px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dash-balance-2 .name{}
.dash-balance-2 .value{
    color: var(--col_3);
    font-family: 'Roboto Mono', monospace;
}

.dash-infos{
    flex: 1;
    width: 100%;
    min-width: 190px;
}

.dash-info{
    line-height: 1;
}

.dash-info:not(:last-child){
    margin-bottom: 25px;
}

.dash-info .name{
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 4px;
}
.dash-info .value{
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;

}

.dash-info .value span{
    opacity: 0.5;
}

.form-container{
    padding: 15px 0 50px 0;
}

.form-step{
    font-size: 1.5rem;
    line-height: 1;
    color: var(--col_3);
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    max-width: 300px;
}
.form-step span{}

.form-step span i{
    font-style: normal;
    color: var(--col_1);
}

.form-info{
    max-width: 600px;
}

.form-info li{
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 2px solid var(--col_3);
    opacity: 0.4;
}


.form-currencies{
    display: grid;
    grid-template-columns: repeat(auto-fit, 75px);
    grid-gap: 9px;
}

.source-radio,
.currency-radio{
    display: none;
}

.form-currency{
    border: 1px solid #383c45;
    background: #282c35;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.form-currency.selected{
    background: var(--col_3);
    border-color: var(--col_3);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(83,205,158,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(83,205,158,0.5);
    box-shadow: 0px 0px 10px 0px rgba(83,205,158,0.5);
}

.form-currency .icon{
    width: 35px;
}

.form-currency:not(.selected) .icon.empty{
    opacity: 0.1;
}


.currency-infos{
    display: grid;
    grid-template-columns: repeat(auto-fit, 200px);
}

.currency-infos.wide{
    grid-template-columns: 1fr;
}

.currency-infos.wide{}


.currency-infos .info{
    min-width: 200px;
    margin-top: 20px;
}

.currency-infos .info .name{
    line-height: 1;
}
.currency-infos .info .value{
    font-family: 'Roboto Mono', monospace;
    color: var(--col_3);
    line-height: 1;
    font-size: 1.2rem;
    word-break: break-all;
}

.form-sources{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 20px;
}

.form-source{
    position: relative;
    border: 1px solid #383c45;
    background: #282c35;
    transition: all .2s ease-in-out;
    padding: 15px;
    cursor: pointer;
    font-family: 'Roboto Mono', monospace;
}

.form-source.selected{
    background: var(--col_3);
    border-color: var(--col_3);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(83,205,158,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(83,205,158,0.5);
    box-shadow: 0px 0px 10px 0px rgba(83,205,158,0.5);
}

.form-source:before{
    content: '';
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.form-source.selected:before{
    background: #fff;
}

.form-amount{
    display: grid;
    grid-template-columns: 350px auto;
    align-items: center;
    grid-gap: 20px;
}

.form-amount-fix{
    position: relative;
}
.form-amount-fix #amount-currency{
    position: absolute;
    right: 1px;
    top: 1px;
    height: calc(100% - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--col_3);
    font-size: 0.8rem;
    background: #282c35;
    width: 50px;
}

.form-amount input{
    border: 1px solid #383c45;
    background: #282c35;
    padding: 15px;
    font-family: 'Roboto Mono', monospace;
    color: var(--col_1);
    width: 100%;
    outline: none;
}

.form-amount .deposit-min{
    font-size: 0.8rem;
    line-height: 1;
    opacity: 0.4;
}

.form-amount #release-fee,
.form-amount #deposit_min{
    font-size: 1rem;
    font-family: 'Roboto Mono', monospace;
}

.inv-compounding{
    display: flex;
}

.inv-compounding form{
    flex: 1;
}


.dash-compounding{
    display: flex;
    border: 1px solid #383c45;
    background: #282c35;
    /*max-width: 700px;*/
}
.dash-compounding-1{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    background: #323641;
    border-right: 1px solid #383c45;
    font-family: 'Roboto Mono', monospace;
}

.dash-compounding-2{
    flex: 1;
    padding: 25px;
    width: 100%;
}


.home-hero{
    display: flex;
    position: relative;
    flex-direction: column;
    min-height: 100vh;
    background: var(--col_2);
    background-size: cover;
    overflow: hidden;
}

.home-hero-video{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
}

.home-hero-pattern{
    content: '';
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("../img/hero_pattern.svg");
    background-size: 120px;
    opacity: 0.5;
}


@media (min-aspect-ratio: 16/9) {
    .home-hero-video {
        width:100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) {
    .home-hero-video {
        width:auto;
        height: 100%;
    }
}

.home-hero-top{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-hero-top-content{
    max-width: 550px;
}

.home-hero-top-content p{
    color: var(--col_1);
    font-size: 1.2rem;
    line-height: 1.2;
    max-width: 300px;
}

.home-hero-links{
    display: grid;
    backdrop-filter: blur(10px);
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.home-hero-links a{
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-left: none;
}
.home-hero-links a img{
    width: 100%;
    max-width: 100px;
}

.home-hero-cta{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 250px));
    grid-gap: 30px;
    margin-top: 30px;
}

.home-offer{
    color: var(--col_2);
    padding: 40px 0;
}

.home-offer .container{
    display: grid;
    grid-template-columns: 300px 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.home-offer-1{
    width: 100%;
    max-width: 300px;
    padding-top: 40px;
}

.home-offer-1 .btn-1{
    margin-top: 30px;
}

.home-offer-2{}
.home-offer-2 img{
    display: block;
    max-width: 100%;
    padding: 0 80px;
}

.home-calc{}
.home-calc .container{
    max-width: 1000px;
    position: relative;
}
.home-calc-1{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: center;
    justify-content: center;
    grid-gap: 20px;
    background: var(--col_2);
    z-index: 10;
    padding: 20px;
    transition: all .5s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.home-calc-1 .title-2{
    font-size: 2rem;
}

.home-calc.open .home-calc-1{
    opacity: 0;
    pointer-events: none;
}

.home-calc.open .home-calc-2{}

.home-calc-1 h2{
    margin: 0;
}

.home-calc-2{
    padding: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 20px;
    width: 100%;
    border-left: 1px solid #465b70;
    border-right: 1px solid #465b70;
}

.home-calc-2-1{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 20px;
}
.home-calc-2-2{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 20px;
    border-left: 1px solid #465b70;
    padding-left: 20px;
}

.calc-input-fix{
    position: relative;
}

.calc-input-fix:after{
    content: '$';
    position: absolute;
    right: 1px;
    top: 1px;
    height: calc(100% - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--col_3);
    font-size: 1.5rem;
    background: var(--col_2);
    width: 50px;
}

.calc-input{
    width: 100%;
    border: 1px solid #465b70;
    background: transparent;
    border-radius: 0;
    padding: 15px;
    font-size: 1rem;
    color: var(--col_3);
    outline: none;
}
.home-calc .info{}
.home-calc .info .name{
    line-height: 1.2;
}
.home-calc .info .value{
    line-height: 1;
    color: var(--col_3);
    font-size: 1.5rem;
}

.calc-days{}
.calc-days input{}
.calc-days .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.calc-days .top .name{
}
.calc-days .top .value{
    color: var(--col_3);
}

.home-why{
    padding: 80px 0 100px 0;
    text-align: center;
}

.why-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap: 20px;
}

.why-card{
    background: #1f2025;
    color: var(--col_1);
    height: 300px;
    overflow: hidden;
    transition: all .2s ease-in-out;
}

.why-card:hover{
    background: var(--col_1);
    color: #1f2025;
}

.why-card .content{
    margin: 30px 15px;
    transition: all .5s ease-in-out;

}
.why-card:hover .content{
    transform: translateY(-180px);
}

.why-card .icon{
    height: 200px;
    display: grid;
    place-content: center;
    padding-bottom: 15px;
}
.why-card .icon img{
    width: 130px;
}

.why-card .title{
    line-height: 1.1;
    font-size: 1.2rem;
}
.why-card .text{
    padding-top: 40px;
}

.why-cta{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 257px));
    grid-gap: 20px;
    margin-top: 20px;
    text-align: left;
}

.home-space{
    padding: 0 0 80px 0;
    text-align: center;
}

.spaces-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 30px;
}

.spaces-card{
    text-align: left;
}

.spaces-card .icon{
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}
.spaces-card .title{
    line-height: 1.1;
    font-size: 1.2rem;
}
.spaces-card .text{}

.spaces-all{
    display: none;
    cursor: pointer;
    text-decoration: underline;
}

.home-community{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 20px;
    padding-bottom: 80px;
}

.home-community-1{
    display: flex;
    flex-direction: column;
    background: var(--col_3);
}
.home-community-1-1{
    flex: 1;
    display: grid;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: url("../img/home_community.jpg") no-repeat center center;
    background-size: cover;
}

.home-community-1-1 img{
    max-width: 100px;
    display: inline-block;
    width: 100%;
}


.home-community-1-2{
    flex: 1;
    padding: 50px 50px 30px 50px;
}

.home-community-1-2 .title{
    font-size: 1.5rem;
    line-height: 1;
}
.home-community-1-2 .text{
    line-height: 1.1;
    margin-top: 10px;
}

.home-community-1-2-1{
    margin-top: 25px;
}

.home-community-1-2-1 a img{
    width: 25px;
    margin: 5px;
}

.home-community-2{
    background: #333 url("../img/home_affiliate_bg.jpg");
    background-size: cover;
    color: var(--col_1);
    padding: 50px 50px 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-community-2-1{
    display: grid;
    grid-template-columns: 160px auto;
    grid-gap: 20px;
}

.home-community-2-1-1{
    color: var(--col_3);
    text-transform: uppercase;
    font-size: 3.4rem;
    line-height: 1;
}

.home-community-2-1-1 span{
    color: var(--col_1);
}

.home-community-2-1-2{}

.home-community-2-1-2-1{
    color: var(--col_3);
    max-width: 200px;
    font-size: 1rem;
    line-height: 1.2;
}

.home-community-2-1-2-2{
    margin-top: 30px;
    border-top: 1px solid var(--col_1);
    border-bottom: 1px solid var(--col_1);
    padding: 5px 0;
}

.home-community-2-1-2-2 span{
    color: var(--col_3);
}

.home-community-2-1-2-3{
    padding-top: 5px;
    max-height: 50px;
}

.home-community-2-2{
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}

.contacts-container{}

.contacts-bar{
    margin-top: 80px;
    background: var(--col_2);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-gap: 20px;
}
.contacts-bar .block{}
.contacts-bar .block .name{
    color: var(--col_1);
    text-transform: uppercase;
}
.contacts-bar .block .value{
    color: var(--col_3);
}
.contacts-bar .block .value img{
    width: 20px;
    margin: 5px;
}

.contacts-bar .block .value a:hover{
    text-decoration: underline;
}

.faq-group{
    max-width: 700px;
}
.faq-group-title{
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 100px;
}
.faq-question{
    margin-bottom: 35px;
}

.faq-question .question{
    position: relative;
    font-size: 1.2rem;
    color: #20996c;
    margin-bottom: 15px;
}

.faq-question .answer{
    color: var(--col_5);
}
.faq-question .answer a{
    text-decoration: underline;
}


.faq-question .answer ol li{
    margin-bottom: 5px;
}




.footer{
    padding: 60px 0;
    background: url("../img/logo/wordmark_black.svg") no-repeat;
    background-position: 80% 40px;
    background-size: 60vw auto;
}
.footer .container{
    display: flex;
}
.footer-1{
    flex: 1;
    max-width: 400px;
}

.footer-1-1{
    line-height: 1;
    font-size: 3rem;
    font-weight: 700;
}

.footer-1-2{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin: 30px 0;
}

.footer-2{
    flex: 1;
    margin-left: 100px;
}

.footer-2-1{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-transform: uppercase;
}
.footer-menu-col{
    margin-bottom: 20px;
}

.footer-menu{
    margin-top: 10px;
}

.footer-menu li{
    color: var(--col_3);
    font-weight: 300;
    margin-bottom: 5px;
}

.footer-menu li a{
    opacity: 0.7;
    transition: all .2s ease-in-out;
}

.footer-menu li a:hover{
    opacity: 1;
    text-decoration: underline;
}


.footer-social{}

.footer-social img{
    width: 25px;
    margin: 5px;
}

.footer-3{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}


.footer-3-1{
    font-size: 0.7rem;
    opacity: 0.6;
    padding-right: 40px;
}

.pagination{
    display:-ms-flexbox;
    justify-content: flex-end;
    display:flex;
    padding-left:0;
    list-style:none;
}
.page-link{
    position:relative;
    display:block;
    padding: 8px 12px;
    margin-left:-1px;
    line-height:1.25;
    color: var(--col_3);
    border:1px solid var(--col_3);
    transition: all .2s ease-in-out;
}

.page-link:focus,
.page-link:hover{
    z-index:2;
    color: var(--col_2);
    text-decoration:none;
    background-color: var(--col_1);
}

.page-item:first-child .page-link{
    margin-left:0;
}

.page-item.active .page-link{
    z-index:3;
    padding: 12px 18px;
    margin-top: -5px;
    color: var(--col_2);
    background-color: var(--col_3);
}

.page-item.disabled .page-link{
    color:#6c757d;
    pointer-events:none;
    background-color: #1D2027;
    border-color: rgba(83, 205, 158, 0.5);
    cursor: not-allowed;
}

.affiliates-container{
    margin: 0 auto;
    max-width: 900px;
}

.affiliate-1{
    padding: 80px 0;
    display: flex;
}
.affiliate-1-1{
    padding-right: 80px;
    max-width: 400px;
}

.affiliate-1-1 .btn-1{
    max-width: 250px;
}

#affiliate-title-1{
    margin-top: 0;
}

.affiliate-1-2{
    max-width: 500px;
}

.affiliate-1-2 img{
    display: block;
    width: 100%;
}

.affiliate-levels-title{
    font-size: 1.5rem;
    color: var(--col_3);
    border-bottom: 2px solid var(--col_3);
    padding-bottom: 10px;
}

.affiliate-levels{
    padding-bottom: 50px;
}
.affiliate-level{
    display: grid;
    grid-template-columns: 200px auto;
    padding: 30px 0;
    grid-gap: 20px;
    border-bottom: 2px solid var(--col_3);
}

.affiliate-level:nth-child(n+4){
    display: none;
}

.affiliate-level-1{}
.affiliate-level-1 {}
.affiliate-level-1-1{
    display: block;
    margin: 0 auto;
}

.affiliate-level-1-2{
    text-align: center;
    font-weight: 700;
    margin-top: 10px;
    font-family: 'Roboto Mono', monospace;
}
.affiliate-level-2{}
.affiliate-level-2-1{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid var(--col_3);
    padding-bottom: 10px;
}
.affiliate-level-2-1-1{
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: #444;
}

.affiliate-level-2-1-2{
    color: var(--col_3);
    text-align: right;
    line-height: 1;
}
.affiliate-level-2-1-2 div{
    color: #aaa;
    font-size: 1.2rem;
    font-family: 'Roboto Mono', monospace;
}
.affiliate-level-2-2{
    padding-top: 20px;
}

.affiliate-level-2-2 .title{
    color: #666;
    font-size: 1.2rem;
    font-weight: 700;
}
.affiliate-level-2-2 ul{}
.affiliate-level-2-2 ul li{
    font-family: 'Roboto Mono', monospace;
    color: #999;
    font-size: 1rem;
}

.affiliate-level-2-2 ul li:before{
    content: url("../img/icon_list_bullet.svg");
    width: 25px;
    display: inline-block;
    margin-right: 10px;
    color: var(--col_3);
}

.affiliate-levels-all{
    margin-top: 30px;
    max-width: 250px;
}

.affiliate-disclaimer{
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.1;
    padding: 15px;
    opacity: 0.7;
}

.affiliates-bg-1{
    background: url("../img/affiliate_bg_1.jpg") no-repeat;
    background-size: cover;
}

.affiliate-3{
    padding: 80px 40px;
    display: flex;
    justify-content: flex-end;
}

.affiliate-3-1{
    max-width: 400px;
}

.affiliate-3-1 p{
    color: var(--col_1);
}

.affiliate-3 .btn-1{
    max-width: 250px;
}

.affiliate-4{
    text-align: center;
    padding-bottom: 80px;

}
.affiliate-4 h2,
.affiliate-4 p{
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.affiliate-4 .show-800{
    margin: 0 auto;
    max-width: 400px;
    margin-bottom: 60px;
    padding: 0 5px;
}

.affiliate-4 img{
    width: 100%;
}

.dash-banner-cta{
    position: relative;
    border: 1px solid #383c45;
    background: var(--col_4) url("../img/dash_pattern_1.jpg");
    background-size: cover;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.dash-banner-cta img{
    width: 100%;
}
.dash-banner-cta .btn-1{
    position: absolute;
    right: 30px;
    bottom: -30px;
}

.settings-tabs{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    margin-bottom: 50px;
}

.settings-tabs .tab{
    background: #282c35;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--col_3);
    transition: all .2s ease-in-out;
    text-transform: uppercase;
    cursor: pointer;
}

.settings-tabs .tab.active{
    background: var(--col_3);
}
.settings-tabs .tab:not(.active):hover{
    background: var(--col_1);
    color: var(--col_2);
}

.settings-wallet{
    display: block;
    position: relative;
    width: 100%;
    padding-left: 60px;
    border-bottom: 1px solid var(--col_3);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.settings-wallet .icon{
    position: absolute;
    left: 0;
    top: 28px;
    width: 40px;
    z-index: 3;
}


.settings-input-group{
    position: relative;
    color: var(--col_3);
    margin-bottom: 15px;
}

.settings-input-group .warning{
    color: #bd1d37;
}


.settings-input-group .name{
    padding-left: 20px;
    height: 22px;
}

.settings-input-group .value{
    border: 1px solid #383c45;
    background: #282c35;
    color: var(--col_3);
    padding: 12px 20px;
    width: 100%;
    display: block;
    outline: none;
    font-family: 'Roboto Mono', monospace;
    /*font-size: 1rem;*/
    min-height: 50px;
    word-break: break-all;
}

.settings-input-group .value.pw{
    padding-right: 65px;
}

.settings-input-group .value.undefined{
    color: #585d6b;
}


.cpy-input{
    position: absolute;
    top: 23px;
    right: 1px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--col_3);
    cursor: pointer;
    color: #fff;
}

.cpy-input img{
    width: 25px;
}


.number-fix{
    position: absolute;
    top: 23px;
    right: 1px;
    height: 48px;
    width: 48px;
    background: #282c35;
    pointer-events: none;
}

.toggle-password{
    position: absolute;
    top: 23px;
    right: 1px;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--col_2);
    cursor: pointer;
}

.toggle-password.active{
    background: var(--col_3);
    color: var(--col_1);
}

.toggle-password.active img{
    filter: invert(0);
    opacity: 1;
}

.toggle-password img{
    width: 20px;
    filter: invert(1);
    opacity: 0.5;
}

.toggle-password.auth{
    height: auto;
    width: auto;
    background: transparent;
    top: 20px;
}
.toggle-password.auth img{
    filter: grayscale(1) invert(0);
    opacity: 1;
}

.toggle-password.active.auth img{
    filter: grayscale(0);
}




.form-line{
    display: block;
    margin: 60px 0;
    width: 100%;
    height: 1px;
    background: var(--col_3);
}

.settings-2fa{
    display: grid;
    grid-template-columns: 300px 1fr;
}

.settings-2fa-1{
    padding: 25px 0;
}
.settings-2fa-1-2{
    margin-top: 15px;
}
.settings-2fa-1-2 .name{
    color: var(--col_3);
}
.settings-2fa-1-2 .value{
    font-family: 'Roboto Mono', monospace;
    font-size: 1.1rem;
    letter-spacing: 3px;
    line-height: 1;
}

.transactions-filter{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    margin-bottom: 50px;
}

.transactions-filter a{
    background: #282c35;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid var(--col_3);
    transition: all .2s ease-in-out;
    text-transform: uppercase;
}

.transactions-filter a.active{
    background: var(--col_3);
}
.transactions-filter a:not(.active):hover{
    background: var(--col_1);
    color: var(--col_2);
}

.commissions-search{
    /*display: grid;*/
    /*grid-template-columns: 1fr ;*/
    display: flex;
}

.commissions-search form{
    flex: 1;
}

.commissions-search form input{
    display: block;
    width: 100%;
    height: 57px;
    outline: none;
    border: 1px solid #383c45;
    background: #282c35;
    color: var(--col_3);
    padding: 15px 20px;
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
}

.wallet-extra{
    color: var(--col_1);
}

.account-details-text{
    max-width: 500px;
    color: var(--col_1);
    margin-bottom: 60px;
}

.account-details-text a{
    color: var(--col_3);
}

/* The switch - the box around the slider */
.preferences-row .switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 34px;
}

/* Hide default HTML checkbox */
.preferences-row .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.preferences-row .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #282c35;
    -webkit-transition: .4s;
    transition: .4s;
}

.preferences-row .slider:before {
    position: absolute;
    content: "OFF";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--col_2);
    color: var(--col_3);
    -webkit-transition: .4s;
    transition: .4s;
    font-size: 0.5rem;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preferences-row input:checked + .slider {
    /*background-color: var(--col_3);*/
}

.preferences-row input:focus + .slider {
    box-shadow: 0 0 1px #383c45;
}

.preferences-row input:checked + .slider:before {
    -webkit-transform: translateX(46px);
    -ms-transform: translateX(46px);
    transform: translateX(46px);
    background-color: var(--col_3);
    color: var(--col_1);
    content: "ON";
}

.preferences-row{
    display: flex;
    margin-bottom: 25px;
}

.preferences-row .switch{
    margin-right: 40px;
    min-width: 80px;
}

.preferences-row:not(:last-child){
    border-bottom: 1px solid #383c45;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.preferences-row-text{
    opacity: 0.5;
}

.alerts-container{
    position: fixed;
    padding: 25px;
    right: 0;
    top: 0;

    z-index: 99;
    width: fit-content;
    /*display: flex;*/
    /*justify-content: flex-end;*/
    /*width: 100%;*/
    /*pointer-events: none;*/
}

.alert-block{
    width: 100%;
    max-width: 500px;
    position: relative;
    background: #282c35;
    border: 1px solid #383c45;
    padding: 20px;
    text-align: left;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
}

.alert-block .text{
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Roboto Mono', monospace;
}

.alert-block .text img{
    margin-right: 15px;
    max-width: 50px;
}

.alert-btn{
    position: absolute;
    right: -8px;
    top: -8px;
    cursor: pointer;
    background: var(--col_2);
    border: 1px solid #383c45;
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.alert-auto{
    position: absolute;
    bottom: -25px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}

.bg-about{
    background: url("../img/bg_about.svg") no-repeat right top;
    background-size: 500px auto;
}

.bg-docs{
    background: url("../img/bg_docs.svg") no-repeat right top;
    background-size: 500px auto;
}

.bg-faq{
    background: url("../img/bg_faq.svg") no-repeat right top;
    background-size: 500px auto;
}

.bg-contacts{
    background: url("../img/bg_about.svg") no-repeat right top;
    background-size: 500px auto;
}

.bg-auth{
    background: url("../img/bg_auth.svg") no-repeat right top;
    background-size: 600px auto;
}

.about-title{
    font-weight: normal;
    font-size: 3rem;
    line-height: 1.3;
    max-width: 750px;
    margin: 80px 0;
}

.about-title span{
    color: var(--col_3);
}


.about-perks{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
}

.about-perk{
    max-width: 400px;
}
.about-perk .icon{
    background: #d6efe9;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.about-perk .icon img{
    width: 40px;
}

.about-perk .title{
    font-size: 1.3rem;
    line-height: 1;
}

.about-perk .text{}

.about-work{
    margin: 150px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 70px;
    align-items: center;
}
.about-work-1{}
.about-work-1 p{
    max-width: 400px;
}
.about-work-2{
    padding-top: 60px;
}

.about-work-2 img{
    display: block;
    max-width: 100%;
}


.main-list{
    padding-left: 15px;
}
.main-list li{
    color: var(--col_5);
}
.main-list li:before{
    display: inline-block;
    content: url("../img/icon_about_1.svg");
    width: 15px;
    margin-right: 10px;
}

.about-career{}
.about-career-1{
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
    margin-bottom: 50px;
}

.career-table{}
.career-table-row:not(:first-child){
    border-top: none;
}
.career-table-row{
    display: grid;
    grid-template-columns: 1fr 200px 200px 88px;
    align-items: center;
    border: 1px solid var(--col_6);
    padding-left: 25px;
    height: 90px;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    color: var(--col_5);
}

.career-table-row .icon{
    width: 25px;
    margin-right: 10px;
    vertical-align: middle;
    transform: translateY(-2px);
}
.career-table-row .position{
    padding-right: 15px;
}
.career-table-row .hours{}
.career-table-row .location{}
.career-table-row .cta{
    border-left: 1px solid var(--col_6);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
}
.career-table-row .cta img{
    width: 30px;
}

.career-table-row .cta:hover{
    background: var(--col_3);
    border-color: var(--col_3);
}

.deposit-top-fix{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.deposit-qr{
    margin-bottom: 30px;
}

.deposit-currency{
    width: 150px;
    opacity: 0.1;
    pointer-events: none;
}

.unlock-info{
    max-width: 400px;
    font-size: 1rem;
    line-height: 1.2;
    color: var(--col_6);
}

.dash-release{
    border: 1px solid #30353E;
    background: var(--col_8) url("../img/details_release_bg.svg") no-repeat right top;
    padding: 30px;
}

.unlock-results{
    margin-bottom: 25px;
}

.unlock-final{
    color: var(--col_3);
    line-height: 1;
    margin-top: 25px;
    margin-left: 20px;
}
.unlock-final .name{}
.unlock-final .value{
    font-size: 1.4rem;
    font-family: 'Roboto Mono', monospace;
    color: #fff;
}

.unlock-final.fee .name,
.unlock-final.fee .value{
    color: var(--col_5);
}

.unlock-2fa{
    max-width: 350px;
}

.dash-release-0{}

.dash-release-fix{
    display: flex;
}
.dash-release-1{
    flex: 1;
    position: relative;
}

.dash-release-1 .locked{
    filter: blur(5px);
    opacity: 0.3;
}


.release-lock{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.release-lock b{
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 2.5rem;
    line-height: 1;
}


.dash-release-2{
    margin-left: 25px;
    padding-left: 25px;
    text-align: center;
    padding-top: 25px;
    border-left: 1px solid var(--col_3);
}

.dash-release-2 .title{
    text-transform: uppercase;
    color: var(--col_3);
}

.dash-release-2 ul{
    color: var(--col_6);
    max-width: 450px;
    margin: 0 auto;
}

.dash-release-2 ul li{
    margin-top: 10px;
}

.terms-container{
    max-width: 700px;
}

.b-container:not(:last-child){
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--col_5);
}

.b-title{
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.b-title b{
    color: var(--col_3);
}

.b-img{
    max-width: 100%;
    display: block;
}

