
@-webkit-keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes ticker {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-wrap {
    position: relative;
    top: 0;
    left: -50%;
    width: 100%;
    overflow: hidden;
    height: 4rem;
    background: rgba(10,10,10, 0.9);
    border: 1px solid #999;
    padding-left: 100%;
    box-sizing: content-box;
}
.ticker {
    font-family: "Andale Mono";
    font-size: .5em;
    text-shadow: 1px 1px 0 black;
    height: 2rem;
    line-height: 4rem;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;

    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
}
.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 2rem;
    color: white;
    text-shadow:
            0 0 1px #fff,
            0 0 1px #fff
}

#tableHead {
    position: sticky;
    top:0;
    z-index: 1;
}

th {
    cursor: pointer;
}

td {
    background: #1c1d2b !important;
}
body {
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol
}
h1,h2,p {padding: 0 5%;}

.coin-icon{
    height:25px;
    width:25px;
}
.coin-volChange {
    vertical-align:super;
    font-size: medium;
}
.table-buttons{
    background: seagreen;
    background-image:linear-gradient(90deg,rgba(0,0,0, 0.1),rgba(0,0,0, 0.3));
    display:inline-block;
    padding:0.35em 1.2em;
    border:0.1em solid #888;
    margin:0 0.3em 0.3em 0;
    border-radius:0.12em;
    box-sizing: border-box;
    text-decoration:none;
    font-family:'Roboto',sans-serif;
    font-weight:300;
    color:white;
    text-shadow: 1px 1px 0 black;
    text-align:center;
    transition: all 0.2s;
}
#searchResults {
    position:absolute;
    list-style:none;
    left:70%;
    z-index: 10;
    margin:2px;
    padding:4px;
    max-height:400px;
    overflow-y:scroll;
    width: 300px;
}
#searchResults a {
    text-decoration: none!important;
    color:inherit;
    text-shadow: 1px 1px 0 black;
}
#searchResults li {
    background:black;
    cursor: pointer;
}
#searchResults li:hover {
    background:rgba(0,0,30,.9);
}

body {
    overflow-x: hidden;
}

.globalValue {
    font-size: medium;
    color: purple;
    text-shadow: 1px 1px 0 black;
}

.loading {
    margin-top: 0.6em;
}

.loading span {
    display: inline-block;
    animation: wave-text 1s ease-in-out infinite;
}

.loading
span:nth-of-type(1){ animation-delay: 0.0s; }
span:nth-of-type(2){ animation-delay: 0.1s; }
span:nth-of-type(3){ animation-delay: 0.2s; }
span:nth-of-type(4){ animation-delay: 0.3s; }
span:nth-of-type(5){ animation-delay: 0.4s; }
span:nth-of-type(6){ animation-delay: 0.5s; }
span:nth-of-type(7){ animation-delay: 0.6s; }
span:nth-of-type(8){ animation-delay: 0.7s; }
span:nth-of-type(9){ animation-delay: 0.8s; }
span:nth-of-type(10){ animation-delay: 0.9s; }

@keyframes wave-text{
    00%{
        transform: translateY(0em);
    }
    60%{
        transform: translateY(-0.6em);
    }
    100%{
        transform: translateY(0em);
    }
}

.spinnyGear {
    animation: rotateGear 2s linear infinite;
}

@keyframes rotateGear {
    0% {
        rotate: 0deg;
    }
    50% {
        rotate: 180deg;
    }
    55% {
        rotate: 180deg;
    }
    100% {
        rotate: 360deg;
    }
}
.sparkline canvas>div{
    width:50px;
}
#topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    outline: none;
    border: 1px solid black;
    border-radius: 25%;
    color: white;
    cursor: pointer;
    padding: 15px;
    filter:brightness(80%);
}

#topBtn:hover {
    filter:brightness(100%);
}

.dropdown-Blockchain-item {
    background: rgba(20,120,30,.6);
    display: none;
    position: absolute;
    z-index: 10;
    transition: all 2s;
}
.show {
    display:block;
}

.dropdown-item:hover{
    filter:brightness(80%);
}
body,html{
    color:white;
    background:#2a2b3c;
}
* {
    font-family: Galvji, sans-serif;
    scroll-behavior: smooth;

}
.ticker-wrap {
    overflow-x: hidden;
}
section {
    position: relative;
    display: grid;
    /*place-items: center;*/
    /*height: 100vh;*/
}
.icons {
    justify-content: center;
    align-self: center;
    height:20px;
    width:20px;
}

.tabs {
    display: flex;
    position: relative;
    background-color: #2a2b3c;
    /*box-shadow: 0 0 1px 0 rgba(24,94,224,.15), 0 6px 12px 0 rgba(24,94,224,.15);*/

}

.tabs * {
    z-index: 2;
}

input[type=radio]{
    display: none;
}

.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    width: 185px;
    font-size: 1.25em;
    font-weight: 500;
    cursor: pointer;
    transition: color .15s ease-in;
}

input[type=radio]:checked + label {
    color: cyan;
}

input[id=radio1]:checked ~ .glider {
    transform: translateX(0);
}

input[id=radio2]:checked ~ .glider {
    transform: translateX(100%);
}
input[id=radio3]:checked ~ .glider {
    transform: translateX(200%);
}

.glider {
    position: absolute;
    display: flex;
    height: 54px;
    width: 200px;
    background: coral;
    z-index: 12;
    border-radius: 99px;
    transition: 0.25s ease-out;
}
.dd-menu {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0 0;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    z-index: 4;
}

/* Dropdown */

.dropdown {
    display: inline-block;
    position: relative;
}


.dd-button {
    display: inline-block;
    /*border: 1px solid gray;*/
    /*border-radius: 4px;*/
    padding: 10px 30px 10px 20px;
    font-size: 1.25em;
    /*background-color: #1c1d2b;*/
    cursor: pointer;
    white-space: nowrap;
}

.dd-button:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
}

.dd-button:hover {
    background-color: lightblue;
}

.tab:hover {
    background-color: lightblue;
}


.dd-input {
    display: none;
}

.dd-menu {
    position: absolute;
    top: 40%;
    left: 0%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0;
    margin: 2px 0 0 0;
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);

    list-style-type: none;
}

.dd-input + .dd-menu {
    display: none;
}

.dd-input:checked + .dd-menu {
    display: block;
}

@media (max-width: 700px){
    .tabs {
        transform: scale(0.6);
    }

    .dark{
        background: #1c1d2b;
    }

    .link{
        background: #2a2b3c;
    }



}

#trending {
    overflow-x: scroll;
    width: 80%;
}