* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .container {
        width: 100%;
        margin: auto;
    }
}

.container {
    width: 80%;
}

.t_nav {
    height: 60px;
    width: 100%;
}

.nav_brand {
    height: 60px;
    width: 30%;
    float: left;
    margin: auto;
}

.nav_brand p {
    line-height: 60px;
}

.nav_brand img {
    height: 60px;
}

.nav_balence {
    /* width: 30%; */
    height: 60px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: 50%;
    margin: auto;
    float: left;
}

.coin {
    height: 60px;
    /* width: 87%; */
    float: left;
}

.coin p {
    color: white;
    font-size: 1.1rem;
    text-align: right;
    line-height: 60px;
    padding-right: 5px;
    font-family: "Share Tech", sans-serif;
}

.coin p img {
    padding-left: 5px;
    margin: auto;
}

.add_coin {
    width: 13%;
    height: 60px;
    float: left;
    box-sizing: border-box;
}

.add_coin p {
    text-align: left;
    text-decoration: none;
    line-height: 57px;
    margin: auto;
    box-sizing: border-box;
}

.nav_user {
    /* width: 10%; */
    height: 60px;
    float: right;
    display: flex;
}

.profile {
    line-height: 60px;
    margin: 0 auto;
    font-size: 2rem;
}

/*Css for n_tiker*/
.n_tiker {
    width: 15%;
    height: 40px;
    float: left;
    background: #ff1d1d;
    box-sizing: border-box;
    border-radius: 30px 0px 0px 30px;
}

.n_tiker h3 {
    color: white;
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
    font-family: "Share Tech", sans-serif;
}

.news {
    width: 85%;
    height: 40px;
    float: left;
    background: #1b3c89;
    box-sizing: border-box;
    border-radius: 0px 30px 30px 0px;
}

.news p {
    color: white;
    font-size: 1.2rem;
    line-height: 40px;
    font-family: "Share Tech", sans-serif;
}

/*Tab btn text color*/
.nav-link {
    color: white;
}

.nav-link:hover {
    color: lightgray;
}

/* full screen menu style start */
.overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    margin-left: -3000px;
    /* overflow-y: hidden; */
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.3s;
}

.overlay-content {
    position: relative;
    /* top: 15%; */
    width: 100%;

    /* text-align: center; */
    /* margin-top: 30px; */
}

.overlay a {
    padding: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    /* position: absolute;
    top: 20px;
    right: 45px; */
    font-size: 60px;
}

.menu-container {
    min-height: 100vh;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 18px;
    }

    .overlay .closebtn {
        font-size: 40px;
        /* top: 15px;
        right: 35px; */
        z-index: 99;
    }
}

/* full screen menu style end */
@media screen and (max-width: 399px) and (min-width: 310px) {
    .tex {
        font-size: 0.7rem;
    }
}

.overlay {
    z-index: 99;
}


/*deposit button animation-1
.neon{
        border:none;
        transition:0.2s;
        background-color:rgba(156, 161, 160,0.3);
        animation: glow 1s infinite ;
        transition:0.5s;
        background-color: #ffc107;
}

      @keyframes glow{
        0%{
        box-shadow: 5px 5px 20px rgb(93, 52, 168),-5px -5px 20px rgb(93, 52, 168);}

        50%{
        box-shadow: 5px 5px 20px rgb(81, 224, 210),-5px -5px 20px rgb(81, 224, 210)
        }
        100%{
        box-shadow: 5px 5px 20px rgb(93, 52, 168),-5px -5px 20px rgb(93, 52, 168)
        }
}
*/
/*Deposite button 2*/

/* ----- Animated button ----- */

#neonShadow {

    -moz-animation: cycle 2s linear infinite;
    -webkit-animation: cycle 2s linear infinite;

}

@-moz-keyframes cycle {
    35% {
        transform: rotate(0) translate(0, 0);
    }

    40% {
        transform: rotate(5deg) translate(0, -2px);
    }

    45% {
        transform: rotate(-3deg) translate(0, -2px);
    }

    50% {
        transform: rotate(5deg) translate(0, -2px);
    }

    55% {
        transform: rotate(-3deg) translate(0, -2px);
    }

    60% {
        transform: rotate(5deg) translate(0, -2px);
    }

    65% {
        transform: rotate(-3deg) translate(0, -2px);
    }

    70% {
        transform: rotate(0) translate(0, 0);
    }
}

@-webkit-keyframes cycle {
    35% {
        transform: rotate(0) translate(0, 0);
    }

    40% {
        transform: rotate(5deg) translate(0, -2px);
    }

    45% {
        transform: rotate(-3deg) translate(0, -2px);
    }

    50% {
        transform: rotate(5deg) translate(0, -2px);
    }

    55% {
        transform: rotate(-3deg) translate(0, -2px);
    }

    60% {
        transform: rotate(5deg) translate(0, -2px);
    }

    65% {
        transform: rotate(-3deg) translate(0, -2px);
    }

    70% {
        transform: rotate(0) translate(0, 0);
    }
}

/* ----- Animated button END ----- */

.Animated_button {
    color: white;
    min-height: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/*end  button design 2*/
.main_c {
    font-weight: 900;
}

/* Score Update New Style */
.score_update {
    font-weight: 700;
}

.betactive h5 {
    font-size: 16px;
}

.selectedimg {
    color: #ffc107;
    border-color: #ffc107;
    background-color: #ffc107;
    outline: #ffc107;
    border-color: #ffc107;
    border-top-color: rgb(255, 193, 7);
    border-right-color: rgb(255, 193, 7);
    border-bottom-color: rgb(255, 193, 7);
    border-left-color: rgb(255, 193, 7);
}


/* .btn:focus,.btn:active {
    outline: none !important;
    box-shadow: none;
 } */

 .accordion-button::after {
    display: none !important;
}