.cr-ct-section-separator {
  @root-variable: .cr-ct-section-separator;

  display: flex;
  justify-content: flex-start;
  align-items: center;

  &&--default {
    @{root-variable}__label {
      color: @theme-secondary-base-color;
    }
    @{root-variable}__separator {
      background: @theme-secondary-base-color;
    }
  }

  &&--primary {
    @{root-variable}__label {
      color: @theme-secondary-base-color;
    }
    @{root-variable}__separator {
      background: @theme-secondary-base-color;
    }
  }

  &&--dark {
    @{root-variable}__label {
      color: white;
    }
    @{root-variable}__separator {
      background: white;
    }
  }

  &&--light {
    .cr-ct-section__label {
      color: @theme-secondary-base-color;
    }
    .cr-ct-section__separator {
      background: @theme-secondary-base-color;
    }
  }

  &__label {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
  }

  &__separator {
    flex: 1;
    height: 1px;
    background: @theme-secondary-base-color;
    margin-left: 16px;
    max-width: 90px;
    width: 100%;
  }
}
