1. .select {
  2. position: absolute;
  3. top: 0px;
  4. left: 0px;
  5. margin: 0px;
  6. background: #fff;
  7. color: #000;
  8. border: 1px solid #000;
  9. display: inline-block;
  10. max-height: 10px;
  11. padding: 8px;
  12. text-align: left;
  13. overflow-y: hidden;
  14. -webkit-transition: max-height 0.5s;
  15. -moz-transition: max-height 0.5s;
  16. transition: max-height 0.5s;
  17. }
  18. .select:hover {
  19. max-height: 500px;
  20. }
  21. .select b:first-of-type {
  22. line-height: 10px;
  23. display: inline-block;
  24. margin-bottom: 8px;
  25. }
  26. .select b:first-of-type:after {
  27. content: "⮟";
  28. float: right;
  29. margin-left: 10px;
  30. line-height: 10px;
  31. }
  32. .sout {
  33. position: relative;
  34. margin-top: 0px;
  35. height: 26px;
  36. }