.btn {
    border-radius: 4px !important;
}
a {
    text-decoration: none !important;
}
a:hover {
    text-decoration: none !important;
}

body {
    background-color: #000;
}

.highlighted {
    background-color: #112544 !important;
}

.warned {
    background-color: #4c0100 !important;
    opacity: 0.4;
}

.deal {
     cursor: pointer;
}

.black {
    color: #000 !important;
}

.gray {
    color: #999;
}

.color-style-success {
    background-color: #42b983;
    color: white;
}

.color-style-error {
    background-color: #e74c3c;
    color: white;
}

.color-style-default {
    background-color: #566566;
    color: white;
}

.color-style-default:hover {
    background-color: #bbb;
    color: white;
}

form label {
    margin-top: 20px;
    margin-bottom: 5px;
}

.margin-top-sm {
    margin-top: 10px !important;
}

.margin-top-md {
    margin-top: 25px !important;
}

.margin-top-lg {
    margin-top: 50px !important;
}

.margin-bottom-sm {
    margin-bottom: 10px !important;
}

.margin-bottom-md {
    margin-bottom: 25px !important;
}

.margin-bottom-lg {
    margin-bottom: 50px !important;
}

a {
    transition: all 0.3s ease;
}

li {
    transition: all 0.3s ease;
}

.green {
    color: #42b983 !important;
}

.red {
    color: #e74c3c !important;
}

.black {
    color: #111;
}

input {
    text-align: center;
}

input.form-control {
    border-radius: 4px;
    text-align: left;
}

.text-sm {
    font-size: 9px;
}

.text-xsm {
    font-size: 7px;
}

.text-md {
    font-size: 13px;
}

.text-lg {
    font-size: 18px;
}

.text-xlg {
    font-size: 25px;
}

.table td {
    text-align: center;
}

.table th {
    text-align: center;
}

.padding-all-md {
    padding: 10px;
}

.padding-top-bot-md {
    padding: 10px 0px;
}

.padding-top-bot-lg {
    padding: 20px 0px;
}

.padding-left-right-md {
    padding: 0px 10px;
}

.stay-top {
    z-index: 999;
    position: relative;
    transition: all 0.5s ease;
    height: 30px;
}

#header-fixed {
    position: fixed;
    top: 35px; display:none;
    background-color:#000;
    color: #fff;
    margin-left: 20px;
}
#header-fixed tr td {
    font-size: 15px;
    text-align: center;
}
.stay-top.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 5px 0px;
}

.stay-top.unscrolled h3 {
    display: block;
}

.row, h3 {
    margin-left: 20px;
}

* {
    box-sizing: border-box;
}

.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    transition: opacity .3s ease;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.modal-body .row div {
    text-align: center;
    padding: 0 3px;
}

.hide-searchBar {
    font-size:12px;
    color: #fff !important;
}

.top-border {
    width: 100%;
    border-top: 2px solid #fff;
    text-align:center;
}

.modal-container {
    width: 75%;
    margin: 40px auto 0;
    padding: 20px 30px;
    background-color: #222;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
    transition: all .3s ease;
    font-family: Helvetica, Arial, sans-serif;
    height: 90%;
    overflow-y: scroll;
}

.modal-header h3 {
    margin-top: 0;
    color: #42b983;
    background-color: #222;
}

.modal-header {
    background-color: #222;
}

.modal-body {
    margin: 20px 0;
}

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

.modal-enter {
    opacity: 0;
}

.modal-leave-active {
    opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* Make clicks pass-through */
#nprogress {
    pointer-events: none;
}

#nprogress .bar {
    background: #29d;

    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #29d, 0 0 5px #29d;
    opacity: 1.0;

    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 35%;
    right: 51%;
}

#nprogress .spinner:before {
    content: ' ';
    position: fixed;
    padding: 0;
    margin: 0;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 1030;
}

#nprogress .spinner-icon {
    width: 65px;
    height: 65px;
    box-sizing: border-box;

    border: solid 2px transparent;
    border-top-color: #29d;
    border-left-color: #29d;
    border-radius: 50%;

    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}

.alert {
    padding: 8px !important;
}

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.right-menu {
    position: fixed;
    bottom: 180px;
    right: 0px;
}

.scroll-up {
    display: none;
}

.right-menu a {
    padding: 7px 9px;
    font-size: 20px;
    text-align: center;
    color: white !important;
    display: block;
}

.fa-check-circle {
    color: #42b983;
}

.fa-times-circle {
    color: #e74c3c;
}

.table-colored tr:nth-child(even) {
    background: #121212;
}

.table-colored tr:nth-child(odd) {
    background: #000;
}

.modal-body .table-colored tr:not(:first-child){
    cursor: pointer;
}

.modal-body .table-colored tr:hover:not(:first-child){
    background-color: #005500 !important;
}

.modal-body .table-colored tr.highlight:nth-child(even) {
    background: #766400;;
}

.modal-body .table-colored tr.highlight:nth-child(odd) {
    background: #593700;;
}

a .btn {
    text-decoration: none;
}

.stay-left {
    position: fixed;
    left: 0;
    height: 100%;
    width: 50px;
    font-size: 9px;
}

input[type="submit"] {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 15px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #ffffff;
    background-color: #3498db;
    border-color: #3498db;
}


.slider-bottom{
    opacity: 0.8;
    bottom: 0;
    color: #fff;
    background-color: #000;
    font-size: 10px;
    width: 100%;
    position: fixed;
}

.slider-bottom .sync-title {
    position: absolute;
    z-index: 999999;
    font-weight: bold;
    padding: 3px 2px;
    background-color: #000;
}

.slider-bottom .sync-right {
    position: absolute;
    z-index: 999999;
    font-weight: bold;
    padding: 3px 2px;
    background-color: #000;
    display: inline-block;
    right: 0;
}

.marquee {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
}

.marquee ul li {
    padding: 5px 10px;
}

.marquee ul {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 40s linear infinite;
}

.marquee2 ul {
    animation-delay: 0.5s;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

.BTC {
    color: #f7931a;
}

.ETH {
    color: #63698D;
}

.USDT {
    color: #2FA07D;
}

.LTC {
    color: #49c2ff;
}

.BTG {
    color: gold;
}

.DOGE {
    color: #aacd4e;
}

.currency {
    font-size: 11px;
}

.Kucoin {
    color: #498fff
}

.Binance {
    color: #f7931a;
}

.Kraken {
    color: #63698D;
}

.BitBay {
    color: #49c2ff;
}

.Cobinhood {
    color: #f441df;
}

.OKEx {
    color: #ad42f4;
}

.Cryptopia {
    color: #bbb;
}

.Hitbtc {
    color: #63d4e8;
}

.Bittrex {
    color: #5b69ff;
}

.Poloniex {
    color: #45ad8f;
}

.CryptoBridge {
    color: #f57f6c;
}

.Coinexchange {
    color: #aacd4e;
}

.Bleutrade {
    color: #8959A8;
}

.Livecoin {
    color: #c7254e;;
}

.Wex {
    color: #f7ecb5;
}

.Freiexchange {
    color: #ffff00;
}

.custom__tag {
    border-radius: 4px;
    margin: 3px 1px;
    background-color: #eee;
    -ms-word-wrap: initial;
    word-wrap: initial;
}

.multiselect__clear {
    position: absolute;
    right: 41px;
    height: 40px;
    width: 40px;
    display: block;
    cursor: pointer;
}

.multiselect__clear:after,
.multiselect__clear:before {
    content: "";
    display: block;
    position: absolute;
    width: 3px;
    height: 16px;
    background: #aaa;
    top: 12px;
    right: 4px
}

.multiselect__clear:before {
    transform: rotate(45deg)
}

.multiselect__clear:after {
    transform: rotate(-45deg)
}

.multiselect__content {
    z-index: 3 !important;
}

[dir=rtl] .multiselect__clear {
    right: auto;
    left: 12px
}
.table-small {
    margin-bottom: 0 !important;
}

.table-small tr th {
    font-size: 10px;
}
.table-small tr td {
    font-size: 10px;
}

.input-line {
    line-height:39px;
    font-size: 15px;
}

.form-control[readonly="readonly"] {
    background-color: #999 !important;
}

tr.total {
    border-top: 3px solid #fff;
}

.t-5min {
    color: #00ff00;
}

.t-10min {
    color: #42b983;
}

.t-30min {
    color: #8fb942;
}

.t-1hr {
    color: #abb942;
}

.t-2hr {
    color: #b99342;
}

.t-2hr {
    color: #b99342;
}

.t-6hr {
    color: #b96142;
}

.t-12hr {
    color: #b94f42;
}

.t-1day {
    color: #b94742;
}

.t-2day {
     color: #ce2727;
}

.t-1week {
    color: #ff0000;
}

.currentSort {
    font-weight:bolder;
    color: #f7ecb5;
}

#currency-data{
    font-size: 18px;
    width: 90%;
    text-align: left;
    margin: 11px 20px;
}