dv-workspace {
  .horizontal-start {
    align-items: flex-start;
  }

  .horizontal-center {
    align-items: center;
  }

  .horizontal-end {
    align-items: flex-end;
  }

  .vertical-start {
    justify-content: flex-start;
  }

  .vertical-center {
    justify-content: center;
  }

  .vertical-end {
    justify-content: flex-end;
  }

  .underline-extrabold {
    position: relative;

    &::after {
      position: absolute;
      content: "";
      background-color: var(--ion-color-primary);
      height: 6px;
      width: 70%;
      left: 50%;
      transform: translate(-50%, 50%);
      z-index: 12;
      bottom: 0;
    }
  }

  .underline-medium-bold {
    position: relative;

    &::after {
      position: absolute;
      content: "";
      background-color: var(--ion-color-primary);
      height: 2px;
      width: 70%;
      left: 50%;
      transform: translate(-50%, 50%);
      z-index: 12;
      bottom: 0;
    }
  }

  .double-underline {
    position: relative;

    &::before {
      position: absolute;
      content: "";
      background-color: var(--ion-color-primary);
      height: 2px;
      width: 80%;
      left: 50%;
      transform: translate(-50%, 50%);
      z-index: 1;
      bottom: 0;
    }

    &::after {
      position: absolute;
      content: "";
      background-color: var(--ion-color-primary);
      height: 2px;
      width: 80%;
      left: 50%;
      transform: translate(-50%, 50%);
      z-index: 1;
      bottom: 5px;
    }
  }
}
