html {
    font-size: 16px;
}

body{
    display: block;
    position: relative;
    font-family: 'Nunito Sans', sans-serif;
    color: #fff;
    background-color: #061727;
    line-height: 1.4rem;
    overflow-x: hidden;
}

p{
    color: #b6d1d8;
}

.bg-gradient{
    background-image: linear-gradient(20deg, rgba(237,69,152,0) 0%, rgb(6, 23, 39) 60%);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 1200px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-grid{
    background-image: url("../img/bg_main.svg");
    background-position: right top, center center;
    background-size: 310px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-stardust{
    background-image: url("../img/bg_stardust_1.jpg");
    background-position: center top;
    background-size: 1200px auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.msg-bg{
    padding: 10px;
}

.msg-container{
    border-radius: 5px;
    overflow: hidden;
    background: #ED4598;
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgb(109, 73, 237) 100%);

    font-weight: bold;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.5);
}

.msg-container .timeout{
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgb(109, 73, 237) 100%);
    transition: all 5s linear;
}

.container{
    display: block;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.container-900{
    max-width: 940px;
}

.header{
    position: relative;
    z-index: 99;
}

.header-top{}

.header-top .container{
    display: flex;
    align-items: center;
}

.top-logo{
    padding-top: 5px;
    margin: 30px 0;
    transition: margin .2s ease-out;
}

.desktop-menu{
    /*display: flex;*/
    flex: 1;
    /*justify-content: flex-end;*/
    align-items: center;
    font-weight: 200;
    text-align: right;
}

.desktop-menu .menu-row{
    display: inline-block;
    vertical-align: middle;
    margin: 5px 10px;
    text-transform: lowercase;
}

.desktop-menu .menu-row:after{
    display: block;
    border-radius: 3px;
    content: '';
    height: 2px;
    width: 0;

    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgb(109, 73, 237) 100%);
    transition: width .2s ease-out;
}

.desktop-menu .menu-row:hover:after{
    width: 100%;
    opacity: 0.5;
}

.desktop-menu .menu-row .bounty{
    font-weight: bold;
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgb(148, 136, 240) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.desktop-menu .menu-row .bounty img{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 3px;
    animation: coin 2s ease-in infinite;
}

@keyframes coin {
    0%, 100% {
        transform: rotateY(0);
    }

    19.999% {
        transform: rotateY(90deg);
    }

    20% {
        transform: rotateY(270deg);
    }

    39.999% {
        transform: rotateY(360deg);
    }
    40% {
        transform: rotateY(0);
    }

}



.desktop-menu .menu-row.active:after{
    width: 100%;
    /*border-bottom: 2px solid #ba1ecc;*/
}

.social-menu{
    position: relative;
    margin-left: 10px;
}

.social-toggle{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}
.social-toggle img{
    width: 25px;
    vertical-align: middle;
    margin-right: 5px;
}

.social-box{
    position: absolute;
    display: flex;
    max-height: 0;
    right: 0;
    top: 40px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);

    border-radius: 5px;
    z-index: 99 !important;
    transition: all .2s linear;
    overflow: hidden;
    padding-right: 15px;
}

.social-box:after{
    position: absolute;
    top: -10px;
    right: 20px;
    content: '';
    display: block;
    height: 90%;
    width: 3px;
    background: linear-gradient(180deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    border-radius: 5px;
}


.social-box.open{
    max-height: 400px;
    overflow: visible;
    opacity: 1;
}


.social-col{
    text-align: right;
    min-width: 190px;
    padding: 25px;
    font-size: 1.1rem;
}

.social-col .title{
    font-weight: bold;
    letter-spacing: 1px;
}
.social-col .title img{
    width: 35px;
    vertical-align: middle;
    margin-right: 10px;
}

.social-col a{
    display: block;
    margin: 3px;
    color: #9488f0;
    cursor: pointer;
}

.social-col a:focus,
.social-col a:hover{
    text-decoration: underline;
}



.mobile-menu-fix{
    display: none;
    flex: 1;
    text-align: right;
}

#mobile-menu-toggle{
    display: none;
    cursor: pointer;
    height: 40px;
    width: 40px;
    position: relative;
}

#mobile-menu-toggle span{
    display: block;
    background: #fff;
    height: 3px;
    border-radius: 3px;
    margin: 10px 0;
    transition: all .2s linear;
}

#mobile-menu-toggle span:nth-child(1){
    width: 15px;

}
#mobile-menu-toggle span:nth-child(2){
    width: 35px;
}
#mobile-menu-toggle span:nth-child(3){
    width: 15px;
    margin-left: 20px;
}

#mobile-menu-toggle.open span:nth-child(1){
    transform: rotate(45deg) translate(5px,-3px);
    transform-origin: top left;
    width: 20px;
}
#mobile-menu-toggle.open span:nth-child(2){
    transform: rotate(-45deg);
    transform-origin: center;
    width: 35px;
}
#mobile-menu-toggle.open span:nth-child(3){
    transform-origin: bottom right;
    width: 20px;
    transform: rotate(45deg) translate(-9px,8px);
}



#mobile-menu{
    position: relative;
    z-index: 1;
    max-height: 0;
    transition: all .5s linear;
    overflow: hidden;
    background: url("../img/menu_logo.png"), linear-gradient(180deg, rgb(0, 2, 25) 0%, rgba(0,0,0,0) 100%);
    background-repeat: no-repeat;
    background-position: center 10%;
}

#mobile-menu.open{
    display: none;
    max-height: 0;
}


#mobile-menu .menu-row{
    display: block;
    padding: 15px 25px;
    padding-left: 50px;
    /*background: rgba(0, 0, 0, 0.3);*/
    /*border-bottom: 3px solid #001b3c;*/
    transition: all .2s ease-out;
    text-transform: lowercase;
    text-align: right;
    outline: none;
    /*border-right: 4px solid transparent;*/
}

#mobile-menu .menu-row.active{
    background: linear-gradient(-90deg, rgba(148, 136, 240, 0.5) 0%, rgba(237,69,152,0) 50%);
    /*padding-left: 55px;*/
}

#mobile-menu .menu-row:hover{
    /*border-right: 15px solid #ED4598;*/
    background: rgb(237,69,152);
    background: linear-gradient(-90deg, rgba(237,69,152,0.8) 0%, rgba(237,69,152,0) 80%);
}


#mobile-menu .menu-row .bounty{
    font-weight: bold;
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgb(148, 136, 240) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

#mobile-menu .menu-row .bounty img{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 3px;
    animation: coin 2s ease-in infinite;
}


.menu-social{
    padding: 25px;
}
.menu-social .name{
    padding-left: 25px;
}

.menu-social .menu-social-row{
    display: flex;
    align-items: center;
    /*padding: 0 25px;*/
    text-align: right;
    padding: 15px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
}

.menu-social .menu-social-row:not(:first-child){
    margin-top: 20px;
    padding-top: 20px;
}


.menu-social .menu-social-row .icon{
    width: 40px;
    margin-right: 20px;
    opacity: 0.5;
}
.menu-social .menu-social-row .links{
    flex: 1;
}
.menu-social .menu-social-row .links a{
    display: inline-block;
    margin: 2px 5px;
    font-weight: 200;
    font-family: 'Work Sans', sans-serif;
}

.menu-social .menu-social-row .links a:hover{
    text-decoration: underline;
}



.page-title-lrg{
    font-size: 3rem;
    text-align: center;
    line-height: 350px;
}

.home-bg-1{
    background: rgba(0, 76, 127, 0.3);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.news-bg-1{
    background: rgba(0, 76, 127, 0.3);
    padding-bottom: 50px;
    margin-top: 200px;
    position: relative;
    z-index: 1;
}

.footer{
    position: relative;
    padding: 80px 0 25px 0;
    background: #0f344e;
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.5);
    overflow: hidden;
}

.footer-bg-1{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("../img/bg_footer.svg");
    background-position: center top;
    pointer-events: none;
    opacity: 0.05;
    background-size: 160px 160px;
    z-index: 0;
}

.footer-bg-2{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("../img/footer_bg.jpg");
    background-position: center;
    pointer-events: none;
    /*opacity: 0.05;*/
    /*background-size: 160px 160px;*/
    z-index: 0;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.footer-gradient-top{
    position: absolute;
    width: 334px;
    left: 20px;
    top: -80px;
    height: 15px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    transition: width .2s ease-out;

}

.footer-lines{
    position: absolute;
    left: 19px;
    top: -66px;
}

.footer-row-1{
    display: flex;
    align-items: center;
}

.footer-logo{
    width: 334px;
    text-align: center;
}

.footer-newsletter-container{
    flex: 1;
    max-width: 500px;
    margin-left: auto
}

.footer-newsletter-label{
    margin-bottom: 10px;
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-newsletter{
    width: 100%;
    position: relative;
    height: 70px;
    background: rgba(143, 231, 255, 0.2);
    display: flex;
}

.footer-newsletter .icon{
    background: rgba(143, 231, 255, 0.2);
    line-height: 70px;
    width: 70px;
    text-align: center;
}

.footer-newsletter input{
    position: relative;
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-weight: bold;
    padding: 0 25px;
    font-size: 1rem;
    width: 100%;
    display: block;
}

.footer-newsletter input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}

.footer-newsletter .btn-newsletter{
    background: #8fe7ff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-top: 10px;
    margin-right: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

.footer-newsletter .line{
    display: block;
    width: 88%;
    height: 2px;
    position: absolute;
    bottom: 10px;
    left: 35px;
    background: #8fe7ff;
    background: linear-gradient(90deg, rgba(53,138,221,1) 0%, rgb(143, 231, 255) 100%);
}

.footer-row-2{
    margin-top: 25px;
    text-align: right;
}

.footer-nav{
    display: flex;
    order: 1;
    flex: 1;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);

    border-radius: 5px;
    padding: 25px;
}

.footer-nav-col:nth-child(2){
    margin: 0 80px;
}

.footer-nav-col .title{
    font-weight: bold;
    /*border-bottom: 1px solid rgba(255, 255, 255, 1);*/
    border-bottom: 1px solid #9488f0;
}



.footer-nav ul{
    display: inline-block;
    max-width: 600px;
}

.footer-nav li{
    position: relative;
    display: inline-block;
    margin: 5px 0;
    margin-right: 30px;
    font-weight: 200;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all .2s linear;
    border-bottom: 1px solid transparent;

}

.footer-nav li:hover{
    opacity: 1;
    border-bottom: 1px solid #fff;
}

.footer-company{
    opacity: 0.8;
    font-weight: 300;
    font-size: 0.8rem;
    padding-right: 25px;
}

.main-title{
    position: relative;
    font-size: 2.5em;
    line-height: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 50px 0;
    max-width: 400px;
    font-family: 'Work Sans', sans-serif;
}

.main-title:before{
    position: absolute;
    bottom: 0px;
    z-index: -1;
    content: '';
    display: block;
    width: 334px;
    height: 15px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
}

.main-title:after{
    position: absolute;
    bottom: -15px;
    z-index: -1;
    content: '';
    display: block;
    width: 334px;
    height: 15px;
    background: url("../img/lines.png") no-repeat;
}

.main-title.center{
    margin: 50px auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-title.offer{
    text-align: right;
    word-spacing: 100vh;
}

.main-title.dash{
    margin-top: 0!important;
}




.title-center{
    margin: 50px auto;
}

.dots-bg-fix{
    position: relative;
    overflow: hidden;
}

.home-news-text{
    max-width: 350px;
    margin-bottom: 80px;
}

.latest-news:before{
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 930px;
    height: 930px;
    background: url("../img/dots_b.svg") no-repeat;
    background-size: contain;
    content: '';
    opacity: 0.2;
    z-index: -1;
}

.latest-news{
    position: relative;
    margin-top: 50px;
}

.latest-news-card-fix{
    padding: 35px 0;
    max-width: 320px;
    margin: 0 15px;
}

.latest-news-card{
    border-radius: 5px;
    padding: 25px;
    padding-top: 0;
    max-width: 320px;
    background: rgba(0, 76, 127, 0.3);
}

.latest-news-card:not(:first-child){
    margin-left: 20px;
}


.latest-news-card .img{
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 5px;
    position: relative;
    top: -30px;
    background-size: cover;
}

.latest-news-card .date{
    opacity: 0.3;
}

.latest-news-card .title{
    font-weight: bold;
    text-transform: uppercase;
}

.latest-news-card .text{
    font-size: 0.9rem;
    color: #b6d1d8;
    min-height: 200px;
}
 
.latest-news-card .more{
    display: block;
    position: relative;
    font-weight: bold;
    margin-top: 40px;
}

.latest-news-card .more:after{
    content: url('../img/fwd.svg');
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    right: 50px;
    transition: all .2s ease-in-out;
}

.latest-news-card:hover .more:after{
    right: 0;
}


.latest-news-dots{
}
.latest-news-dots ul{
    display: flex;
    justify-content: center;
}
.latest-news-dots li{
    width: 15px;
    height: 15px;
    background: rgba(0, 76, 127, 0.3);
    margin: 10px;
    cursor: pointer;
    transition: background .2s ease-out;
    color: transparent;
}

.latest-news-dots li.slick-active{
    background: #b6d1d8;
}

.latest-news-dots button{
    outline: none;
}


.main-btn{
    display: flex;
    height: 55px;
    max-width: 230px;
    margin-top: 50px;


}

.main-btn .icon{
    height: 52px;
    width: 55px;
    border-bottom: 3px solid #ED4598;
    background: rgba(143, 231, 255, 0.2);
    text-align: center;
    line-height: 52px;
    transition: all .2s ease-in-out;
}

.main-btn:hover .icon{
    /*background: #ED4598;*/
    border-bottom: 52px solid #ED4598;
}

.main-btn:hover .text{
    text-shadow:1px 1px 10px rgba(255, 255, 255, 0.7);
}



.main-btn .icon img{
    max-width: 15px;
    vertical-align: middle;
}


.main-btn .text{
    color: #b6d1d8;
    flex: 1;
    padding-left: 20px;
    line-height: 55px;
    background-image: url("../img/btn_dots.png");
    background-repeat: no-repeat;
    background-position: right;
    text-transform: lowercase;
}

.main-btn.center{
    margin: 25px auto;
}


.why-btn{
    margin-top: 150px;
    margin-left: 100px;
}

.home-affiliate{
    display: flex;
    align-items: center;
    margin-bottom: 150px;
}
.home-affiliate .text{
    max-width: 500px;
}

.home-affiliate .text p{
    margin-bottom: 50px;
}


.home-affiliate .img{
    flex: 1;
    text-align: right;
    order: 1;
}

.home-affiliate .img img{
    max-width: 550px;
}


.main-btn-2{
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: 2rem;
}

.main-btn-2 img{
    margin-left: 5px;
    transition: all .2s ease-in-out;
}

.main-btn-2:hover img{
    margin-left: 15px;
}



.main-btn-2:after{
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
}

.home-calculator{
    position: relative;
}

.home-calculator:before{
    position: absolute;
    top: -85px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 930px;
    height: 930px;
    background: url("../img/dots_b.svg") no-repeat;
    background-size: contain;
    content: '';
    opacity: 0.2;
    z-index: -1;
}

.calculator{
    position: relative;
    max-width: 870px;
    margin: 0 auto 150px auto;
}
.calculator-1{
    background: rgba(0, 76, 127, 0.35);
    width: 650px;
    border-radius: 5px;
    padding: 45px;
    overflow: hidden;
}

.calculator-2{
    position: absolute;
    padding: 30px;
    background: rgb(71, 63, 93);
    /*background-image: linear-gradient(90deg, rgba(237,69,152,0.2) 0%, rgba(40,168,223,0.2) 100%);*/
    background-image: url("../img/calc_bg.jpg");
    background-size: cover;
    background-position: right;

    top: 30px;
    right: 30px;
    width: 365px;
    border-radius: 5px;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
    overflow: hidden;
}

.calc-label-1{
    color: #b6d1d8;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.star{
    color: #ee4598;
}


.calc-amount{
    position: relative;
    font-family: 'Rajdhani', sans-serif;
}

.calc-amount .btc{
    font-size: 2.3rem;
    color: #9488f0;
    font-weight: bold;
    position: absolute;
    left: 210px;
    top: 28px;
    opacity: 0.8;
    pointer-events: none;
}

.calc-amount input{
    background: rgb(0,69,152);
    background: linear-gradient(90deg, rgba(0,69,152,0.15) 0%, rgba(39,168,223,0.15) 100%);
    border: none;
    font-size: 2.3rem;
    color: #9488f0;
    font-weight: bold;
    padding: 15px 0 15px 45px;
    position: relative;
    left: -45px;
    outline: none;
    width: 100%;
    font-family: 'Rajdhani', sans-serif;
}

.calc-amount input::-webkit-inner-spin-button,
.calc-amount input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-row{
    margin-bottom: 20px;
}

.calc-slider{
}

#comp-value,
.calc-duration{
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
}

.calc-disclaimer{
    font-size: 0.8rem;
    color: #b6d1d8;
    font-weight: 200;
    line-height: 0.9rem;
    max-width: 350px;
}

.calc-total{
    line-height: 2.5rem;
}

.calc-total .name{
    color: #b6d1d8;
    font-size: 1.1rem;
}

.calc-total .result{
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
}
.calc-total .btc{
    font-family: 'Rajdhani', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: #9488f0;
    margin-bottom: 10px;
}

.calc-total:after{
    content: '';
    display: block;
    width: 110%;
    height: 3px;
    border-radius: 3px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
}

.calc-results{
    margin-top: 10px;
    text-align: right;
    margin-right: -35px;
}

.calc-results .result{
    text-align: left;
    display: inline-block;
    padding: 5px 20px;
    margin: 7px 5px;
    /*min-width: 150px;*/
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.calc-results .result .name{
    color: #b6d1d8;
    font-size: 0.8rem;
}

.calc-results .result .value{
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.calc-results .result .value .btc{
    color: #9488f0;
    margin-left: 5px;
}

.calc-btn{
    position: relative;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    display: block;
    width: 200px;
    background: rgba(143, 231, 255, 0.3);
    text-align: center;
    margin: 25px auto 0 auto;
    border-radius: 5px;
    line-height: 3rem;
    transition: all .2s ease-in-out;
    transform: scale(1);
}

.calc-btn:hover{
    box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.3);
    transform: scale(1.05);

}


.calc-btn:after{
    position: absolute;
    content: '';
    display: block;
    width: 90%;
    bottom: 5px;
    left: 5%;
    height: 3px;
    border-radius: 3px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
}

.home-where-container{
    margin-bottom: 100px;
    position: relative;
}

.home-where-container:before{
    position: absolute;
    top: -85px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 930px;
    height: 930px;
    background: url("../img/dots_w.svg") no-repeat;
    background-size: contain;
    content: '';
    opacity: 0.05;
    z-index: -1;
}

.home-where-nav{
    margin: 50px 0;
    max-width: 1000px;
    padding: 0;
    display: flex;
    /*justify-content: space-around;*/
}

.home-where-nav li{
    text-align: center;
    padding: 20px;
    background: rgba(0, 76, 127, 0.3);
    flex: 1;
    font-size: 1.1rem;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background .2s ease-out;
}

.home-where-nav li.active{
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
}

.home-where-nav li:not(.active):hover{
    background: rgba(0, 76, 127, 0.6);
}


.home-where-slide{
    display: flex;
    width: 100%;
}

.home-where-slides{
    overflow: hidden;
    display: flex;
    /*flex-direction: column;*/
}

.home-where-slide-fix{
    overflow: hidden;
    max-width: 100%;
    padding: 35px;
    display: none;
    transition: all .2s ease-out;
}

.home-where-slide-fix:first-child{
    display: block;
}


.home-where-left{
    text-align: right;
}

.home-where-right{
    flex: 1;
    padding-left: 100px;
    padding-right: 50px;
}

.home-where-left .img{
    text-align: right;
    position: relative;
}

.home-where-left .img img{
    display: inline-block;
    max-width: 140px;
}


.home-where-info{
    font-family: 'Work Sans', sans-serif;
    margin-top: 30px;
    text-align: right;
}

.home-where-info .title{
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.home-where-info .value{
    color: #69f9f9;
    font-weight: 600;
    font-size: 1.2rem;
}

.home-where-right{}
.home-where-right .title{
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: bold;
}

.home-where-right p{
    margin: 30px 0;
    /*max-width: 400px;*/
}

.home-where-arrows{
    display: none;
    position: absolute;
    width: 100%;
    text-align: right;
    top: 50px;
    z-index: 3;
}

.home-where-arrows img{
    width: 15px;
}


.home-where-arrow-l,
.home-where-arrow-r{
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    padding: 10px;
    opacity: 0.8;
    width: 50px;
    line-height: 40px;
    height: 50px;

    transition: opacity .2s ease-out;
    background: radial-gradient(rgba(105, 249, 249, 0.3), rgba(105, 249, 249, 0.1), rgba(105, 249, 249, 0.1), transparent, transparent);
}

.home-where-arrow-l:hover,
.home-where-arrow-r:hover{
    opacity: 1;
}


.home-traits-container{
    padding-bottom: 200px;
    padding-top: 100px;
    overflow: hidden;
}

.home-traits-top{
    display: flex;
    /*background: red;*/
}

.home-traits-top .fix{
    flex: 1;
}

.home-traits-top p{
    max-width: 400px;
}

.home-traits{
    display: flex;
    justify-content: center;
}

.home-traits-col{
    position: relative;
    background: rgba(0, 76, 127, 0.3);
    border-radius: 5px;
    padding: 20px;
}

.home-traits-col:nth-child(1){
    margin-left: 120px;
}

.home-traits-col:nth-child(2){
    top: 50px;
    left: -45px;
}
.home-traits-col:nth-child(3){
    top: 100px;
    left: -90px;
}
.home-traits-col:nth-child(4){
    top: 150px;
    left: -135px;
}

.home-traits-col:not(:nth-child(1)) .home-traits-tile{
    /*margin-left: 12px;*/
    /*margin: 24px 12px;*/
}


.home-traits-tile{
    position: relative;
    margin: 5px;
    width: 200px;
    height: 200px;
    z-index: 3;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
    background: url("../img/why_bg.jpg");
}

.home-traits-tile .content{
    position: relative;
    background: rgba(36, 57, 80, 0.8);
    padding: 25px;
    width: 100%;
    height: 100%;
    transition: background .2s ease-out;
    font-family: 'Work Sans', sans-serif;
    overflow: hidden;
}

.home-traits-tile .content:focus,
.home-traits-tile .content:hover{
    background: rgba(36, 57, 80, 0.4);
}

.home-traits-tile .content .title{
    font-weight: 800;
    font-size: 1.2rem;
    color: #def6f9;
    text-transform: uppercase;
}

.home-traits-tile .content .more{
    display: flex;
    align-items: center;
    text-align: right;
    position: absolute;
    bottom: 25px;
    width: 250px;
    transition: width .2s ease-out;
}

.home-traits-tile .content .more .line{
    flex: 1;
    margin-right: 8px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    height: 3px;
    border-radius: 3px;
}
.home-traits-tile .content .more .text{
    font-size: 0.8rem;
    opacity: 0.8;
}

.home-traits-tile .content:focus .more,
.home-traits-tile .content:hover .more{
    width: 150px;
}




.home-traits-col:nth-child(1) .home-traits-tile:nth-child(1){
    background-position: 10% 10%;
}
.home-traits-col:nth-child(1) .home-traits-tile:nth-child(2){
    background-position: 10% 37%;

}
.home-traits-col:nth-child(1) .home-traits-tile:nth-child(3){
    background-position: 10% 65%;
}

.home-traits-col:nth-child(2) .home-traits-tile:nth-child(1){
    background-position: 35% 17%;
}
.home-traits-col:nth-child(2) .home-traits-tile:nth-child(2){
    background-position: 35% 45%;

}
.home-traits-col:nth-child(2) .home-traits-tile:nth-child(3){
    background-position: 35% 74%;
}


.home-traits-col:nth-child(3) .home-traits-tile:nth-child(1){
    background-position: 61% 24%;
}
.home-traits-col:nth-child(3) .home-traits-tile:nth-child(2){
    background-position: 60% 51%;

}
.home-traits-col:nth-child(3) .home-traits-tile:nth-child(3){
    background-position: 61% 81%;
}

.home-traits-col:nth-child(4) .home-traits-tile:nth-child(1){
    background-position: 88% 30%;
}
.home-traits-col:nth-child(4) .home-traits-tile:nth-child(2){
    background-position: 87% 57%;

}
.home-traits-col:nth-child(4) .home-traits-tile:nth-child(3){
    background-position: 88% 83%;
}

.home-how-container{
    position: relative;
}

.home-how-top-text{
    max-width: 400px;
    margin: 0 auto;
}

.home-how{
    position: relative;
    padding: 50px;
    display: flex;
    justify-content: space-between;
}

.home-how:before{
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 930px;
    height: 930px;
    background: url("../img/dots_w.svg") no-repeat;
    background-size: contain;
    content: '';
    opacity: 0.05;
    z-index: -1;
}

.home-how-card{
    position: relative;
    width: 220px;
    background: rgba(19, 22, 32, 0.5);
    border: 1px dotted rgba(143, 231, 255, 0.4);
    border-radius: 5px;
    padding: 20px 20px 50px 20px;
    margin-top: 130px;
}

.home-how-card .icon{
    width: 175px;
    position: relative;
    top: -30px;
    margin-top: -80px;
    display: inline-block;
}

.home-how-card .content{
    position: relative;
    width: 260px;
    left: -40px;
    text-align: center;

}

.home-how-card .content .title{
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 25px;
}
.home-how-card .content p{
    font-size: 0.9rem;
    text-align: center;
}

.home-piece-container{
    padding: 100px 0;
}

.home-piece{
    background: url("../img/bg_offer.jpg") no-repeat;
    background-size: cover;
    padding: 50px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
}

.home-piece .puzzle{
    position: absolute;
    display: block;
    width: 450px;
    right: 2%;
    bottom: -15%;
    transform: rotate(-185deg) translate(0,0);
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: rotate(-185deg) translate(0px, 0px);
    }
    50% {
        transform: rotate(-185deg) translate(-20px, 20px);
    }
}


.piece-dots{
    position: absolute;
    right: 50px;
    top: 25px;
    z-index: 1;
}

.piece-dots ul{
    display: flex;
    justify-content: center;
}

.piece-dots li{
    position: relative;
    margin: 0 5px;
    background: rgba(143, 231, 255, 0.4);
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all .2s ease-out;
    overflow: hidden;
}

.piece-dots li.slick-active{
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgb(198, 72, 237) 100%);
}

.piece-dots li:before{
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #fff;
    opacity: 0.2;
    top: 0;
    position: absolute;
}

.piece-dots li:after{
    content: url("../img/fwd.svg");
    display: block;
    width: 15px;
    height: 15px;
    opacity: 0.8;
    left: -2px;
    bottom: 5px;
    position: relative;
    margin: 0 auto;
    transform: rotate(-90deg);
}


.piece-dots li a{
    display: block;
    padding: 35px 15px 15px;
}



.piece-slides{
    max-width: 450px;
    z-index: 3;
}
.piece-slide{
    padding: 25px;
    position: relative;
}

.piece-slide .title{
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    font-size: 2.3rem;
    line-height: 2.2rem;
    font-weight: bold;
    margin-bottom: 35px;
}

.piece-slide p{}

.home-offer-container{
    padding-top: 50px;
}

.home-offer{
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.home-offer-1{
    position: relative;
    display: block;
    width: 305px;
    min-width: 305px;
    height: 500px;
    background: url("../img/bg_offer.jpg") no-repeat;
    background-size: cover;
    background-position: left bottom;

    border-radius: 5px;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
    order: 1;
}

.home-offer-percent{
    position: relative;
    text-align: right;
    top: 50px;
    z-index: 2;
}

.home-offer-percent img{
    width: 195px;

}
.home-offer-percent .text{
    position: absolute;
    word-spacing: 100vh;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 0.9rem;
}

.home-offer-percent .text span{
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
}

.home-offer-percent .text-1{
    color: #27a8df;
    top: 140px;
    right: 190px;
}
.home-offer-percent .text-2{
    color: #ee4598;
    bottom: 55px;
    right: 154px;
}

.home-offer-duration{
    text-align: right;
    margin-top: 40px;
    position: relative;
}

.home-offer-duration-1{
    display: inline-block;
    padding: 10px 10px 10px 25px;
    background: rgb(156, 110, 181);
    background: linear-gradient(90deg, rgb(156, 110, 181) 0%, rgba(40,168,223,1) 100%);
    font-weight: bold;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.5);
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.home-offer-duration-2{
    font-weight: bold;
    padding: 5px 10px 5px 5px;
}

.home-offer-2{
    padding-right: 60px;
    overflow: hidden;
}

.home-offer-2 p{
    text-align: right;
}

.home-trust{
    margin: 0 auto 250px auto;
    text-align: center;
}

.home-hero-container{
    overflow-x: hidden;
}

.home-hero{
    display: flex;
    padding-left: 100px;
}

.home-hero-1{
    order: 1;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    line-height: 3rem;
    padding-top: 80px;
}
.home-hero-2{
    position: relative;
    height: 400px;
    width: 400px;
}

.hero-title{
}

.hero-title-1{
    font-weight: 200;
    font-size: 1.5rem;
    padding-left: 35px;
    line-height: 1.7rem;
}
.hero-title-2{
    font-weight: bold;
    font-size: 3rem;

    background: linear-gradient(90deg, rgba(255,255,255, 1) 30%, rgb(157, 232, 249) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-title-3{
    font-weight: bold;
    font-size: 3rem;
    padding-left: 35px;

    background: linear-gradient(90deg, rgba(255,255,255, 1) 30%, rgb(157, 232, 249) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-img-1{
    width: 400px;
    position: absolute;
    left: 0;
    animation: hero-1 5s ease-in-out infinite;
}
.hero-img-2{
    width: 400px;
    left: 0;
    position: absolute;
    animation: hero-2 3s ease-in-out infinite;
}
.hero-img-3{
    width: 400px;
    left: 0;
    position: absolute;
    animation: hero-3 3s linear infinite;
}

@keyframes hero-1 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes hero-2 {
    0%, 100% {
        transform: rotateY(0deg)
    }
    33% {
        transform: rotateY(8deg)
    }
    66% {
        transform: rotateY(-5deg)
    }
}

@keyframes hero-3 {
    0%, 100% {
        transform: scale(1);
        /*transform: translate(0,0);*/
    }
    50% {
        transform: scale(1.01);
        /*transform: translate(-1px,-1px);*/
    }
}

.home-hero-btn{
    display: block;
    position: relative;
    top: -170px;
    left: 0;
    width: 100%;
    height: 60px;
}

.home-hero-btn .start-btn-container{
    display: block;
    width: 100%;
    z-index: 1;
    padding-left: 35%;
    position: absolute;
    text-align: center;

}

.home-hero-btn .start-btn-out{
    display: inline-block;
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(148, 136, 240,1) 100%);
    height: 60px;
    padding: 3px;
    position: relative;
    top: -5px;
    border-radius: 5px;
    clip-path: polygon(95% 0, 100% 50%, 100% 100%, 5% 100%, 0 50%, 0 0);
}

.home-hero-btn .start-btn-in{
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    background:  linear-gradient(90deg, rgba(237,69,152,0.1) 0%, rgba(148, 136, 240,0.1) 100%), url("../img/dots_btn_bg.svg");
    background-color: #061727;
    line-height: 54px;
    padding: 0 50px;
    letter-spacing: 1px;
    text-shadow:1px 1px 10px rgba(255, 255, 255, 0.7);
    min-width: 200px;
    border-radius: 5px;
    clip-path: polygon(95% 0, 100% 50%, 100% 100%, 5% 100%, 0 50%, 0 0);
    transition: all .2s ease-in-out;
}

.home-hero-btn:hover .start-btn-in{
    text-shadow:1px 1px 20px rgba(255, 255, 255, 0.8);
}

.lights-container{
    position: absolute;
    left: 67%;
    transform: translateX(-50%);
    background: rgba(143, 231, 255, 0.2);
    width: 130vw;
    height: 50px;
    display: block;

    mask-position: center;
    -webkit-mask-position: center;
    /*mask: url('../img/dots_mask.svg') luminance repeat-x;*/
    -webkit-mask: url('../img/dots_mask.svg') repeat-x;
    /*mask-border: url('../img/dots_mask.svg') 10 repeat-x;*/
    /*-webkit-mask-box-image: url('../img/dots_mask.svg') 10 repeat-x;*/
    mask-type: alpha;
    mask-repeat: repeat-x;

    z-index: -1;

}

.lights-container .lights-l,
.lights-container .lights-r{
    position: absolute;
    top: 0;
    width: 200px;
    height: 50px;


}

.lights-container .lights-r{
    animation: lights-r 3s ease-in infinite;
    background: linear-gradient(90deg, rgba(237,69,152,0) 0%, rgba(148, 136, 240,1) 100%);
    -webkit-border-top-right-radius: 25px;
    -webkit-border-bottom-right-radius: 25px;
    -moz-border-radius-topright: 25px;
    -moz-border-radius-bottomright: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.lights-container .lights-l{
    animation: lights-l 3s ease-in infinite;
    background: linear-gradient(-90deg, rgba(237,69,152,0) 0%, rgba(237,69,152,1) 100%);
    -webkit-border-top-left-radius: 25px;
    -webkit-border-bottom-left-radius: 25px;
    -moz-border-radius-topleft: 25px;
    -moz-border-radius-bottomleft: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}


@keyframes lights-l {
    0% {
        right: 50%;
        opacity: 0;
    }

    25%{
        opacity: 1;
        right: 50%;
    }
    100% {
        right: 100%;
        opacity: 0;
    }
}

@keyframes lights-r {
    0% {
        left: 50%;
        opacity: 0;
    }

    25%{
        opacity: 1;
        left: 50%;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.landing-bg-1{
    position: absolute;
    top: -60px;
    left: 0;
    background: url("../img/landing_bg.jpg"), #061727;
    background-position: center top;
    background-repeat: no-repeat, repeat;
    /*background-color: #061727;*/
    width: 100%;
    height: 1200px;
    /*z-index: -1;*/
}

.landing-bg-1:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 250px;
    display: block;
    background-repeat: repeat-x;
    bottom: -220px;
    left: 0;
    /*background: url("../img/landing_fade.png");*/
    background: linear-gradient(180deg, rgba(6,23,39,1) 0%, rgba(0, 0, 0, 0) 80%);
}


.home-stardust-1{
    position: absolute;
    top: 0;
    right: 0;
    background: url("../img/bg_stardust_1.png") no-repeat;
    background-position: 90% 30%;
    width: 100%;
    height: 1000px;
    z-index: -1;
}

.home-triangles{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: -1;
}

.home-triangle{
    position: absolute;
    z-index: -1;
    opacity: 0.05;
}

.home-triangle-1{
    background: url("../img/top_left_triangle.svg") no-repeat;
    background-size: contain;
    top: -20px;
    left: -50px;
    width: 300px;
    height: 300px;
}

.home-triangle-2{
    background: url("../img/top_right_triangle.svg") no-repeat;
    background-size: contain;
    top: 120px;
    right: -130px;
    width: 1100px;
    height: 1000px;
}

.home-triangle-3{
    background: url("../img/top_mid_triangle.svg") no-repeat;
    background-size: contain;
    top: 550px;
    left: 350px;
    width: 400px;
    height: 400px;
}

.faq-outside{
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.faq-search{
    position: relative;
    border-top: 3px solid #033559;
}

.faq-search:before{
    content: url("../img/search.svg");
    display: inline-block;
    background: #033559;
    width: 50px;
    padding: 15px;
    height: 50px;
    line-height: 20px;
    text-align: center;
    position: relative;
    top: -1px;
}

.faq-search:after{
    position: relative;
    top: -8px;
    left: 5px;
    content: '';
    display: block;
    width: 200px;
    height: 3px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
}

#faq-search::placeholder{
    color: #fff;
}

#faq-search{
    position: relative;
    outline: none;
    background: transparent;
    color: #fff;
    border: none;
    padding-left: 5px;
    max-width: 500px;
    line-height: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.faq-clear{
    float: right;
    color: #8fe7ff;
    line-height: 50px;
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: lowercase;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}

.faq-clear:hover{
    opacity: 1;
}

.faq-main{
    display: flex;
    margin-top: 50px;
}

.faq-1{
    min-width: 250px;
    margin-right: 80px;
}

.faq-2{
    flex: 1;
}


.main-title-2{
    position: relative;
    font-size: 1.7em;
    line-height: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 50px 0 30px 0;
    font-family: 'Work Sans', sans-serif;
}

.main-title-2:before{
    position: absolute;
    bottom: 0px;
    z-index: -1;
    content: '';
    display: block;
    width: 334px;
    height: 8px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
}

.main-title-2:after{
    position: absolute;
    bottom: -9px;
    z-index: -1;
    content: '';
    display: block;
    width: 334px;
    height: 10px;
    background: url("../img/lines.png") no-repeat;
}



.faq-questions{}
.faq-questions .main-title-2{
    margin: 60px 0 40px 0;
}
.faq-question{
    margin-top: 15px;
}

.faq-question .question{
    position: relative;
    line-height: 38px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    width: 100%;
    padding-right: 30px;
}

.faq-question .question:before{
    content: '';
    display: block;
    width: 90%;
    /*min-height: 40px;*/
    height: 100%;
    background: rgba(0, 76, 127, 0.3);
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 10%;
    z-index: -1;
}

.faq-question .question:after{
    content: url("../img/fwd.svg");
    display: block;
    width: 15px;
    position: absolute;
    top: 0px;
    right: 15px;
    z-index: -1;
    transform: rotate(90deg);
    text-align: center;
}

.faq-question.open .question:after{
    transform: rotate(-90deg);
    right: 5px;
}



.faq-question .answer{
    overflow: hidden;
    color: #b6d1d8;
    padding-top: 20px;
    font-size: 0.9rem;
    display: none;
}

.faq-question.open .answer{
    display: block;
}

.faq-question .answer p{
    padding-left: 20px;
}

.faq-side-topics{
    color: #9488f0;
}
.faq-side-topics .title{
    font-weight: 200;
    font-size: 2.2rem;
}
.faq-side-topics ul{
    margin-top: 25px;
}
.faq-side-topics li{
    margin-top: 5px;
    display: flex;
    align-items: center;
}
.faq-side-topics li a{
    transition: color .2s ease-out;
}

.faq-side-topics li span{
    opacity: 0;
    flex: 1;
    height: 3px;
    margin-left: 20px;
    border-radius: 3px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    transition: opacity .2s ease-out;
}


.faq-side-topics li:hover span{
    opacity: 1;
}

.faq-side-topics li:hover a{
    color: #fff;
}


.side-buttons-container{
    position: relative;
    margin-top: 20px;
    z-index: 2;
    display: flex;
}

.payments-btn{
    position: absolute;
    left: -10px;
    top: 70px;
}

.payments-btn a{
    writing-mode: vertical-rl;
    transform:scale(-1);
    text-transform: uppercase;
    background: #ED4598;
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    padding: 10px 10px 10px 0px;
    display: inline-block;
    cursor: pointer;
}

.active-language{
    background: #185ecc;
    writing-mode: vertical-rl;
    transform:scale(-1);
    text-align: center;
    line-height: 30px;
    border-radius: 5px;
    padding: 10px 10px 10px 0px;
    position: relative;
    left: -10px;
    /*top: 6px;*/
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    height: 65px;
}

.all-languages{
    display: none;
    vertical-align: top;
    width: 0;
    opacity: 0;
    transition: all .2s ease-out;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-right: 10px;
}

.all-languages.open{
    display: block;
    opacity: 1;
    width: auto;
}


.all-languages .title{
    font-size: 0.8rem;
    opacity: 0.6;
}

.all-languages .languages{}
.all-languages .languages li{
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    transition: all .2s ease-out;
    border-bottom: 2px solid transparent;

}

.all-languages .languages li:hover{
    border-bottom: 2px solid #66acdf;
}


.top-title{
    position: relative;
    max-width: 650px;
    padding: 75px 0;
    margin: 0 auto 70px auto;

    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 200;
    font-size: 4rem;
    line-height: 4.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.top-title:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background-image: url("../img/top_title.html");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
    opacity: 0.3;
}

.two-columns{
    display: flex;
}

.two-columns p b{
    font-weight: bold;
    color: #fff;
}
.two-columns p{
    margin: 15px;
    flex: 1;
}

.bounties-claim{
    display: block;
    position: relative;
    color: #fff;
    background: linear-gradient(90deg, rgb(121, 125, 181) 0%, rgba(40,168,223,1) 60%);
    border-radius: 5px;
    padding: 25px;
    margin: 50px auto;
    max-width: 650px;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Work Sans', sans-serif;
}

.bounties-claim:before{
    display: block;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background: rgba(40,168,223,0.2);
    border-radius: 10px;
    position: absolute;
    left: -15px;
    top: -15px;
    content: '';
    z-index: -1;
}

.bounties-claim:after{
    content: url("../img/fwd.svg");
    width: 25px;
    height: 100%;
    line-height: 88px;
    position: absolute;
    right: 20px;
    top: 0;
}



.card-1{
    margin: 100px auto;
    background: rgb(156, 110, 181);
    background: linear-gradient(90deg, rgb(156, 110, 181) 0%, rgba(40,168,223,1) 100%);
    transition: opacity .2s ease-out;
    border-radius: 5px;
    max-width: 670px;
    position: relative;

    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);

    display: flex;
    align-items: center;
}

.card-1 .text{
    padding: 30px;
    width: 60%;
}

.card-1 .text .title{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 2.2rem;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 20px;
}

.card-1 .text p{
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.2rem;
}
.card-1 .img{
    position: relative;
    flex: 1;
    height: 100px;
    order: 1;
}

.card-1 .img img{
    position: absolute;
    max-width: 290px;
    max-height: 280px;
    top: -60px;
    right: 0;
}

.about-ch{}
.about-ch .name{
    font-family: 'Work Sans', sans-serif;
    font-weight: 200;
    font-size: 2.5rem;
    line-height: 3rem;
}

.about-ch .number{
    color: #48dafc;
}

.about-ch .number-info{
    font-weight: bold;
    font-size: 0.8rem;
}

.about-ch .link{
    display: inline-block;
    border-bottom: 2px solid #fff;
    font-weight: bold;
    padding: 0 5px 5px 5px;
    margin-top: 15px;
    margin-left: 0;
}

.about-ch .link img{
    height: 20px;
    margin-left: 10px;
    vertical-align: middle;
    transition: all .2s linear;
}

.about-ch .link:hover img{
    margin-left: 25px;
}



.affiliate-how-container{}
.affiliate-how{
    text-align: center;
    padding:50px 0 150px 0;
}
.affiliate-how-card{
    display: inline-block;
    max-width: 300px;
    min-height: 350px;
    vertical-align: top;
    background: rgba(0, 76, 127, 0.35);
    padding: 0 25px 25px;
    border-radius: 5px;
    margin: 60px 5px;
    text-align: left;
    position: relative;
}

.affiliate-how-card .img{
    position: relative;
    height: 90px;
}
.affiliate-how-card .img img{
    max-width: 180px;
    position: absolute;
    left: -15px;
    top: -100px;
}
.affiliate-how-card .title{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 20px;
}

.affiliate-how-card p{
    text-align: justify;
}

.affiliate-how-card:nth-child(2),
.affiliate-how-card:nth-child(5){
    top: 70px;
}

.affiliate-how-card:nth-child(3),
.affiliate-how-card:nth-child(6){
    top: 140px;
}

.affiliate-rankings{
    text-align: center;
    padding-bottom: 100px;
}

.affiliate-ranking{
    display: inline-block;
    vertical-align: top;
    width: 300px;
    position: relative;
    text-align: center;
    margin: 0 5px;
}

.affiliate-ranking .icon{
    max-height: 150px;
    position: relative;
    bottom: -85px;
    z-index: 5;
}

.affiliate-ranking-row{
    position: relative;
    border-radius: 5px;
    margin-top: 5px;
    padding: 10px 0;
    z-index: 1;
    overflow: hidden;
}

.affiliate-ranking-row .gloss{
    content: '';
    background: #fff;
    opacity: 0.04;
    width: 500px;
    height: 200px;
    position: absolute;
    bottom: 30px;
    display: block;
    left: -50%;
    transform: rotate(-10deg);
}


.affiliate-ranking-row:nth-child(1){
    background: rgba(0, 76, 127, 0.4);
}
.affiliate-ranking-row:nth-child(2){
    background: rgba(0, 76, 127, 0.3);
}
.affiliate-ranking-row:nth-child(3){
    background: rgba(0, 76, 127, 0.2);
}
.affiliate-ranking-row:nth-child(4){
    background: rgba(0, 76, 127, 0.1);
}
.affiliate-ranking-row:nth-child(5){
    background: rgba(0, 76, 127, 0.05);
}


.affiliate-ranking-row .rank{
    font-weight: bold;
    font-size: 1.5rem;
    color: #48dafc;
    margin-top: 70px;
}

.affiliate-ranking-row .name{
    font-weight: 200;
}
.affiliate-ranking-row .value{
    color: #9488f0;
    font-weight: bold;
}
.affiliate-ranking-row .value-2{}


.affiliate-ranking:nth-child(2),
.affiliate-ranking:nth-child(5){
    top: 50px;
}
.affiliate-ranking:nth-child(3),
.affiliate-ranking:nth-child(6){
    top: 100px;
}



.contacts-top{
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.contacts-1{
    flex: 1;
    order: 0;
}

.contacts-2{
    order: 2;
    padding-top: 20px;
}

.contacts-2 .title{
    color: #9488f0;
    font-weight: bold;
    margin-bottom: 20px;
}

.contacts-2 .mobile-time{
    display: none;
    font-weight: 200;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.contacts-2 .mobile-time.off{
    opacity: 0.4;
}


.contacts-2 .day{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contacts-2 .day .name{
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    background: rgba(148, 136, 240, 0.1);
    border: 2px dotted #9488f0;
    font-size: 0.7rem;
    font-weight: 200;
    margin-right: 10px;
}

.contacts-2 .day .time{
    font-size: 0.7rem;
    font-weight: 200;
    text-transform: uppercase;
}

.contacts-2 .day.off{
    opacity: 0.4;
}

.contacts-2 .day.off .name{
    border-color: #8fe7ff;
}


.contacts-3{
    order: 1;
    margin: 20px 40px;
    padding: 30px;
    width: 230px;
    border-radius: 5px;
    background: rgba(0, 76, 127, 0.35);
    align-self: flex-start;
}

.contacts-3 .c-name{
    font-size: 1.3rem;
    margin-top: 35px;
}

.contacts-3 .c-details{
    margin-top: 20px;
}

.contacts-3 .c-details .name{
    font-weight: bold;
    color: #9488f0;
}

.contacts-3 .c-details .value{}



.form-1{}
.form-1 .form-group{
    margin-bottom: 25px;
}

.form-1 .form-group select,
.form-1 .form-group input{
    background: rgba(0, 76, 127, 0.35);
    border: none;
    outline: none;
    border-radius: 5px;
    width: 100%;
    line-height: 50px;
    color: #9488f0;
    font-weight: bold;
    padding: 0 25px;
    font-size: 1rem;
}

.form-1 .form-group select{
    height: 50px;
}
.form-1 .form-group select option {
    background: #061727;
}


.form-1 .form-group textarea{
    background: rgba(0, 76, 127, 0.35);
    border: none;
    outline: none;
    border-radius: 5px;
    width: 100%;
    height: 263px;
    line-height: 1.2rem;
    font-size: 1rem;
    color: #9488f0;
    font-weight: bold;
    padding: 25px;
    resize: vertical;
}

.form-1 .form-label{
    font-weight: 200;
    opacity: 0.6;
    padding-left: 25px;
}

.form-1 .form-group.has-error textarea,
.form-1 .form-group.has-error input{
    border: 2px solid rgba(237, 69, 152, 0.5);
    animation: border-blink 1.5s linear infinite;
}

@keyframes border-blink {
    0%, 100% {
        border: 2px solid rgba(237, 69, 152, 0.5);
    }
    50% {
        border: 2px solid rgba(237, 69, 152, 0.2);
    }
}

.form-1 .form-error{
    color: #ed4598;
    margin-top: 3px;
}

.form-2 .form-error{
    color: #ed4598;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 3px;
}

.form-helper{
    border: 1px solid rgba(148, 136, 240, 0.2);
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: rgba(148, 136, 240, 0.6);
    margin-top: 5px;
    text-align: center;
}

.pincode-input-container{
    display: flex;
    /*justify-content: space-between;*/
    margin-bottom: 25px;
}

.pincode-input-text{
    width: 65px;
    height: 65px;
    border-radius: 5px;
    border: none;
    outline: none;
    text-align: center;
    color: transparent;
    cursor: pointer;
    background: rgba(0, 76, 127, 0.35) url("../img/pin_2.png") no-repeat center;
}

.pincode-input-container input:valid{
    background: #9488f0 url("../img/pin_1.png") no-repeat center;
}

.pincode-input-container input:focus{
    background: rgba(0, 30, 50, 0.5) url("../img/pin_2.png") no-repeat center;
}

.pincode-input-container input::selection {
    background: transparent; /* WebKit/Blink Browsers */
}

.pincode-input-container input::-moz-selection {
    background: transparent; /* Gecko Browsers */
}

.auth-pin.has-error .pincode-input-text{
    border: 2px solid rgba(237, 69, 152, 0.5);
    animation: border-blink 1.5s linear infinite;
}

.btn-1{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 76, 127, 0.35);
    color: #9488f0;
    min-width: 250px;
    margin-top: 20px;
    padding: 15px 0;
    border-radius: 5px;
    font-size: 1.1rem;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
}

.btn-1 .icon{
    max-width: 20px;
    max-height: 15px;
    margin-right: 10px;
    vertical-align: middle;
}

.btn-1 span{
    display: inline-block;
}

.btn-2{
    display: inline-block;
    background: rgba(0, 76, 127, 0.35);
    color: #9488f0;
    margin-top: 10px;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.btn-2 img{
    height: 15px;
    margin-right: 10px;
    vertical-align: middle;
}


.auth-container{
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

.auth-top{
    text-align: center;
}

.auth-top img{}

.auth-top .line-1{
    font-size: 1.8rem;
    line-height: 2.2rem;
    font-weight: 200;
}
.auth-top .line-2{
    display: inline-block;
    font-weight: 200;
    max-width: 200px;
    margin: 15px 0;
}

.auth-forms{
    position: relative;
    overflow: hidden;
    margin-bottom: 100px;
}

.auth-tabs{
    display: flex;
    margin-bottom: 30px;
}
.auth-tabs .tab{
    text-align: center;
    flex: 1;
    margin: 0 10px;
    font-size: 1.5rem;
    line-height: 3rem;
    font-weight: 200;
    opacity: 0.4;
    transition: opacity .2s ease-out;
    cursor: pointer;
}

.auth-tabs .tab.active{
    opacity: 1;
}


.auth-tabs .tab:after{
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    transition: all .2s ease-out;
    background: rgba(40,168,223,1);
}

.auth-tabs .tab.active:after{
    background: linear-gradient(-90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);

}

.auth-terms{
    display: block;
    text-align: center;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.5);
}

.auth-terms b{
    color: #9488f0;
}


.auth-btn{
    text-align: center;
}

.auth-forgot{
    text-align: right;
    font-weight: 200;
    color: #9488f0;
    display: block;
    opacity: 0.6;
}

#form-1{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}
#form-2{
    position: absolute;
    left: 900px;
    top: 0;
    width: 100%;
}

.news-container{}
.news-block{
    display: flex;
    background: rgba(0, 76, 127, 0.35);
    margin-bottom: 35px;
    max-height: 150px;
    overflow: hidden;
    justify-content: space-between;
    border-radius: 5px;
    align-items: center;
}
.news-block .news-img{
    display: block;
    width: 250px;
    height: 150px;
    background-size: cover;
}

.news-block .date{
    transform: rotate(-90deg);
    width: 40px;
    height: 20px;
    position: relative;
    top: 44px;
    color: #9488f0;
    opacity: 0.6;
    font-size: 1.5rem;
    /*color: #070d1b;*/
    font-weight: bold;
    font-family: 'Work Sans', sans-serif;
}

.news-block .texts{
    max-width: 600px;
    padding: 25px 0;
}
.news-block .title{
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 2rem;
    margin-bottom: 15px;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;

}

.news-block .text{}
.news-block .news-link{
    display: block;
    height: 150px;
    line-height: 165px;
    width: 60px;
    text-align: center;
    background: rgba(0, 76, 127, 0.35);
}

.news-block .news-link img{
    width: 20px;
}

.center-paragraph{}
.center-paragraph p{
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.about-goals-container{
    padding: 50px 0;
}

.about-goals{
    text-align: center;
}

.about-goal{
    display: inline-block;
    vertical-align: top;
    margin: 25px;
    max-width: 260px;
    position: relative;
    width: 220px;
    background: rgba(19, 22, 32, 0.5);
    border: 1px dotted rgba(143, 231, 255, 0.4);
    border-radius: 5px;
    padding: 20px 20px 50px 20px;
    margin-top: 130px;
}
.about-goal .img{
    max-width: 200px;
    max-height: 200px;
    width: 175px;
    position: relative;
    top: -30px;
    margin-top: -80px;
    display: inline-block;
}
.about-goal .texts{
    position: relative;
    width: 260px;
    left: -40px;
    text-align: center;
}

.about-goal .texts .title{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-goal .texts p{}


.about-offer-container{
    display: flex;
    flex-direction: column;
}
.about-offer-1{}

.about-offer-2{
    display: flex;
    align-items: flex-end;
    background: url("../img/about_offer_bg.jpg") no-repeat;
    background-size: cover;
    background-position: center center;
    margin: 100px 0;
    border-radius: 5px;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
}

.about-offer-2-1{
    text-align: right;
    margin-right: 30px;
}
.about-offer-2-2{
    margin-left: 30px;
}

.about-offer-2-1,
.about-offer-2-2{
    position: relative;
    flex: 1;
    padding: 120px 30px 30px;
}


.about-offer-2-1 .percent,
.about-offer-2-2 .percent{
    position: absolute;
    height: 230px;
}

.about-offer-2-1 .percent{
    top: -100px;
    right: 20px;
}

.about-offer-2-2 .percent{
    top: -100px;
    left: 20px;
}


.about-offer-2-1 .days,
.about-offer-2-2 .days{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 4rem;
}

.about-offer-2-2 .days{
    color: #48dafc;
}


.about-offer-2-1 .dates,
.about-offer-2-2 .dates{
    position: absolute;
    display: flex;
    bottom: -20px;
}

.about-offer-2-1 .dates{
    right: 25px;
}
.about-offer-2-2 .dates{
    left: 25px;
}


.about-offer-2-1 .dates{
    justify-content: flex-end;
}

.about-offer-2-1 .dates li,
.about-offer-2-2 .dates li{
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    margin: 2px;
    line-height: 38px;
    text-align: center;
}


.about-offer-2-2 .dates li{
    color: #48dafc;
    border-color: #48dafc;
}


.about-benefits-fix{
    margin: 80px 0;
    overflow: hidden;
}

.about-benefits-container{
    padding-bottom: 30px;
    position: relative;bottom: -30px;
}

#about-benefits-scrollbar{
    position: relative;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

#about-benefits-scrollbar .bar{
    position: absolute;
    display: block;
    background: linear-gradient(-90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    width: 60px;
    height: 10px;
    border-radius: 5px;
    top: 0;
    left: 0;

}


.about-benefits{
    display: block;
}

.about-benefit{
    display: inline-block;
    width: 290px;
    margin: 20px 15px;
}
.about-benefit-1{
    display: inline-block;
    vertical-align: top;
}
.about-benefit-1 img{
    width: 90px;
    background: rgba(0, 76, 127, 0.35);
    display: block;
    padding: 5px;
    border-radius: 5px;
}
.about-benefit-2{
    display: inline-block;
    vertical-align: top;
    width: 195px;
    padding-left: 10px;
    padding-top: 25px;
}
.about-benefit-2 .title{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1.5rem;
    /*word-spacing: 100vh;*/
    margin-bottom: 15px;
    max-width: 175px;
}
.about-benefit-2 p{

}

.about-where-container{}
.about-where{
    margin-top: 100px;
}

.about-where-1{
    display: flex;
    align-items: flex-end;
    padding-left: 5px;
}
.about-where-1 img{
    max-width: 200px;
}
.about-where-1 .title{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 2.5rem;
    margin-bottom: 15px;
}
.about-where-1-1{
    margin-left: 50px;
}
.about-where-1-2{
    display: flex;
    align-items: center;
}

.about-where-info{}
.about-where-info:first-child{
    margin-right: 50px;
}

.about-where-info .name{
    font-size: 1.4rem;
    opacity: 0.7;
}
.about-where-info .value{
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: bold;
    color: #9488f0;
}

.about-rm-container{
    position: relative;
}

.about-rm-dots{
    position: absolute;
    top: 41px;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.3;
}

.about-rm-dots-1{
    display: none;
    width: 100%;
    height: 354px;
    /*background: red;*/
    border: 3px dotted #9488f0;
    border-left: none;
}
.about-rm-dots-2{
    display: none;
    width: 100%;
    height: 347px;
    /*background: green;*/
    border-left: 3px dotted #9488f0;
}

.about-rm-dots .d3{
    /*height: 341px;*/
}

.about-rm-dots .d4,
.about-rm-dots .d6,
.about-rm-dots .d8,
.about-rm-dots .d10,
.about-rm-dots .d12{
    height: 346px;
}

.about-rm-dots .d1,
.about-rm-dots .d2,
.about-rm-dots .d3,
.about-rm-dots .d4,
.about-rm-dots .d5{
    display: block;
}




.about-rm{
    text-align: center;
    margin: 80px auto;
    max-width: 800px;
}

.about-rm-block{
    vertical-align: top;
    display: inline-block;
    margin: 30px;
    max-width: 200px;
    height: 290px;
}

.about-rm-block .date{
    display: inline-block;
    width: 120px;
    line-height: 24px;
    border: 2px solid #9488f0;
    color: #9488f0;
    background: #042945;
    font-weight: bold;
    border-radius: 12px;
}

.about-rm-block img{
    height: 80px;
    margin: 25px 0 15px 0;
}
.about-rm-block .title{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    word-spacing: 100vh;
}

.about-rm-block .text{
    opacity: 0.7;
}

.new-article{
    max-width: 630px;
    margin: 50px auto;
}

.article-top{
    position: relative;
}

.article-top-1{
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
}

.article-top-2{
    position: absolute;
    left: -120px;
    bottom: 50px;
    display: flex;
    flex-direction: column;
}

.article-top-2 .date{
    padding-left: 20px;
    font-weight: 200;
    opacity: 0.8;
}

.article-top-2 .title{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    max-width: 100%;
}

.new-article .text{
    margin-bottom: 80px;
}

.new-article .text h2{
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    margin: 50px 0 20px 0;
}

.new-article .text p a{
    text-decoration: underline;
    color: #9488f0;
}


.btn-back{
    display: block;
    color: #9488f0;
}
.btn-back .icon{
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    height: 15px;
}


.dash-link{
    transition: all .2s ease-in-out;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}
.dash-link:hover{
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.dashboard-container{}
.dashboard{
    display: flex;
    margin-bottom: 50px;
}
.dashboard-1{
    position: relative;
    width: 210px;
}

.dashboard-2{
    flex: 1;
    margin-left: 25px;
    min-height: 400px;
}

.dash-title{
    font-size: 1.8rem;
    letter-spacing: 1px;
    font-weight: 200;
    margin-bottom: 20px;
}

.dash-title.mobile{
    display: none;
}


.dash-cards{
    display: flex;
    margin-bottom: 25px;
}

.dash-card{
    background: rgba(0, 76, 127, 0.35);
    text-align: center;
    padding: 25px;
    flex: 1;
    border-radius: 5px;
}

.dash-card:nth-child(2){
    margin: 0 25px;
}


.dash-card-1{
    font-size: 1.5rem;
    color: #9488f0;
    font-weight: bold;
}
.dash-card-2{}
.dash-card-2-1{
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 2.4rem;
}
.dash-card-2-2{
    font-weight: 200;
    opacity: 0.8;
}

.user-panel{
    position: relative;
    background: rgba(0, 76, 127, 0.35);
    padding: 50px 25px 20px 25px;
    border-radius: 5px;
}

.user-panel-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    transition: width .2s ease-out;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.user-panel-top:after{
    position: absolute;
    top: 15px;
    display: block;
    width: 100%;
    content: '';
    height: 15px;
    background: url("../img/lines.png") no-repeat;
}

.user-panel-time{
    padding-left: 20px;
}
.user-panel-time-1{
    font-size: 0.9rem;
}

.user-panel-time-2{
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 2.4rem;
}
.user-panel-time-3{
    opacity: 0.5;
    font-size: 0.7rem;
}

.user-panel-infos{
    position: relative;
    width: 210px;
    left: -40px;
    background: #9488f0;
    padding: 25px;
    border-radius: 5px;
    margin: 15px 0;
}

.user-panel-info:not(:last-child){
    margin-bottom: 15px;
}
.user-panel-info .title{
    font-weight: 200;
    font-size: 0.8rem;
    line-height: 0.8rem;
}
.user-panel-info .value{
    font-weight: bold;
}

.user-panel-uplink{}
.user-panel-uplink .name{
    font-weight: 200;
    font-size: 0.8rem;
    line-height: 0.8rem;
}
.user-panel-uplink .value{
    font-weight: bold;
    color: #9488f0;
}

.user-panel-buttons{
    position: absolute;
    max-width: 160px;
    bottom: -20px;
    right: 35px;
    width: 150px;
    padding: 0 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.user-panel-buttons img{
    height: 30px;
}

.dash-menu{
    margin: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.dash-menu li{}
.dash-menu li a{
    transition: all .2s ease-out;
}

.dash-menu li:first-child a,
.dash-menu li a:hover{
    font-size: 1.5rem;
}

.dash-big-btns{
    display: flex;
    margin-bottom: 50px;
}

.dash-big-btn{
    display: block;
    padding: 25px;
    border-radius: 5px;
}

.dash-big-btn:nth-child(1){
    flex: 2;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    margin-right: 25px;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
}
.dash-big-btn:nth-child(2){
    flex: 1.5;
    background: rgba(0, 76, 127, 0.35);
    text-align: right;
}
.dash-big-btn .name{
    position: relative;
    /*font-family: 'Work Sans', sans-serif;*/
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: 1px;
    padding-bottom: 30px;
}

.dash-big-btn .name:after{
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 55px;
    transition: all .2s ease-out;
}

.dash-big-btn:hover .name:after{
    width: 50%;
}


.dash-big-btn:nth-child(2) .name{
    opacity: 0.7;
    color: #042945;
    -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}

.dash-big-btn:nth-child(2) .name:after{
    left: auto;
    right: 0;
    background: transparent;
    border: 1px solid #fff;
}


.dash-big-btn .info{}


#dash-deps-scrollbar{
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

#dash-deps-scrollbar .bar{
    position: absolute;
    display: block;
    background: linear-gradient(-90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    width: 60px;
    height: 10px;
    border-radius: 5px;
    top: 0;
    left: 0;

}

.dash-deps-bg{
    background: rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    padding: 0 20px;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.dash-deps-fix{
    overflow: hidden;
    max-width: 800px;
}

.dash-deps-container{
    padding-bottom: 30px;
    position: relative;
    bottom: -30px;
    overflow-x: scroll;
    max-width: 100%;
}

.dash-deps-container.active{
    cursor: grabbing;
}


.dash-deps{
    min-width: 1285px;
    display: flex;
}

.dash-dep{
    border: 1px dotted rgba(148, 136, 240, 0.4);
    flex: 1;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    margin: 0 5px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}

.dash-dep-id{
    font-weight: 200;
    font-size: 0.8rem;
    margin-bottom: 15px;
}
.dash-dep-id .name{
    opacity: 0.5;
    line-height: 0.8rem;
}
.dash-dep-id .value{
    font-weight: bold;
    color: #9488f0;
}

.dash-dep-circle-container{
    position: relative;
    height: 160px;
    margin: 25px 0;
}

.dash-dep-circle,
.dash-dep-circle-empty{
    background: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    display: inline-block;
    width: 150px;
    height: 150px;
    line-height: 160px;
    box-shadow: 0px 0px 15px 0px rgba(72, 218, 252, 0.2);
}

.dash-dep-circle-dots{
    position: absolute;
    display: block;
    width: 100%;
    height: 150px;
    /*content: url("../img/dep_dots.svg");*/
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.5;
}

.dash-dep-circle-dots:before{
    display: inline-block;
    width: 145px;
    position: relative;
    top: 3px;
    height: 145px;
    content: url("../img/dep_dots.svg");
    opacity: 0.5;
}


.dash-dep-payments{
    position: absolute;
    top: 55px;
    left: 0;
    display: block;
    width: 100%;
}

.dash-dep-payments .value{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 2rem;
}

.dash-dep-payments .value span{
    color: #48dafc;
    font-weight: normal;
}


.dash-dep-payments .name{
    opacity: 0.5;
    font-weight: 200;
    margin-top: 4px;
    font-size: 0.8rem;
}

.dash-dep-next{}
.dash-dep-next .name{
    color: #9488f0;
}
.dash-dep-next .value{
    /*font-family: 'Work Sans', sans-serif;*/
    font-weight: bold;
    font-size: 1.5rem;
}
.dash-dep-next .value-2{
    opacity: 0.5;
    font-size: 0.8rem;
}

.dash-dep-btn{
    border: 1px solid #9488f0;
    color: #9488f0;
    border-radius: 5px;
    padding: 5px 20px;
    margin-top: 20px;
    display: inline-block;
    transition: all .2s ease-out;
}

.dash-dep-btn:hover{
    background: #9488f0;
    color: #fff;
}


.dash-table{
    margin-bottom: 50px;
    font-size: 0.8rem;
}

.dash-table .flex-1-5{
    flex: 1.5!important;
}

.dash-table .flex-0-5{
    flex: 0.5!important;
}

.dash-table .flex-0-3{
    flex: 0.3!important;
}

.dash-table-header{
    display: flex;
    opacity: 0.6;
    font-weight: 200;
}
.dash-table-header .date{
    width: 30px;
    margin-right: 10px;
}
.dash-table-header .columns{
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 13px;
    flex: 1;
}
.dash-table-header .columns .col{
    flex: 1;
}
.dash-table-header .more{
    width: 60px;
    margin-left: 10px;
    text-align: center;
}
.dash-table-body{}
.dash-table-body .table-row{
    display: flex;
    margin-bottom: 10px;
}
.dash-table-body .date{
    background: rgba(0, 76, 127, 0.1);
    width: 30px;
    height: 60px;
    border-radius: 5px;
    margin-right: 10px;
    overflow: hidden;
    position: relative;
}

.dash-table-body .date span{
    display: block;
    font-size: 0.7rem;
    transform: rotate(-90deg);
    top: 27px;
    opacity: 0.6;
    position: relative;
}


.dash-table-body .columns{
    position: relative;
    display: flex;
    background: rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    flex: 1;
    min-height: 60px;
    align-items: center;
    padding-left: 20px;
    padding-right: 8px;
}
.dash-table-body .columns .col{
    flex: 1;
    font-weight: bold;
}

.dash-table-body .columns .col .btc{
    color: #9488f0;
    margin-right: 3px;
}


.dash-table-body .columns .status{
    width: 5px;
    background: #08f779;
    box-shadow: 0px 0px 4px 0px rgba(8,247,121,1);
    height: 40px;
    border-radius: 5px;
}

.dash-table-body .columns .status.yellow{
    background: #f9fc86;
    box-shadow: 0px 0px 4px 0px rgba(249,252,134,1);
}

.dash-table-body .columns .status.blue{
    background: #48dafc;
    box-shadow: 0px 0px 4px 0px rgba(72, 218, 252,1);
}

.dash-table-body .columns .status.purple{
    background: #9488f0;
    box-shadow: 0px 0px 4px 0px rgb(148, 136, 240);
}

.dash-table-body .columns .status.red{
    background: #ff3a57;
    box-shadow: 0px 0px 4px 0px rgb(255, 58, 87);
}



.dash-table-body .table-row-fix{
    display: block;
    width: 100%;
}

.dash-table-body .table-row-empty{
    background: rgba(0, 76, 127, 0.1);
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 200;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.dash-table-body .expand{
    display: none;
    position: relative;
    top: -15px;
    padding: 0 70px 0 40px;
}
.dash-table-body .expand .content{
    display: block;
    height: auto;
    background: rgba(0, 76, 127, 0.1);
    padding: 15px 0;
    width: 100%;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.dash-table-body .expand .content .box{
    display: inline-block;
    padding: 0 15px;
    overflow: hidden;
    font-size: 0.8rem;
    vertical-align: top;
    margin-top: 15px;
    word-break: break-all;
}

.dash-table-body .expand .content .box:nth-child(odd){
    width: 35%;
}
.dash-table-body .expand .content .box:nth-child(even){
    width: 60%;
}

.dash-table-body .expand .content .box .hash{
}


.dash-table-body .expand .content .box b{
    display: block;
    color: #9488f0;
    font-weight: 200;
}



.dash-table-body .table-more{
    position: relative;
    background: rgba(0, 76, 127, 0.1);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    transform: rotate(90deg);
}

.dash-table-body .table-more:after{
    display: inline-block;
    content: url("../img/fwd.svg");
    width: 15px;
    height: 15px;
    position: relative;
    top: 5px;
}


.dash-table-body .table-more.open{
    transform: rotate(-90deg);

}

.dash-affiliate{
    display: flex;
    margin-bottom: 50px;
}

.dash-affiliate-rep{
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0px 0px 8px 0px rgb(148, 136, 240);

}

.dash-affiliate-1{
    width: 285px;
    background: rgba(0, 76, 127, 0.3);
    border-radius: 5px;
    margin-right: 20px;
    padding: 20px 20px 20px 20px;
    text-align: center;
}

.dash-affiliate-1-1{
    margin-bottom: 15px;
}
.dash-affiliate-1-1-1{}
.dash-affiliate-1-1-1 img{
    width: 120px;
}
.dash-affiliate-1-1-2{
    margin-bottom: 25px;

}
.dash-affiliate-1-1-2 .value{
    font-weight: bold;
    font-size: 1.7rem;
    color: #9488f0;
}
.dash-affiliate-1-2{
    margin-bottom: 15px;
}
.dash-affiliate-1-1-2 .name,
.dash-affiliate-1-1-2 .name,
.dash-affiliate-1-2 .name{
    font-size: 0.8rem;
    font-weight: 200;
}

.dash-affiliate-1-2 .value{
    font-weight: bold;
    color: #9488f0;
}
.dash-affiliate-1-2 .value span{
    color: #48dafc;
}

.dash-affiliate-1-2 .value i{
    opacity: 0.5;
}


.dash-affiliate-2{
    flex: 1;
}

.dash-affiliate-2-1{
    background: rgba(0, 76, 127, 0.3);
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: center;
}

.dash-affiliate-2-1-1{
    margin-bottom: 10px;
}

.dash-affiliate-2-1-1 .name{
    font-size: 0.8rem;
    font-weight: 200;
}
.dash-affiliate-2-1-1 .value{
    font-weight: bold;
}
.dash-affiliate-2-1-1 .value span{
    color: #9488f0;
}

.dash-affiliate-progress{
    position: relative;
}
.dash-affiliate-progress .progress-bar{
    width: 100%;
    height: 40px;
    padding-top: 10px;
    position: relative;
    overflow-x: hidden;
}

.dash-affiliate-progress .progress-bar .dots{
    width: 100%;
    height: 2px;
    background: url("../img/affiliate_dots.png");
}
.dash-affiliate-progress .progress-bar .bar{
    height: 4px;
    background: #9488f0;
    border-radius: 5px;
    position: absolute;
    top: 9px;
    padding: 0 15px;
}

.dash-affiliate-progress .progress-bar .bar:after{
    position: absolute;
    display: inline-block;
    content: url("../img/handle_1.svg");
    width: 30px;
    top: -6.5px;
    right: 0;
}


.dash-affiliate-progress .current{
    position: absolute;
    bottom: -10px;
    left: 0;
    font-weight: bold;
    color: #9488f0;
    font-size: 0.7rem;
}
.dash-affiliate-progress .next{
    position: absolute;
    bottom: -10px;
    right: 0;
    font-weight: bold;
    font-size: 0.7rem;
}

.form-rank{}

.rank-pending,
.form-rank button{
    display: block;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 5px;
    line-height: 70px;
    width: 100%;
    letter-spacing: 1px;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    outline: none;
    text-align: center;
    margin-bottom: 20px;
}

.dash-affiliate-2-2{
    background: rgba(0, 76, 127, 0.3);
    border-radius: 5px;
    padding: 25px;
    text-align: center;
}

.dash-affiliate-2-2-1{
    margin-bottom: 15px;
}
.dash-affiliate-2-2-1 .name{
    font-size: 0.8rem;
    font-weight: 200;
}
.dash-affiliate-2-2-1 .value{
    font-weight: bold;
    font-size: 1.5rem;
    background: rgba(148, 136, 240, 0.2);
    line-height: 2rem;
    padding: 10px 5px;
    border-radius: 5px;
}

.dash-affiliate-2-2-1 .value span{
    opacity: 0.6;
}


.dash-affiliate-2-2-2{
    display: flex;
    margin-bottom: 25px;
    color: #9488f0;
}

.dash-affiliate-2-2-2-1 img{
    max-width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.dash-affiliate-2-2-2-2 img{
    max-width: 35px;
    vertical-align: middle;
    margin-right: 5px;
}


.dash-affiliate-2-2-2-1{
    display: block;
    background: rgba(0, 76, 127, 0.3);
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    min-width: 180px;
    cursor: pointer;
}

.dash-affiliate-2-2-2-2{
    flex: 1;
    display: block;
    background: rgba(0, 76, 127, 0.3);
    border-radius: 5px;
    padding: 10px;
    margin-left: 20px;
    text-align: center;
}

.dash-affiliate-2-2-3{
    display: block;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
    border-radius: 5px;
    padding: 20px;
    text-align: left;
}
.dash-affiliate-2-2-3 .title{
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2rem;
    letter-spacing: 1px;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 30px;
}

.dash-affiliate-2-2-3 .title:before{
    content: url("../img/fwd.svg");
    height: 20px;
    width: 20px;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
}
.dash-affiliate-2-2-3:hover .title:after{
    width: 50%;
}

.dash-affiliate-2-2-3 .title:after{
    position: absolute;
    content: '';
    height: 3px;
    width: 60px;
    background: #fff;
    display: block;
    left: 0;
    bottom: -20px;
    transition: all .2s ease-out;
}


.dash-affiliate-2-2-3 .info{}

.dash-affiliate-history{
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
}

.dash-affiliate-history-2{
    flex: 1;
    margin-left: 20px;
}

.dash-affiliate-history-2-1{
    border: 1px dotted rgba(105,249,249,0.2);
    border-radius: 5px;
    padding: 10px 20px;
}

.dash-com-total{
    position: relative;
    padding-left: 50px;
    margin: 10px 0;
}

.dash-com-total:after{
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 35px;
    height: 3px;
    background: #9488f0;
    border-radius: 3px;
}


.dash-com-total .name{
    color: #9488f0;
}

.dash-com-total:last-child:after{
    background: #48dafc;
}
.dash-com-total:last-child .name{
    color: #48dafc;
}


.dash-com-total .value{
    font-weight: bold;
}

.dash-affiliate-history-2-2{
    margin-bottom: 40px;
    text-align: center;
}

.dash-affiliate-history-2-2 .name{
    opacity: 0.5;
}

.dash-affiliate-history-2-2 .value{
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'Work Sans', sans-serif;

}
.dash-affiliate-history-2-2 .value b{
    color: #9488f0;
}


.dash-chart-container{
    display: block;
    max-width: 500px;
    width: 100%;
    position: relative;
    border: 1px dotted rgba(105,249,249,0.2);
    border-radius: 5px;
    padding-top: 10px;
    padding-right: 10px;
}

#dash-chart{

}

#clock{}
#clock span{
    animation: clock 2s ease-in-out infinite;
    margin: 0 3px 0 4px;
}

@keyframes clock {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0.4;
    }
}

@keyframes copy {
    0% {
        background: rgba(255, 255, 255, 0.5);
    }
    100% {
        background: rgba(0, 76, 127, 0.35);
    }
}

.deposit-details-info{
    position: relative;
    margin-bottom: 40px;
}

.deposit-download{
    position: absolute;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #9488f0;
    color: #9488f0;
    border-radius: 5px;
    right: 0;
    top: 0;
    font-size: 0.8rem;
    opacity: 0.5;
    transition: all .2s ease-out;
}

.deposit-download:hover{
    opacity: 1;
}


.deposit-details-info .value{
    font-size: 1rem;
    font-weight: bold;
    color: #9488f0;
}

.deposit-details-info .info{
    opacity: 0.4;
    font-size: 0.8rem;
}


.deposit-details-1{
    display: flex;
}

.deposit-details-1-1{
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 50px;
}

.deposit-details-1-1-1{
    text-align: center;
    flex: 1;
}

.deposit-details-1-1-2{
    text-align: right;
}



.deposit-details-settings{
    padding: 20px;
    border-radius: 5px;
    border: 1px dotted rgba(105,249,249,0.2);
    background: rgba(0, 76, 127, 0.1);
    max-width: 350px;
}

.deposit-details-2{
    text-align: right;
    margin-bottom: 40px;
}


.deposit-details-2-1{
    display: inline-block;
    vertical-align: middle;
    width: 58%;
    text-align: left;
}
.deposit-details-2-2{
    display: inline-block;
    vertical-align: middle;
    width: 40%;
}
.deposit-details-2-2 a{
    color: #9488f0;
    font-size: 0.8rem;
    text-align: right;
    display: block;
    text-decoration: underline;
}

.deposit-details-2-2 .alloc-bars{
    position: relative;
    width: 100%;
    height: 70px;
    display: block;
    overflow: hidden;
}
.deposit-details-2-2 .alloc-bars .bars{
    display: block;
    width: 1000px;
    height: 70px;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/alloc_bars.svg") repeat-x;
    animation: alloc_bars 5s linear infinite;

}

@keyframes alloc_bars {
    0%, 19.999% {
        left: 0;
    }
    20%, 39.999% {
        left: -80px;
    }
    40%, 59.999% {
        left: -40px;
    }
    60%, 79.999% {
        left: -180px;
    }
    80%, 99.999%{
        left: -120px;
    }
    100% {
        left: -200px;
    }
}


.dash-allocations{}
.dash-allocation{
    font-size: 0.8rem;
    display: inline-block;
    vertical-align: top;
    width: 49%;
}

.dash-allocation img{
    width: 25px;
    vertical-align: middle;
}
.dash-allocation .rate{
    vertical-align: middle;
    font-weight: bold;
    margin-right: 5px;
}

.dash-allocation:nth-child(1) .rate{
    color: #06a0ff;
}
.dash-allocation:nth-child(2) .rate{
    color: #ff7c7d;
}
.dash-allocation:nth-child(3) .rate{
    color: #9488f0;
}
.dash-allocation:nth-child(4) .rate{
    color: #245da3;
}


.dash-allocation .name{
    vertical-align: middle;
    opacity: 0.6;
    letter-spacing: 1px;
}

.deposit-details-3{
    margin-bottom: 50px;
}

.deposit-details-overviews{
    text-align: center;
}

.deposit-details-overview{
    text-align: right;
    padding: 10px 20px;
    background: rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    display: inline-block;
    width: 30%;
    margin: 5px 3px;
}

.deposit-details-overview .name{
    font-size: 0.7rem;
    font-weight: 200;
}
.deposit-details-overview .value{
    font-weight: bold;
}
.deposit-details-overview .value .btc{
    color: #9488f0;
}

/*Pagination>>>*/
.pagination-container{
    margin-left: 40px;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 0 0 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #aaa;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid rgba(0, 76, 127, 0.35);
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    background-color: rgba(0, 76, 127, 0.1);
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #9488f0;
    cursor: default;
    background-color: rgba(0, 76, 127, 0.35);
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    /*background-color: #fff;*/
    /*border-color: #ddd;*/
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

/*<<<Pagination*/

.edit-1{
    margin-bottom: 50px;
}

.edit-1 .row{
    display: flex;
    margin-bottom: 15px;
}


.edit-1 .box{
    background: rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    padding: 20px;
    flex: 1;
}

.edit-1 .box:last-child{
    margin-left: 15px;
}


.edit-1 .box .value{
    font-weight: bold;
}
.edit-1 .box .info{
    color: #9488f0;
    font-size: 0.8rem;
}

.edit-2{
    display: flex;
    align-items: flex-end;
    margin-bottom: 50px;
}
.edit-2 form{
    flex: 1.8;
    margin-right: 15px;
}
.edit-2 button{
    flex: 1.2;
    display: block;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 5px;
    height: 70px;
    outline: none;
    margin-bottom: 25px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
}

.edit-2 .form-control{
    line-height: 70px !important;
}


/*Toggle-Switch>>>*/
/* The switch - the box around the slider */
.toggle-switch .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 25px;
}

/* Hide default HTML checkbox */
.toggle-switch .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 76, 127, 0.35);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 13px;
    border: 1px solid #075778;
    box-shadow: inset 5px 5px 5px 0px rgba(0,0,0,0.2);
}

.toggle-switch .slider:after {
    position: absolute;
    content: "";
    height: 33px;
    width: 33px;
    left: -5px;
    bottom: -5px;
    background: rgba(0, 76, 127, 0.35);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    color: #fff;
    border: 1px dotted rgba(72, 218, 252, 0.3);
    z-index: -1;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "O";
    text-align: center;
    line-height: 24px;
    height: 23px;
    width: 23px;
    left: 0;
    bottom: 0;
    background-color: #f94877;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.9);
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
}

.toggle-switch input:checked + .slider {
    /*background-color: #2196F3;*/
}

.toggle-switch input:focus + .slider {
}

.toggle-switch input:checked + .slider:after,
.toggle-switch input:checked + .slider:before {
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
}

.toggle-switch input:checked + .slider:before {
    background: #48dafc;
    content: "I";
    padding-left: 1px;
}

.edit-3{
    margin-bottom: 50px;
}
.edit-permission{
    display: inline-block;
    width: 47%;
    vertical-align: top;
    margin: 15px 10px;
}
.edit-permission .toggle-switch{
    display: inline-block;
    vertical-align: top;
}
.edit-permission .info{
    display: inline-block;
    vertical-align: top;
    max-width: 300px;
    padding-left: 15px;
    font-weight: 200;
    font-size: 0.8rem;
}

.permissions-btn{
    display: block;
    background: rgba(0, 76, 127, 0.15);
    border: 1px solid rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    height: 50px;
    padding: 0 50px;
    outline: none;
    margin: 10px 0 25px 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
}

.edit-4{
    display: flex;
    margin-bottom: 50px;
}

.edit-secured-form{
    background: rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    padding: 40px 50px;
    flex: 1;
    color: #9488f0;
}

.edit-secured-form:nth-child(1){
    margin-right: 10px;
}
.edit-secured-form:nth-child(2){
    margin-left: 10px;
    color: #48dafc;
}


.edit-secured-form .title{
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    text-align: center;
    padding: 15px 10px;
    margin-bottom: 20px;
}

.edit-secured-form form{}
.edit-secured-form form .form-group{
    display: block;
    width: 100%;
}
.edit-secured-form form input{
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px dotted rgba(72, 218, 252, 0.5);
    text-align: center;
    line-height: 40px;
    outline: none;
    color: inherit;
    font-family: 'Work Sans', sans-serif;
}

.edit-secured-form form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: inherit;
    opacity: 1; /* Firefox */
}

.secure-form-bottom{
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.secure-form-bottom .show{
    flex: 1;
    cursor: pointer;
}

.secure-form-bottom .show img{
    opacity: 0.7;
    transition: opacity .2s ease-out;
}

.secure-form-bottom .show.on img{
    opacity: 0.2;
}

.secure-form-bottom button{
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    min-width: 120px;
    line-height: 40px;
}

.deposit-container{}
.deposit-row{
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    margin-bottom: 25px;
}

.deposit-row .deposit-check{
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #48dafc;
    box-shadow: 0px 0px 4px 0px rgba(72, 218, 252,1);
    border-radius: 100%;
    margin-right: 20px;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
}
.deposit-row .deposit-dots{
    width: 30px;
    background: url("../img/dots_v.png") repeat-y;
    background-position: center center;
    margin-right: 20px;
    align-self: stretch;
}

.deposit-row .dash-title{
    flex: 1;
    margin-bottom: 0;
}
.deposit-payments{
    flex: 1;
    margin-bottom: 40px;
}


.deposit-payment{
    position: relative;
    display: inline-block;
    max-width: 48%;
    vertical-align: top;
    background: rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    padding: 25px;
    transition: all .2s linear;
    cursor: pointer;
}

.deposit-payment.active{
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
}

.deposit-payment.disabled{
    cursor: not-allowed;
    opacity: 0.4;
}


.deposit-payment:first-child{
    margin-right: 10px;
}

.deposit-payment .title{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.8rem;
    text-transform: uppercase;
    word-spacing: 100vh;
    margin-bottom: 25px;
}

.deposit-payment input{
    position: absolute;
    top: 20px;
    right: 20px;
}


.deposit-payment .value{
    font-weight: bold;
    color: #48dafc;
    font-size: 1.2rem;
    height: 30px;
}

.deposit-payment .value .icons{}
.deposit-payment .value .icons img{
    height: 1.8rem;
    margin-right: 15px;
}


.deposit-payment .name{
    font-size: 0.8rem;
    opacity: 0.6;
}

.deposit-payment .info{
    margin-top: 50px;
    font-size: 0.8rem;
    font-weight: 200;
    position: relative;
}

.deposit-payment .info:before{
    content: '';
    display: block;
    height: 3px;
    width: 50px;
    background: #fff;
    position: absolute;
    top: -15px;
    left: 0;
}


.deposit-row .deposit-amount{
    flex: 1;
    background: rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    padding: 25px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
    max-width: 93%;
}

.deposit-row .deposit-amount .form-error{
    color: #ed4598;
    margin-top: 3px;
    font-size: 0.8rem;
}


.deposit-row .deposit-amount-1{
    flex: 1;
    position: relative;
    padding-bottom: 5px;
}

.deposit-row .deposit-amount-1:before{
    display: block;
    content: 'BTC';
    font-weight: bold;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 40px;
    color: #9488f0;
}


.deposit-row .deposit-amount-1 input{
    background: transparent;
    border: none;
    border-bottom: 1px solid #48dafc;
    outline: none;
    line-height: 40px;
    padding-left: 65px;
    width: 100%;
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
}

.deposit-row .deposit-amount-2{
    flex: 1;
    margin-left: 45px;
    font-weight: 200;
    opacity: 0.6;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    font-size: 0.8rem;
    text-align: center;
}

.deposit-row .deposit-amount-2 b{
    color: #9488f0;
    font-weight: bold;
}

.deposit-button{
    display: block;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 5px;
    padding: 25px;
    width: 320px;
    margin-top: -10px;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.5rem;
    outline: none;
}

.withdraw-amount{
    margin-bottom: 40px;
}
.withdraw-pin{
    margin-bottom: 20px;
}

.release-pin{
    margin: 20px 0;
}

.auth-pin .pincode-input-text:not(.first),
.release-pin .pincode-input-text:not(.first),
.withdraw-pin .pincode-input-text:not(.first){
    margin-left: 10px;
}

.withdraw-infos{
    margin: 40px 0;
    display: flex;
}

.withdraw-info{
    display: inline-block;
    padding: 15px;
    border-radius: 5px;
    background: rgba(0, 76, 127, 0.35);
    text-align: right;
    min-width: 35%;
}

.withdraw-info:first-child{
    flex: 1;
    margin-right: 15px;
}


.withdraw-info .name{
    color: #9488f0;
}
.withdraw-info .value{
    font-weight: bold;
    word-break: break-all;
}

.deposit-payment-1{
    flex: 1;
}

.deposit-payment-1-1{
    display: flex;
    align-items: flex-start;
}

.deposit-payment-1-1-1{
    margin-right: 25px;
    padding: 5px 5px 0 5px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
}

.deposit-payment-1-1-1 img{
    border: 10px solid #042945;
    width: 200px;
}


.deposit-payment-1-1-2{

}

.payment-info-1{
    margin: 25px 0;
    color: #ddd;
}

.payment-info-1 b{
    font-weight: bold;
    color: #fff;
}


.payment-info-2{
    color: #48dafc;
}


.payment-time{}

.payment-time .status,
#payment-time{
    font-size: 2.5rem;
    font-weight: bold;
}

.payment-time .name{
    opacity: 0.5;
    margin-top: 5px;
}


.deposit-payment-amount{
    margin-top: 40px;
}
.deposit-payment-amount .name{
    padding-left: 25px;
}
.deposit-payment-amount .value{
    position: relative;
    border-radius: 5px;
    background: rgba(0, 76, 127, 0.35);
    padding: 25px 25px;
    font-size: 1.5rem;
    font-weight: bold;
}

.deposit-payment-amount .value .btc{
    color: #48dafc;
    pointer-events: none;
}

.payment-price{
    color: #48dafc;
    padding-left: 25px;
    margin-top: 5px;
}

.deposit-payment-address{
    margin-top: 40px;
}

.deposit-payment-address .name{
    padding-left: 25px;
}
.deposit-payment-address .value{
    position: relative;
    border-radius: 5px;
    background: rgba(0, 76, 127, 0.35);
    padding: 25px 60px 25px 25px;
    font-weight: bold;
    color: #9488f0;
    max-width: 100%;
    word-break: break-all;
}

.deposit-disclaimer{
    padding-left: 25px;
    margin-top: 30px;
    opacity: 0.5;
    font-weight: 200;
}

.deposit-disclaimer li{
    margin-bottom: 10px;
}


.payment-copy{
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
    padding: 10px 10px 7px 10px;
    border-radius: 3px;
}

.payment-copy img{
    height: 30px;
}

.confirm-btn{
    margin-top: 25px;
    display: block;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 5px;
    padding: 25px 0;
    width: 320px;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    outline: none;
}

.go-back{
    display: block;
    text-align: center;
    margin: 25px 0;
}


.show-deposit-btn{
    display: block;
    text-align: center;
    margin: 20px 20px 0 20px;
    border-radius: 5px;
    padding: 10px 0;
    color: #9488f0;
    text-transform: uppercase;
    font-size: 0.7rem;
    transition: all .2s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.show-deposit-btn:hover{
    background: #9488f0;
    color: #fff;
}

.dash-2fa{
    margin-bottom: 40px;
}

.dash-2fa-1{
    display: flex;
    align-items: center;
}
.dash-2fa-1-1{
    padding: 5px 5px 0 5px;
    background: rgb(237,69,152);
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
}
.dash-2fa-1-1 img{
    border: 10px solid #042945;
    /*width: 200px;*/
}
.dash-2fa-1-2{
    flex: 1;
    margin-left: 25px;
}
.dash-2fa-1-2 .code{
    background: rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    padding: 15px;
    font-weight: bold;
    color: #9488f0;
    text-align: center;
}

.dash-2fa-1-2 .text{
    margin: 20px 0;
}


.dash-2fa-2{
    display: flex;
    margin: 30px 0;
}

.dash-2fa-2-1{
    flex: 1.5;
}

.dash-2fa-2-1 form{}
.dash-2fa-disable-2 form .form-label,
.dash-2fa-2-1 form .form-label{
    text-align: center;
    color: #9488f0;
    margin-top: 5px;
    font-weight: bold;
}


.account-2fa form .form-group input,
.dash-2fa-disable-2 form .form-group input,
.dash-2fa-2-1 form .form-group input{
    width: 100%;
    background: rgba(0, 76, 127, 0.35);
    border: none;
    outline: none;
    border-radius: 5px;
    line-height: 60px;
    text-align: center;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: 5px;
}

.dash-2fa-disable-2 button,
.dash-2fa-2-2 button{
    display: block;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 5px;
    line-height: 60px;
    padding: 0 20px;
    width: 100%;
    letter-spacing: 1px;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    outline: none;
}

.dash-2fa-2-2{
    flex: 1;
    margin-left: 20px;
}

.warning-2fa{
    font-size: 0.8rem;
    color: #fff;
    opacity: 0.5;
    text-align: center;
}

.dash-2fa-disable{
    max-width: 450px;
}

.dash-2fa-disable-1{
    margin-bottom: 20px;
}

.deposit-release-form{
    display: flex;
    align-items: flex-start;
}
.deposit-release-form form{
    flex: 1.5;
    margin-right: 20px;
}

.deposit-release-form form .form-group input{
    line-height: 60px;
    padding-left: 80px;
    color: #fff;
    font-weight: bold;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
}

.deposit-release-form form .form-group{
    position: relative;
}

.deposit-release-form form .form-group:after{
    display: block;
    content: 'BTC';
    color: #9488f0;
    position: absolute;
    left: 18px;
    top: 41px;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'Work Sans', sans-serif;
}



.deposit-release-form button{
    flex: 1;
    display: block;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 5px;
    height: 60px;
    padding: 0 20px;
    text-align: left;
    width: 100%;
    letter-spacing: 1px;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    outline: none;
    margin-top: 22px;
}

.deposit-release-results{
    min-width: 250px;
    padding: 37px 20px;
    border-radius: 5px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.15);
}

.release-result{
    text-align: right;
}

.release-result:nth-child(2){
    margin-top: 25px;
}

.release-result .name{
    opacity: 0.6;
    font-size: 0.8rem;
}

.release-result .value{
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Work Sans', sans-serif;
}

.release-result .value .btc{
    color: #9488f0;
}

.release-min{
    opacity: 0.6;
    font-size: 0.8rem;
    margin-top: 25px;
    border-radius: 5px;
    padding: 10px;
    background: rgba(148, 136, 240, 0.2);
}

.release-min b{
    color: #9488f0;
    font-weight: bold;
}



.account-2fa{
    margin: 40px 20px;
}

.release-lock{
    background: rgba(0, 76, 127, 0.35);
    border-radius: 5px;
    padding: 20px 10px;
    display: flex;
    align-items: center;
}

.release-lock-1{
    flex: 1;
    text-align: center;
    padding-right: 10px;
}

.release-lock-1 img{
    max-width: 100px;
}


.release-lock-2{
    flex: 2;
}


.release-lock-2 .title{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 2rem;
    text-transform: uppercase;
}
.release-lock-2 .text{
    color: #9488f0;
}
.release-lock-2 .countdown-timer{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    line-height: 2rem;
    opacity: 0.5;
}

.deposit-release-info{
    margin: 20px 0 40px 0;
    font-size: 0.8rem;
    opacity:0.6;
    padding-left: 15px;
    margin-left: 15px;
    border-left: 3px solid #9488f0;
}

.deposit-release-info b{
    font-weight: bold;
    color: #9488f0;
}


.deposit-details-reinvest{
    display: flex;
}

.deposit-details-reinvest-info{
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px dotted rgba(72, 218, 252, 0.2);
    font-size: 0.7rem;
    line-height: 0.9rem;
    font-weight: 200;
    opacity: 0.6;
}

.deposit-details-reinvest-info-2{
    margin-top: 30px;
    font-size: 0.7rem;
    line-height: 0.9rem;
    font-weight: 200;
    opacity: 0.6;
}


.deposit-details-reinvest .label{
    flex: 1;
}
.deposit-details-reinvest .toggle-switch{}

.account-compounding-save{
    display: block;
    border-radius: 5px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    color: #9488f0;
    padding: 15px;
    transition: all .2s ease-out;
    text-transform: uppercase;
}

.account-compounding-save:hover{
    background: #9488f0;
    color: #fff;
}

.dash-next-payment{
    text-align: right;
    float: right;
    position: relative;
    font-weight: bold;
}

.dash-next-payment .name{
    color: #9488f0;
}
.dash-next-payment b{
    font-size: 1.5rem;
}

.referrals-order{
    margin-bottom: 25px;
    text-align: right;
}

.referrals-order b{
    opacity: 0.5;
}

.referrals-order a{
    display: inline-block;
    vertical-align: middle;
    margin: 8px 5px;
    color: #9488f0;
    border: 1px solid #9488f0;
    border-radius: 5px;
    padding: 2px 6px;
    font-size: 0.7rem;
    transition: all .2s ease-out;
}

.referrals-order a:hover{
    background: #9488f0;
    color: #fff;
}

.promo-1{
    display: flex;
    margin-bottom: 20px;
}

.promo-1-1{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 250px;
    margin-right: 20px;
    border-radius: 5px;
    padding: 80px 15px 10px 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-color: rgba(0, 76, 127, 0.35);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);

}

.promo-1-1 .title{
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Work Sans', sans-serif;
}

.promo-1-1 .info{
    color: #9488f0;
    font-size: 0.8rem;
}

.promo-1-2{
    flex: 1;
    border-radius: 5px;
    background: rgba(0, 76, 127, 0.35);
    padding: 40px 25px;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
}
.promo-1-2 .title{
    font-size: 1.5rem;
}

.promo-1-2 .text{
    margin: 25px 0;
}

.promo-1-2 a{
    display: inline-block;
    vertical-align: middle;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 3px;
    padding: 10px 25px 8px 25px;
    font-size: 0.8rem;
}

.promo-1-2 a img{
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
    top: -2px;
}

.promo-banner{
    border-radius: 5px;
    background: rgba(0, 76, 127, 0.35);
    padding: 20px;
    margin-bottom: 50px;
}

.promo-banner .title{
    font-size: 3rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    line-height: 3rem;
    color: rgba(148, 136, 240, 0.5);
}

.promo-banner img{
    display: block;
    max-width: 100%;
    max-height: 300px;
    margin: 15px 0;
}
.promo-banner a{
    display: inline-block;
    background: #9488f0;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 3px;
    padding: 8px 25px;
    font-size: 0.8rem;
    min-width: 200px;
    text-align: center;
}

.terms-container{
    max-width: 800px;
    margin: 0 auto;
}

.terms-blocks{}
.terms-block{}
.terms-block p{
    margin-bottom: 20px;
}

.terms-block p.indent{
    padding-left: 25px;
}

.affiliate-rep{
    display: flex;
}
.affiliate-rep-1{
    order: 1;
    flex: 1;
    margin-left: 100px;
    position: relative;
}

.affiliate-rep-1 img{
    max-height: 350px;
}


.affiliate-rep-2{
    flex: 1;
}

.bounties-categories{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 80px 0;
    align-items: flex-start;
}

.bounty-cat{
    flex: 0 1 450px;
    margin: 20px;
    vertical-align: top;
}

.bounty-cat-1{
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
}

.bounty-cat-1-1{
}

.bounty-cat-1-1 img{
    width: 90px;
    background: rgba(0, 76, 127, 0.35);
    padding: 5px;
    border-radius: 5px;
}
.bounty-cat-1-2{
    flex: 1;
    margin-left: 20px;
}
.bounty-cat-1-2-1{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.bounty-cat-1-2-2{
    font-weight: bold;
    color: #9488f0;
}

.bounty-cat-2{
    color: #b6d1d8;
}

.bounty-cat-2 a{
    text-decoration: underline;
    color: #fff;
}


.news-mail-container{}
.news-mail-container form{
    display: flex;
    position: relative;
}

.news-mail-container .icon{
    position: absolute;
    left: 15px;
    top: 0;
    line-height: 60px;
}

.news-mail-container .icon img{
    width: 20px;
    height: 20px;
}


.news-mail-container input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #48dafc;
    font-weight: bold;
    opacity: 1; /* Firefox */
}
.news-mail-container input{
    flex: 1;
    display: inline-block;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 70px 10px 50px;
    border: none;
    line-height: 30px;
    outline: none;
    border-bottom: 2px solid #48dafc;
    color: #48dafc;
    font-weight: bold;
}

.news-mail-container button{
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    outline: none;
    line-height: 60px;
    background: rgba(0, 76, 127, 0.35);

}
.news-mail-container button img{
    width: 20px;
}

.promo-referral-links{}
.referral-link{
    display: flex;
    position: relative;
    margin-bottom: 15px;
}

.referral-link a{
    display: block;
    padding: 0 15px;
    line-height: 50px;
    background: rgba(0, 76, 127, 0.35);
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    flex: 1;
    max-width: 100%;
}

.referral-link a span{
    opacity: 0.5;
}


.referral-link .copy{
    position: relative;
    left: -3px;
    content: url("../img/copy.svg");
    padding: 15px;
    display: block;
    text-align: center;
    background: #9488f0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 5px;

    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.5);
}

.affiliate-apply-btn{
    display: inline-block;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 5px;
    padding: 15px 25px;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    text-align: center;
    min-width: 50%;
    margin-top: 20px;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
}

.rep-apply-container{
    max-width: 500px;
}

.rep-text{}
.rep-responsibilities{}
.rep-responsibilities .title{
    margin-top: 25px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
}
.rep-responsibilities ul{
    list-style: circle;
    margin: 15px 0;
    padding-left: 15px;
}
.rep-responsibilities ul li{
    padding-left: 5px;
    margin: 3px 0;
    margin-left: 15px;
}

.rep-disclaimer{
    margin-bottom: 50px;
    opacity: 0.5;
    font-size: 0.8rem;
}

.rep-requirement{
    border: 1px solid #ed4598;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    margin-bottom: 50px;
    align-items: center;
}

.rep-requirement .icon{
    width: 50px;
    margin-right: 15px;
}

.rep-requirement .text{
    flex: 1;
    text-align: center;
}

.rep-extra-1{
    margin-bottom: 50px;
    text-align: center;
}

.rep-extra-1 a{
    color: #9488f0;
}


.rep-form{
    margin-bottom: 50px;
}

.download-pdf{
    display: inline-block;
    margin-top: 25px;
    border: 1px solid #9488f0;
    border-radius: 20px;
    padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 100;
    transition: all .2s linear;
}

.download-pdf:hover{
    color: #fff;
    background: #9488f0;
}

.form-commissions{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}
.form-commissions input{
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
}

.form-commissions button{
    background: #9488f0;
    padding: 5px 10px;
    color: #061727;
    margin-left: 5px;
    border-radius: 5px;
}

.reps-container{
    text-align: center;
    margin: 50px 0;
}
.rep-block{
    display: inline-block;
    padding: 35px;
    min-width: 350px;
    text-align: left;
}

.rep-block .country{
    opacity: 0.5;
    color: #9488f0;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.rep-block .name{
    font-size: 1.5rem;
    text-transform: capitalize;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    /*background: rgba(255, 255, 255, 0.7);*/
    padding: 10px 15px;
    /*color: #061727;*/
    margin: 3px 0;
    border-radius: 5px;
}


.rep-block .extra{
    color: #9488f0;
    padding: 10px;
}

.rep-block .extra a img{
    height: 15px;
    margin-right: 5px;
    vertical-align: middle;
}

.rep-block .extra a{
    transition: all .2s linear;
}

.rep-block .extra a:hover{
    text-shadow:1px 1px 10px rgba(255, 255, 255, 0.9);
}



.rep-block .email{
    display: block;
    margin: 5px 0;

}
.rep-block .phone{
    display: block;
}

.bounties-container{}
.bounty-container{
    padding: 25px 40px;
    background: rgba(0, 76, 127, 0.35);
    background: linear-gradient(180deg, rgba(0,76,127,0.29582130805903273) 0%, rgba(0,76,127,0) 100%);
    border-radius: 5px;
    margin-bottom: 60px;
}

.bounty-title{
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 2rem;
    color: #9488f0;
    text-transform: uppercase;
    line-height: 2rem;
    padding-left: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.bounty-title .text{}

.bounty-reward{
    font-size: 0.8rem;
    color: #fff;
    padding: 5px;
    font-family: 'Nunito Sans', sans-serif;
    background: #28A8DF;
    background: linear-gradient(90deg, rgba(237,69,152,1) 0%, rgba(40,168,223,1) 100%);
    line-height: normal;
    border-radius: 3px;
    text-align: center;
}

.bounty-title img{
    height: 90px;
    margin-right: 10px;
}


.bounty-text{
    color: #b6d1d8;
    margin-bottom: 15px;
}

.bounty-text a{
    display: inline-block;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.3);
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(0, 76, 127, 0.35) 100%);
    color: #fff;
    padding: 1px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    /*text-transform: uppercase;*/
    font-weight: bold;
    margin-left: 5px;
}



.bounty-form{
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.bounty-form .form-group{}
.bounty-form .form-group .form-label{
    padding-left: 15px;
    color: #9488f0;
}
.bounty-form .form-group input{
    margin-bottom: 15px;
}
.bounty-form .form-group textarea{
    resize: vertical;
    margin-bottom: 15px;
}

.bounty-form .form-group input,
.bounty-form .form-group textarea{
    width: 100%;
    border: none;
    background: rgba(0, 76, 127, 0.35);
    border-radius: 3px;
    font-size: 1rem;
    color: #9488f0;
    padding: 15px;
    font-weight: normal;
    font-family: inherit;
}

.bounty-button{
    display: block;
    background: linear-gradient(90deg, rgb(148, 136, 240) 0%, rgba(40,168,223,1) 100%);
    border-radius: 5px;
    padding: 15px 25px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5);
    width: 100%;
}

.bounty-limit{
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 2rem;
}

.bounty-limit b{
    color: #9488f0;
    font-size: 2rem;
    vertical-align: middle;
}

.bounty-requirements{
    margin-top: 25px;
    color: #b6d1d8;
    text-align: center;
}

.bounty-requirements a{
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    vertical-align: middle;
    text-decoration: underline;
}

.bounty-requirements ul{
    font-size: 0.8rem;
}
.bounty-requirements ul li{
    position: relative;
    color: rgba(182, 209, 216, 0.7);
    margin-top: 5px;
    display: inline-block;
    width: 49%;
    vertical-align: top;
}

.bounty-requirements ul li:before{
    content: '+';
    color: #9488f0;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    margin-right: 10px;
}




