@charset "utf-8";
/*
	Author: Filip Todorov - www.filiptodorov.com
	Project: Bitbay
	All rights reserved
*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600');

/* LOADING */
@-webkit-keyframes rotatingIcon {
  0%   { transform: rotate(0deg); }
  100%   { transform: rotate(360deg); }
}
@-moz-keyframes rotatingIcon {
  0%   { transform: rotate(0deg); }
  100%   { transform: rotate(360deg); }
}
@-o-keyframes rotatingIcon {
  0%   { transform: rotate(0deg); }
  100%   { transform: rotate(360deg); }
}
@keyframes rotatingIcon {
  0%   { transform: rotate(0deg); }
  100%   { transform: rotate(360deg); }
}
.loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    background: url('../img/loading-bg.jpg') #fff center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-transition:1s ease all;
    -moz-transition:1s ease all;
    -o-transition:1s ease all;
    transition:1s ease all;
}
.loading img {
    height: 50px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.loading .icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    background: url('../img/favicon.png') center no-repeat;
    background-size: contain;
    margin-right: 10px;
    -webkit-animation:rotatingIcon 2.8s linear infinite;
    -moz-animation:rotatingIcon 2.8s linear infinite;
    -o-animation:rotatingIcon 2.8s linear infinite;
    animation:rotatingIcon 2.8s linear infinite;
}
.loading:not(.active) {
    -webkit-transform:scale(1.5);
    -moz-transform:scale(1.5);
    -o-transform:scale(1.5);
    transform:scale(1.5);
    opacity: 0;
}

body, html {
    font-family: 'Roboto', sans-serif;
    position: relative;
}
@media (min-width:768px) {
    .vcenter {
        display: inline-block;
        vertical-align: middle;
        float: none;
    }
}

/* MAIN SETTINGS */
.content {
    /*width: calc(100% - 300px);*/
    width: 100%;
    position: relative;
}
.full-page .content {
    width: 100%;
}
body.dashboard {
    padding-top: 80px;
}

/* SIDEBAR */
.sidebar {
    /*width: 300px;*/
    height: 100vh;
    background: #fff;
    /*position: fixed;*/
    top: 0;
    right: 0;
    padding: 15px;
    -webkit-transition:0.5s ease all;
    -moz-transition:0.5s ease all;
    -o-transition:0.5s ease all;
    transition:0.5s ease all;
    box-shadow: rgba(0,0,0,0.05) -10px 0px 10px;
    z-index: 9;
}
.full-page .sidebar {
    margin-right: -400px;
}
.full-page .sidebar.active {
    transform: translate(-400px, 0px);
}
.sidebar .nav-tabs {
    border: none;
    margin-top: 30px;
}
.sidebar .nav-tabs > li {
    width: 50%;
}
.sidebar .nav-tabs > li > a {
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 14px;
    cursor: pointer !important;
    color: #999;
}
.sidebar .nav-tabs > li.active > a {
    border-bottom: 3px solid #FF761C;
    color: #FF761C;
    padding-bottom: 12px;
}
.sidebar .nav-tabs > li > a:hover,
.sidebar .nav-tabs > li > a:focus {
    background: none;
    border-top:none;
    border-left:none;
    border-right:none;
}
.sidebar .social {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 5px 0px;
    color: #fff;
    font-size: 24px;
    border-radius: 4px;
    cursor: pointer;
}
.sidebar .social:hover {
    opacity: 0.9;
}
.sidebar .social.fb {
    background: #3a559c;
}
.sidebar .social.gplus {
    background: #dd4b39;
}
.sidebar .row.social-icons {
    margin: 30px -5px;
}
.sidebar .row.social-icons.money {
    margin-top: 0px;
    padding-top:15px;
    padding-bottom: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.sidebar .row.social-icons .col-xs-6,
.sidebar .row.social-icons .col-xs-4 {
    padding-left: 5px;
    padding-right: 5px;
}
.sidebar .form-group {
    position: relative;
}
.sidebar .form-group label {
    position: static;
    left: 15px;
    top: 13px;
    font-weight: normal;
    font-size: 12px;
    color: #999;
    z-index: -1;
    background: #fff;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.sidebar .form-group.active label {
    transform:translate(0px, -20px) scale(0.9);
    z-index: 1;
}
.sidebar .form-control {
    height: auto;
    padding: 10px 15px;
    box-shadow: none;
    background: none;
    border: 1px solid #ddd;
}
.sidebar p {
    text-align: center;
    font-size: 12px;
    margin: 15px 0px;
}
.sidebar p a {
    color: #999;
}

/* BUTTONS */
.btn.btn-primary {
    background: #6dc52d;
    color: #fff;
    border: 1px solid #6dc52d;
    box-shadow: none;
    text-transform: uppercase;
    font-weight: 500;
    padding: 12px 40px;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.margin-top {
    margin-top: 30px;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #FF761C;
    border: 1px solid #FF761C;
    box-shadow: rgba(0,0,0,0.25) 0px 5px 25px;
}
.btn.btn-danger {
    background: #FF761C;
    color: #fff;
    border: 1px solid #FF761C;
    box-shadow: none;
    text-transform: uppercase;
    font-weight: 500;
}
.btn.btn-danger:hover,
.btn.btn-danger:focus {
    background: #ff8533;
    border: 1px solid #ff8533;
}
.btn.btn-default {
    background: none;
    color: #999;
    box-sizing: border-box;
    border: 1px solid #eee;
    box-shadow: none;
    text-transform: uppercase;
    font-weight: 500;
}
.btn.btn-default:hover,
.btn.btn-default:focus {
    background: #999;
    border: 1px solid #999;
    color: #fff;
}
.btn.btn-lg {
    padding: 15px 0px;
    font-size: 18px;
    border-radius: 4px;
}
.btn.btn-lg.extra-lg {
    padding: 15px 25px;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: -400px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9;
    box-shadow: rgba(0,0,0,0.05) 10px 0px 10px;
    padding: 15px;
    -webkit-transition:0.5s ease all;
    -moz-transition:0.5s ease all;
    -o-transition:0.5s ease all;
    transition:0.5s ease all;
}
nav.active {
    transform: translate(400px, 0px);
}
nav #hideNavigation {
    background: none;
    border: none;
    outline: none;
    float: right;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transition:1s ease all;
    -moz-transition:1s ease all;
    -o-transition:1s ease all;
    transition:1s ease all;
}
nav #hideNavigation .icon-bar {
    position: absolute;
    width:80%;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
    opacity: 0.1;
}
nav #hideNavigation .icon-bar:nth-child(2) {
    transform: rotate(-45deg);
}
nav #hideNavigation:hover {
    opacity: 0.5;
    transform: rotate(360deg);
    transform-origin:center;
}
nav ul,
.sidenav {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
}
.sidenav {
    padding-top: 25px;
    border-top: 1px solid #eee;
}
nav ul li,
.sidenav li {
    display: block;
    margin:0px -15px;
}
nav ul li a,
.sidenav li a {
    padding: 15px 15px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #2D4053;
    position: relative;
    display: block;
}
.sidenav li a {
    font-size: 12px;
    padding: 5px 15px;
}
nav ul li a:hover,
nav ul li a:focus,
nav ul li a:hover > i,
nav ul li a:focus > i,
.sidenav li a:hover,
.sidenav li a:focus,
.sidenav li a:hover > i,
.sidenav li a:focus > i {
    color:#6dc52d;
    text-decoration: none;
}
.sidenav li a i {
    opacity: 0.25;
    transform: scale(1.2);
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
    margin-right: 5px;
}
.sidenav li a span {
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
    display: inline-block;
}
.sidenav li a:hover span {
    -webkit-transform:translate(5px, 0px);
    transform: translate(5px, 0px);
}
nav ul li a > i {
    float: right;
    font-size: 20px;
    color: #999;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
nav ul li.active a > i {
    transform: rotate(180deg);
}
nav ul li > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 25px;
    display: none;
}
nav ul li > ul > li {
    display: block;
    padding: 5px 0px;
}
nav ul li > ul > li > a {
    font-size: 14px;
    padding: 0px 15px;
    text-transform: none;
    font-weight: 400;
}

/* BLACK SHADOW */
.shadow {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 0px);
    height: auto;
    z-index: 8;
    background:linear-gradient(to top, rgba(19,27,35,1), rgba(19,27,35,0) 80%);
    padding: 15px;
    padding-top: 40px;
    text-align: center;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.shadow:not(.active) .v2 {
    display: none;
}
.shadow.active .scrolldown:not(.v2) {
    display: none;
}
.shadow.active .scrolldown.v2 {
    display: block;
}
@-webkit-keyframes scrollAnimation {
  0%   { transform: translate(0,0); }
  65% { transform: translate(0,5px); color:rgba(255,255,255,0.7); }
  100%   { transform: translate(0,0); }
}
@-moz-keyframes scrollAnimation {
  0%   { transform: translate(0,0); }
  65% { transform: translate(0,5px); color:rgba(255,255,255,0.7); }
  100%   { transform: translate(0,0); }
}
@-o-keyframes scrollAnimation {
  0%   { transform: translate(0,0); }
  65% { transform: translate(0,5px); color:rgba(255,255,255,0.7); }
  100%   { transform: translate(0,0); }
}
@keyframes scrollAnimation {
  0%   { transform: translate(0,0); }
  65% { transform: translate(0,5px); color:rgba(255,255,255,0.7); }
  100%   { transform: translate(0,0); }
}
.shadow .scrolldown {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    -webkit-transition:0.2s ease all;
    -moz-transition:0.2s ease all;
    -o-transition:0.2s ease all;
    transition:0.2s ease all;
    -webkit-animation:scrollAnimation 0.8s ease-in infinite;
    -moz-animation:scrollAnimation 0.8s ease-in infinite;
    -o-animation:scrollAnimation 0.8s ease-in infinite;
    animation:scrollAnimation 0.8s ease-in infinite;
    margin: 15px auto;
    width: 100px;
}
.shadow .scrolldown .icon {
    display: block;
    margin: auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    line-height: 28px;
    text-align: center;
    margin-bottom: 5px;
    font-size: 18px;
}
.shadow .scrolldown:hover {
    color: #fff;
    cursor: pointer;
    -webkit-animation:none;
    -moz-animation:none;
    -o-animation:none;
    animation:none;
}
.shadow .scrolldown:hover .icon {
    border-color:#fff;
}

/* HEADER */
header {
    width: 100%;
    height: auto;
    background: #2D4053;
    padding: 15px 0px;
    cursor: default;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
body.dashboard header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
}
header #toggleNavigation {
    background: none;
    border: none;
    outline: none;
    padding: 0;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.5;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
header #toggleNavigation .icon-bar {
    width: 25px;
    height: 3px;
    margin: 5px 0px;
    background: #fff;
}
header #toggleNavigation:hover {
    opacity: 1;
}
header .logo {
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    margin-left: 15px;
}
body.dashboard header .logo {
    margin-left: 0px;
}
header .logo > img {
    height: 50px;
}
header .dropdown-button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    margin: 0;
    padding: 0;
}
header .dropdown-button > img {
    height: 18px;
    border-radius: 4px;
}
header .dropdown-button:hover {
    color: #fff;
    cursor: pointer;
}
header .dropdown-button > .details {
    display: none;
    position: absolute;
    top: 50px;
    z-index: 9;
    background: #2D4053;
    width: 250px;
    height: auto;
    padding: 10px 0px;
    border-radius: 4px;
}
header .dropdown-button > .details > a {
    display: block;
    color: #fff;
    font-size: 14px;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
header .dropdown-button > .details > a:last-child {
    border-bottom: none;
}
header .dropdown-button > .details > a > img {
    height: 20px;
}
header .dropdown-button > .details > a:hover {
    background: rgba(255,255,255,0.05);
}
header ul.navigation-top {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
header ul.navigation-top > li {
    display: inline-block;
}
header ul.navigation-top > li > a {
    color: rgba(255,255,255,1);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    padding: 0px 15px;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    opacity: 0.5;
}
header ul.navigation-top > li > a:hover,
header ul.navigation-top > li > a:focus,
header ul.navigation-top > li.active > a {
    opacity: 1;
}
header ul.navigation-top > li > a > span {
    display: block;
    font-size: 10px;
    color: #6dc52d;
    margin-top: -5px;
}
.full-page header .header-buttons {
    float: right;
    margin: 0;
    padding: 0;
    list-style: none;
}
.full-page header .header-buttons > li {
    display: inline-block;
    padding-top: 8px;
    margin-left: 5px;
}
.full-page header .header-buttons > li > a {
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: none;
    background: none;
}
.full-page header .header-buttons > li > a:hover {
    background: #6dc52d;
    border: 1px solid #6dc52d;
    color: #fff;
}
.full-page header .profile {
    float: right;
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 0px;
    margin-top: -15px;
    margin-right: -15px;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    margin-bottom: -15px;
    cursor: pointer;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.full-page header .profile:hover {
    background:#6dc52d;
}
.full-page header .profile > img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
    border: 2px solid transparent;
}
.full-page header .profile:hover > img {
    border: 2px solid #fff;
}
.full-page header .profile > .details {
    display: inline-block;
    vertical-align: middle;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    font-size: 11px;
}
.full-page header .profile > .details > b {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    margin-bottom: -3px;
}

/* MAIN */
.main {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 80px);
    background: url('../img/trading.jpg') center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}
.main #video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.main .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(15,15,15,0.75);*/
    z-index: 1;
}
.main.v2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19,27,35,0.75);
    z-index: 1;
}
.main.v2 {
    background: url('../img/bg1.jpg') center no-repeat;
    background-size: cover;
    min-height: auto;
    padding: 120px 0px;
    text-align: center;
}
.main.v3 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19,27,35,0.75);
    z-index: 1;
}
.main.v3 {
    background: url('../img/bg2.jpg') center no-repeat;
    background-size: cover;
    min-height: auto;
    padding: 120px 0px;
    text-align: center;
}
.main.v3.text-left {
    text-align: left;
}
.main .container-fluid {
    width: 100%;
    position: relative;
    z-index: 2;
}
.main h1 {
    font-weight: 300;
    font-size: 36px;
    margin: 0;
}
.main.v2 h1 {
    font-size: 36px;
    line-height: 1;
}
.main p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 300;
    margin: 20px 0px;
}
.main .button {
    background: #6dc52d;
    padding: 10px;
    color: #fff;
    border-radius: 25px;
    display: inline-block;
    position: relative;
    padding-left: 60px;
    padding-right: 25px;
    font-size: 11px;
}
.main i {
    position: absolute;
    top: 12px;
    left: 15px;
    font-size: 24px;
}
.main .button b {
    text-transform: uppercase;
    margin-bottom: -5px;
    font-size: 14px;
    display: block;
}
.main .button:hover,
.main .button:focus {
    text-decoration: none;
    background: #FF761C;
}
.small-main {
    width: 100%;
    height: auto;
    display: block;
    padding: 130px 0px;
    color: #fff;
    text-align: center;
    background: url('../img/bg3.jpg') center no-repeat;
    background-size: cover;
    position: relative;
}
.small-main .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    opacity: 0.5;
    z-index: 1;
}
.small-main .container-fluid {
    position: relative;
    z-index: 2;
}
.small-main h1 {
    font-size: 36px;
    font-weight: 500;
    margin: 0;
}
.smaller-capital img {
    width: 128px;
    display: block;
    margin: auto;
    margin-bottom: 25px;
}
.spacer.x30 {
    height: 30px;
}
.smaller-capital h1 {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

/* SECTION */
section {
    width: 100%;
    height: auto;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    padding: 80px 0px;
}
section .container-fluid {
    width: 100%;
    position: relative;
    z-index: 2;
}
section h1 {
    font-size: 36px;
    text-align: center;
    font-weight: bold;
    margin: 0;
    margin-bottom: 25px;
}
section h1 b {
    color: #6dc52d;
}
section p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    font-weight: 300;
    margin: 15px auto;
    width: 75%;
}
section .btn {
    outline: none;
    padding: 20px 25px;
    box-shadow: none;
    margin-top: 20px;
}
section .btn-default {
    border: 2px solid #fff;
    background: none;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}
section .btn-default:hover {
    background: #6dc52d;
    color: #fff;
    border-color: #6dc52d;
}
section.v1 {
    background: #fff;
    position: relative;
}
section.v2 {
    background: #f5f5f5;
}
.side-image {
    position: absolute;
    top: 0px;
    right: 0px;
}
.side-image img {
    width: 180px;
}
.side-image:after {
    position: absolute;
    top:-50px;
    right: -50px;
    transform: scale(1.3);
    width: 100%;
    height: 100%;
    opacity: 0.1;
    content: ' ';
    filter: grayscale(100%);
    background: url('../img/icons/001-cogwheel.png') center no-repeat;
    background-size: contain;
}
.side-image.v2:after {
    background: url('../img/icons/002-ascendant-bars-graphic.png') center no-repeat;
    background-size: contain;
}
.side-image.v3:after {
    background: url('../img/icons/003-factory.png') center no-repeat;
    background-size: contain;
}
.side-image.v4:after {
    background: url('../img/icons/004-idea.png') center no-repeat;
    background-size: contain;
}

/* ICON BOX */
.icon-boxes {
    margin-top: 30px;
}
.icon-box {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 25px;
    text-align: right;
    border-radius: 5px;
    box-shadow: rgba(0,0,0,0.14) 0px 10px 25px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    background: #fff;
    cursor: pointer;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    display: block;
    transition:0.3s ease all;
}
.icon-box:hover,
.icon-box:focus {
    text-decoration: none;
    transform: scale(1.05);
}
.icon-box:last-child {
    margin-bottom: 0px;
}
.icon-box:not(.active) .title,
.icon-box.active .text {
    display: block;
}
.icon-box.active .title,
.icon-box:not(.active) .text {
    display: none;
}
.icon-box.active .text {
    font-size: 11px;
    color: #999;
    padding-left: 55px;
    margin-top: -30px;
    margin-bottom: -30px;
}
.icon-box h2 {
    font-size: 36px;
    color: #2D4053;
    font-weight: 200;
    margin: 0;
    position: relative;
    z-index: 3;
}
.icon-box h3 {
    color: #6dc52d;
    margin: 0;
    padding: 0;
    font-size: 16px;
    position: relative;
    z-index: 3;
}
.icon-box h5 {
    opacity: 0.25;
    margin: 0;
    margin-top: 10px;
    margin-bottom: -15px;
}
.icon-box img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -40px;
    width: 128px;
    opacity: 0.25;
    filter:grayscale(100%);
    -webkit-transition:0.6s ease all;
    -moz-transition:0.6s ease all;
    -o-transition:0.6s ease all;
    transition:0.6s ease all;
    z-index: 2;
}
.icon-box:hover img {
    filter:grayscale(0%);
    opacity: 1;
    transform: translate(55px, 0px) scale(1.05);
}
.icon-box.active:hover img {
    filter: grayscale(100%);
    opacity: 0.25;
    transform: none; 
}
.icon-box:before {
    position: absolute;
    bottom: 80px;
    right: -10%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    background: #333;
    z-index: 0;
    content: ' ';
    opacity: 0.03;
}

/* TIMELINE */
.timeline {
    margin-top: 30px;
    position: relative;
}
.timeline:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 2px;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 10%, rgba(0,0,0,0.15) 90%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.15) 10%,rgba(0,0,0,0.15) 90%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.15) 10%,rgba(0,0,0,0.15) 90%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#00000000',GradientType=0 );
    content: ' ';
}
.timeline .box {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    padding: 20px 30px;
    border-radius: 5px;
    background: #000;
    margin-bottom: 30px;
}
.timeline .box.light {
    background: url('../img/live-trading.jpg') center no-repeat;
    background-size: cover;
}
.timeline .box.light .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF761C;
    content: ' ';
    z-index: 1;
    border-radius: 5px;
    opacity: 0.9;
}
.timeline .box.dark {
    background: url('../img/live-trading-2.jpg') center no-repeat;
    background-size: cover;
}
.timeline .box.dark .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #222;
    content: ' ';
    z-index: 1;
    border-radius: 5px;
    opacity: 0.9;
}
.timeline .box:last-child {
    margin-bottom: 0px;
}
.timeline .box h3 {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    position: relative;
    z-index: 3;
}
.timeline .box h1 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 10px 0px;
    padding: 0;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 3;
}
.timeline .box p {
    font-size: 12px;
    width: 100%;
    text-align: left;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    margin: 0;
    position: relative;
    z-index: 3;
}
.timeline .box.left,
.timeline .box.left h1,
.timeline .box.left p {
    text-align: right !important;
}
.timeline .box.left p {
    padding-left: 40px;
}
.timeline .box.right p {
    padding-right: 40px;
}
.timeline .box.left:after {
    position: absolute;
    right: -20px;
    top: 30px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b3b3b3;
    border:2px solid #f5f5f5;
    content: ' ';
}
.timeline .box.right:after {
    position: absolute;
    left: -20px;
    top: 30px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b3b3b3;
    border:2px solid #f5f5f5;
    content: ' ';
}
.timeline .box.right:first-child {
    margin-top: 50px;
}
.timeline .box.dark.left:before {
    position: absolute;
    top: 28px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: #333;
    transform: rotate(45deg);
    z-index: -1;
    content: ' ';
}
.timeline .box.dark.right:before {
    position: absolute;
    top: 28px;
    left: -3px;
    width: 14px;
    height: 14px;
    background: #333;
    transform: rotate(45deg);
    z-index: -1;
    content: ' ';
}
.timeline .box.light.left:before {
    position: absolute;
    top: 28px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: #FF761C;
    transform: rotate(45deg);
    z-index: -1;
    content: ' ';
}
.timeline .box.light.right:before {
    position: absolute;
    top: 28px;
    left: -3px;
    width: 14px;
    height: 14px;
    background: #FF761C;
    transform: rotate(45deg);
    z-index: -1;
    content: ' ';
}

/* STEPS */
.control-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    margin-top: 30px;
}
.control-nav li {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
.control-nav li:last-child {
    margin-bottom: 0px;
}
.control-nav li a {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    padding-left: 60px;
    position: relative;
}
.control-nav li.active a,
.control-nav li a:hover,
.control-nav li a:focus {
    color: inherit;
    text-decoration: none;
    background: #6dc52d;
}
.control-nav li a span {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 14px;
    text-align: center;
    line-height: 28px;
    font-weight: 400;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #999;
    color: #333;
}
.control-nav li a .explained {
    text-align: left;
    display: block;
    color: #333;
}
.control-nav li a .explained p {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
    font-size: 12px;
}
.control-nav li a:hover .explained,
.control-nav li a:focus .explained,
.control-nav li.active a .explained {
    color: #fff;
}
.control-nav li a:hover .explained p,
.control-nav li a:focus .explained p,
.control-nav li.active a .explained p {
    color: rgba(255,255,255,0.75);
}
.control-nav li a:hover span,
.control-nav li a:focus span,
.control-nav li.active a span {
    color: #fff;
    border: 1px solid #fff;
}
.control-tabs {
    display: none;
}
.control-tabs.active {
    display: block;
}
.control-tabs img.img-responsive {
    max-width: 100%;
}

.nice-video {
    position: relative;
    display: block;
    margin-top: 80px;
}
.nice-video .close-icon {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.5;
    font-size: 20px;
    color: #fff;
    z-index: 3;
}
.nice-video .nice-image1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/trading1.jpg') center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.nice-video .nice-image1 .overlay {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    opacity: 0.85;
    z-index: 1;
}
.nice-video .nice-image1 .play-icon {
    position: relative;
    z-index: 2;
    opacity: 0.25;
}
.nice-video .nice-image1 .play-icon:hover {
    opacity: 1;
}
.nice-video .nice-image1 .play-icon img {
    width: 64px;
    cursor: pointer;
}
.nice-video .nice-image1 .title {
    position: absolute;
    bottom: 35px;
    left: 25px;
    z-index: 3;
    color: #fff;
}
.nice-video .nice-image1 .title h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    margin-bottom: 10px;
}
.nice-video .nice-image1 .title h4 {
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    opacity: 0.5;
}


.nice-video .nice-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/trading.jpg') center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.nice-video .nice-image .overlay {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    opacity: 0.85;
    z-index: 1;
}
.nice-video .nice-image .play-icon {
    position: relative;
    z-index: 2;
    opacity: 0.25;
}
.nice-video .nice-image .play-icon:hover {
    opacity: 1;
}
.nice-video .nice-image .play-icon img {
    width: 64px;
    cursor: pointer;
}
.nice-video .nice-image .title {
    position: absolute;
    bottom: 35px;
    left: 25px;
    z-index: 3;
    color: #fff;
}
.nice-video .nice-image .title h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    margin-bottom: 10px;
}
.nice-video .nice-image .title h4 {
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    opacity: 0.5;
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* BOXES */
.owl-carousel .column {
    padding: 0px 15px;
}
.plan-box {
    width: 100%;
    display: block;
    background: #fff;
    border-radius: 5px;
    box-shadow: rgba(0,0,0,0.08) 0px 10px 30px;
    overflow: hidden;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
    margin: 30px 0px;
}
.plan-box:hover {
    transform: scale(1.05);
}
.plan-box .header {
    display: block;
    width: 100%;
    height: auto;
    background: #6dc52d;
    position: relative;
    padding: 15px;
}
.plan-box .header i {
    font-size: 72px;
    margin: auto;
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 118.28px;
    height: 92px;
    position: absolute;
    color: rgba(255,255,255,0.2);
}
.plan-box .header h3 {
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 30px;
}
.plan-box .header h5 {
    font-size: 12px;
    text-align: center;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.plan-box .header .pull-left,
.plan-box .header .pull-right {
    color: #fff;
}
.plan-box .header .pull-left span,
.plan-box .header .pull-right span {
    font-size: 11px;
}
.plan-box .half {
    width: 50%;
    float: left;
    position: relative;
    text-align: center;
    padding: 20px 0px;
}
.plan-box .half.border:after {
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: #ddd;
    content: ' ';
}
.plan-box .half h3 {
    font-size: 24px;
    font-weight: 300;
    color: #FF761C;
    margin: 0;
    padding: 0;
}
.plan-box .half span {
    font-weight: 300;
    font-size: 12px;
    margin: 0;
    padding: 0;
}
.plan-box .features-list {
    list-style: none;
    margin: -5px 0px;
    padding: 0px 15px;
}
.plan-box .features-list > li {
    display: block;
    padding: 5px 0px;
    color: #999;
    font-weight: 300;
}
.plan-box p.small {
    font-size: 10px;
    font-weight: 400;
    margin: 0;
    color: #999;
    text-align: center;
    width: 100%;
    padding: 15px;
}
.plans {
    margin-top: 60px;
}
.owl-theme-2-right {
    font-size: 48px;
    display: inline-block;
    margin-left: -30px;
    margin-top: 80px;
    color: #999;
}
.owl-theme-2-right:hover,
.owl-theme-2-right:focus {
    color: #6dc52d;
}

/* CONTACT SECTION */
section.contact-new {
    background: rgb(45,64,83);
background: -moz-radial-gradient(center, ellipse cover, rgba(45,64,83,1) 0%, rgba(19,27,35,1) 100%);
background: -webkit-radial-gradient(center, ellipse cover, rgba(45,64,83,1) 0%,rgba(19,27,35,1) 100%);
background: radial-gradient(ellipse at center, rgba(45,64,83,1) 0%,rgba(19,27,35,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d4053', endColorstr='#2D4053',GradientType=1 );
    color: #fff;
}
section.contact-new h1 {
    margin-bottom: 50px;
}
section.contact-new h2 {
    font-size: 18px;
    text-align: center;
    margin: 15px 0px;
}
section.contact-new p {
    font-size: 12px;
    text-align: center;
    margin: 0;
    width: 100%;
    color: rgba(255,255,255,0.5);
    margin-top: -10px;
}
section.contact-new .logo {
    width: 70%;
    display: block;
    margin: auto;
}
section.contact-new .partneros {
    width: 80%;
    display: block;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}
section.contact-new .social-links {
    display: block;
    list-style: none;
    margin: 30px 0px;
    padding: 0;
    text-align: center;
}
section.contact-new .social-links li {
    display: inline-block;
}
section.contact-new .social-links li a {
    display: block;
    padding: 5px;
    background: rgba(255,255,255,0.2);
    margin: 0px 3px;
    color: #fff;
    border-radius: 50%;
}
section.contact-new .social-links li a:hover,
section.contact-new .social-links li a:focus {
    background: #fff;
    color: #333;
}
section.contact-new .simple-links {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
section.contact-new .simple-links li {
    display: inline-block;
}
section.contact-new .simple-links li a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    font-size: 11px;
    margin: 0px 10px;
}
section.contact-new .simple-links li a:hover,
section.contact-new .simple-links li a:focus {
    color: #fff;
}
section.contact-new form {
    display: block;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
}
section.contact-new form h1 {
    width: 100%;
    display: block;
    text-align: left;
    color: #2D4053;
    font-weight: 300;
    font-size: 24px;
    margin: 0;
    padding: 0;
}
section.contact-new form h3 {
    margin: 0;
    margin-top: 5px;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0,0,0,0.3);
}
section.contact-new .faviconic {
    width: 45px;
    margin-bottom: 25px;
}
section.contact-new .form-control {
    background: rgba(0,0,0,0.01);
    height: auto;
    padding: 10px;
    border: 1px solid #eee;
    box-shadow: none;
    border-radius: 0px;
    margin-bottom: 15px;
}
section.contact-new .form-control.no-margin-bottom {
    margin-bottom: 0px;
}
section.contact-new textarea {
    min-height: 80px;
    max-width: 100%;
}

/* STANDARD SECTION */
.standard {
    padding: 40px 0px;
}
.standard.v2 {
    text-align: center;
}
.standard h1 {
    font-size: 20px;
    font-weight: bold;
}
.standard.v2 h1 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: normal;
}
.standard.v2 h1 > span {
    font-weight: 700;
}
.standard h2 {
    font-size: 16px;
    font-weight: 500;
}
.standard.v2 h2 {
    font-size: 40px;
    margin: 20px 0px;
    text-transform: uppercase;
    font-weight: 300;
    color: #6dc52d;
}
.standard.v2 img {
    width: 128px;
}
.standard.v2.half-image-size img {
    width: 64px;
}
.standard p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    margin: 15px 0px;
}
.standard.v2 p.lead {
    font-size: 16px;
    width:70%;
    margin: 20px auto;
}
.standard.v2 .col-sm-4 > p {
    margin: 0;
}
.standard.grey-bg {
    background: rgba(250,250,250,1);
}

.faq .panel {
    background:none;
    border:none;
    box-shadow:none;
}
.faq .panel-heading {
    background:none;
    border:none;
    padding: 0px;
}
.faq .panel-body {
    border:none;
    border-top:none !important;
    background: #fff;
    text-align: left;
    padding: 0px 25px 25px 25px;
}
.faq .panel-body p {
    font-size: 16px;
}
.faq .panel-body p b {
    font-weight: 500;
}
.faq .panel-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.faq .panel-body ul li {
    margin: 5px 0px;
    font-weight: 300;
    font-size: 14px;
}
.faq .panel-body ul li:before {
    font-family: 'FontAwesome';
    margin-right: 10px;
    opacity: 0.1;
    font-size: 12px;
    line-height: 16px;
    content: '\f111';
}
.faq .panel-body .button {
    text-align: center;
    margin-top: 25px;
}
.faq .panel .panel-heading a {
    /* Your Question Style */
    display: block;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
    text-align: left;
    font-size: 24px;
    padding: 25px 25px;
    font-weight: 300;
    border-top: 1px solid #eee;
}
.faq .panel .panel-heading a:hover {
    text-decoration: none;
    color: #6DC52D;
}
.faq .panel .panel-heading a:focus {
    text-decoration: none;
}
.faq .panel .panel-heading a:not(.collapsed) {
    background: #fff;
    color: #6DC52D;
}

/* TRADES */
.trades {
    width: 100%;
    height: auto;
    position: relative;
    padding: 80px 0px;
    color: #fff;
    background: url('../img/bg.jpg') center no-repeat;
    background-size: cover;
    text-align: center;
}
.trades .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2D4053;
    opacity: 0.9;
    z-index: 1;
}
.trades .container-fluid {
    position: relative;
    z-index: 2;
}
.trades h1 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
.trades p.lead {
    font-size: 16px;
    width:70%;
    margin: 20px auto;
}
.trades h2 {
    font-size: 48px;
    margin: 0;
}
.trades h3 {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    color: #6dc52d;
}
.trades p:not(.lead) {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* CREDIT CARDS */
.credit-cards {
    width: 100%;
    height: auto;
    background: #2D4053;
    padding: 40px 0px;
    text-align: center;
}
.credit-cards img {
    height: 50px;
    margin: 0px 15px;
}

/* FOOTER */
footer {
    padding: 20px 0px;
    padding-bottom: 150px;
    background: rgb(8,8,8);
    background: -moz-linear-gradient(top, rgba(8,8,8,1) 0%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(top, rgba(8,8,8,1) 0%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to bottom, rgba(8,8,8,1) 0%,rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#080808', endColorstr='#000000',GradientType=0 );
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 30px 0px;
    margin-left: -15px;
}
footer ul li {
    display: inline-block;
    position: relative;
    padding: 5px 15px;
}
footer ul li:after {
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: #fff;
    opacity: 0.1;
    content: ' ';
}
footer ul li:last-child:after {
    display: none;
}
footer ul li a {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
}
footer ul li a:focus,
footer ul li a:hover {
    color: #6dc52d;
    text-decoration: none;
}
footer hr {
    margin-top: 40px;
    margin-bottom: 50px;
    opacity: 0.1;
}
footer .risk-warning {
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 30px;
}
footer .risk-warning p {
    margin: 0;
}
footer .risk-warning h2 {
    text-align: center;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    width: 150px;
    background: #000;
    margin: auto;
    margin-top: -23px;
    margin-bottom: 15px;
}
footer p {
    font-size: 16px;
    font-weight: 400;
}
footer .socials a {
    display: inline-block;
    padding-right: 5px;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
footer .socials a > img {
    width:40px;
}
footer .socials a.active {
    opacity: 1;
}
footer .socials a.disabled {
    opacity: 0.25;
}

/* CONTACT */
.standard.v2.contact {
    text-align: left;
    padding-bottom: 80px;
}
.standard.v2.contact h2 {
    font-size: 30px;
    margin: 5px 0px;
}
.standard.v2.contact h3 {
    font-size: 18px;
    margin: 0;
}
.standard.v2.contact p {
    margin-top: 0px;
    margin-bottom: 30px;
}
.standard.v2.contact p.lead {
    width: 100%;
    text-align: left;
    margin-top: 0px;
}
.standard.v2.contact #contact-form {
    margin-top: 15px;
    display: none;
}
.standard.v2.contact #showContactForm {
    margin-top: 15px;
}
.standard.v2.contact .form-group label {
    font-weight: 400;
}
.standard.v2.contact .form-group .form-control {
    box-shadow: none;
    padding: 15px 25px;
    height: auto;
}
.standard.v2.contact .form-group .form-control:focus {
    border: 1px solid #6dc52d;
}

/* SIDEBAR PROFILE */
.profile {
    width: 100%;
    padding: 25px 0px;
}
.profile img {
    width: 40px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
}
.profile .profile-details {
    padding-left: 10px;
    width: calc(100% - 40px);
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
}
.profile .profile-details b {
    display: block;
    font-size: 14px;
    margin-bottom: -5px;
}
.money {
    font-size: 11px;
    color: #999;
}
.money b {
    display: block;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-top: -5px;
    color: #6dc52d;
}

/* WITHDRAW */
.withdraw {
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background: rgba(250,250,250,1);
    position: relative;
}
.withdraw .content {
    width: 500px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    border-bottom: 3px solid #ddd;
    box-shadow: rgba(0,0,0,0.05) 0px 5px 10px;
}
.withdraw.eligable .content {
    width:700px;
}
.withdraw .content header {
    width: 100%;
    height: auto;
    padding:10px 10px;
    background: #2D4053;
    color: #fff;
}
.withdraw .content header > .pull-left > img {
    width: 30px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.withdraw .content header img.avatar {
    width: 30px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.withdraw .content header > span {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 300;
}
.withdraw .content header > .pull-right > .details {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    display: inline-block;
    vertical-align: middle;
}
.withdraw .content header > .pull-right > .details b {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    margin-bottom: -5px;
}
.withdraw .content .body {
    padding: 25px 15px;
}
.withdraw .content .body h2 {
    margin: 0;
    font-size: 30px;
    color: #6dc52d;
    text-align: center;
    font-weight: 500;
    letter-spacing: -1px;
}
.withdraw.eligable .content .body h3 {
    text-align: center;
    margin: 0;
    margin-bottom:20px;
    font-size: 18px;
    font-weight: 500;
}
.withdraw .content .body p.small {
    font-size: 12px;
    opacity: 0.25;
}
.withdraw.eligable .content .body .col-xs-6 {
    border-right: 1px solid #eee;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.withdraw.eligable .content .body .btn-danger {
    margin: auto;
    margin-top: 20px;
    display: inline-block;
}
.withdraw.eligable .content .body a:not(.btn) {
    display: inline-block;
    margin:0px 5px;
    margin-top: 25px;
    color: #FF761C;
}
.withdraw .content .body p {
    font-size: 12px;
    margin: 0;
    text-align: center;
    opacity: 0.75;
}
.withdraw .content .body p.lead {
    font-size: 16px;
    margin: 5px 0px;
}
.withdraw .content .body p.text-left {
    text-align: left;
}
.withdraw .content .body .icons {
    font-size: 20px;
    text-align: center;
}
.withdraw .content .body .icons i:first-child {
    opacity: 0.5;
}
.withdraw .content .body .icons i:last-child {
    transform: scale(3);
    margin-left: -20px;
    opacity: 0.75;
}
.withdraw .content .body .no-style {
    box-shadow: none;
    border: none;
    width: 100%;
    height: auto;
    text-align: center;
    outline: none;
}
.withdraw .content .body .no-style.green {
    margin: 0;
    font-size: 30px;
    color: #6dc52d;
    text-align: center;
    font-weight: 500;
    letter-spacing: -1px;
}
.withdraw .content .body .no-style.green.select {
    font-size: 20px;
    font-weight: 300;
    text-align-last:center !important;
    padding: 10px 0px;
}
.withdraw .content .body .form-control {
    box-shadow: none;
    width: 220px;
    height: auto;
}
.withdraw .content .body .form-control:focus {
    border: 1px solid #6dc52d;
}
.withdraw.eligable .content .body h1 {
    text-align: center;
    margin: 0;
    margin-top: 30px;
    font-weight: 300;
    font-size: 24px;
}
.withdraw.eligable .content .body h4 {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 50px;
    font-weight: 300;
    font-size: 12px;
}
.withdraw.eligable .logo {
    width: 700px;
    margin-bottom: 15px;
}
.withdraw.eligable .logo img {
    height: 30px;
}
.withdraw.eligable .details {
    display: block;
}
.withdraw.eligable .details img {
    width: 30px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.withdraw.eligable .details .profile {
    font-size: 10px;
    color: rgba(0,0,0,0.5);
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    width: calc(100% - 40px);
}
.withdraw.eligable .details .profile b {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: #111;
    margin-bottom: -5px;
}

.extra-info {
    width: 500px;
    margin: 0;
    margin-top: 30px;
    font-weight: 400;
    font-family: sans-serif;
    font-size: 12px;
    color: rgba(0,0,0,0.4);
}
.eligable .extra-info {
    width: 700px;
    margin-top: 15px;
}
.eligable .extra-info .row {
    margin-bottom: 15px;
}
.extra-info img {
    width: 100%;
    -webkit-filter:grayscale(100%);
    filter:grayscale(100%);
    opacity: 0.5;
}

/* DASHBOARD */
.dashboard .dashboard-area {
    width: calc(100% - 70px);
    margin-left: 70px;
    height: auto;
    min-height: 100vh;
}
.dashboard.trading-history .dashboard-area {
    width: 100%;
    margin-left: 0px;
    min-height: auto;
    position: relative;
    padding-top: 50px;
}
.dashboard .icons-nav {
    position: fixed;
    width: 70px;
    height: calc(100% - 80px);
    top: 80px;
    left: 0;
    background: #fff;
    border-right: 1px solid rgba(0,0,0,0.1);
    z-index: 7;
    list-style: none;
    margin: 0;
    padding: 0;
}
.dashboard.trading-history .icons-nav {
    display: none;
}
.dashboard .icons-nav > li {
    display: block;
    text-align: center;
}
.dashboard .icons-nav > li:first-child > a {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.dashboard .icons-nav > li > a {
    padding: 15px 0px;
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
    font-weight: 300;
    position: relative;
}
.dashboard .icons-nav > li > a > img {
    filter:invert(100%);
}
.dashboard .icons-nav > li > a > span {
    position: absolute;
    top: 21px;
    left: 0%;
    z-index: -1;
    opacity: 0;
    width: auto;
    padding: 5px 10px;
    background: #6dc52d;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    min-width: 100px;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.dashboard .icons-nav > li > a > span:after {
    position: absolute;
    top: 8.5px;
    left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 6px 5px 0;
    border-color: transparent #6dc52d transparent transparent;
    content: ' ';
}
.dashboard .icons-nav > li > a:hover > span {
    opacity: 1;
    transform: translate(75px, 0);
}
.dashboard .icons-nav > li > a > img {
    width: 32px;
    display: block;
    margin: auto;
    margin-bottom: 6px;
    opacity: 0.25;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.dashboard .icons-nav > li > a:hover,
.dashboard .icons-nav > li > a:focus {
    background: rgba(255,255,255,0.05);
    text-decoration: none;
    color: #fff;
}
.dashboard .icons-nav > li > a:hover > img,
.dashboard .icons-nav > li > a:focus > img {
    opacity: 1;
}
.dashboard .icons-nav > li.active > a {
    background: #6dc52d;
    color: #fff;
    font-weight: 400;
}
.dashboard .icons-nav > li.active > a > img {
    opacity: 1;
    filter:invert(0%);
}
.dashboard-top {
    width: 100%;
    height: auto;
    padding: 15px 0px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}
.dashboard-top .item {
    float: right;
    border-right: 1px solid #eee;
    padding: 0px 15px;
}
.dashboard-top .item.left {
    float: left;
}
.dashboard-top .item.button {
    height: 46px;
    padding-top: 6px;
}
.dashboard-top .item:last-child {
    border-right: none;
}
.dashboard-top .item img {
    display: inline-block;
    vertical-align: middle;
    opacity: 0.2;
    width: 32px;
}
.dashboard-top .item .details {
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px;
    font-size: 12px;
    color: #999;
}
.dashboard-top .item .details b {
    display: block;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: -5px;
    color: #333;
}
.stats {
    padding: 30px 0px;
}
.stats h2 {
    margin: 0;
    font-size: 20px;
}
.stats h2 .pull-right {
    color: #6dc52d;
}
.stats .single-stats {
    width: auto;
    height: auto;
    display: block;
    font-size:12px;
    color: #999;
    padding: 15px 0px;
}
.stats .single-stats.border-bottom {
    border-bottom: 1px solid #eee;
}
.stats .single-stats:hover {
    cursor:help;
}
.stats .single-stats b {
    font-size: 18px;
    color: #333;
    display: block;
    margin-bottom: -5px;
}
.stats .single-stats b .fa-line-chart {
    color: #6dc52d;
}
.stats .single-stats b .fa-angle-double-down {
    color: #e74c3c;
}
.stats .single-stats.big b {
    font-size: 34px;
}

.dashboard hr {
    margin: 30px 0px;
}

.table.table-style thead th {
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 18px;
}
.table.table-style tbody tr td {
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    border-top: 1px solid #eee;
    font-weight: 300;
    font-size: 14px;
    color: #999;
}
.table.table-style tbody tr:hover td {
    background: #f9f9f9;
}

.referral-link {
    padding: 60px 0px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}
.referral-link h1 {
    font-weight: 300;
    margin: 0;
    font-size: 36px;
}
.referral-link h2 {
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    opacity: 0.5;
}
.referral-link .form-control {
    width: 50%;
    margin-top: 30px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: none;
    height: auto;
    padding: 15px;
    display: inline-block;
}
.referral-link .btn {
    height: 50px;
    padding: 0px 20px;
    line-height: 50px;
}
.referral-link .checkbox-inline {
    padding-top: 5px;
}
.referral-link .checkbox-inline label {
    font-weight: normal;
}
.referral-link p.small {
    width: 50%;
    opacity: 0.4;
}

.settings-title {
    font-weight: 300;
    font-size: 18px;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    display: block;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.settings-title:hover {
    cursor: pointer;
    color: #6dc52d;
}
.settings-title i {
    float: right;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.settings-title i.rotated {
    transform: rotate(180deg);
}
.settings-label label {
    font-weight: 300;
    font-size:14px;
}
.settings-label .form-control {
    box-shadow: none;
    border: 1px solid #ddd;
}
.settings-label .form-control:focus {
    border: 1px solid #6dc52d;
}
.to-hide {
    display: none;
}
.to-hide.active {
    display: block;
}

.ct-series-a .ct-line {
  stroke: rgb(109, 197, 45) !important;
  stroke-width: 2px;
}
.ct-series-a .ct-point {
  stroke: rgb(109, 197, 45) !important;
  stroke-width: 8px;
}
.ct-series-b .ct-line {
  stroke: #e74c3c !important;
  stroke-width: 2px;
}
.ct-series-b .ct-point {
  stroke: #e74c3c !important;
  stroke-width: 8px;
}


.referral-1 {
    padding-bottom: 40px;
    position: relative;
}
.referral-1 h1 {
    font-size: 24px;
    font-weight: 300;
}
.referral-1 h2 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #6dc52d;
    margin: 5px 0px;
}
.referral-1 p {
    font-size: 11px;
    opacity: 0.5;
}
.referral-1 h1,
.referral-1 p {
    margin: 0;
}
.referral-1 .avatar {
    width: 100%;
    height: 180px;
    margin: auto;
}
.referral-1 .repr-info {
    width:100%;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(247,247,247,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(247,247,247,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(247,247,247,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7',GradientType=0 );
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: rgba(0,0,0,0.04) 0px 10px 10px;
    border-bottom: 3px solid #e6e6e6;
}

.referral-2 {
    padding-bottom: 40px;
    position: relative;
}
.referral-2 .full-profile {
    width: 70%;
    display: block;
    margin: auto;
    height: auto;
    padding:5px 10px;
    border: 1px solid #eee;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(247,247,247,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(247,247,247,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(247,247,247,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7',GradientType=0 );
    border-bottom: 2px solid #6dc52d;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
    position: relative;
}
.referral-2 .full-profile:before {
    position: absolute;
    width: 1px;
    height: 40px;
    top: -40px;
    right: 20px;
    display: block;
    background: #000;
    opacity: 0.1;
    content: ' ';
}
.referral-2 .full-profile:hover {
    background: #6dc52d;
    color: #fff;
    border-radius: 4px;
}
.referral-2 .full-profile.v2 {
    border-bottom: 2px solid #FF761C;
}
.referral-2 .full-profile.v2:before {
    position: absolute;
    width: 1px;
    height: 40px;
    top: -40px;
    left: 20px;
    display: block;
    background: #000;
    opacity: 0.1;
    content: ' ';
}
.referral-2 .full-profile.v2:hover {
    background: #FF761C;
}
.referral-2 h1 {
    font-size: 14px;
    font-weight: 300;
}
.referral-2 h2 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
}
.referral-2 h2 a {
    color: #6dc52d;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.referral-2 .full-profile:hover h2 a {
    color: #fff;
}
.referral-2 p {
    font-size: 11px;
    opacity: 0.5;
}
.referral-2 h1,
.referral-2 h2,
.referral-2 p {
    margin: 0;
}
.referral-2 .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
}
.referral-2 .full-profile:hover .avatar {
    border:2px solid #fff;
}
.referral-2 .repr-info {
    width: calc(100% - 50px);
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
}

.referral-3 {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
}
.referral-3:before {
    position: absolute;
    width: 1px;
    height: 40px;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    background: #000;
    opacity: 0.1;
    content: ' ';
}
.referral-3 h1,
.referral-3 h2,
.referral-3 p {
    margin: 0;
}
.referral-3 h1 {
    font-size: 13px;
    margin: 5px 0px;
    font-weight: 300;
}
.referral-3 h2 {
    font-weight: 300;
    font-size: 11px;
}
.referral-3 h2 a {
    color: #6dc52d;
}
.referral-3 p {
    font-size: 10px;
    opacity: 0.5;
}
.referral-3 .avatar {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    margin: auto;
}
.referral-3 .avatar img {
    width: 20px;
}

#leftTeam,
#rightTeam {
    display: none;
}
#leftTeam.active,
#rightTeam.active {
    display: block !important;
}
.command {
    cursor: pointer !important;
}
.command b i {
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
    opacity: 0.25;
}
.command.active,
.command.active b,
.command.active b i {
    color: #6dc52d;
}
.command:not(.active) b i {
    transform: rotate(180deg);
    opacity: 1;
}

.account-address {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.5;
    padding-top: 7px;
}

#anotherAccount {
    text-align: center;
    padding-top:15px;
    font-size: 12px;
    color: #999;
}
#anotherAccount .btn {
    margin-top: 5px;
}

/* TRADING TABLE */
.table-trading {
    margin-bottom: 0px;
    position: relative;
}
.table-trading.table-header {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 7;
}
.table-trading thead,
.table-trading thead tr {
    border:none;
}
.table-trading thead th {
    padding: 15px !important;
    background: #1b2632;
    color: rgba(255,255,255,0.75);
    font-size: 14px !important;
    font-weight: 500 !important;
    border: none !important;
    width: calc(100% / 8);
}
.table-trading tbody tr td {
    vertical-align: middle;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    color: rgba(255,255,255,0.5);
    width: calc(100% / 8);
}
.table-trading tbody tr td span {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-top: -5px;
}
.table-trading tbody tr:nth-child(2n) {
    background: #364d63;
}
.table-trading tbody tr:nth-child(2n+1) {
    background: #2d4053;
}
.table-trading tbody tr td .green {
    color: #6dc52d;    
}
.table-trading tbody tr td .red {
    color: #FF761C;    
}
.table-trading tbody tr td .price-tag {
    display: inline-block;
    position: relative;
    text-align: center;
    padding-right: 5px;
    font-weight: 300;
    font-size: 12px;
}
.table-trading tbody tr td .price-tag img {
    width: 24px;
    display: block;
    margin-bottom: 5px;
}

.clearfix.bigger {
    margin-bottom: 30px;
}
.normal-block {
    display: block;
    font-size: 12px;
    margin-top: 10px;
}
.normal-block b {
    display: block;
    font-size: 16px;
    margin-top: -5px;
}
.normal-block.big-block b {
    font-size: 20px;
}

/* FAQ */
.faq-2 {
    margin-top: 30px;
}
.faq-2 h2 {
    font-size: 16px;
    font-weight: bold;
}
.faq-2 .panel {
    background:none;
    border:none;
    box-shadow:none;
    margin: 15px 0px;
}
.faq-2 .panel-heading {
    background:none;
    border:none;
    padding: 0px;
}
.faq-2 .panel-body {
    padding:0px;
    border:none;
    border-top:none !important;
    font-size: 11px;
    font-family: sans-serif;
    padding-top: 5px;
    color: #ccc;
}
.faq-2 .panel .panel-heading a {
    /* Your Question Style */
    font-weight: 500;
    font-size: 14px;
    color: #999;
}
.faq-2 .panel .panel-heading a:focus,
.faq-2 .panel .panel-heading a:hover {
    text-decoration: none;
}
.faq-2 .panel .panel-heading a:before {
    font-family: 'FontAwesome';
    content: '\f0da';
}

.faq-3 {
    margin-top: 30px;
}
.faq-3 h2 {
    font-size: 36px;
    font-weight: bold;
}
.faq-3 .panel {
    background:none;
    border:none;
    box-shadow:none;
    margin: 30px 0px;
}
.faq-3 .panel-heading {
    background:none;
    border:none;
    padding: 0px;
}
.faq-3 .panel-body {
    padding:0px;
    border:none;
    border-top:none !important;
    font-size: 16px;
    font-family: sans-serif;
    padding-top: 5px;
    color: #ccc;
}
.faq-3 .panel .panel-heading a {
    /* Your Question Style */
    font-weight: 400;
    font-size: 16px;
    color: #999;
}
.faq-3 .panel .panel-heading a:focus,
.faq-3 .panel .panel-heading a:hover {
    text-decoration: none;
}
.faq-3 .panel .panel-heading a:before {
    font-family: 'FontAwesome';
    content: '\f0da';
}

.filters label {
    font-weight: normal;
    font-size: 12px;
    display: block;
    margin-bottom: -1px;
}
.filters .form-control {
    box-shadow: none;
    border: 1px solid #ddd;
}
.filters .form-control:focus {
    border: 1px solid #6dc52d;
}

.pagination {
    float: right;
}
.pagination>li>a, .pagination>li>span {
    border: 1px solid rgba(0,0,0,0.05);
    color: #6dc52d;
}
.pagination>li>a:hover {
    color: #fff;
    background: #6dc52d;
    border: 1px solid #6dc52d;
}

.tabs-trading .tab {
    display: none;
}
.tabs-trading .tab.active {
    display: block;
}

.nice-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 15px 0px;
    background: #6dc52d;
    color: #fff;
    display: none;
    cursor: pointer;
}
.nice-alert i {
    font-size: 48px;
    opacity: 0.2;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
    line-height: 48px;
    height: 48px;
}
.nice-alert .message {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 76px);
    padding-left: 5px;
}
.nice-alert .message b {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}
.nice-alert .message {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}
.nice-alert .message p {
    margin: 0;
}

.moveDown, .hideMore {
    font-size: 36px;
    color: #999;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    opacity: 0.5;
}
.hideMore {
    display: none;
}
.moveDown:hover,
.moveDown:focus,
.hideMore:hover,
.hideMore:focus {
    opacity: 1;
    color: #999;
}

/* DARK MODAL */
.dark-modal .modal-dialog .modal-content {
    box-shadow: none;
    border: none;
}
.dark-modal .modal-header {
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    border: none;
    position: relative;
}
.dark-modal .modal-header .close {
    margin-top: 10px;
    margin-right: 15px;
    text-shadow: none;
    color: rgba(255,255,255,0.7);
}
.dark-modal .modal-header .modal-title {
    display: block;
    background: #2D4053;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: normal;
    border: none;
}
.dark-modal .modal-header .modal-title > img {
    width: 32px;
    margin-right: 10px;
}
.dark-modal .modal-body {
    background: #243342;
    border: none;
}
.dark-modal .modal-links {
    list-style: none;
    margin: 0;
    padding:0;
}
.dark-modal .modal-links li a {
    display: block;
    padding: 8px 15px;
    width: 90%;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    background: #6dc52d;
    -webkit-transition:0.3s ease all;
    -moz-transition:0.3s ease all;
    -o-transition:0.3s ease all;
    transition:0.3s ease all;
}
.dark-modal .modal-links li a:hover,
.dark-modal .modal-links li a:focus,
.dark-modal .modal-links li.active a,
.dark-modal .modal-links li.active a:hover,
.dark-modal .modal-links li.active a:focus {
    background: #FF761C;
    width: 100%;
    text-decoration: none;
}
.dark-modal .modal-links li {
    margin-bottom: 5px;
}
.dark-modal .modal-links li:last-child {
    margin-bottom: 0px;
}
ul.style-1 {
    list-style: none;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,0.7);
}
ul.style-1 li:before {
    font-family: 'FontAwesome';
    content:'\f00c';
    opacity: 0.25;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
ul.style-1 li {
    position: relative;
    padding-left: 25px;
    font-size: 12px;
    margin-bottom: 15px;
}
ul.style-1 li:last-child {
    margin-bottom: 0px;
}
.dark-modal h1,
.dark-modal h2,
.dark-modal h3,
.dark-modal h4 {
    color: #fff;
    margin: 0;
}
.dark-modal h1 {
    font-size: 48px;
    margin: 5px 0px;
    margin-top: -5px;
    text-align: center;
}
.dark-modal h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    color: rgba(255,255,255,0.75);
}
.dark-modal h2 {
    font-size: 48px;
}
.dark-modal h2 span {
    display: inline-block;
    vertical-align: bottom;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}
.dark-modal .btn {
    margin-top: 5px;
}
.dark-modal .modal-details {
    display: none;
}
.dark-modal .modal-details.active {
    display: block;
}
.dark-modal .progression {
    width: 100%;
    height: auto;
    background: #2D4053;
    border-radius: 4px;
    margin-top: 15px;
    position: relative;
}
.dark-modal .progression .green-bar {
    background: #6dc52d;
    width: auto;
    height: 25px;
    border-radius: 4px;
    position: relative;
}
.dark-modal .progression .green-bar:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #fff;
    z-index: 1;
    content: ' ';
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    opacity: 0.1;
}
.dark-modal .progression .expiry {
    width: 15px;
    height: 35px;
    border-radius: 4px;
    top: -5px;
    left: 0;
    right: 0;
    margin: auto;
    background: #FF761C;
    position: absolute;
    z-index: 2;
    box-shadow: rgba(0,0,0,0.5) 0px 2px 2px;
}
.dark-modal .progression .expiry:before {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 5px;
    height: 25px;
    background: #fff;
    z-index: 3;
    content: ' ';
    opacity: 0.15;
}
.dark-modal .progression .deletion {
    width: 15px;
    height: 35px;
    border-radius: 4px;
    top: -5px;
    right: 0px;
    background: #FF761C;
    position: absolute;
    z-index: 2;
    box-shadow: rgba(0,0,0,0.5) 0px 2px 2px;
}
.dark-modal .progression .deletion:before {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 5px;
    height: 25px;
    background: #fff;
    z-index: 3;
    content: ' ';
    opacity: 0.15;
}
.dark-modal .progression-details {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 15px;
}
ul.style-2 {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.style-2 li:before {
    font-family: 'FontAwesome';
    content:'\f0da';
    position: absolute;
    top: -2px;
    color: #6dc52d;
    bottom: 0;
    margin: auto;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
ul.style-2 li {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    margin-bottom: 15px;
}
ul.style-2 li:last-child {
    margin-bottom: 0px;
}

/* SLIDES */
.Bitbay-affiliate {
    width: 100%;
    height: auto;
    padding: 200px 0px;
    position: relative;
}
.Bitbay-affiliate .goLeft,
.Bitbay-affiliate .goRight {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 56px;
    color: #999;
    opacity: 0.25;
}
.Bitbay-affiliate .goLeft:hover,
.Bitbay-affiliate .goRight:hover {
    opacity: 1;
}
.Bitbay-affiliate h2 {
    font-size: 48px;
    margin: 0;
    text-align: center;
}
.Bitbay-affiliate .a p {
    text-align: center;
    margin: 15px auto;
    font-size: 16px;
    width: 60%;
}
.Bitbay-affiliate .b p {
    text-align: left;
    margin: 15px auto;
    font-size: 16px;
    width: 100%;
}
.Bitbay-affiliate .btn {
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 300;
}

/* UPDATE 06.07.2017 */
.crypto-button {
    display: inline-block;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #eee;
    background: #f9f9f9;
    color: #999;
    font-size: 16px;
    margin-bottom: 20px;
    margin-right: 10px;
}
.crypto-button:hover,
.crypto-button:focus {
    text-decoration: none;
    color: #fff;
    background: #6dc52d;
}
.crypto-button .bigger-icon {
    font-size: 28px;
    margin-top: -6px;
    margin-bottom: -6px;
    display:inline-block;
    vertical-align: middle;
    color: #333;
}
.crypto-button:hover .bigger-icon,
.crypto-button:focus .bigger-icon {
    color: #fff;
}
.crypto-button .fa {
    opacity: 0.25;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}
.crypto-button .fa:hover {
    opacity: 1;
}
.crypto-button span.green {
    color: #6dc52d;
    font-weight: bold;
}
.crypto-button span.red {
    color: #ff0000;
    font-weight: bold;
}
.crypto-button span.green:after {
    font-family: 'FontAwesome';
    content: '\f148';
    margin-left: 5px;
}
.crypto-button span.red:after {
    font-family: 'FontAwesome';
    content: '\f148';
    margin-left: 5px;
    transform: rotate(180deg);
    display: inline-block;
}
.crypto-button:hover span.green,
.crypto-button:focus span.green,
.crypto-button:hover span.red,
.crypto-button:focus span.red {
    color: #fff;
}
.crypto-button .h-divider {
    width: 1px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin: 0px 10px;
    opacity: 0.2;
    background: #000;
}
.Bitbay-menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.Bitbay-menu > li {
    display: inline-block;
    vertical-align: middle;
}
.Bitbay-menu > li > a {
    display: block;
    padding: 10px;
    background: #f9f9f9;
    color: #555;
    border-radius: 4px;
}
.Bitbay-menu > li > a > .question-info {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    margin-left: 5px;
    position: relative;
}
.Bitbay-menu > li > a > .question-info:hover {
    background: rgba(0,0,0,0.25);
}
.Bitbay-menu > li > a > .question-info i {
    margin-left: -2px;
    margin-bottom: -2px;
}
.Bitbay-menu > li.active > a > .question-info {
    background: rgba(255,255,255,0.35);
}
.Bitbay-menu > li.active > a > .question-info:hover {
    background: rgba(255,255,255,0.5);
}
.Bitbay-menu > li > a:hover,
.Bitbay-menu > li > a:focus {
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
}
.Bitbay-menu > li.active > a {
    background: #6dc52d;
    color: #fff;
    text-decoration: none;
}
.Bitbay-tabs {
    margin-bottom: 30px;
}
.Bitbay-tabs .Bitbay-tab {
    display: none;
}
.Bitbay-tabs .Bitbay-tab.active {
    display: block;
}
.crypto-coins {
    text-align: center;
}
.crypto-coins .big-icon {
    font-size: 48px;
    display: block;
    margin: auto;
   /* filter: grayscale(100%);*/
}
.crypto-coins .coinToggler:hover .big-icon {
    filter: grayscale(0%);
}
.crypto-coins b {
    display: block;
    text-align: center;
}
.crypto-coins h2 {
    margin: 0;
    text-align: center !important;
}
.crypto-coins h2.success {
    color: #6dc52d;
}
.crypto-coins h2.danger {
    color: #e74c3c;
}
.spacer.x20 {
    height: 20px;
}
.coinToggler {
    cursor: pointer;
}
.coinToggler:hover {
    
}
#c-buttons {
    height: 72px;
    width: 100%;
    overflow-y: hidden;
    position: relative;
}
#c-buttons .buttons {
    top: 0;
    left: 0;
    width: auto;
    display: inline-block;
    min-width: 100% !important;
}

.videoLeft,
.videoRight {
    display: block;
    text-align: center;
    font-size: 36px;
    color: #999;
}
.videoLeft:hover,
.videoRight:hover,
.videoLeft:focus,
.videoRight:focus {
    color: #333;
    text-decoration: none;
}

/* update on 09.07.2017 */
.features {
    display: block;
    padding: 80px 0px;
    background: #f6f6f6;
    position: relative;
}
.features {
    padding: 40px 0px;
    text-align: center;
}
.features h1 {
    font-size: 20px;
    font-weight: bold;
}
.features h2 {
    font-size: 16px;
    font-weight: 500;
}
.features img {
    width: 64px;
    margin-top: 30px;
}
.features p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    margin: 15px 0px;
}
.features .videoHere {
    position: absolute;
    top: 0;left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.65);
    z-index: 99;
    display: none;
}
.features .videoHere.active {
    display: flex;
}
.features .videoHere .videoClose {
    position: absolute;
    top: 20px;
    bottom: auto;
    left: 670px;
    right: 0px;
    width: 20px;
    height: 20px;
    font-size: 18px;
    color: #fff;
    margin: auto;
}
.crypto-coins {
    float: right;
    height: 50px;
    width: 620px;
	margin-right:200px;
}
.crypto-coins .item {
    width: 80px;
    height: 50px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    font-size: 11px;
    color: #fff;
}
.crypto-coins .item i {
    color: rgba(255,255,255,1) !important;
    display: block;
    font-size: 24px !important;
}

@media (max-width:768px) {
    .content {
        width: 100%;
        float: none;
    }
    .sidebar {
        right: -300px;
    }
    .shadow {
        width: 100%;
    }
    header .logo {
        height: 35px;
    }
    header .logo > img {
        height: 35px;
    }
    header .dropdown-button > .details {
        left: auto;
        right: 0;
    }
    .main {
        min-height: calc(100vh - 65px);
    }
    section {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .credit-cards img {
        margin: 9px 5px;
    }
    footer .pull-left,
    footer .pull-right {
        float: none !important;
        display: block;
    }
    footer .socials {
        margin-bottom: 15px;
    }
    .full-page header .header-buttons {
        float: none;
        margin-top: 15px;
    }
    .full-page header .header-buttons > li {
        margin-left: 0px;
        margin-right: 5px;
    }
    .full-page .sidebar {
        margin-right: 0px;
    }
    .full-page .sidebar.active {
        transform: translate(-300px, 0px);
    }
    .standard.v2 img {
        width: 64px;
    }
    .standard.v2 h2 {
        margin: 10px 0px;
    }
    .standard.v2 .col-sm-4,
    .trades .col-sm-4 {
        margin-bottom: 30px;
    }
    .standard.v2 .col-sm-4:last-child,
    .trades .col-sm-4:last-child {
        margin-bottom: 0px;
    }
    .standard.v2.contact h2 {
        font-size: 20px;
    }
    .full-page header .profile .details {
        display: none;
    }
    .full-page header .profile > img {
        margin: 0;
    }
    .full-page header .profile {
        padding: 12.5px 3px;
    }
    .dashboard .icons-nav {
        height: calc(100% - 65px);
        top: 65px;
        width: 50px;
    }
    .dashboard .icons-nav > li.active > a > img {
        width: 20px;
    }
    .dashboard .icons-nav > li > a:hover > span {
        transform: translate(55px, 0px);
    }
    .dashboard .dashboard-area {
        width: calc(100% - 50px);
        margin-left: 50px;
    }
    body.dashboard {
        padding-top: 65px;
    }
    .dashboard-top .item {
        padding: 10px 10px;
        width: 50%;
    }
    .dashboard-top .item:nth-child(1),
    .dashboard-top .item:nth-child(2) {
        border-bottom: 1px solid #eee;
    }
    .dashboard-top .item.button {
        display: none;
    }
    .dashboard-top .item .details {
        font-size: 10px;
    }
    .dashboard-top .item .details b {
        font-size: 20px;
    }
    .ct-minor-seventh {
        margin-left: -30px !important;
    }
    .stats .single-stats.big b {
        font-size: 24px;
    }
    .stats .single-stats b {
        font-size: 16px;
    }
    .stats .single-stats b i {
        font-size: 12px;
        vertical-align: middle;
        margin-bottom: 5px;
    }
    body.dashboard footer {
        /*width: calc(100% - 50px);*/
        /*margin-left: 50px;*/
    }
    .withdraw.eligable .content,
    .extra-info,
    .withdraw.eligable .logo,
    .withdraw .content {
        width: calc(100% - 30px);
    }
    .extra-info .col-sm-2 {
        width: calc(100% / 3);
        float: left;
    }
    .extra-info .col-sm-3 {
        width: calc(100% / 4);
        float: left;
    }
    .withdraw .content .body .form-control {
        width: 100%;
        margin-bottom: 10px;
        display: block;
    }
    .withdraw .content .body .pull-left {
        display: block;
        width: auto;
        float: none !important;
    }
    .withdraw #part-2 {
        width: 100%;
        margin-left: -50px;
        display: block;
    }
    .withdraw .content .body p.lead {
        font-size: 12px;
    }
    .referral-link h1 {
        font-size: 20px;
    }
    .referral-link h2 {
        font-size: 14px;
    }
    .referral-link p.small {
        width: 100%;
    }
    .table.table-style thead th {
        font-size: 11px;
        font-weight: normal;
        vertical-align: top;
    }
    .table.table-style tbody tr td {
        font-size: 12px;
        padding: 2px;
        vertical-align: middle;
    }
    .referral-2 {
        width: 50% !important;
        float: left !important;
    }
    .referral-2 .full-profile {
        width: 100%;
        padding: 15px 5px;
    }
    .referral-2 .avatar {
        width: 20px;
        height: 20px;
    }
    .referral-2 .repr-info {
        width: calc(100% - 20px);
    }
    .referral-2 h1 {
        font-size: 11px;
        font-weight: normal;
    }
    .referral-3 {
        width: calc(100% / 4);
        float: left;
    }
    /* NEW UPDATES FOR MOBILE 26.07.2017 */
    section {
        padding: 40px 0px;
    }
    section h1 {
        font-size: 24px;
    }
    section p {
        width: 100%;
        font-size: 12px;
    }
    .icon-boxes {
        margin-top: -15px;
    }
    .icon-box {
        width: 85%;
        margin: auto;
        margin-top: 15px;
        padding: 30px 15px;
        transform: scale(1);
    }
    .icon-box img {
        width: 64px;
        left: -10px;
    }
    .icon-box h2 {
        font-size: 20px;
    }
    .icon-box:hover {
        transform: scale(1);
    }
    .timeline .box.left, .timeline .box.left h1, .timeline .box.left p {
        text-align: left !important;
    }
    .timeline .box.left p,
    .timeline .box.right p {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .timeline .box.light.right:before,
    .timeline .box.light.left:before,
    .timeline .box.dark.right:before,
    .timeline .box.dark.left:before {
        top: -3px;
        left: calc((50% - 7px));
    }
    .timeline .box.right:after,
    .timeline .box.left:after {
        top: -16px;
        left: calc((50% - 5px));
    }
    .timeline .box.right:first-child {
        margin-top: 30px !important;
    }
    .control-tabs img.img-responsive {
        max-width: 100%;
    }
    .plans {
        margin-top: 30px;
    }
    .owl-theme-2-right {
        display: none;
    }
    .simple-links {
        margin-bottom: 30px !important;
    }
    .credit-cards img {
        height: 50px !important;
    }
    .videoLeft,
    .videoRight {
        display: none;
    }
    .nice-video .nice-image .title h2 {
        font-size: 18px;
        margin-bottom: 0px;
    }
    .nice-video .nice-image .title h4 {
        font-size: 11px;
    }
    .smaller-capital {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .crypto-coins {
        width: 100%;
        float: none;
        display: block;
        padding-top: 15px;
        padding-bottom: 10px;
        height: auto;
    }
}
@media (min-width:768px) and (max-width:992px) {
    .dashboard-top .item img {
        width: 20px;
    }
    body.dashboard footer {
        width: calc(100% - 70px);
        margin-left: 70px;
    }
    .stats .single-stats.big b {
        font-size: 20px;
    }
    .stats .single-stats b {
        font-size: 16px;
    }
    .filters label {
        font-size: 10px;
    }
    .settings-label .col-sm-7 {
        width: 100%;
    }
    .main .col-sm-4.col-sm-offset-8 {
        width: 50%;
        margin-left: 50%;
    }
    section .col-sm-6 {
        width: 80%;
    }
    .credit-cards img {
        margin: 9px 5px;
    }
    footer .pull-left,
    footer .pull-right {
        float: none !important;
        display: block;
    }
    footer .socials {
        margin-bottom: 15px;
    }
    .contact .col-sm-5,
    .contact .col-sm-4.col-sm-offset-3 {
        width: 50%;
        margin-left: 0px;
    }
}


/* update on 04.07.2019 */
.new-feature {
    text-align: center;
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: rgba(0,0,0,0.05) 0px 10px 25px;
    margin-top: 30px;
    border: 1px solid #f2f2f2;
    background: #fff;
    cursor: pointer;
    padding: 25px;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    overflow: hidden;
}
.new-feature:after {
    position: absolute;
    top: -95%;
    left: -50%;
    right: 0px;
    width: 200%;
    height: 120%;
    border-radius: 50%;
    background: #333;
    z-index: 0;
    content: ' ';
    opacity: 0.02;
}
.new-feature .icon {
    display: block;
    margin: auto;
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 2;
    background: #f9f9f9;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
}
.new-feature .icon img {
    width: 32px;
    height: 32px;
}
.new-feature b {
    display: block;
    margin: 10px 0px;
    padding: 0px 25px;
    font-size: 20px;
    color: #2D4053;
    font-weight: 300;
}
.new-feature p {
    font-size: 12px;
    font-weight: normal;
    margin: 0px;
    width: 100%;
    color: #999;
}
.action {
    padding-top: 30px;
}
.earnings .action {
    padding-top: 10px;
}
.earnings {
    display: block;
    padding: 35px 50px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: rgba(0,0,0,0.05) 0px 10px 45px;
    margin: 30px 0px 15px 0px;
    overflow: hidden;
}
.earnings .bottom-part {
    position: relative;
    width: calc(100% + 100px);
    margin-left: -50px;
    margin-right: -50px;
    margin-bottom: -35px;
    margin-top: 35px;
    padding: 35px 50px;
    background: #fbfbfb;
}
.earnings span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.earnings b {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #6dc52d;
}
.earnings .border-left {
    border-left: 1px solid #eee;
}
.earnings .border-right {
    border-right: 1px solid #eee;
}
.earnings .earnings-slider {
    padding-bottom: 20px;
}
.earnings .slider.slider-horizontal .slider-track {
    height: 20px;
    border-radius: 25px;
}
.earnings .slider-handle {
    width: 30px;
    height: 30px;
    top: 0px;
}
.earnings .slider-handle:hover {
    filter: brightness(120%);
    box-shadow: rgba(0,0,0,0.1) 0px 5px 25px;
}
.earnings .pull-left,
.earnings .pull-right {
    font-weight: 600;
    color: #666;
}
.earnings .extra-part {
    padding-bottom: 25px;
}
.earnings .extra-part h4 {
    display: block;
    text-align: center;
    color: #777;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}
.earnings .extra-part h1 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin: 0px !important;
}
.earnings .extra-part h2 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #444;
    margin: 0px;
    text-align: center;
    letter-spacing: 2px;
}
.earnings .extra-part .border-right {
    border-right: 1px solid rgba(0,0,0,0.1);
    padding-right: 30px;
    margin-right: -15px;
}
@media (max-width:768px) {
    .earnings .extra-part .border-right {
        border-right: none;
        padding-right: 15px;
        margin-right: 0px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .earnings .border-right {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .earnings .border-left {
        border-left: none;
        padding-top: 15px;
        margin-top: 15px;
        border-top: 1px solid #eee;
    }
    .earnings .bottom-part {
        padding-left: 15px;
        padding-right: 15px;
    }
    .earnings .bottom-part .btn {
        white-space: normal;
    }
    .earnings .bottom-part .btn i {
        display: none;
    }
    .earnings .extra-part .border-right {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
}

@media (max-width:768px) {
    .content {
        width: 100%;
        float: none;
    }
    .sidebar {
        right: -300px;
    }
    .shadow {
        width: 100%;
    }
    header .logo {
        height: 35px;
    }
    header .logo > img {
        height: 35px;
    }
    header .dropdown-button > .details {
        left: auto;
        right: 0;
    }
    .main {
        min-height: calc(100vh - 65px);
    }
    section {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .credit-cards img {
        margin: 9px 5px;
    }
    footer .pull-left,
    footer .pull-right {
        float: none !important;
        display: block;
    }
    footer .socials {
        margin-bottom: 15px;
    }
    .full-page header .header-buttons {
        float: none;
        margin-top: 15px;
    }
    .full-page header .header-buttons > li {
        margin-left: 0px;
        margin-right: 5px;
    }
    .full-page .sidebar {
        margin-right: 0px;
    }
    .full-page .sidebar.active {
        transform: translate(-300px, 0px);
    }
    .standard.v2 img {
        width: 64px;
    }
    .standard.v2 h2 {
        margin: 10px 0px;
    }
    .standard.v2 .col-sm-4,
    .trades .col-sm-4 {
        margin-bottom: 30px;
    }
    .standard.v2 .col-sm-4:last-child,
    .trades .col-sm-4:last-child {
        margin-bottom: 0px;
    }
    .standard.v2.contact h2 {
        font-size: 20px;
    }
    .full-page header .profile .details {
        display: none;
    }
    .full-page header .profile > img {
        margin: 0;
    }
    .full-page header .profile {
        padding: 12.5px 3px;
    }
    .dashboard .icons-nav {
        height: calc(100% - 65px);
        top: 65px;
        width: 50px;
    }
    .dashboard .icons-nav > li.active > a > img {
        width: 20px;
    }
    .dashboard .icons-nav > li > a:hover > span {
        transform: translate(55px, 0px);
    }
    .dashboard .dashboard-area {
        width: calc(100% - 50px);
        margin-left: 50px;
    }
    body.dashboard {
        padding-top: 65px;
    }
    .dashboard-top .item {
        padding: 10px 10px;
        width: 50%;
    }
    .dashboard-top .item:nth-child(1),
    .dashboard-top .item:nth-child(2) {
        border-bottom: 1px solid #eee;
    }
    .dashboard-top .item.button {
        display: none;
    }
    .dashboard-top .item .details {
        font-size: 10px;
    }
    .dashboard-top .item .details b {
        font-size: 20px;
    }
    .ct-minor-seventh {
        margin-left: -30px !important;
    }
    .stats .single-stats.big b {
        font-size: 24px;
    }
    .stats .single-stats b {
        font-size: 16px;
    }
    .stats .single-stats b i {
        font-size: 12px;
        vertical-align: middle;
        margin-bottom: 5px;
    }
    body.dashboard footer {
        /*width: calc(100% - 50px);*/
        /*margin-left: 50px;*/
    }
    .withdraw.eligable .content,
    .extra-info,
    .withdraw.eligable .logo,
    .withdraw .content {
        width: calc(100% - 30px);
    }
    .extra-info .col-sm-2 {
        width: calc(100% / 3);
        float: left;
    }
    .extra-info .col-sm-3 {
        width: calc(100% / 4);
        float: left;
    }
    .withdraw .content .body .form-control {
        width: 100%;
        margin-bottom: 10px;
        display: block;
    }
    .withdraw .content .body .pull-left {
        display: block;
        width: auto;
        float: none !important;
    }
    .withdraw #part-2 {
        width: 100%;
        margin-left: -50px;
        display: block;
    }
    .withdraw .content .body p.lead {
        font-size: 12px;
    }
    .referral-link h1 {
        font-size: 20px;
    }
    .referral-link h2 {
        font-size: 14px;
    }
    .referral-link p.small {
        width: 100%;
    }
    .table.table-style thead th {
        font-size: 11px;
        font-weight: normal;
        vertical-align: top;
    }
    .table.table-style tbody tr td {
        font-size: 12px;
        padding: 2px;
        vertical-align: middle;
    }
    .referral-2 {
        width: 50% !important;
        float: left !important;
    }
    .referral-2 .full-profile {
        width: 100%;
        padding: 15px 5px;
    }
    .referral-2 .avatar {
        width: 20px;
        height: 20px;
    }
    .referral-2 .repr-info {
        width: calc(100% - 20px);
    }
    .referral-2 h1 {
        font-size: 11px;
        font-weight: normal;
    }
    .referral-3 {
        width: calc(100% / 4);
        float: left;
    }
    /* NEW UPDATES FOR MOBILE 26.07.2017 */
    section {
        padding: 40px 0px;
    }
    section h1 {
        font-size: 24px;
    }
    section p {
        width: 100%;
        font-size: 12px;
    }
    .icon-boxes {
        margin-top: -15px;
    }
    .icon-box {
        width: 85%;
        margin: auto;
        margin-top: 15px;
        padding: 30px 15px;
        transform: scale(1);
    }
    .icon-box img {
        width: 64px;
        left: -10px;
    }
    .icon-box h2 {
        font-size: 20px;
    }
    .icon-box:hover {
        transform: scale(1);
    }
    .timeline .box.left, .timeline .box.left h1, .timeline .box.left p {
        text-align: left !important;
    }
    .timeline .box.left p,
    .timeline .box.right p {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .timeline .box.light.right:before,
    .timeline .box.light.left:before,
    .timeline .box.dark.right:before,
    .timeline .box.dark.left:before {
        top: -3px;
        left: calc((50% - 7px));
    }
    .timeline .box.right:after,
    .timeline .box.left:after {
        top: -16px;
        left: calc((50% - 5px));
    }
    .timeline .box.right:first-child {
        margin-top: 30px !important;
    }
    .control-tabs img.img-responsive {
        max-width: 100%;
    }
    .plans {
        margin-top: 30px;
    }
    .owl-theme-2-right {
        display: none;
    }
    .simple-links {
        margin-bottom: 30px !important;
    }
    .credit-cards img {
        height: 50px !important;
    }
    .videoLeft,
    .videoRight {
        display: none;
    }
    .nice-video .nice-image .title h2 {
        font-size: 18px;
        margin-bottom: 0px;
    }
    .nice-video .nice-image .title h4 {
        font-size: 11px;
    }
    .smaller-capital {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .crypto-coins {
        width: 100%;
        float: none;
        display: block;
        padding-top: 15px;
        padding-bottom: 10px;
        height: auto;
    }
}
@media (min-width:768px) and (max-width:992px) {
    .dashboard-top .item img {
        width: 20px;
    }
    body.dashboard footer {
        width: calc(100% - 70px);
        margin-left: 70px;
    }
    .stats .single-stats.big b {
        font-size: 20px;
    }
    .stats .single-stats b {
        font-size: 16px;
    }
    .filters label {
        font-size: 10px;
    }
    .settings-label .col-sm-7 {
        width: 100%;
    }
    .main .col-sm-4.col-sm-offset-8 {
        width: 50%;
        margin-left: 50%;
    }
    section .col-sm-6 {
        width: 80%;
    }
    .credit-cards img {
        margin: 9px 5px;
    }
    footer .pull-left,
    footer .pull-right {
        float: none !important;
        display: block;
    }
    footer .socials {
        margin-bottom: 15px;
    }
    .contact .col-sm-5,
    .contact .col-sm-4.col-sm-offset-3 {
        width: 50%;
        margin-left: 0px;
    }
}


/* updates 04.07.2019 */
.new-referral h3 {
    display: block;
    margin: 0px 0px 15px 0px;
}
.new-referral .referral-item {
    margin-bottom: 15px;
}
.new-referral .referral-item .referral-header {
    display: flex;
    position: relative;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eee;
    transition: 0.2s ease all;
}
.new-referral .referral-item .referral-header:hover {
    background: #f9f9f9;
}
.new-referral .referral-item.active .referral-header {
    background: #f2f3f4;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.new-referral .referral-item .referral-header .details {
    display: block;
}
.new-referral .referral-item .referral-header .details span {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    display: block;
}
.new-referral .referral-item .referral-header .details b {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-top: -3px;
    color: #222;
}
.new-referral .referral-item .referral-header .details b.success {
    color: #6dc52d;
}
.new-referral .referral-item .referral-header .details b.danger {
    color: #e74c3c;
}
.new-referral .referral-item .referral-body {
    display: none;
    position: relative;
    background: #fff;
    padding: 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 1px solid #eee;
    border-top:none;
    flex-direction: row;
    justify-content: space-around;
}
.new-referral .referral-item.active .referral-body {
    display: flex;
}
.new-referral .referral-item .referral-body .details {
    display: block;
    text-align: center;
    padding: 15px 10px;
}
.new-referral .referral-item .referral-body .details span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #999;
}
.new-referral .referral-item .referral-body .details b {
    display: block;
    font-size: 30px;
    font-weight: 600;
}
.new-referral .referral-item .referral-body .details b i.fa-line-chart {
    color: #6dc52d;
}
.new-referral .referral-item .referral-body .details b i.fa-angle-double-down {
    color: #e74c3c;
}

@media (max-width:768px) {
    .content {
        width: 100%;
        float: none;
    }
    .sidebar {
        right: -300px;
    }
    .shadow {
        width: 100%;
    }
    header .logo {
        height: 35px;
    }
    header .logo > img {
        height: 35px;
    }
    header .dropdown-button > .details {
        left: auto;
        right: 0;
    }
    .main {
        min-height: calc(100vh - 65px);
    }
    section {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .credit-cards img {
        margin: 9px 5px;
    }
    footer .pull-left,
    footer .pull-right {
        float: none !important;
        display: block;
    }
    footer .socials {
        margin-bottom: 15px;
    }
    .full-page header .header-buttons {
        float: none;
        margin-top: 15px;
    }
    .full-page header .header-buttons > li {
        margin-left: 0px;
        margin-right: 5px;
    }
    .full-page .sidebar {
        margin-right: 0px;
    }
    .full-page .sidebar.active {
        transform: translate(-300px, 0px);
    }
    .standard.v2 img {
        width: 64px;
    }
    .standard.v2 h2 {
        margin: 10px 0px;
    }
    .standard.v2 .col-sm-4,
    .trades .col-sm-4 {
        margin-bottom: 30px;
    }
    .standard.v2 .col-sm-4:last-child,
    .trades .col-sm-4:last-child {
        margin-bottom: 0px;
    }
    .standard.v2.contact h2 {
        font-size: 20px;
    }
    .full-page header .profile .details {
        display: none;
    }
    .full-page header .profile > img {
        margin: 0;
    }
    .full-page header .profile {
        padding: 12.5px 3px;
    }
    .dashboard .icons-nav {
        height: calc(100% - 65px);
        top: 65px;
        width: 50px;
    }
    .dashboard .icons-nav > li.active > a > img {
        width: 20px;
    }
    .dashboard .icons-nav > li > a:hover > span {
        transform: translate(55px, 0px);
    }
    .dashboard .dashboard-area {
        width: calc(100% - 50px);
        margin-left: 50px;
    }
    body.dashboard {
        padding-top: 65px;
    }
    .dashboard-top .item {
        padding: 10px 10px;
        width: 50%;
    }
    .dashboard-top .item:nth-child(1),
    .dashboard-top .item:nth-child(2) {
        border-bottom: 1px solid #eee;
    }
    .dashboard-top .item.button {
        display: none;
    }
    .dashboard-top .item .details {
        font-size: 10px;
    }
    .dashboard-top .item .details b {
        font-size: 20px;
    }
    .ct-minor-seventh {
        margin-left: -30px !important;
    }
    .stats .single-stats.big b {
        font-size: 24px;
    }
    .stats .single-stats b {
        font-size: 16px;
    }
    .stats .single-stats b i {
        font-size: 12px;
        vertical-align: middle;
        margin-bottom: 5px;
    }
    body.dashboard footer {
        /*width: calc(100% - 50px);*/
        /*margin-left: 50px;*/
    }
    .withdraw.eligable .content,
    .extra-info,
    .withdraw.eligable .logo,
    .withdraw .content {
        width: calc(100% - 30px);
    }
    .extra-info .col-sm-2 {
        width: calc(100% / 3);
        float: left;
    }
    .extra-info .col-sm-3 {
        width: calc(100% / 4);
        float: left;
    }
    .withdraw .content .body .form-control {
        width: 100%;
        margin-bottom: 10px;
        display: block;
    }
    .withdraw .content .body .pull-left {
        display: block;
        width: auto;
        float: none !important;
    }
    .withdraw #part-2 {
        width: 100%;
        margin-left: -50px;
        display: block;
    }
    .withdraw .content .body p.lead {
        font-size: 12px;
    }
    .referral-link h1 {
        font-size: 20px;
    }
    .referral-link h2 {
        font-size: 14px;
    }
    .referral-link p.small {
        width: 100%;
    }
    .table.table-style thead th {
        font-size: 11px;
        font-weight: normal;
        vertical-align: top;
    }
    .table.table-style tbody tr td {
        font-size: 12px;
        padding: 2px;
        vertical-align: middle;
    }
    .referral-2 {
        width: 50% !important;
        float: left !important;
    }
    .referral-2 .full-profile {
        width: 100%;
        padding: 15px 5px;
    }
    .referral-2 .avatar {
        width: 20px;
        height: 20px;
    }
    .referral-2 .repr-info {
        width: calc(100% - 20px);
    }
    .referral-2 h1 {
        font-size: 11px;
        font-weight: normal;
    }
    .referral-3 {
        width: calc(100% / 4);
        float: left;
    }
    .new-referral .referral-item .referral-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .new-referral .referral-item .actions {
        display: block;
        width: 100%;
    }
    .new-referral .referral-item .actions .btn.btn-primary {
        display: block;
        width: 100%;
    }
    .new-referral .referral-item .referral-header .details {
        display: block;
        width: 100%;
        padding-bottom: 5px;
        margin-bottom: 5px;
        border-bottom: 1px solid #eee;
    }
    .new-referral .referral-item .referral-header .details span {
        float: left;
        line-height: 24px;
    }
    .new-referral .referral-item .referral-header .details b {
        float: right;
        line-height: 24px;
        margin: 0px;
        font-size: 14px;
    }
    .new-referral .referral-item.active .referral-body {
        flex-direction: column;
    }
    .new-referral .referral-item.active .referral-body .details {
        display: block;
        width: 100%;
    }
    .new-referral h3 {
        font-size: 20px;
    }
    
.withdraw .content .body .icons {
    font-size: 18px;
    text-align: center;
    margin-top: 5%;
}    
    
    
}
@media (min-width:768px) and (max-width:992px) {
    .dashboard-top .item img {
        width: 20px;
    }
    body.dashboard footer {
        width: calc(100% - 70px);
        margin-left: 70px;
    }
    .stats .single-stats.big b {
        font-size: 20px;
    }
    .stats .single-stats b {
        font-size: 16px;
    }
    .filters label {
        font-size: 10px;
    }
    .settings-label .col-sm-7 {
        width: 100%;
    }
    .main .col-sm-4.col-sm-offset-8 {
        width: 50%;
        margin-left: 50%;
    }
    section .col-sm-6 {
        width: 80%;
    }
    .credit-cards img {
        margin: 9px 5px;
    }
    footer .pull-left,
    footer .pull-right {
        float: none !important;
        display: block;
    }
    footer .socials {
        margin-bottom: 15px;
    }
    .contact .col-sm-5,
    .contact .col-sm-4.col-sm-offset-3 {
        width: 50%;
        margin-left: 0px;
    }
}


/* added on 03-04-2021*/

.smartiox-menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}
.smartiox-menu > li {
    display: inline-block;
    vertical-align: middle;
}
.smartiox-menu > li > a {
    display: block;
    padding: 10px;
    background: #f9f9f9;
    color: #555;
    border-radius: 4px;
}
.smartiox-menu > li > a > .question-info {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    margin-left: 5px;
    position: relative;
}
.smartiox-menu > li > a > .question-info:hover {
    background: rgba(0,0,0,0.25);
}
.smartiox-menu > li > a > .question-info i {
    margin-left: -2px;
    margin-bottom: -2px;
}
.smartiox-menu > li.active > a > .question-info {
    background: rgba(255,255,255,0.35);
}
.smartiox-menu > li.active > a > .question-info:hover {
    background: rgba(255,255,255,0.5);
}
.smartiox-menu > li > a:hover,
.smartiox-menu > li > a:focus {
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
}
.smartiox-menu > li.active > a {
    background: #6dc52d;
    color: #fff;
    text-decoration: none;
}
.smartiox-tabs {
    margin-bottom: 30px;
}
.smartiox-tabs .smartiox-tab {
    display: none;
}
.smartiox-tabs .smartiox-tab.active {
    display: block;
}






