  .kgsPicker {
      z-index: 9999;
      backdrop-filter: blur(5px);
  }

  .kgsPicker .Pickerlist {
      height: auto;
      min-height: 200px;
      max-height: 500px;
      overflow-y: auto;
      overflow-x: hidden;
      user-select: none;
  }

  .kgsPicker .Pickerlist>div {
      cursor: pointer;
      margin-left: 5px;
      margin-bottom: 15px;
      text-shadow: 0 -2px 0 #6ba5fd, 0 1px 1px #c2cdde;
      box-sizing: border-box;
      font-size: 1.5rem;
      font-family: Arial, Sans-Serif;
      text-decoration: none;
      font-weight: bold;
      color: #0062cc;
      height: 65px;
      line-height: 65px;
      padding: 0 32.5px;
      display: inline-block;
      width: auto;
      min-width: 200px;
      background: linear-gradient(to bottom, #a9dcff 0%, #6bc1ff 26%, #91bdff 100%);
      border-radius: 5px;
      border-top: 1px solid #c8e2d3;
      border-bottom: 1px solid #c2dece;
      top: 0;
      transition: all 0.06s ease-out;
      position: relative;
      box-shadow: 3px 4px 2px black;
  }

  .kgsPicker .Pickerlist>div:visited {
      color: #5ea97d;
  }

  .kgsPicker .Pickerlist>div:hover {
      background: linear-gradient(to bottom, #778eff 0%, #70a3ff 26%, #589bff 100%);
  }

  .kgsPicker .Pickerlist>div:active {
      top: 3px;
      text-shadow: 0 -2px 0 #7f91bb, 0 1px 1px #7faaea, 0 0 4px white;
      color: white;
  }

  .kgsPicker .Pickerlist>div:active:before {
      top: 0;
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.7), 0 3px 9px rgba(0, 0, 0, 0.2);
  }

  .kgsPicker .Pickerlist>div[hide] {
      display: none;
  }

  .kgsPicker .Pickerlist>div:active,
  .kgsPicker .Pickerlist>div[select] {
      background: -webkit-linear-gradient(#77f9ff 0%, #70caff 26%, #58d1ff 100%);
      background: -o-linear-gradient(#77f9ff 0%, #70caff 26%, #58d1ff 100%);
      background: linear-gradient(#77f9ff 0%, #70caff 26%, #58d1ff 100%);
      top: 3px;
      text-shadow: 0 -2px 0 #7f91bb, 0 1px 1px #7faaea, 0 0 4px white;
      box-shadow: 0px 0px;
      color: white;
  }

  .kgsPicker #list>div.item {
      padding: 0;
  }

  input.KGSPicker::-webkit-input-placeholder {
      text-align: center;
  }

  input.KGSPicker:-moz-placeholder {
      /* Firefox 18- */
      text-align: center;
  }

  input.KGSPicker::-moz-placeholder {
      /* Firefox 19+ */
      text-align: center;
  }

  input.KGSPicker:-ms-input-placeholder {
      text-align: center;
  }

  input.KGSPicker {
      cursor: pointer;
      background-color: whitesmoke;
  }

  input.KGSPicker:hover {
      background-color: skyblue;
  }

  @media (max-width: 768px) {
    .kgsPicker .Pickerlist > div {
      margin-left:0;
    }
  }