html, body {
    min-height: 100%;
    height: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    touch-action: pan-y;
    overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

/* Fonts */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.eot");
  src: local("Roboto"), local("Roboto-Regular"), url("../fonts/Roboto/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.eot");
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/Roboto/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}



:focus {
    outline: none;
}
.no-scroll {
    overflow: hidden;
}
body {
    width: 100%;
    min-height: 100%;
    background-color: rgb(241 242 250 / 50%);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
    text-align: left;
}

a {
    color: #448aff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
  text-decoration: underline;
}

h2 {
  font-weight: 700;
  font-size: 18px;
  color: #0a0a0a;
}

.bg-danger {
  background-color: #f44336!important;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%);
}

.bg-warning {
  background-color: #ffeb3b!important;
  border-radius: 8px;
  color: #424242;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%);
}

.text-warning {
  color: #ffbb3b!important;
}

.text-muted {
  color: #6c757d!important;
}

.text-danger {
  color: #f44336!important;
}

.text-success {
  color: #4CAF50!important;
}

img, svg {
    vertical-align: middle;
}
img {
    border-style: none;
}

@media only screen and (max-width: 768px) {
    .mobile-hide {
        display: none!important;
    }
}

@media only screen and (min-width: 769px) {
    .desktop-hide {
        display: none!important;
    }
}


header.header {
    background-color: rgb(249 249 249);
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.12), 0 1px 5px 0 rgba(0,0,0,.2);
}

nav.navbar {
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
}


.logo {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: #424242;
    z-index: 100;
    margin-right: 32px;
}

.logo:hover {
  text-decoration: none;
}

.logo > img {
    display: inline-block;
    height: 40px;
    width: auto;
    margin-right: 16px;
}

.btn--primary {
  color: #fff;
  opacity: .9;
  transition: .3s;
  display: inline-block;
  border: none;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 8px 24px;
  border-radius: 8px;
  background: #448aff;
  margin-bottom: 12px;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%);
  cursor: pointer;
}

.btn--primary:hover {
  opacity: 1;
}

@media (min-width: 992px) {
    header.header {
        background-color: #fff;
    }
    nav.navbar {
        flex-flow: row nowrap;
        justify-content: flex-start;
        padding: 10px 0;
    }
    .logo {
        font-size: 22px;
    }

    .logo > img {
        height: 54px;
    }
}

.icon-search {
    position: absolute;
    top: 22px;
    right: 48px;
    font-size: 18px;
    width: 18px;
    height: 18px;
    transition: .2s ease-in-out;
}

.icon-close {
    position: absolute;
    top: 21px;
    right: 14px;
    color: #bebebe;
    font-size: 22px;
    opacity: 0;
    display: none;
    transform: translate(10px) rotate(90deg);
    transition: all .3s ease-in-out;
    z-index: 10;
}
.icon-close > svg {
    overflow: visible;
    width: 16px;
    display: inline-block;
    height: 16px;
    vertical-align: middle;
}

.mode-search .icon-close {
    opacity: 1;
    display: block;
    transform: none;
    pointer-events: all;
}

.mobile-search {
    pointer-events: none;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
}

.mode-search .mobile-search {
    pointer-events: all;
}

.search {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    height: 47px;
    opacity: 0;
    position: absolute;
    border: 1px solid rgb(223, 227, 235);
    border-radius: 8px;
    top: 15px;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.mode-search .search {
    opacity: 1;
    transform: none;
    pointer-events: all;
}

.mobile-search > input.search-input-control {
    border: 0;
    padding: 0px;
    display: block;
    height: 47px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 16px;
    color: rgb(53, 63, 82);
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    background-image: none;
    outline-width: 0px;
    padding-left: 16px;
    user-select: text;
    transition: box-shadow 0.25s ease-out 0s;
}


.navbar-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgb(223, 227, 235);
  border-radius: 8px;
  padding: 0 8px;
  margin-left: 24px;
  width: 100%;
  height: 100%;
}

.search__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.search__wrapper > svg {
  margin: 0 8px;
  width: 24px;
  height: 24px;
}

.input__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.input__wrapper > form > input.form-control {
  border: 0;
  padding: 0px;
  display: block;
  height: 40px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 16px;
  color: rgb(53, 63, 82);
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
  background-image: none;
  outline-width: 0px;
  user-select: text;
  transition: box-shadow 0.25s ease-out 0s;
}

.mobile-menu {
    display: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(249 249 249);
    width: 100%;
    z-index: 5;
    height: 100vh;
    transition: .2s ease-in-out;
}

.mobile-menu__wrapper {
    padding-top: 32px;
}

.hamburger {
    position: absolute;
    top: 21px;
    right: 4px;
    font-size: 18px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.close-menu {
    display: none;
    opacity: 0;
    position: absolute;
    cursor: pointer;
    top: 21px;
    right: 4px;
    z-index: 100;
    font-size: 18px;
    width: 18px;
    height: 18px;
    transition: .2s ease-in-out;
}

ul.menu-ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    order: 0;
    flex-shrink: 0;
    width: 100%;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    list-style-type: none;
    padding-top: 32px;
    margin-bottom: 48px;
}

.menu-link {
    width: 100%;
    overflow: hidden;
    text-decoration: none;
    color: #424242;
}

.menu-li {
    width: initial;
    border-top: medium none;
    margin: 0px 2rem;
    padding: 0px;
    display: flex;
    -moz-box-align: center;
    align-items: center;
}

.separator {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 16px auto;
}

.menu-li > .text {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu-li > .text > .title {
    color: #0a0a0a;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}
.menu-li > .text > .subtitle {
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 400;
}

.mobile-menu-cta {
    height: 48px;
    font-size: 16px;
    width: 90%;
    border-radius: 8px;
    line-height: 1;
    color: #fff;
    background: #448aff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.explorers__wrapper {
    margin-left: 32px;
    margin-right: 32px;
}

.drop-wrap {
    position: relative;
    display: inline-block;
}

.dropdown {
    cursor: pointer;
    background-color: hsla(0,0%,100%,0);
    padding: 8px 0;
    border-style: none;
    color: #424242;
    white-space: nowrap;
    -webkit-appearance: button;
    border: none;
    outline: none !important;
}

.dropdown > span {
  font-size: 16px;
}

.dropdown-menu {
    position: absolute;
    top: 18px;
    border: none;
    transition: opacity .3s;
    min-width: 220px;
    margin-left: 12px;
    margin-top: 9px;
    left: -30px;
    z-index: 1000;
    display: none;
    float: left;
    padding: 8px 0;
    font-size: 16px;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 8px;
    box-shadow: 0 8px 17px 2px rgba(0,0,0,.14)
}

.dropdown-menu > a {
    display: block;
    width: auto;
    padding: 4px 24px;
    color: #0a0a0a;
    transition: .3s;
    white-space: nowrap;
}

.dropdown-menu > a:hover {
    background-color: #f5f5f5;
}

.dropdown:hover {
    color: #448aff;
    transition: .3s;
}

.drop-wrap:hover .dropdown-menu {
    display: block;
}

.dropdown::after {
    display: inline-block;
    margin-left: 4px;
    vertical-align: 4px;
    content: "";
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  width: 90%;
}

@media only screen and (max-width: 768px) {
  .container h1 {
    font-weight: 700;
    font-size: 18px;
    color: #0a0a0a;
  }
}

.breadcrumbs__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 16px;
}

.breadcrumbs {
  display: flex;
  padding-left: 0;
  position: relative;
  list-style: none;
  padding-right: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  z-index: 4;
}

.breadcrumbs__address {
  position: relative;
}

.breadcrumbs__address {
  display: block;
  color: #828b9e;
  left: 0;
  font-size: 14px;
  position: absolute;
}

li.first-item {
  display: flex;
  align-items: center;
}

li.first-item > a {
  color: #828b9e;
  font-size: 22px;
  font-weight: 400;
}

li.first-item > svg {
  margin-left: 16px;
  margin-right: 16px;
}

li.first-item > a:hover {
  text-decoration: underline;
}

li.active {
  display: flex;
  align-items: center;
}

li.active > a {
  color: #448aff;
  font-size: 22px;
}

li.active > svg {
  margin-left: 16px;
  margin-right: 16px;
}

li.active > a:hover {
  text-decoration: underline;
}

.breadcrumbs__wrapper > .cta-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.breadcrumbs__wrapper > .cta-buttons > .item-button {
  flex-grow: 1;
  width: auto;
  padding: 8px;
}

.item-button > a {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  padding: 6px 12px;
  font-weight: 400;
}

.item-button > a:hover {
  text-decoration: none;
}

.item-button > a.blocks {
  color: #fff;
  background-color: rgba(0, 4, 53,0.9);
}

.item-button > a.blocks:hover {
  background-color: rgb(0, 4, 53);
}

.item-button > a.exchange {
  color: #fff;
  background-color: rgba(67,176,42, 0.9);
}

.item-button > a.sell {
  color: #fff;
  background-color: rgba(3,180,129, 0.9);
}

.item-button > a.sell:hover {
  background-color: rgb(3,180,129);
}

.item-button > a.exchange:hover {
  background-color: rgb(67 176 42);
}

.item-button > a.buy {
  color: #fff;
  background-color: rgba(67,176,42,0.9);
}
.item-button > a.buy:hover {
  background-color: rgb(67, 176, 42);
}

.item-button > a.loans {
  color: #fff;
  background-color: rgba(17,104,241, 0.9);
}

.item-button > a.loans:hover {
  background-color: rgb(17, 104, 241);
}

.item-button > a.wallet {
  color: #fff;
  background-color: rgba(121,140,229,0.9);
}

.item-button > a.wallet:hover {
  background-color: rgb(121, 140, 229);
}

.main__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blockbook {
  flex-basis: 65%;
  padding-top: 8px;
  box-shadow: 0 1px 5px 0 rgb(0 0 0 / 20%);
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 16px 24px 8px;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  transition: .3s;
}

.blockbook__col {
  flex: 0 0 30%;
  max-width: 30%;
}

.blockbook__col--item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.blockbook__col--item  .title{
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

.blockbook__col--item .subtitle {
  color: #424242;
}

.blockchain-info {
  flex-basis: 25%;
  padding-top: 8px;
  box-shadow: 0 1px 5px 0 rgb(0 0 0 / 20%);
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 16px 24px 8px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  transition: .3s;
  justify-content: space-between;
}

.blockchain-info > div {
  display: flex;
  flex-direction: column;
}

.blockchain-info > div > a {
  font-size: 16px;
  margin: 10px 0;
  line-height: 1.25;
}

.blockchain-info > div > a:hover {
  text-decoration: underline;
}



@media only screen and (max-width: 768px) {
  /* breadcrumbs */
  .breadcrumbs {
    padding-right: 0;
  }
  .breadcrumbs > li > a {
    font-size: 12px;
  }
  .breadcrumbs > li > svg {
    margin-right: 8px;
    margin-left: 8px;
  }


  /* main wrap */
  .blockbook {
    flex-basis: 100%;
    padding: 8px 16px;
  }
  .blockbook__col {
    flex: 0 0 42%;
    max-width: 42%;
    width: 100%;
  }
  .blockbook__col--item .title {
    font-size: 14px;
  }
  .blockbook__col--item .subtitle {
    font-size: 12px;
  }
  .blockchain-info {
    flex-basis: 100%;
    padding: 8px 16px;
  }
}



/* TABLES */

table {
  border-collapse: collapse;
}

.table__responsive {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2);
}

.table {
  background-color: #fff;
  margin-bottom: 0;
  width: 100%;
  color: #424242;
  border-radius: 8px;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2);
}

.table__responsive thead, .table__responsive tr {
  font-size: 14px;
  border-bottom: 1px solid #e5e5e5;
  white-space: nowrap;
  font-size: 14px;
}

.table__responsive tr:hover {
  background-color: #f5f5f5;
}

.table__responsive tr:last-child {
  border: none;
}

.table .left {
  text-align: left;
}

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

.table thead th {
  vertical-align: bottom;
  padding: 8px;
  border: 0;
}

.table td {
  padding: 6px;
  vertical-align: top;
  border: 0;
}

@media (min-width:768px) {
  .table td {
    padding: 10px;
  }
  .table thead th {
    padding: 12px;
  }
}



/* PAGINATION */

.justify-content-end {
  justify-content: flex-end !important;
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 8px;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.page-item:last-child .page-link {
  margin-left: 0;
  border-top-right-radius: 8px;
  border-left: none;
  border-bottom-right-radius: 8px;
}
.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-link {
  position: relative;
  display: block;
  font-size: 14px!important;
  padding: 8px 12px;
  line-height: 1.25;
  margin-left: -1px;
  color: #448aff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.pagination li.active {
  display: flex;
  align-items: center;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #448aff;
  border-color: #448aff;
}

.pagination .page-text {
  display: block;
  padding: 8px 4px;
  line-height: 1.25;
}

/* BLOCK */
.ellipsis {
  max-width: 300px;
  text-align: left;
  overflow: hidden;
  scrollbar-width: none;
  white-space: nowrap;
  width: 100%;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 768px) {
  .block-hash span {
    word-break: break-word;
    font-size: 14px;
  }
}

.block-hash {
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2);
  padding: 16px 10px;
  background-color: #fff;
  border-radius: 8px;
  font-size: 18px;
  margin-bottom: 48px;
}

.block-transactions__wrapper {
  margin: 20px 0 30px 0;
  font-size: 16px;
}

.alert {
  position: relative;
  padding: 10px 18px;
  margin-bottom: 32px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.alert-data {
  color: #0a0a0a;
  background-color: #fff;
  border: none;
  padding: 16px;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2);
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.line-bot {
  border-bottom: 2px solid #EAEAEA;
  padding: 0 0 15px;
}

.line-bot div:first-child {
  display: flex;
  align-items: baseline;
}

@media (min-width:768px) {
  .line-bot div:first-child {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

.line-mid {
  padding: 16px;
}

.tx-in .tx-own .tx-amt {
  color: #f44336 !important;
}

.tx-out .tx-own .tx-amt {
  color: #28a745 !important;
}

.block-transactions__wrapper .line-bot {
  justify-content: space-between;
}

.block-transactions__wrapper .line-mid {
  justify-content: space-between;
}

.text-center .octicon {
  display: inline-block;
  vertical-align: text-top;
  height: 32px;
  width: auto;
}

.block-transactions__wrapper .inputs {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
  position: inherit;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.block-transactions__wrapper .transactions {
  flex: 0 0 50%;
  max-width: 50%;
  position: inherit;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.block-transactions__wrapper .transactions .tx-out td {
  display: flex;
  flex-wrap: wrap;
  padding: 8px!important;
}

.tx-addr {
  letter-spacing: -.5px;
  font-size: 14px;
  word-break: break-all;
  white-space: break-spaces;
}

.tx-addr a {
  font-size: 14px;
}

.tx-amt {
  margin-left: auto;
}

.block-transactions__wrapper .transactions .tx-out tr {
  border: 1px solid #ececec
}

.block-transactions__wrapper .inputs .tx-in td {
  padding: 8px!important;
  display: flex;
  justify-content: space-between;
}
.block-transactions__wrapper .inputs .tx-in tr {
  border-bottom: 1px solid #ececec;
}
.block-transactions__wrapper .inputs .tx-in tr:last-child {
  border: none;
}

.block-transactions__wrapper .line-top {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  border-top: 2px solid #EAEAEA;
  padding: 16px;
}
.block-transactions__wrapper .line-top div:first-child {
  margin-right: auto;
}


.txvalues {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 100;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 8px;
}

.txvalues:not(:last-child), .txvalues:not(:first-child) {
  margin-right: 16px;
}

.txvalues-default {
  background-color: #EBEBEB;
  color: #333;
}

.txvalues-success {
  background-color: #433a94;
}

.txvalues-primary {
  background-color: #6abcd4;
}

.txvalues-danger {
  background-color: #f44336;
}

@media (max-width: 768px) {
  .tx-addr {
    word-break: break-all;
    white-space: break-spaces;
    max-width: 100%;
  }
}

/* ADDRESS */
.address-content__wrap {
  margin-top: 16px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.address-general-info {
  width: auto;
  flex-grow: 1;
}
.address-extra-info {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: space-around;
}

.address-qr {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px 24px 8px;
  margin-bottom: 24px;
  transition: .3s;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2);
}

.address-qr #qrcode {
  width: 160px;
  height: 160px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.address-general-info .content {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  margin: 16px;
  margin-left: 0;
  transition: .3s;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2);
}

.address-general-info .content table.table {
  box-shadow: none;
}

.address-general-info .content table.table tr:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.address-general-info .content table.table thead tr {
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.address-general-info .content ul {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
  padding: 0px;
  margin-bottom: 16px;
  list-style-type: none;
}
.address-general-info .content ul li {
  border-bottom: 1px solid rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  padding: 10px 0;
}
.address-general-info .content ul li:last-child {
  border-bottom: none;
}

.address-general-info .content ul li span:first-child {
  color: #424242;
}

.download__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download__wrap a{
  margin-bottom: 16px;
}
.download__wrap a:last-child {
  text-align: center;
  margin-bottom: 0;
}

.download__wrap a.desktop-link {
  display: flex;
  align-items: center;
  width: 135px;
  height: 40px;
  background-color: #000000;
  border-radius: 8px;
  color: #ffffff;
}

.download__wrap a.desktop-link .text {
  height: 24px;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: space-around;
}

.download__wrap a.desktop-link .text > span:first-child {
  font-size: 10px;
  line-height: 0;
  padding-bottom: 4px;
  display: block;
  padding-left: 2px;
}
.download__wrap a.desktop-link .text > span:last-child {
  line-height: 0;
}

.download__wrap a.desktop-link > svg {
  display: block;
  height: 24px;
  padding-left: 14px;
  padding-right: 6px;
  width: auto;
}

.download__wrap a.desktop-link:hover {
  text-decoration: none;
}

.block-content__wrap {
  display: flex!important;
}

.hash {
  letter-spacing: -.5px;
  text-align: right;
  word-break: break-all;
  margin-left: 16px;
}

@media only screen and (max-width: 768px) {
  .block-content__wrap {
    flex-wrap: wrap!important;
  }

  .address-general-info .content {
    margin: 0;
    font-size: 14px;
  }
  .address-general-info .content ul li {
    font-size: 12px;
  }
  .ellipsis {
    max-width: 150px;
  }

  .line-mid {
    padding: 16px 0px;
  }

  .block-transactions__wrapper .line-mid {
    flex-direction: column;
    align-items: center;
    font-size: 12px;
  }
  .text-center svg{
    transform: rotate(90deg);
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .block-transactions__wrapper .inputs {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }

  .block-transactions__wrapper .transactions {
    flex-grow: 1;
    max-width: 100%;
    padding: 0;
  }
  .block-transactions__wrapper .line-top {
    flex-direction: column;
  }
  .txvalues {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
  }
  .block-transactions__wrapper .line-top div:first-child {
    margin-right: 0px;
  }
  .txvalues:not(:last-child), .txvalues:not(:first-child) {
    margin-right: 0px;
  }
  .address-extra-info {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

}

/* Transaction Select */
.select__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.wrap-select {
  position: relative;
  width: auto;
}

.wrap-select::after {
  content: "";
  display: block;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #0a0a0a transparent transparent transparent;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 1rem;
  z-index: 1;
  margin-top: -3px;

}

.wrap-select select {
  display: block;
  padding: 10px 16px;
  background: white;
  margin-top: 16px;
  margin-bottom: 16px;
  border: none;
  max-width: 400px;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2);
  border-radius: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 1rem;
  color: #424242;
}

.select__wrapper select::-ms-expand {
  display: none;
}

.select__wrapper h2 {
  flex-basis: 100%;
}

@media only screen and (max-width: 768px) {
  .select__wrapper div {
    flex-basis: 100%;
  }
  .wrap-select select {
    width: 100%;
  }
  .pagination {
    justify-content: center;
  }
}

/* RAW TX */
#txSpecific {
  margin: 0;
}
pre {
  display: block;
  font-size: 12px;
  color: #212529;
}
.key {
  color: #333;
}
.string {
  color: darkgreen;
  letter-spacing: -.5px;
  word-break: break-all;
  white-space: break-spaces;
}

/* FOOTER */
.footer {
  width: 100%;
  height: auto;
  margin-top: 80px;
  padding-top: 20px;
  padding-bottom: 16px;
  background: #fff;
  box-shadow: 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
}

.footer__wrapper {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
}

.footer__col {
  flex: 0 0 15%;
  max-width: 15%;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.footer__list {
  color: #424242;
  padding-left: 0;
  text-decoration: none;
  list-style-type: none;
  margin-bottom: 24px;
}

.footer__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #424242;
}
.footer__item {
  font-size: 16px;
  padding: 4px 0;
}
.footer__item > a {
  color: #424242;
}
.footer__item > a:hover {
  text-decoration: underline;
}

.footer__divider {
  background-color: #424242;
  width: 100%;
  height: 1px;
  margin: 12px 0;
}

.copyright > a {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(66,66,66,0.5);
}

.copyright {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  align-items: center;
}

.footer__row > .download {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .footer__col {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .footer__row > .download > a {
    margin-bottom: 16px;
    margin-right: 16px;
  }
  .footer__row > .download {
    justify-content: center;
    align-items: center;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .copyright {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 374px) {
  .footer__col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

::-webkit-input-placeholder {
    color: rgb(117, 117, 117)!important;
    text-overflow: inherit;
    white-space: pre;
    overflow-wrap: normal;
    -webkit-user-modify: read-only !important;
    overflow: hidden;
}

::-moz-placeholder {
    color: rgb(117, 117, 117)!important;
    text-overflow: inherit;
    white-space: pre;
    overflow-wrap: normal;
    -webkit-user-modify: read-only !important;
    overflow: hidden;
}
