/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    --color-black:#000;
  }
  
  /* Global Styles */
  body {
    --text-opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #8a8c91;
    color: rgba(138,140,145,var(--text-opacity));
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}

.bg-grey-lightest {
    --bg-opacity: 1;
    background-color: #f8f8f8;
    background-color: rgba(248,248,248,var(--bg-opacity));
}
.bg-white {
    --bg-opacity: 1;
    background-color: #fff;
    background-color: rgba(255,255,255,var(--bg-opacity));
}

.flex {
    display: flex;
}
.flex-row {  
    flex-direction: row; 
}
.flex-column { 
    flex-direction: column; 
}   
.flex-wrap { 
    flex-wrap: wrap; 
}
.flex-nowrap { 
    flex-wrap: nowrap; 
}
.flex-justify-start { 
    justify-content: flex-start; 
}
.flex-justify-center { 
    justify-content: center; 
}
.flex-justify-end { 
    justify-content: flex-end
}
.flex-auto{
    flex:1 1 auto;
}
.align-center{
    align-items: center;
}
.flex-1{
    flex: 1 1 0%;
}
.flex-grow{
    flex-grow: 1;

}
.d-none{
    display: none !important;
}
.flex-shrink-0{
    flex-shrink: 0;
}
.h-full {
    height: 100%;
}
.min-h-screen {
    min-height: 100vh;
}

.row.no-gutters {
    margin-left: 0;
    margin-right: 0;
}
.row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.col {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .lg\:col, .lg\:col-1, .lg\:col-10, .lg\:col-11, .lg\:col-12, .lg\:col-2, .lg\:col-3, .lg\:col-4, .lg\:col-5, .lg\:col-6, .lg\:col-7, .lg\:col-8, .lg\:col-9, .lg\:col-auto, .md\:col, .md\:col-1, .md\:col-10, .md\:col-11, .md\:col-12, .md\:col-2, .md\:col-3, .md\:col-4, .md\:col-5, .md\:col-6, .md\:col-7, .md\:col-8, .md\:col-9, .md\:col-auto, .sm\:col, .sm\:col-1, .sm\:col-10, .sm\:col-11, .sm\:col-12, .sm\:col-2, .sm\:col-3, .sm\:col-4, .sm\:col-5, .sm\:col-6, .sm\:col-7, .sm\:col-8, .sm\:col-9, .sm\:col-auto{
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    width: 100%;
}
.row.no-gutters>.col, .row.no-gutters>.lg\:col, .row.no-gutters>.md\:col, .row.no-gutters>.sm\:col, .row.no-gutters>[class*="lg\:col-"], .row.no-gutters>[class*="md\:col-"], .row.no-gutters>[class*="sm\:col-"], .row.no-gutters>[class*=col-]{
    padding-left: 0;
    padding-right: 0;
}

.flex-row-column{
    display: flex; 
    flex-direction: column;
}
@media screen and (min-width: 768px){
    .flex-row-column{
        display: flex; 
        flex-direction: row;
    }  
}
.logo-main{
    width: 250px;
}
.button-wrapper{
    padding: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.button-img{
    margin-right: 10px;
    max-width: 50px;
    text-align: -webkit-center;
    padding: 5px;
    border-radius: 50%;
    width:50px;
    height:50px;
}
.button-img>img{
    width: 40px;
}
.button-text{
    font-size: 25px;
    font-weight: 600;
    color: #2b0548e6;
}
.button-text:hover{
    color: #b4b4b4;
    transition: ease-in-out 0.25s;
}
.coin-price{
    font-size: 20px;
    margin-left: 10px;
    font-weight: 600;

}
.b-left {
    border-left: 1px solid #b7b7b7;

}
.b-all{
    border: 1px solid #e1e1e1;;
}
.b-top{
    border-top: 1px solid #b7b7b7;
}
.b-bottom{
    border-bottom: 1px solid #b7b7b7;
}
.b-radius{
    border-radius: 10px;
}
.p-lr-20{
    padding: 0 20px;
}
.p-lr-10{
    padding: 0 10px;
}
.p-tb-20{
    padding: 20px 0;
}
.p-tb-5{
    padding: 5px 0;
}
.m-l-10{
    margin-left: 10px !important;
}
.m-t-10{
    margin-top: 10px !important;
}
.m-r-10{
    margin-right: 10px !important;
}
.m-b-10{
    margin-bottom: 10px !important;
}
.m-tb-10{
    margin: 10px 0;
}
.m-tb-20{
    margin: 20px 0;
}
.m-tb-5{
    margin: 5px 0;
}
.m-lr-10{
    margin: 0 10px;
}
.m-lr-20{
    margin: 0 20px;
}
.m-lr-5{
    margin: 0 5px;
}
.font-12{
    font-size: 12px;
}
.gray{
    --color-gray:#959595;
    color: var(--color-gray);
}
.font-500{
    font-weight: 500;
}
.font-600{
    font-weight: 600;
}
.place-center{
    place-self: center;
}
.align-baseline{
    align-items: baseline;
}
.default_button {
    display: flex;
    margin-left: 10px;
    background: #4630ab;
    border-radius: 5px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 19px;
    padding: 9px 19px;
    vertical-align: bottom;
    align-items: center;
    justify-content: center;
}
.flex-justify-space-between{
justify-content: space-between;
}
.loader{
    background: #ebebeb;
    z-index: 9999;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: opacity 0.15s linear;
    display: flex;
}
.loader .wrapper{
    margin: 0 auto;
    padding: 50vh 0;

}

.mobile-buger{
position: relative;
width: 25px;
height: 20px;
background: none;
border: none;
appearance: none;
cursor: pointer;
margin-right: 1%;
}
.mobile-buger>span {
display: inline-block;
transition: all 0.4s;
box-sizing: border-box;
position: absolute;
left: 0;
width: 100%;
height: 2px;
background-color: var(--color-black);
border-radius: 4px;


}
.mobile-buger>span:nth-of-type(1) {
top: 0;
width:60%;

}
.mobile-buger>span:nth-of-type(2) {
top: 9px;
width:40%;

}
.mobile-buger>span:nth-of-type(3) {
bottom: 0;
width:100%;

}

.mobile-buger:hover>span:nth-of-type(1) {
   
    transform :rotate(-45deg);
    top:8px;
    width:100%;
}
.mobile-buger:hover>span:nth-of-type(2) {
    margin-left: 14px;
    display:none;
}
.mobile-buger:hover>span:nth-of-type(3) {
   
    transform :rotate(45deg);
    bottom:10px;
} 


@media (min-width: 992px){
.mobile-buger{
display: none;
}}

.bug-active{
    height:120px;
}