/* ----------------------------
  BTC Profit → Hashrate Widget
---------------------------- */

:root {
  --btc-profit-bg: #1d1e20;
  --btc-profit-primary: #f0ba33;
}

.btc-pth-card {
  color: #ffffffcc;
}

.btc-pth-card label {
  font-size: 20px;
  margin-bottom: 8px;
}

.btc-pth-card .btc-box-input {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.btc-pth-card input[type="range"] {
  background-color: #111;
  height: 8px;
  border-radius: 8px;
  -webkit-appearance: none;
  position: relative;
  padding: 0 !important;
  cursor: grab;
}


.btc-pth-card input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 3px solid #1d1e20;
  border-radius: 50%;
  transition: all 0.2s ease;
  outline: none;
  margin-top: 2px;
  cursor: grab;
}

.btc-pth-card input[type="range"]::-moz-range-thumb {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 3px solid #1d1e20;
  border-radius: 50%;
  outline: none;
  cursor: grab;
  transition: all 0.2s ease;
}

.btc-pth-card .btc-box-input div {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px;
}

.btc-pth-card .btc-box-input .btc-val {
  font-size: 45px;
  font-weight: 800;
  margin-right: 10px;
  color: #fff;
  line-height: 45px;
  padding-left: 60px;
  background-image: url('../images/btc.svg');
  background-size: 45px;
  background-position: left center;
  background-repeat: no-repeat;

}

.btc-pth-card .btc-path-box-price {
  display: flex;
  flex-direction: column;
  margin-right: 0;
}

.btc-pth-card .btc-path-box-price div {
  margin-top: 0;
}

.btc-pth-card .btc-box-input .btc-pth-val {
  margin-right: 10px;
}

.btc-pth-card .btc-pth-slider {
  width: 100%;
  margin: 20px 0;
  cursor: pointer;
  z-index: 5;
  pointer-events: auto;
  touch-action: pan-y;
}


.btc-pth-card .btc-hashrate {
  font-size: 20px;
}

@media screen and (max-width:600px) {
  .btc-pth-card .btc-box-input {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .btc-pth-card .btc-path-box-price {
    flex-direction: row;
    justify-content: space-between;
  }
  .btc-pth-card .btc-path-box-price div:last-child{
    margin-left: 20px;
  }
}