.buttonWrapper {
    color: white;
    display: inline-block;
    position: relative;
    width: 64px;

    button {
      padding: 16px 16px;
      display: block;
      width: 64px;
      background-color: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.2);
      position: relative;

      &:hover {
        background-color: rgba(255, 255, 255, 0.3);
      }

      .action {
        position: absolute;
        display: block;
        top: 0;
        bottom: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.1);
        width: 30%;
        padding: 0.5rem;

        &:hover {
          background-color: rgba(255, 255, 255, 0.5);
        }
      }
    }
  }
