img{
  pointer-events: none !important;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #000000;
	  touch-action: none;
	-ms-touch-action: none;
	-webkit-touch-callout: none;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
			background-color: #434343;
  }
  
  .uc_pc
  {	  
        position: absolute; 
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%);
        width: calc(100vh * 800 / 1280); 
        height: 100vh; 
        background-color: black;"
  }
  
  .uc_mobile
  {
	  width: 100%; height: 100%; margin: auto;
  }

  .cfp{
    position: absolute;
    display: block;
    z-index: 50;
    width: 100%;
    bottom: 0;
    height: 20vh;
    padding-top: 1vh;
    padding-bottom: 1vh;
    font-size: 7vw;
    background-color: #69966a;
    color: white;
    text-align: center;
    cursor: pointer;
    left:0;
  }

  .cfp:hover{
    filter: brightness(125%);
  }

  button {
      background-color: orange;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 12px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      transition: 0.2s;
  }

  .leaderbords{
    display: block;
    color: white;
  }

  .leaderbords h3{
    font-size: 2vh;
  }

  .leaderbord{
    display: inline-block;
    width: 90vw;
    margin-right: 0.5vw;
  }

  .leaderbord_data{
    display: block;
    width: 100%;
    max-height: 50vh;
    overflow-x:hidden;
    overflow-y: scroll;
  }

.leaderbord_data::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.leaderbord_data::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom right, orange 0%, gold 100%);
  border-radius: 5px;
}

.leaderbord_data::-webkit-scrollbar-track {
  background-color: rgb(167, 167, 167);
}

  .leaderbord_data .row{
    display: block;
    background-color: #e69747;
  }

  .leaderbord_data .col{
    display: inline-block;
    width: 10vw;
    text-align: center;
    color: white;
  }

  .col:first-child{
    float:left;
  }

  .col:last-child{
    float:right;
  }

  .leaderbord_data_rows{
    position: relative;
    top: 0px;
    left: 0px;
  }

  .leaderbord_data_rows *{
    pointer-events: none;
  }

  .leaderbord_data_rows > :nth-child(even) {
      background-color: #e4ac74 !important;
  }

  .col img{
    width: auto;
    height: 3vh;
  }

  .col span{
    font-size: 2vh;
  }

  @media (max-width: 433px){
    .col span{
      font-size: 1vh !important;
    }
  }
