#box_btc_prediction {
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border-radius: 12px;
  background-color: #ffffff;
  margin-bottom: 32px;
}

#box_btc_prediction .box_header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#box_btc_prediction .box_header .box_title {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0px;
}

#box_btc_prediction .box_header .box_title p {
  color: var(--color-greyMedium);
}

#box_btc_prediction .box_header .box_price h6 {
  color: var(--color-greyMedium);
}

#box_btc_prediction .box_body {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

#box_btc_prediction .prediction_card {
  width: 190px;
  height: 170px;
  padding: 16px;
  border-radius: 10px;
  border: 1px var(--color-greyLight) solid;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#box_btc_prediction .prediction_card .card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#box_btc_prediction .prediction_card .card_header h6 {
  font-size: 14px;
}

#box_btc_prediction .prediction_card .card_header p {
  font-size: 14px;
  color: var(--color-greyMedium);
}

#box_btc_prediction .prediction_card hr {
  margin: -4px 0px;
}

#box_btc_prediction .prediction_card .card_body {
  display: flex;
  gap: 2px;
  flex-direction: column;
}

#box_btc_prediction .prediction_card .price_to_beat_label {
  font-size: 12px;
  color: var(--color-greyMedium);
}

#box_btc_prediction .prediction_card .price_to_beat_value {
  font-size: 14px;
}

#box_btc_prediction .prediction_card .card_footer p {
  font-size: 12px;
  color: var(--color-greyMedium);
}

#box_btc_prediction .prediction_card .card_footer .progress {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background-color: transparent;
}

@media (max-width: 1300px) {
  #box_btc_prediction {
    flex-direction: column;
    row-gap: 24px;
    padding: 24px;
  }

  #box_btc_prediction .box_header {
    flex-direction: row;
    align-items: start;
  }

  #box_btc_prediction .box_header .box_price {
    text-align: end;
  }

  #box_btc_prediction .prediction_card {
    width: 266px;
    height: 149px;
  }

  #box_btc_prediction .prediction_card hr {
    margin: 4px 0px;
  }

  #box_btc_prediction .prediction_card .card_body {
    gap: 2px;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  #box_btc_prediction {
    margin-bottom: 24px;
    padding: 20px;
  }

  #box_btc_prediction .box_header .box_price h5 {
    font-size: 16px;
  }

  #box_btc_prediction .box_tab {
    display: flex;
    justify-content: space-between;
  }

  #box_btc_prediction .box_tab button {
    background-color: transparent;
    border: 0px;
    border-radius: 8px;
    color: var(--color-greyMedium);
    font-size: 14px;
    padding: 8px 16px;
  }

  #box_btc_prediction .box_tab button.active {
    background-color: var(--color-greyMedium);
    color: var(--color-white);
  }

  #box_btc_prediction {
    row-gap: 16px;
  }

  #box_btc_prediction .prediction_card {
    width: 100%;
    height: 149px;
  }
}

body.dark-mode #box_btc_prediction {
  background-color: var(--color-black);
}

body.dark-mode #box_btc_prediction .box_header .box_title p {
  color: var(--color-greyLightMedium);
}

body.dark-mode #box_btc_prediction .box_header .box_price h6 {
  color: var(--color-greyLightMedium);
}

body.dark-mode #box_btc_prediction .prediction_card {
  border: 1px var(--color-greyDark) solid;
}

body.dark-mode #box_btc_prediction .prediction_card .card_header p {
  color: var(--color-greyLightMedium);
}

body.dark-mode #box_btc_prediction .prediction_card .price_to_beat_label {
  color: var(--color-greyLightMedium);
}

body.dark-mode #box_btc_prediction .prediction_card .card_footer p {
  color: var(--color-greyLightMedium);
}
