/* New vars - v4 */
.bg-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.slide-modal {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s ease-in-out;
  z-index: 100;
}
.slide-modal > .cmc-modal-container {
  background-color: #212A3B;
  border-radius: 4px;
  margin: 15% 24px;
  padding: 24px 24px 32px 24px;
  max-width: 468px;
  height: auto;
}
.slide-modal > .cmc-modal-container .cmc-modal-title {
  color: #F9F9F9;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 20px;
  margin: 0;
  padding: 0 12px 20px 12px;
}
.slide-modal > .cmc-modal-container .cmc-modal-content {
  background-color: #212A3B;
}
.slide-modal > .cmc-modal-container .cmc-modal-content .cmc-modal-close {
  background-color: #8092AD;
  margin-top: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #212A3B;
  font-size: 16px;
  width: fit-content;
}
.slide-modal > .cmc-modal-container .cmc-modal-content .converter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slide-modal > .cmc-modal-container .cmc-modal-content .converter .currency {
  display: flex;
  padding: 4px;
  align-items: center;
  background-color: #212A3B;
  color: #8092AD;
  height: 42px;
}
.slide-modal > .cmc-modal-container .cmc-modal-content .converter .currency label {
  background-color: #3B4B63;
  color: #8092AD;
  text-transform: uppercase;
  border-radius: 100px 0 0 100px;
  height: inherit;
  padding: 10px 16px;
  width: 70px;
}
.slide-modal > .cmc-modal-container .cmc-modal-content .converter .currency input {
  background-color: #8092AD;
  color: #212A3B;
  text-align: center;
  border-radius: 0 100px 100px 0;
  height: inherit;
}
.slide-modal > .cmc-modal-container .cmc-modal-content .converter #exchange {
  position: relative;
  padding: 8px 22px;
  margin: 0 auto;
}
.slide-modal > .cmc-modal-container .cmc-modal-content .converter #exchange::after {
  content: url("../assets/icons/exchange.svg");
  position: relative;
  top: 5px;
  cursor: pointer;
}
.slide-modal > .cmc-modal-container .cmc-modal-content.infos {
  line-height: 32px;
}
.slide-modal > .cmc-modal-container .cmc-modal-content.infos a {
  color: #04B2D9;
}
.slide-modal > .cmc-modal-container .cmc-modal-content.infos a:hover {
  color: #8092AD;
}
.slide-modal#cmc-modal-converter > .cmc-modal-container {
  max-width: 368px;
}
.slide-modal#cmc-modal-converter > .cmc-modal-container .cmc-modal-close {
  margin: 24px 0 0 8px;
}

@media (min-width: 600px) {
  .slide-modal > .cmc-modal-container {
    margin: 15% auto;
  }
}
.coin-main-infos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coin-main-infos h1 {
  font-size: 21px;
  line-height: 24px;
  font-weight: inherit;
  margin: 0;
}
.coin-main-infos .coin-resume {
  display: flex;
  align-items: center;
  gap: 8px;
}
.coin-main-infos .coin-resume .coin-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.coin-main-infos .coin-resume .coin-rank {
  font-weight: 700;
}
.coin-main-infos .coin-resume h1 {
  font-size: 21px;
  font-weight: 400;
  line-height: 25px;
  margin: 0 !important;
  display: inline-block;
}
.coin-main-infos .coin-resume h1 .coin-symbol {
  color: #8092AD;
}
.coin-main-infos .coin-price {
  display: flex;
  gap: 8px;
  align-items: center;
}
.coin-main-infos .coin-price .price-current {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}
.coin-main-infos .coin-price .price-change {
  font-weight: 700;
  font-size: 16px;
}
.coin-main-infos .coin-price .price-change.plus {
  color: #00CF83;
}
.coin-main-infos .coin-price .price-change.minus {
  color: #E14444;
}
.coin-main-infos .coin-rate {
  padding: 12px 0 24px 0;
  display: flex;
  gap: 8px;
  color: #8092AD;
  font-size: 20px;
}
.coin-main-infos .coin-rate span {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/icons/infos.png");
  transition: transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.coin-main-infos .coin-rate span:hover {
  transform: scale(1.1);
}
.coin-main-infos .coin-convert {
  display: flex;
  gap: 12px;
}
.coin-main-infos .coin-convert .convert-switch {
  overflow: hidden;
  display: flex;
  transition: all 0.2s ease-in-out;
}
.coin-main-infos .coin-convert .convert-switch span {
  font-size: 16px;
  padding: 8px 14px;
  cursor: pointer;
  background-color: #212A3B;
  color: #8092AD;
  color: #F9F9F9;
  font-weight: 500;
}
.coin-main-infos .coin-convert .convert-switch span:first-child {
  border-radius: 4px 0 0 4px;
}
.coin-main-infos .coin-convert .convert-switch span:last-child {
  border-radius: 0 4px 4px 0;
}
.coin-main-infos .coin-convert .convert-switch span.active {
  color: #F9F9F9;
  background: linear-gradient(90deg, #04b2d9, #3e7bd9);
}
.coin-main-infos .coin-convert .convert-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #F9F9F9;
  border-radius: 28px;
  border: 1px solid #8092AD;
  padding: 0px 12px;
  height: 40px;
  -webkit-tap-highlight-color: transparent;
  outline: none !important;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.coin-main-infos .coin-convert .convert-button:hover {
  transform: scale(1.1);
}
.coin-main-infos .coin-convert .convert-button h2 {
  font-size: 16px;
  font-weight: 400;
  color: #8092AD;
}
.coin-main-infos .coin-convert .convert-button span {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/icons/calculator.png");
}
.coin-main-infos .coin-convert .convert-button p {
  color: #8092AD;
}
.coin-main-infos .coingecko {
  margin: 24px 0;
}

@media only screen and (min-width: 600px) {
  .coin-main-infos .coingecko-button {
    margin-bottom: 0;
  }
}
.main_container .content .coin-buy {
  border-top: 1px solid #8092AD;
  border-bottom: 1px solid #8092AD;
  padding: 24px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main_container .content .coin-buy .coin-buy-title {
  display: flex;
  align-items: center;
}
.main_container .content .coin-buy .coin-buy-title h2 {
  font-size: 18px;
  line-height: 22px;
  color: #8092AD;
  padding-left: 32px;
  font-weight: 500;
  margin: 0;
}
.main_container .content .coin-buy .coin-buy-title #shopping-cart {
  display: block;
  width: 48px;
  height: 48px;
  background-image: url("icons/buy.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: -12px;
  position: absolute;
}
.main_container .content .coin-buy .coin-buy-content {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.main_container .content .coin-buy .coin-buy-content a {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(90deg, #04b2d9, #3e7bd9);
  transition: transform 0.2s ease-in-out;
  color: #F9F9F9;
  border-radius: 5px;
  align-items: center;
}
.main_container .content .coin-buy .coin-buy-content a:hover {
  opacity: 0.9;
  color: #F9F9F9;
}
.main_container .content .coin-buy .coin-buy-content a#cta-swissborg:hover {
  opacity: 1;
  animation: tilt-shaking 0.25s ease-in-out;
}
.main_container .content .coin-buy .coin-buy-content a#cta-swissborg span.icon {
  background-image: url("../assets/icons/swissborg.png");
}
.main_container .content .coin-buy .coin-buy-content a#cta-bitpanda span.icon {
  background-image: url("../assets/icons/bitpanda.png");
}
.main_container .content .coin-buy .coin-buy-content a#cta-bitvavo span.icon {
  background-image: url("../assets/icons/bitvavo.png");
}
.main_container .content .coin-buy .coin-buy-content a#cta-etoro span.icon {
  background-image: url("../assets/icons/etoro.png");
}
.main_container .content .coin-buy .coin-buy-content a#cta-binance span.icon {
  background-image: url("../assets/icons/binance.png");
}
.main_container .content .coin-buy .coin-buy-content a#cta-kraken span.icon {
  background-image: url("../assets/icons/kraken.png");
}
.main_container .content .coin-buy .coin-buy-content a span.icon {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 600px) {
  .coin-buy .coin-buy-content {
    flex-wrap: no-wrap;
  }
}
@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0eg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
section.cmc > .columns .column.cmc-converter .cmc-converter__container {
  padding: 0 48px 24px 48px;
  display: flex;
  flex-direction: column;
}
section.cmc > .columns .column.cmc-converter .currency {
  flex: 2 1 auto;
  display: flex;
  height: fit-content;
  justify-content: center;
  text-transform: lowercase;
}
section.cmc > .columns .column.cmc-converter .currency__input {
  order: 0;
}
section.cmc > .columns .column.cmc-converter .currency__output {
  order: 2;
}
section.cmc > .columns .column.cmc-converter label {
  background-color: #8092AD;
  color: #F9F9F9;
  padding: 4px 12px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  border-radius: 20px 0 0 20px;
}
section.cmc > .columns .column.cmc-converter input[type=text],
section.cmc > .columns .column.cmc-converter input[type=number] {
  height: 32px;
  background-color: #181E29;
  color: #8092AD;
  margin-left: -2px;
  padding-left: 16px;
  border-radius: 0 20px 20px 0;
  border: none;
}
section.cmc > .columns .column.cmc-converter #exchange {
  position: relative;
  padding: 8px 22px;
  margin: 0 auto;
}
section.cmc > .columns .column.cmc-converter #exchange::after {
  content: url("./icons/exchange.svg");
  position: relative;
  top: 5px;
  cursor: pointer;
}

@media only screen and (min-width: 600px) {
  section.cmc > .columns .column.cmc-converter .cmc-converter__container {
    flex-direction: row;
  }
  section.cmc > .columns .column.cmc-converter .cmc-converter__container #exchange {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.coin-history {
  padding: 12px;
  background-color: #212A3B;
  border-radius: 4px;
  margin: 12px 0 24px 0;
}
.coin-history table tbody {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  gap: 8px;
  flex-wrap: wrap;
}
.coin-history table tbody tr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.coin-history table tbody tr td {
  border: none;
  padding: 0;
}
.coin-history table tbody tr.coin-history-item td.coin-history-title {
  color: #F9F9F9;
}
.coin-history table tbody tr.coin-history-item td.coin-history-details {
  font-weight: 700;
}
.coin-history table tbody tr.coin-history-item td.coin-history-details.plus {
  color: #00CF83;
}
.coin-history table tbody tr.coin-history-item td.coin-history-details.minus {
  color: #E14444;
}

@media (min-width: 600px) {
  .coin-history {
    margin: 0;
  }
}
.tradingview-widget-container div div {
  height: 600px !important;
}

div.tradingview-widget-copyright {
  color: #F9F9F9 !important;
}
div.tradingview-widget-copyright a {
  color: #F9F9F9 !important;
}

.main_container .content .cmc-more {
  margin-top: 64px;
}
.main_container .content .cmc-more .title-block h2 {
  margin: 0;
}
.main_container .content .cmc-more .cmc-more__seo-content {
  transition: max-height 0.8s ease-in-out;
  max-height: 400px;
  overflow: hidden;
  margin: 32px 0;
}
.main_container .content .cmc-more .cmc-more__seo-content p {
  margin-bottom: 12px;
}
.main_container .content .cmc-more .cmc-more__seo-content h3 {
  margin: 0 0 12px 0;
}
.main_container .content .cmc-more .two-columns {
  column-count: 1; /* Split content into 2 columns */
  column-gap: 20px; /* Add space between columns */
  max-height: 200px; /* Limit the height for collapsed view */
  overflow: hidden; /* Hide overflowing content */
  transition: max-height 0.3s ease; /* Smooth transition for height changes */
}
.main_container .content .cmc-more .cmc-more__readMore {
  padding: 20px;
  width: fit-content;
  display: flex;
  margin: 0 auto;
  background-color: #8092AD;
  color: #212A3B;
}

@media (min-width: 600px) {
  .main_container .content .cmc-more .two-columns {
    column-count: 2;
  }
}
.cmc-ressources {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cmc-ressources__source {
  padding: 8px;
  margin: 0 4px 4px 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  border: 1px solid #8092AD;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  position: relative;
}
.cmc-ressources__source:before {
  content: url(./icons/link.svg);
  height: 32px;
  width: 32px;
  position: absolute;
  left: 6px;
  display: inline-block;
  transform: scale(0.8);
  top: 4px;
}
.cmc-ressources__source:first-child {
  margin-left: 0;
}
.cmc-ressources__source:hover {
  transform: scale(1.05);
}
.cmc-ressources__source a {
  padding-left: 34px;
}
.cmc-ressources__source a span {
  color: #8092AD;
}

.coin-infos {
  padding: 24px 0 0 0;
}
.coin-infos table tr td {
  border: none;
  padding: 12px 0;
}
.coin-infos table tr.coin-infos-item td.coin-infos-title h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}
.coin-infos table tr.coin-infos-item td.coin-infos-details {
  text-align: right;
}
.coin-infos table tr.coin-infos-item td.coin-infos-details .symbol {
  text-transform: uppercase;
}
.coin-infos table tr.coin-infos-item:nth-child(odd) h3 {
  color: #F9F9F9;
}
.coin-infos table tr.coin-infos-item:nth-child(even) h3 {
  color: #8092AD;
}
.coin-infos table tr.coin-infos-item:last-child td {
  padding-bottom: 0;
}

.main_container .content .cmc-news {
  margin-top: 64px;
}
.main_container .content .cmc-news .title-block {
  width: 100%;
}
.main_container .content .cmc-news .title-block h2 {
  margin: 0;
  font-size: 26px;
  line-height: 32px;
}
.main_container .content .cmc-news h3 {
  text-align: left;
  padding: 0;
}
.main_container .content .cmc-news .post .content .title {
  height: 80px;
  padding: 0;
}
.main_container .content .cmc-news ul.list_container {
  margin-left: 0;
}
.main_container .content .cmc-news ul.list_container .column.is-third {
  flex: none;
  width: 100%;
}

@media (min-width: 600px) {
  .main_container .content .cmc-news h3 {
    padding: 12px 48px;
  }
  .main_container .content .cmc-news ul.list_container .column.is-third {
    width: 33%;
  }
}
.main-container::-webkit-scrollbar {
  display: none;
}

.coinmarketcap .coingecko {
  margin-bottom: 24px;
}
.coinmarketcap .global-stats {
  display: flex;
  gap: 20px;
  overflow-y: hidden;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.coinmarketcap .global-stats::-webkit-scrollbar {
  display: none;
}
.coinmarketcap .global-stats .charts {
  display: flex;
  gap: 12px;
}
.coinmarketcap .global-stats .charts > div {
  max-width: 320px;
  height: 181px;
  background-color: #212A3B;
  border-radius: 8px;
}
.coinmarketcap .global-stats .charts > div.market-cap-chart-desktop-container, .coinmarketcap .global-stats .charts > div.volume-chart-desktop-container {
  display: none;
}
.coinmarketcap .global-stats .lists {
  display: flex;
  gap: 20px;
}
.coinmarketcap .global-stats .lists #trending,
.coinmarketcap .global-stats .lists #top-gainers {
  background-color: #212A3B;
  border-radius: 8px;
  padding: 24px;
  width: 320px;
}
.coinmarketcap .global-stats .lists #trending .widget-title,
.coinmarketcap .global-stats .lists #top-gainers .widget-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #F9F9F9;
  line-height: 24px;
}
.coinmarketcap .global-stats .lists #trending .coin-list,
.coinmarketcap .global-stats .lists #top-gainers .coin-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a {
  display: flex;
  color: #F9F9F9;
  font-size: 16px;
  gap: 8px;
  height: 24px;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-name,
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-price-info,
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-percent-info,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-name,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-price-info,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-percent-info {
  display: flex;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-symbol,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-symbol {
  display: contents;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-symbol img,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-symbol img {
  width: 24px;
  height: 24px;
  border-radius: 12px;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-name,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-name {
  font-weight: 500;
  min-width: 120px;
  flex-grow: 1;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-name .coin-fullname,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-name .coin-fullname {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 12px;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-price-info,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-price-info {
  font-weight: 500;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-percent-info,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-percent-info {
  justify-content: flex-end;
  font-weight: 500;
  min-width: 68px;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-percent-info span.positive,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-percent-info span.positive {
  color: #00CF83;
}
.coinmarketcap .global-stats .lists #trending .coin-list .coin-item a .coin-percent-info span.negative,
.coinmarketcap .global-stats .lists #top-gainers .coin-list .coin-item a .coin-percent-info span.negative {
  color: #E14444;
}

.coinmarketcap table.coinmarketcap-summary {
  width: 100%;
  scrollbar-width: none;
}
.coinmarketcap table.coinmarketcap-summary::-webkit-scrollbar {
  display: none;
}
.coinmarketcap table.coinmarketcap-summary thead tr,
.coinmarketcap table.coinmarketcap-summary tbody tr {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75vw;
  justify-content: space-around;
  background-color: #212A3B;
  border-radius: 8px;
  padding: 16px 12px;
  font-size: 16px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  position: relative;
  overflow: hidden;
  max-height: 60px;
}
.coinmarketcap table.coinmarketcap-summary thead tr th, .coinmarketcap table.coinmarketcap-summary thead tr td,
.coinmarketcap table.coinmarketcap-summary tbody tr th,
.coinmarketcap table.coinmarketcap-summary tbody tr td {
  color: #F9F9F9;
  border: none;
  padding: 0;
}
.coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(1), .coinmarketcap table.coinmarketcap-summary thead tr td:nth-child(1),
.coinmarketcap table.coinmarketcap-summary tbody tr th:nth-child(1),
.coinmarketcap table.coinmarketcap-summary tbody tr td:nth-child(1) {
  min-width: 14px;
}
.coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(2), .coinmarketcap table.coinmarketcap-summary thead tr td:nth-child(2),
.coinmarketcap table.coinmarketcap-summary tbody tr th:nth-child(2),
.coinmarketcap table.coinmarketcap-summary tbody tr td:nth-child(2) {
  min-width: 142px;
}
.coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(3), .coinmarketcap table.coinmarketcap-summary thead tr td:nth-child(3),
.coinmarketcap table.coinmarketcap-summary tbody tr th:nth-child(3),
.coinmarketcap table.coinmarketcap-summary tbody tr td:nth-child(3) {
  min-width: 80px;
}
.coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(4), .coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(5), .coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(6), .coinmarketcap table.coinmarketcap-summary thead tr td:nth-child(4), .coinmarketcap table.coinmarketcap-summary thead tr td:nth-child(5), .coinmarketcap table.coinmarketcap-summary thead tr td:nth-child(6),
.coinmarketcap table.coinmarketcap-summary tbody tr th:nth-child(4),
.coinmarketcap table.coinmarketcap-summary tbody tr th:nth-child(5),
.coinmarketcap table.coinmarketcap-summary tbody tr th:nth-child(6),
.coinmarketcap table.coinmarketcap-summary tbody tr td:nth-child(4),
.coinmarketcap table.coinmarketcap-summary tbody tr td:nth-child(5),
.coinmarketcap table.coinmarketcap-summary tbody tr td:nth-child(6) {
  min-width: 60px;
}
.coinmarketcap table.coinmarketcap-summary thead tr.extended th:nth-child(1), .coinmarketcap table.coinmarketcap-summary thead tr.extended td:nth-child(1),
.coinmarketcap table.coinmarketcap-summary tbody tr.extended th:nth-child(1),
.coinmarketcap table.coinmarketcap-summary tbody tr.extended td:nth-child(1) {
  min-width: unset;
}
.coinmarketcap table.coinmarketcap-summary thead tr.extended th:nth-child(2), .coinmarketcap table.coinmarketcap-summary thead tr.extended td:nth-child(2),
.coinmarketcap table.coinmarketcap-summary tbody tr.extended th:nth-child(2),
.coinmarketcap table.coinmarketcap-summary tbody tr.extended td:nth-child(2) {
  min-width: unset;
}
.coinmarketcap table.coinmarketcap-summary thead tr.extended th:nth-child(3), .coinmarketcap table.coinmarketcap-summary thead tr.extended td:nth-child(3),
.coinmarketcap table.coinmarketcap-summary tbody tr.extended th:nth-child(3),
.coinmarketcap table.coinmarketcap-summary tbody tr.extended td:nth-child(3) {
  min-width: unset;
}
.coinmarketcap table.coinmarketcap-summary thead tr {
  margin-bottom: 20px;
}
.coinmarketcap table.coinmarketcap-summary thead tr th {
  font-weight: 100;
  font-size: 16px;
}
.coinmarketcap table.coinmarketcap-summary thead tr th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.coinmarketcap table.coinmarketcap-summary thead tr th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.coinmarketcap table.coinmarketcap-summary thead tr th span {
  color: #8092AD;
  font-size: 14px;
}
.coinmarketcap table.coinmarketcap-summary thead tr.expanded {
  opacity: 0.15;
  transition: opacity 0.5s ease-in-out;
}
.coinmarketcap table.coinmarketcap-summary tbody tr {
  margin-bottom: 12px;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.coinmarketcap table.coinmarketcap-summary tbody tr:focus, .coinmarketcap table.coinmarketcap-summary tbody tr:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.coinmarketcap table.coinmarketcap-summary tbody tr * {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td {
  display: flex;
  align-items: center;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container {
  display: flex;
  gap: 8px;
  width: 100%;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__inner {
  display: flex;
  gap: 12px;
  flex-grow: 1;
  min-width: 90px;
  align-items: center;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__inner .name-container__link .name-container__id,
.coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__inner .name-container__link .name-container__symbol {
  color: white;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__inner .name-container__link .name-container__id {
  text-transform: capitalize;
  display: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__inner .name-container__link .name-container__symbol {
  font-weight: 900;
  max-width: 64px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__buy {
  border: 1px solid #00CF83;
  border-radius: 8px;
  padding: 8px;
  height: fit-content;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__buy .name-container__moonpay {
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("icons/green-cart.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td.column-week-sparkline .week-sparkline {
  height: 50px !important;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td img {
  width: 24px;
  height: 24px;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td .plus {
  color: #00CF83;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td .minus {
  color: #E14444;
}
.coinmarketcap table.coinmarketcap-summary tbody tr td .column-title {
  display: none;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded {
  max-height: 2000px;
  transition: max-height 0.5s cubic-bezier(0.5, 0, 1, 0);
  background-color: transparent;
  border-radius: 8px;
  cursor: pointer;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td {
  flex-direction: column;
  padding-bottom: 4px;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td .column-title {
  display: block;
  color: #8092AD;
  text-align: center;
  line-height: 20px;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td .column-title,
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td .column-content {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td.column-name .name-container .name-container__inner {
  display: flex;
  gap: 8px;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td.column-name .name-container .name-container__inner .name-container__link {
  display: flex;
  gap: 8px;
  max-width: 200px;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td.column-name .name-container .name-container__inner .name-container__link .name-container__id {
  display: block;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td.column-name .name-container .name-container__inner .name-container__link .name-container__symbol {
  font-size: 14px;
  font-weight: 100;
  color: #8092AD;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td.column-name .name-container .name-container__inner .name-container__link .name-container__symbol::before {
  content: "(";
  padding-right: 1px;
}
.coinmarketcap table.coinmarketcap-summary tbody tr.expanded td.column-name .name-container .name-container__inner .name-container__link .name-container__symbol::after {
  content: ")";
  padding-left: 1px;
}

@media only screen and (min-width: 480px) {
  .coinmarketcap table.coinmarketcap-summary thead tr,
  .coinmarketcap table.coinmarketcap-summary tbody tr {
    justify-content: center;
  }
}
@media only screen and (min-width: 600px) {
  .coinmarketcap .global-stats .charts {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .coinmarketcap .global-stats .charts > div {
    display: flex;
    border-radius: 8px;
    padding: 12px;
    gap: 8px;
  }
  .coinmarketcap .global-stats .charts > div#market-cap-chart-mobile, .coinmarketcap .global-stats .charts > div#volume-chart-mobile {
    display: none;
  }
  .coinmarketcap .global-stats .charts > div.market-cap-chart-desktop-container, .coinmarketcap .global-stats .charts > div.volume-chart-desktop-container {
    display: flex;
    position: relative;
    height: 81px;
  }
  .coinmarketcap .global-stats .charts > div #market-cap-content-desktop .market-cap-content-title,
  .coinmarketcap .global-stats .charts > div #market-cap-content-desktop .volume-content-title,
  .coinmarketcap .global-stats .charts > div #volume-content-desktop .market-cap-content-title,
  .coinmarketcap .global-stats .charts > div #volume-content-desktop .volume-content-title {
    font-size: 18px;
    font-weight: 600;
    color: #F9F9F9;
    line-height: 22px;
  }
  .coinmarketcap .global-stats .charts > div #market-cap-content-desktop .market-cap-content-subtitle,
  .coinmarketcap .global-stats .charts > div #market-cap-content-desktop .volume-content-subtitle,
  .coinmarketcap .global-stats .charts > div #volume-content-desktop .market-cap-content-subtitle,
  .coinmarketcap .global-stats .charts > div #volume-content-desktop .volume-content-subtitle {
    font-size: 14px;
    font-weight: 100;
    color: #8092AD;
    line-height: 32px;
    z-index: 1;
  }
  .coinmarketcap .global-stats .charts > div #market-cap-content-desktop .market-cap-content-subtitle,
  .coinmarketcap .global-stats .charts > div #market-cap-content-desktop .volume-content-subtitle,
  .coinmarketcap .global-stats .charts > div #volume-content-desktop .market-cap-content-subtitle,
  .coinmarketcap .global-stats .charts > div #volume-content-desktop .volume-content-subtitle {
    position: absolute;
  }
  .coinmarketcap .global-stats .lists {
    width: 100%;
  }
  .coinmarketcap .global-stats .lists > div {
    flex: 1;
    width: 50%;
  }
  .coinmarketcap table.coinmarketcap-summary {
    display: block;
    overflow-y: scroll;
  }
  .coinmarketcap table.coinmarketcap-summary thead tr,
  .coinmarketcap table.coinmarketcap-summary tbody tr {
    display: table-row;
    justify-content: center;
  }
  .coinmarketcap table.coinmarketcap-summary thead tr th, .coinmarketcap table.coinmarketcap-summary thead tr td,
  .coinmarketcap table.coinmarketcap-summary tbody tr th,
  .coinmarketcap table.coinmarketcap-summary tbody tr td {
    display: table-cell;
    text-align: left;
    padding: 0.5em 0.75em;
  }
  .coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(2), .coinmarketcap table.coinmarketcap-summary thead tr td:nth-child(2),
  .coinmarketcap table.coinmarketcap-summary tbody tr th:nth-child(2),
  .coinmarketcap table.coinmarketcap-summary tbody tr td:nth-child(2) {
    width: 100%;
  }
  .coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(6), .coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(7), .coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(8), .coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(9), .coinmarketcap table.coinmarketcap-summary thead tr th:nth-child(10) {
    display: table-cell;
  }
  .coinmarketcap table.coinmarketcap-summary tbody tr {
    background-color: transparent;
    box-shadow: none;
    max-height: 50px;
  }
  .coinmarketcap table.coinmarketcap-summary tbody tr:first-child td {
    padding-top: 24px;
  }
  .coinmarketcap table.coinmarketcap-summary tbody tr td {
    padding: 12px;
    vertical-align: middle;
  }
  .coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__inner {
    display: flex;
    gap: 8px;
    max-width: 182px;
    align-items: flex-start;
  }
  .coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__inner .name-container__link {
    display: flex;
    gap: 4px;
    align-items: baseline;
    max-width: 132px;
  }
  .coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__inner .name-container__link .name-container__id {
    display: block;
  }
  .coinmarketcap table.coinmarketcap-summary tbody tr td.column-name .name-container .name-container__inner .name-container__link .name-container__symbol {
    max-width: unset;
    overflow: visible;
    font-size: 14px;
    font-weight: 100;
    color: #8092AD;
  }
}
.coin-details .cmc-details-echart {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0 20px;
  grid-template-areas: "coin-main-infos" "coin-chart" "coin-buy" "coin-infos";
}
.coin-details .cmc-details-echart .coin-main-infos {
  grid-area: coin-main-infos;
}
.coin-details .cmc-details-echart .coin-buy {
  grid-area: coin-buy;
}
.coin-details .cmc-details-echart .coin-infos {
  grid-area: coin-infos;
}
.coin-details .cmc-details-echart .coin-chart {
  grid-area: coin-chart;
}

@media (min-width: 600px) {
  .coin-details .cmc-details-echart {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "coin-main-infos coin-chart" "coin-buy coin-chart" "coin-infos coin-chart";
  }
  .coin-details .cmc-details-echart .coin-main-infos,
  .coin-details .cmc-details-echart .coin-buy,
  .coin-details .cmc-details-echart .coin-infos {
    max-width: 368px;
  }
}
.coin-chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coin-chart .charts-container {
  position: relative;
  width: 100%;
  height: 100%;
  flex-grow: 1;
}
.coin-chart .charts-container .coin-charts,
.coin-chart .charts-container #coin-chart-error {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.coin-chart .charts-container .coin-charts {
  position: relative;
  min-height: 320px;
}
.coin-chart .charts-container #coin-chart-error {
  position: absolute;
  z-index: 10;
  background-color: rgba(24, 29, 40, 0.9);
  color: #8092AD;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  display: none;
}
.coin-chart .charts-container #coin-chart-error .error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #8392A5;
}
.coin-chart .chart-options {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.coin-chart .chart-options > div {
  display: flex;
  align-items: center;
  background-color: #212A3B;
  border-radius: 4px;
  padding-left: 2px;
  padding-right: 2px;
}
.coin-chart .chart-options > div span {
  padding: 8px 12px;
  margin: 4px 2px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: #F9F9F9;
  border-radius: 4px;
}
.coin-chart .chart-options > div span:hover, .coin-chart .chart-options > div span.active {
  background-color: #3B4B63;
}
.coin-chart .chart-options > div span.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.coin-chart .chart-options > div.chart-type span svg path {
  stroke: #8092AD;
  background-color: #3B4B63;
}
.coin-chart .chart-options > div.chart-type span.active, .coin-chart .chart-options > div.chart-type span:hover {
  background-color: #3B4B63;
}
.coin-chart .chart-options > div.chart-type span.active svg path, .coin-chart .chart-options > div.chart-type span:hover svg path {
  stroke: #F9F9F9;
}
.coin-chart #coin-candlestick-week {
  min-height: 400px;
}

@media (min-width: 600px) {
  .coin-chart .charts-container .coin-charts {
    position: absolute;
  }
}
.coin_container .jdc-breadcrumb {
  margin: 16px 0 0 0;
}
.coin_container .jdc-breadcrumb span, .coin_container .jdc-breadcrumb a {
  color: #8092AD;
}
.coin_container .jdc-breadcrumb a:hover {
  color: #04B2D9;
}
.coin_container .jdc-breadcrumb span.breadcrumb_last {
  color: #F9F9F9;
}

section.cmc > .columns {
  margin-left: 0;
  margin-right: 0;
}
section.cmc > .columns .column {
  padding: 0;
}

.coingecko {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  color: #8092AD;
}
.coingecko span {
  padding-right: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}
.coingecko .coingecko-button {
  width: 160px;
  height: 28px;
  display: block;
  background-image: url("../assets/icons/coingecko-4.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.coingecko .coingecko-button:hover {
  opacity: 0.9;
}

@media only screen and (min-width: 768px) {
  section.cmc {
    margin: 32px auto;
  }
}
.column.cmc-column {
  padding: 0 8px;
}

.column.cmc-column-title {
  padding: 0;
}
.column.cmc-column-title .collapsible-content {
  background-color: #212A3B;
  border-radius: 0 0 5px 5px;
  padding: 24px 12px;
}
.column.cmc-column-title .collapsible-content.cmc-history__content, .column.cmc-column-title .collapsible-content.cmc-history__content, .column.cmc-column-title .collapsible-content.cmc-infos__content, .column.cmc-column-title .collapsible-content.tradingview-widget-container {
  padding: 0;
}
.column.cmc-column-title .collapsible-content .column {
  padding: 8px;
}
.column.cmc-column-title .collapsible-content .column p {
  margin-top: 8px;
}
.column.cmc-column-title .collapsible-content h2, .column.cmc-column-title .collapsible-content h3 {
  border-radius: 5px 5px 0 0;
}
@media only screen and (min-width: 768px) {
  .column.cmc-column-title:first-child {
    margin-right: 24px;
  }
  .column.cmc-column-title.is-half:last-child {
    width: calc(50% - 24px);
  }
  .column.cmc-column-title.is-one-third:last-child {
    width: calc(33.33% - 24px);
  }
}

@media only screen and (max-width: 768px) {
  .main_container .content .cmc .cmc-column-title {
    margin-bottom: 32px;
  }
  .main_container .content .cmc .cmc-column-title h2, .main_container .content .cmc .cmc-column-title h3 {
    position: relative;
    padding: 12px 48px;
  }
  .main_container .content .cmc .cmc-column-title h2::after, .main_container .content .cmc .cmc-column-title h3::after {
    position: absolute;
    top: calc(50% - 2px);
    left: 92%;
    content: "";
    border: solid white;
    border-width: 0 2px 2px 0;
    cursor: pointer;
    padding: 5px;
    transform: rotate(-135deg);
    transition: all 200ms ease-in-out;
  }
  .main_container .content .cmc .cmc-column-title.collapsed .collapsible-content {
    max-height: 0;
    padding: 0 8px;
  }
  .main_container .content .cmc .cmc-column-title.collapsed h2.cmc-gradient, .main_container .content .cmc .cmc-column-title.collapsed h3.cmc-gradient {
    background: #212A3B;
  }
  .main_container .content .cmc .cmc-column-title.collapsed h2::after, .main_container .content .cmc .cmc-column-title.collapsed h3::after {
    transform: rotate(45deg);
    top: calc(50% - 7px);
  }
  .collapsible-content {
    max-height: 100%;
    overflow: hidden;
  }
}

/*# sourceMappingURL=style.css.map */
