.container-roulette {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translate(-50%, 0);
  }
  
  .container-roulette .spinBtn {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.1em;
    border: 4px solid rgba(0, 0, 0, 0.75);
    cursor: pointer;
    user-select: none;
  }
  
  .container-roulette .spinBtn::before {
    content: '';
    position: absolute;
    top: -28px;
    width: 20px;
    height: 30px;
    background: #fff;
    clip-path: polygon(50% 0%, 15% 100%, 85% 100%);
  }
  
  .container-roulette .wheel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 5px #333, 0 0 0 15px #fff, 0 0 0 18px #111;
    transition: transform 5s ease-in-out;
  }
  
  .container-roulette .wheel .number {
    position: absolute;
    width: 50%;
    height: 50%;
    background: var(--clr);
    transform-origin: bottom right;
    transform: rotate(calc(45deg * var(--i)));
    clip-path: polygon(0 0, 56% 0, 100% 100%, 0 56%);
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
    padding-top: 43px;
    padding-left: 43px;
    padding-bottom: 18px;
    padding-right: 18px;
  }
  
  .container-roulette .wheel .number span {
    position: relative;
    transform: rotate(45deg);
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 5px 2px rgba(0, 0, 0, 0.15);
    font-size: 25px;
  }
  
  .container-roulette .wheel .number span::after {
    /* content: '$'; */
    position: absolute;
    /* font-size: 0.75em; */
    font-weight: 200;
  }
  
  .container-roulette {
      text-align: center;
  }
  
  
  
  @media screen and (max-width: 600px) {
      .container-roulette {
          position: relative;
          width: 250px;
          height: 250px;
          display: flex;
          justify-content: center;
          align-items: center;
      }
  
      .container-roulette .wheel .number span {
          font-size: 20px;
      }
  
      .container-roulette .wheel .number {
          padding-top: 17px;
          padding-left: 17px;
          padding-bottom: 10px;
          padding-right: 10px;
      }
  }
  
