body{
  padding: 0;
  margin: 20px 0 20px 0;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  background-color: #100030;
}

header{
  background-color: #100030;
  height: 50px;
  width: 100%;
  color: #fff;
  position: relative;
}
header span{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 30px;
  transform: translate(-50%,-50%);
}
header a {
  color: #fff;
}
header .back{
  position: absolute;
  top: 0px;
  left: 30px;
}
header .button i{
  padding: 50%;
}
header .button{
  width: 30px;
  height: 30px;
  cursor: pointer;
}
header .forward{
  position: absolute;
  top: 0px;
  right: 30px;
}

@media screen and (min-width: 900px) {
  .scroll-wrapper {
    justify-content: center;
    }
}
.stats{
  width: 100%;
  margin-top: 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  text-align: center;
  overflow-y: hidden;
}
.scroll-wrapper {
  padding-bottom: 10px;
  display: flex;
  flex-grow: 1;
  overflow-y: hidden;
}
.stats .can{
  display: inline-block;
  margin-left: 10px;
  height: 75px;
  width: 150px;
  padding: 15px;
  background-color: #100030;
  border: 1px solid #5840ff;
  border-radius: 10px;
  color: #fff;
  position: relative;
  vertical-align: top;
}
.stats .can .header{
  text-align: left;
  font-weight: normal;
  font-size: 12px;
  width: 150px;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.stats .can .data{
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.stats .can .data span{
  text-align: center;
  font-size: 12px;
  font-weight: normal;
}

main{
  width: 100%;
}
main #gd{
  margin: 20px;
}

.help{
  font-size: 10px;
  position: absolute;
  right: 8px;
  top: 8px;
  cursor: pointer;
}
.tooltip { /* Container for our tooltip */
  position: relative;   
  display: inline-block;
}

.tooltip .tooltiptext { /* This is for the tooltip text */
  visibility: hidden;
  background-color: #180048;
 color: white;
 text-align: center;
 padding: 10px;
 border: 1px solid #5840ff;
 border-radius: 10px;  /* This defines tooltip text position */
 position: absolute;
 z-index: 1;
 width: 120px;
 top: 100%;
 left: 50%;
 margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
 margin-top: 15px;
} 
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #5840ff transparent;
}
.tooltip .tooltiptext {
  opacity: 0;
  transition: opacity 1s;
}

.tooltip:hover .tooltiptext {
  opacity: 1;
}

.tooltip:hover .tooltiptext { /* Makes tooltip text visible when text is hovered on */
 visibility: visible;
}

.spin {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #5840ff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
/* Track */
::-webkit-scrollbar-track {
   background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
   background: #bec4c4;
}

/* Handle on hover */
 ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

content{
  width: 100%;
}
.price_list {
  margin: 20px;
  -webkit-columns: 4 180px;
  -moz-columns: 4 180px;
  columns: 4 180px;
  column-gap: 5px; /* Gap between the columns */
}
@media screen and (max-width: 700px) {
  .price_list {
    -webkit-columns: 2 180px;
    -moz-columns: 2 180px;
    columns: 2 180px;
 }
}
.price_header {
  text-align: center;
  font-weight: bold;
  width: 180px;
  padding: 5px 10px 5px 0;
  border-bottom: 1px solid #000;
  color: #fff;
}
.price_card {
  display: flex;
  width: 180px; /* Adjust the width as needed */
  padding: 1px 10px 1px 0;
  color: #fff;
  font-size: 9pt;
}
.price_card.red #time{
  border-bottom: 1px solid #ff0000;
}
.price_card.red #price{
  background-color: #ff0000;
}
.price_card.yellow #time{
  border-bottom: 1px solid #ffa500;
}
.price_card.yellow #price{
  background-color: #ffa500;
}
.price_card.green #time{
  border-bottom: 1px solid #008000;
}
.price_card.green #price{
  background-color: #008000;
}
.price_card.blue #time{
  border-bottom: 1px solid #0000ff;
}
.price_card.blue #price{
  background-color: #0000ff;
}
.price_card.purple #time{
  border-bottom: 1px solid #800080;
}
.price_card.purple #price{
  background-color: #800080;
}
.price_card.blank {
  visibility: hidden;
}
#time {
  flex: 1;
  height: 20px;
  text-align: center;
  border-bottom: 1px solid #008000;
  line-height: 20px;
}
#price {
  flex: 1;
  background-color: #008000;
  text-align: right;
  height: 20px; /* Adjust height as needed */
  border-top-right-radius: 10px; /* Adjust radius as needed */
  border-bottom-right-radius: 10px; /* Adjust radius as needed */
  line-height: 20px;
  padding: 0 10px 0 0;
}

.key-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 20px 0 20px;
}
.key-row .key-container {
  display: flex;
  align-items: center;
}
.key-row .key-container .square {
  width: 10px;
  height: 10px;
  margin-right: 5px;
}
.key-row .key-container .square.red {
  background-color: #ff0000;
}
.key-row .key-container .square.yellow {
  background-color: #ffa500;
}
.key-row .key-container .square.green {
  background-color: #008000;
}
.key-row .key-container .square.blue {
  background-color: #0000ff;
}
.key-row .key-container .square.purple {
  background-color: #800080;
}
               
.key-row .key-container .label {
  font-size: 8px;
  color: #fff;
}