.circular-numbers {
    position: fixed;
    top: 50%;
    right: 0px;
    max-width: 80px;
    transform: translateY(-50%);
    transition: all 0.5s ease;
    display:none;
  }
  
  .text {
    margin-left: 20px;
    margin-right: 20px;
    display: none;
  }
  
  .selectExpand {
    display: flex;
    align-items: center;
    margin: 10px;
  }
  
  .circle {
    position: relative;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    background-color: #2897cf45;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .selectExpand:hover .circle,
    .selectExpand:focus .circle {
      background-color: #2897cfe7;
    }
  