@include export-module('co-workflow-notification-toggle-layout') {
  .co-workflow-notification-toggle{
    .workflow-list-wrapper {
      background: white;
      border: 1px solid #dedede;
      border-radius: 6px;
      display: flex;
      flex-direction: column;
    }

    .workflow-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 10px 15px;
      cursor: pointer;

      &:hover {
        background-color: #f7fafa;
      }

      .icon-wrapper {
        height: 24px;
        width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
      }

      .workflow-icon {
        height: 24px;
        width: 24px;
      }

      .small-icon {
        width: 22px;
        height: 22px;
      }

      .workflow-text {
        display: flex;
        flex-direction: column;

        .workflow-title {
          font-weight: bold;
          color: #171721;
          font-size: 12px;
        }

        .workflow-description {
          color: #8083A3;
          font-size: 12px;
        }
      }
    }

  }
}
