p a {
    /* color: #ce1a1a !important; */
    color: #fb8c00;
    text-decoration: underline;
}

/* Flag text a link color */
p#flag-text a {
    color: #ffffff;
    font-weight: bold;
}

#table_airdrop_filter {
    position: relative;
    right: 15px;
    padding-bottom: 10px;
}


body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

/* Fix for font awesome icons not having a margin to the text on links */
a .left.fa-2x {
    margin-right: 15px;
    padding-bottom: 10px;
}

/* Fix for font awesome icons not having a margin to the text on links */
li .fa-3x {
    padding-top: 15px;
}

.icon {
    margin-right: 15px;
}

.collection .collection-item.icon {
    min-height: 84px;
    padding-left: 72px;
    position: relative;
}

.collection .collection-item.icon:not(.circle-clipper)>.circle, .collection .collection-item.icon :not(.circle-clipper)>.circle {
    position: absolute;
    width: 42px;
    height: 42px;
    /* overflow: hidden; */
    left: 15px;
    display: inline-block;
    vertical-align: middle;
}

/* .circle {
    border-style: solid;
    border-width: 2px;
    border-color: rgb(96, 96, 96);
} */

/* A very small card style */
.card-content.vtiny {
    padding: 0px;
    height: 60px;
}

.card-content.vtiny h5 {
    padding-top: 20px;
}

.card-content.vtiny p {
    padding-top: 10px;
}

.tiny {
  height: 160px;
}

.vsmall {
  height: 230px;
}

.alert {
    /* height: 100px; */
    height: inherit;
    /* width: 60%; */
}

.close-button {
    background: none;
    border: none;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

 /* UL Nav hover color */
ul a:hover {
   /* color: #fff !important; */
}

.noselect {
  -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 */
}

.progress-overlay{
    opacity: 1;
    background-color: #ff9800;
    position: fixed;
    width:100%;
    height:100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index:1000;
    -webkit-transition:  all 0.2s ease-out;
       -moz-transition:  all 0.2s ease-out;
        -ms-transition:  all 0.2s ease-out;
         -o-transition:  all 0.2s ease-out;
            transition:  all 0.2s ease-out;
}

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

.spin-reverse {
    -webkit-animation: spin-reverse 2s infinite linear;
    animation: spin-reverse 2s infinite linear;
}

.fade-hide {
    opacity: 0;
    background-color: white;
    visibility: hidden;
}

.screen-center {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.block {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fade-in {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
   -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
     -o-animation: fadein 2s; /* Opera < 12.1 */
        animation: fadein 2s;
}

@keyframes fadein {
    0% { opacity: 0; }
    40% { opacity: 0; }
    100%   { opacity: 1; }
}


/* for textcycle.js */
.fadeOut{
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 1s ease-out;
       -moz-transition: all 1s ease-out;
        -ms-transition: all 1s ease-out;
         -o-transition: all 1s ease-out;
            transition: all 1s ease-out;
    transform: translate(0,-50px);
    -webkit-transform: translate(0,-50px);
    -o-transform: translate(0,-50px);
    -moz-transform: translate(0,-50px);
}

a.hero-title:hover{
    color: #ffcc80   !important;
}

 /* for modal form */
 .modal {
     background-color: #f1f1fa;
     max-height: 90%;
     -webkit-overflow-scrolling: touch;
 }

 .fixed-action-btn a {
   color: white;
   font-size: 2em;
   margin: auto;
   text-align: center;
   vertical-align: middle;
 }

 .center-button {
     line-height: inherit;
 }

@media only screen and (min-width: 900px) {
    .toast-bottom {
        top: auto !important;
        right: auto !important;
        bottom: 10%;
    }
}

@media only screen and (min-width: 900px) {
    .toast-left {
        left: 10%;
        /* right: 70% !important; */
    }
}

.shadow-inset-6 {
    -webkit-box-shadow: inset 0 0.25rem 0.125rem 0 rgba(0,0,0,.5);
    box-shadow: inset 0 0.25rem 0.125rem 0 rgba(0,0,0,.5);
}

.padding-1 {
    padding: 1rem;
}

.br-2 {
    border-radius: 0.25rem;
}

 .donation-toast code {
     font-size: 0.8em !important;
     background-color: #565656 !important;
     color: #b3e5fc !important;
     border-radius: .25rem !important;
     padding: 0.4rem 0.7rem 0.4rem 0.7rem !important;
 }

.donation-toast {
    padding: 0rem 0rem 0rem 0.9rem;
    margin: 0.5rem 0rem 0.5rem 0rem;
}

 .donation-toast img {
    margin: 0.3em;
 }

 .donation-toast a {
    margin: 0.8em;
 }

 /* .donation-toast.material-tooltip {
    z-index: 10000 !important;
 } */

.material-tooltip {
    z-index: 10001 !important;
    background-color: black;
}


.collapsible-body {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
}

.services-button {
    color: #fff;
    font-size: auto;
    display: inline;
    background-color: #ff9800;
    border-radius: 2rem;
    padding-top: 7px;
    padding-bottom: 7px;
    padding: 7px 11px 7px 11px;
}


#wtf-logo {
    color: #ff9800;
}

.wtf-faq h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 1em;
    margin: 1.14rem 0 .912rem 0;
    padding: .5em 0;
}

.wtf-faq h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 1em;
    margin: 1.14rem 0 .912rem 0;
    padding: .5em 0;
}

.wtf-faq p {
    margin-bottom: 1rem;
    font-size: 16px;
    /* line-height: 22px; */
}

.coin-table-button {
    min-width: 3rem;
    padding: 0 6px;
    margin: 0 6px;
    text-align: center;
    line-height: 22px;
    height: 22px;
    float: left;
    box-sizing: border-box;
    font-weight: 300;
    font-size: 0.8rem;
    color: #fff;
    border-radius: 2px;
}

.red-orange-split-background {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff5e4d+0,ff5e4d+50,ff5e4d+50,ffb74d+51,ffb74d+100 */
    background: #ff5e4d; /* Old browsers */
    background: -moz-linear-gradient(-60deg, #ff5e4d 0%, #ff5e4d 50%, #ff5e4d 50%, #ffb74d 51%, #ffb74d 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-60deg, #ff5e4d 0%,#ff5e4d 50%,#ff5e4d 50%,#ffb74d 51%,#ffb74d 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(300deg, #ff5e4d 0%,#ff5e4d 50%,#ff5e4d 50%,#ffb74d 51%,#ffb74d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5e4d', endColorstr='#ffb74d',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.notes a {
    /* background-color: #f0f4c3; */
    /* border-radius: .25rem; */
    /* padding: 0.25rem; */
    /* color: #9e9e9e; */
}

/* General Chip Button  */

.chip-button {
    max-width: 100%;
    width: 14rem;
    margin-bottom: 0.75rem;
    /* display: block; */
}

/*  Collection Expand Chip Button */
/* Header */
.chip-button-header {
    border: 0;
    padding: 0;
    margin-bottom: 0.25rem;
    display: block;
}
/* Button */
.chip-button-button {
    width: 11rem;
    max-width: 100%;
}

/* icon */
.chip-button-icon {
    position: absolute;
    margin-left: -48%;
    margin-top: 0.18rem;
}
/* text */
.chip-button-text {
    position: absolute;
    text-align: left;
    margin-left: 14.9%;
    width: 71%;
}
/* Body */
.chip-button-body {
    border: 0;
    padding: 0.5rem;
}

/* Pair Chip Button */
.pair-chip-button-span {
    width: 11rem;
    max-width: 100%;
    margin-bottom: 0.75rem;
}

.pair-chip-button-div {
    display: inline-block;
    width: 48%;
    cursor: pointer;
}

/* Exchange Table Coin Chips */
.table-chip {
    display: inline-block;
    height: 23px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0,0,0,0.6);
    line-height: 24px;
    padding: 0px 4px;
    border-radius: 6px;
    background-color: #e4e4e4;
    margin-bottom: 5px;
    margin-right: 3px;
}

.logo {
    -webkit-transition: background-color 0.25s ease-out;
    -moz-transition: background-color 0.25s ease-out;
    -o-transition: background-color 0.25s ease-out;
    transition: background-color 0.25s ease-out;
    text-align: center;
    margin-top: 4px;
    background: #dbdad9;
    /* background: #ffe0b2; */
    width: 1.9em !important;
    height: 1.9em !important;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 11px;
}

.logo:hover {
    background: #ff9800;
}

.header-logo-name {
    font-size: 1.5em !important;
    margin-top: 0.2em !important;
    margin-left: 64px !important;
    font-family: 'Raleway', sans-serif !important;
    letter-spacing: -0.1px !important;
    line-height: 1em !important;
    color: grey;
    --color: #ffa500a6;
    background-image: linear-gradient(var(--color) 0%, var(--color) 100%);
    background-repeat: repeat-x;
    background-position: 0 0.65em;
    background-size: 1px 23px;
    padding-left: 3px;
    /* padding-right: 3px; */
    margin-right: 42.2px;
    padding-bottom: 7px;
    cursor: pointer;
}

.header-logo-name:hover {
    font-size: 1.5em !important;
    margin-top: 0.2em !important;
    margin-left: 64px !important;
    font-family: 'Raleway', sans-serif !important;
    letter-spacing: -0.1px !important;
    line-height: 1em !important;
    color: grey;
    --color: #ff9800;
    background-image: linear-gradient(var(--color) 0%, var(--color) 100%);
    background-repeat: repeat-x;
    background-position: 0 0.65em;
    background-size: 1px 23px;
    padding-left: 3px;
    /* padding-right: 3px; */
    margin-right: 42.2px;
    padding-bottom: 7px;
    cursor: pointer;
}

.fixed-card {
    position: fixed;
    z-index: 997;
}

.tiny-text {
    font-size: 0.7em !important;
    letter-spacing: 0.1em;
}

#section-title {
    font-family: 'Raleway','Helvetica Neue', Helvetica, Arial, sans-serif;
    /* text-align: center; */
    font-size: 2em;
    /* margin-bottom: 0em; */
    /* line-height: 1em; */
    vertical-align: middle;
    display: inherit !important;
}

#section-ticker {
    vertical-align: middle;
    font-size: 1.5em;
}

#header-logo {
    height: 2.1em;
    vertical-align: middle;
    border: 0.2rem solid grey;
    box-sizing: content-box;
    display: inline;
}

.hide {
    opacity: 0.1;
}

/* SCALE BUTTON BASED ON SCREEN WIDTH */
.btn-scale {
    height: 22px;
    line-height: 22px;
    padding: 0 2rem;
    text-transform: uppercase;
    padding: 0 0.5rem;
    border: none;
    border-radius: 2px;
}

@media only screen and (min-width: 900px) {
    .btn-scale {
        height: 36px;
        line-height: 36px;
        line-height: 36px;
        padding: 0 0.7rem;
    }
}

.btn-sml {
    border: none;
    border-radius: 2px;
    display: inline-block;
    height: 22px;
    line-height: 23px;
    padding: 0 0.7rem;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

/* .circle-logo-background {
    height: 32px;
    max-width: 100%;
    background-color: grey;
    border-radius: 50%;
    padding: 2px;
    margin-right: 0.8em;
} */

.pointer {
    cursor: pointer;
}

.circle-logo {
    max-width: 100%;
    height: 2.2em;
    border: 0.2em solid grey;
    box-sizing: content-box;
    margin-right: 0.8em;
}

.circle-logo-sml {
    max-width: 100%;
    height: 2.2em;
    border: 0.2em solid grey;
    box-sizing: content-box;
    margin-right: 0.8em;
}

.circle-logo-medium {
    height: 3em;
    width: 3em;
    border: 0.2em solid grey;
    box-sizing: content-box;
}

@media only screen and (min-width: 900px) {
    .circle-logo {
        height: 3.8em;
    }
}


.badge-collection {
    min-width: 3rem;
    padding: 0 6px;
    margin-left: 3px;
    margin-bottom: 3px;
    text-align: center;
    font-size: 1rem;
    line-height: 22px;
    height: 22px;
    color: #757575;
    float: right;
    box-sizing: border-box;
}

/* styles for '...' */
.block-with-text {
  /* hide text if it more than N lines  */
  overflow: hidden;
  /* for set '...' in absolute position */
  position: relative;
  /* use this value to count block height */
  line-height: 1.2em !important;
  /* max-height = line-height (1.2) * lines max number (3) */
  max-height: 4.9em;
  /* fix problem when last visible word doesn't adjoin right side  */
  text-align: justify;
  /* place for '...' */
  margin-right: -1em;
  padding-right: 1em;
}
/* create the ... */
.block-with-text:before {
  /* points in the end */
  content: '...';
  /* absolute position */
  position: absolute;
  /* set position to right bottom corner of block */
  right: 0;
  bottom: 0;
}
/* hide ... if we have text, which is less than or equal to max lines */
.block-with-text:after {
  /* points in the end */
  content: '';
  /* absolute position */
  position: absolute;
  /* set position to right bottom corner of text */
  right: 0;
  /* set width and height */
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  /* bg color = bg color under block */
  background: white;
}

.address {
    color: #fdfa2a;
    background-color: #6a6a6a;
    border-radius: .25rem;
    padding: 0.25rem;
}

/* Article Links */

.article-paragraph a.text-link:link {
    color: grey;
    --color: #ffa5006e;
    background-image: linear-gradient(var(--color) 0%, var(--color) 100%);
    background-repeat: repeat-x;
    background-position: 0 0.85em;
    background-size: 2px 8px;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: none;
}

a.text-link:visited {
    color: grey;
    --color: #6868686e;
    background-image: linear-gradient(var(--color) 0%, var(--color) 100%);
    background-repeat: repeat-x;
    background-position: 0 0.85em;
    background-size: 2px 8px;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: none;
}

a.text-link:hover {
    color: grey;
    --color: #ffa500;
    background-image: linear-gradient(var(--color) 0%, var(--color) 100%);
    background-repeat: repeat-x;
    background-position: 0 0.85em;
    background-size: 2px 8px;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: none;
}

/* Table Name Links Color */
#table-div a {
    color: orange;
}




a.text-link:link {
    color: grey;
    --color: #ffa5006e;
    background-image: linear-gradient(var(--color) 0%, var(--color) 100%);
    background-repeat: repeat-x;
    background-position: 0 0.65em;
    background-size: 2px 8px;
    padding-left: 3px;
    padding-right: 3px;
}

a.text-link:visited {
    color: grey;
    --color: #6868686e;
    background-image: linear-gradient(var(--color) 0%, var(--color) 100%);
    background-repeat: repeat-x;
    background-position: 0 0.65em;
    background-size: 2px 8px;
    padding-left: 3px;
    padding-right: 3px;
}

a.text-link:hover {
    color: grey;
    --color: #ffa500;
    background-image: linear-gradient(var(--color) 0%, var(--color) 100%);
    background-repeat: repeat-x;
    background-position: 0 0.65em;
    background-size: 2px 8px;
    padding-left: 3px;
    padding-right: 3px;
}

.toc-wrapper {
    position: relative;
    margin-top: 42px;
    width: 20%;
}

.toc-wrapper.pin-bottom {
    margin-top: 84px
}

.pin-top,.pin-bottom {
    position: relative;
    width: 200%;
}

ul.table-of-contents {
    margin-top: 0;
    padding-top: 48px;
}

ul.side-nav.fixed li.active {
    /* background-color: #fff; */
}

/* .side-nav li.active a {
    background-color: #79c3ff !important;
} */

nav ul li.active {
    background-color: #2196f3;
}

/* Main Header Nav Active settings */
/* nav ul li.active a {
    background-color: #2196f3;
    color: #fff;
} */

/* Main Header Nav Font Bolding */
#nav-mobile a {
    font-weight: 500;
}

#nav-mobile li.active a {
    color: white !important;
}

.card .card-image .card-title {
    /* background-color: #2196f3d1; */
    /* text-shadow: 1px 1px rgb(152, 152, 152); */
    text-shadow: 1px 1px 5px rgba(82, 82, 82, 0.79);
}

/* TABS INDICATOR COLOR OVERRIDE */
.tabs .indicator {
    background-color: orange;
}

.card-overlay {
    padding: 0;
    margin: 0;
    background-color: #2196f3c7;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.card-overlay:hover {
    padding: 0;
    margin: 0;
    background-color: #2196f36b;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.segwit-logo {
    padding: 2.2px 0px 2px 0px;
    border-radius: 5px;
    margin: 0px 2px -2.9px 2px;
    height: 1.2em;
    width: 1.4em;
    background: url(../images/segwit-logo.svg) no-repeat center;
    background-size: 20px 10px;
    display: inline-block;
}

.bech32-logo {
    font-size: 0.7em;
    font-weight: 800;
    letter-spacing: -0.05em;
    padding: 3.9px 2px 1.7px 1.5px;
    font-stretch: ultra-condensed;
    border-radius: 5px;
    color: #fff;
    margin: 0.3px 0 0 1px;
    display: inline-block;
    line-height: 1;
    vertical-align: text-top;
}

.unknown-feature-logo {
    padding: 0.2px 1.2px 0px 1.2px;
    border-radius: 5px;
    margin: 0px 0.9px -2.1px 2.3px;
}

.icon-logo-background {
    padding: 0.7px 0.9px 1px 0.9px;
    border-radius: 5px;
    margin: 0.1px 0px 1px 2.8px;
    height: 16px;
    display: inherit;
}

code {
    /* color: #f1ec44; */
    /* background-color: #5a5a5a; */
    padding: 0.10em 0.25em 0.10em 0.25em;
    border-radius: 0 0.3em 0.3em 0;
    white-space: pre-wrap;
    border: grey solid 1px;

    /*
    color: #3b3b3b;
    background-color: #cdcdcd;
    padding: 0 0.3em 0 0.3em;
    border-radius: 0.2em;
    white-space: pre-wrap;
    border: grey solid 1px;
    */
}


code.cli {
    /* background-color: #3e3e3e; */
    /* color: #f1ec44; */
    background-color: #884473;
    color: white;
    padding: 0.10em 0.25em 0.10em 0.25em;
    border-radius: 0.3em;
    margin: 0 0.10em 0 0.10em;
    overflow-wrap: break-word;
    word-break: break-all;
    /* word-wrap: break-word; */
    white-space: pre-wrap;
}

code.cli:before {
    content: "~$ ";
    color: rgba(152, 152, 152, 0.37);
}

code.display {
    background-color: #884473;
    color: white;
    padding: 0.10em 0.25em 0.10em 0.25em;
    border-radius: 0.1em;
    margin: 0 0.10em 0 0.10em;
    border-right: 0.2em solid #d96500;
    border-top: 0.2em solid #6a6a6a;
    white-space: pre;
}


code.action {
    /* background-color: #3030301f; */
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d6d6d6+0,ededed+5,d6d6d6+87,8c8c8c+98,6b6b6b+100 */
    background: #d6d6d6; /* Old browsers */
    background: -moz-linear-gradient(top, #d6d6d6 0%, #ededed 5%, #d6d6d6 87%, #8c8c8c 98%, #6b6b6b 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #d6d6d6 0%,#ededed 5%,#d6d6d6 87%,#8c8c8c 98%,#6b6b6b 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #d6d6d6 0%,#ededed 5%,#d6d6d6 87%,#8c8c8c 98%,#6b6b6b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6d6d6', endColorstr='#6b6b6b',GradientType=0 ); /* IE6-9 */
    color: #323232;
    padding: 0.1em 0.25em 0.1em 0.25em;
    border-radius: 0.1em;
    margin: 0 0.10em 0 0.10em;
    border-left: 0.1em solid #d1d1d1;
    border-right: 0.1em solid #d1d1d1;
    white-space: pre;
    /* font-family: monospace; */
}

code.email {
    background-color: #f0f4c3;
    border-radius: .25rem;
    padding: 0.25rem;
}

code.block {
    background-color: #884473;
    border-radius: .2rem;
    word-wrap: break-word;
    font-size: small;
    border: grey 1px solid;
    color: #fffffe;
    padding: 0.6em;
    margin: 0.2em;
    display: block;
    width: fit-content;
    /* background-color: #f0f4c3;
    border-radius: .2rem;
    word-wrap: break-word;
    font-size: small;
    border: grey 1px solid;
    color: grey;
    padding: 0.6em;
    margin: 0.2em;
    display: block;
    width: fit-content; */
}

.price-badge {
    text-align: center;
    font-size: 0.7rem;
    line-height: 22px;
    height: 22px;
    background-color: #fff;
    padding: 2.1px 0.4rem 2.1px 0.4rem;
    margin: 0 0 0 0;
    border-radius: 0.25em;
}

.article-h1 {
    font-size: 3.1rem;
    font-weight: 500;
    line-height: 1.3em;
    letter-spacing: -.01em;
    margin: 1.9em 0 0 0;
    padding-bottom: 0.2em;
}

.article-h2 {
    font-size: 2.46rem;
    border-bottom: 1px solid #ebebeb;
    font-weight: 500;
    line-height: 1.3em;
    letter-spacing: -.01em;
    margin: 0.3em 0 0.8em 0;
    padding-bottom: 3px;
}

.article-paragraph {
    font-style: normal !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    line-height: 1.6 !important;
    font-size: calc( 14px + 8 * ((100vw - 500px) / 1500)) !important;
}

a.close-panel-button {
    color: #d7d7d7 !important;
    padding-top: 2px;
    padding-right: 6px;
    cursor: pointer;
}

a.close-panel-button:hover {
    color: #969696 !important;
}

.toc ul {
    list-style-type: none;
}

.toc li {
    padding-bottom: 10px;
}

.toc a {

}

#price-div {
    color: #FFFFFF !important;
}

span.badge.left {
    float: left !important;
    margin: 0px 2px 0px 0px;
}

span.badge.right {
    float: right !important;
    margin: 0px;
}

span.badge[data-badge-header]::before {
    content: attr(data-badge-header) " ";
}

.tiny-badge {
    min-width: 3rem;
    border-radius: 1em;
    font-size: 0.6em;
    padding: 0.3em 0.6em;
}
span.badge.large {
    width: 7.1rem;
    margin: 10px 7px 2px 0px;
    height: 3.1rem !important;
    line-height: 20px !important;
    border-radius: 0.3em;
    float: unset;
    display: inline-block;
}

.badge p {
    font-size: 0.7em;
    font-weight: 400;
    margin: 0;
    line-height: 2.5em;
}
p a {
    /* color: #ce1a1a !important; */
    color: #fb8c00;
    text-decoration: underline;
}

/* Flag text a link color */
p#flag-text a {
    color: white;
    /* text-decoration: none; */
    font-weight: bold;
}

div.card a {
    color: white;
    /* text-decoration: none; */
    font-weight: bold;
}

h7 {
    font-size: 0.7em;
    font-weight: 500;
    line-height: 110%;
    display: inline-table;
    padding-top: 0.5em;
    overflow-y: hidden;
    letter-spacing: 0.5px;
    overflow-x: overlay;
}

.tight {
    display: inline-grid !important;
    line-height: 1.3em !important;
    font-size: 0.6em !important;
    vertical-align: text-top;
}

table.striped>tbody>tr:nth-child(odd) {
    background-color: rgba(100,100,100,0.1);
}

.table-of-contents a.active {
    border-left: 2px solid #2196F3;
}

/* OVERRIDES FOR COLLECTIONS */
.collapsible-header {
    border: 0px !important;
}

.collapsible-header:hover {
    /* border: 0px !important; */
    /* background-color: #5bb2f9 !important; */
}

.collapsible-header svg {
    margin-right: 5px;
    margin-top: 2px;
}


.collection a.collection-item:not(.active):hover {
    background-color: #2196F3;
    color: #fff !important;
}

.collection.with-header .collection-item {
    padding-left: 4px !important;
}

.collection .collection-item {
    background-color: #fafafa;
    line-height: 1.5rem;
    padding: 10px 20px;
    margin: 0;
    border-bottom: 0px !important;
}

.collapsible {
    border: 0px !important;
    margin: 0.5rem 0 1rem 0;
}

.collection a.collection-item {
    color: #2196F3;
    border-bottom: 1px solid #e0e0e0 !important;
}

.text-small {
    font-size: small !important;
}

.cryptoaddress {
    padding: 2.2px 6px 2.2px 6px;
        border-radius: .25rem;
        border: 1px grey;
        border-style: dashed;
        /* min-width: 80%; */
        margin: 0.5em 0 0.5em 0
}

.no-padding {
    padding: 0;
}

a.footer {
    color: white;
}



/* ag-grid fix for old Chrome browsers */
/* Used by Google Search */
.ag-layout-normal .ag-root {
    height: initial !important;
}

.ag-body-viewport-wrapper {
  height: initial !important;
}

.coin-badge {
    /* display: inline-block;
    padding: 0.3em 0.8em 0.3em 0.8em;
    border-radius: 1.9em;
    margin: 0.2em 0.2em 0.4em 0.4em;
    border: 1px solid grey;
    line-height: 0em;
    font-weight: 700;
    min-width: 16em; */
    display: inline-block;
    padding: 0.3em 1.4em 0.3em 0em;
    border-radius: 1.9em;
    margin: 0.2em 0.2em 0.4em 0.2em;
    border: 1px solid grey;
    line-height: 0em;
    font-weight: 700;
    min-width: 16em;
}

.push-text-up-small {
    /* display: inline-block;
    position: relative;
    bottom: 7.5px;
    max-width: 12em;
    width: 12em; */
    display: inline-block;
    position: relative;
    bottom: 7.5px;
    max-width: 12em;
    width: 12em;
    /* text-overflow: clip; */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: visible;
    margin-right: 0.4em;
    font-size: 0.9em;
}

.coin-badge .circle {
    border: 1px solid grey;
}

canvas.chart {
    /* border: 1px solid grey; */
    min-height: 100px;
    max-height: 400px;
}

.tiny-text a {
    color: grey;
    font-weight: 700;
}
