.cryptoWidget {
  margin: 2rem;
  border-radius: 16px;
  width: 980px;
  height: 100%;
  max-height: 280px;
  position: relative;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cryptoWidget::-webkit-scrollbar {
  display: none;
}

.cryptoWidget section {
  padding: 0;
  height: 100%;
  display: flex;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

.widget {
  border-radius: 16px;
  max-width: 980px;
  overflow: hidden;
}

.widgetContainer {
  position: relative;
  width: 980px;
  height: 280px;
  box-shadow: 0 2px 3px rgb(0 0 0 / 6%);
  background: white;
}

.widgetContainer p {
  font-weight: bold;
  font-size: 16pt;
}

.chart {
  cursor: pointer;
}

.widgetHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px;
  height: 48px;
}

.widgetHeader div {
  display: flex;
  align-items: center;
}

.widgetHeader img {
  height: 48px;
  width: 48px;
}

#dogecoinMarketIcon,
#bitcoinMarketIcon,
#ethereumMarketIcon {
  margin-right: 2px;
  font-size: 14px;
}

#dogecoinMarket,
#bitcoinMarket,
#ethereumMarket {
  font-size: 16px;
  margin-right: 20px;
}


.highLow {
  position: absolute;
  bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.highLow p {
  font-size: 16px;
  font-weight: 600;
  color: rgb(0, 178, 200);
}

.highLow i {
  margin-right: 5px;
  font-size: 16px;
  font-weight: 600;
    color: rgb(0, 178, 200);
}



