diff --git a/public/apps/configuration/_index.scss b/public/apps/configuration/_index.scss
index 57f25c45d..4914998cb 100644
--- a/public/apps/configuration/_index.scss
+++ b/public/apps/configuration/_index.scss
@@ -41,3 +41,45 @@
.limit-width-input {
max-width: 400px;
}
+
+.security-steps-diagram {
+ height: 114px;
+ position: relative;
+
+ &::before,
+ &::after {
+ content: "";
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ }
+
+ &::before {
+ mask: url("../../assets/get_started_layer_1.svg") center / contain no-repeat;
+ background: $euiColorDarkestShade;
+ }
+
+ &::after {
+ mask: url("../../assets/get_started_layer_2.svg") center / contain no-repeat;
+ background: $euiColorPrimary;
+ }
+
+ @supports not (mask: center / contain no-repeat) {
+ /* stylelint-disable property-no-vendor-prefix */
+ &::before,
+ &::after {
+ -webkit-mask-repeat: no-repeat;
+ -webkit-mask-size: contain;
+ -webkit-mask-position: center;
+ }
+
+ &::before {
+ -webkit-mask-image: url("../../assets/get_started_layer_1.svg");
+ }
+
+ &::after {
+ -webkit-mask-image: url("../../assets/get_started_layer_2.svg");
+ }
+ /* stylelint-enable property-no-vendor-prefix */
+ }
+}
diff --git a/public/apps/configuration/panels/get-started.tsx b/public/apps/configuration/panels/get-started.tsx
index fffa99570..b2c562e35 100644
--- a/public/apps/configuration/panels/get-started.tsx
+++ b/public/apps/configuration/panels/get-started.tsx
@@ -18,7 +18,6 @@ import {
EuiCode,
EuiFlexGroup,
EuiFlexItem,
- EuiImage,
EuiPageHeader,
EuiPanel,
EuiSpacer,
@@ -31,7 +30,6 @@ import { FormattedMessage } from '@osd/i18n/react';
import { flow } from 'lodash';
import { HashRouter as Router, Route } from 'react-router-dom';
import { AppDependencies } from '../../types';
-import securityStepsDiagram from '../../../assets/get_started.svg';
import { buildHashUrl, buildUrl } from '../utils/url-builder';
import { Action, ResourceType, RouteItem } from '../types';
import { API_ENDPOINT_CACHE, DocLinks } from '../constants';
@@ -189,16 +187,7 @@ export function GetStarted(props: AppDependencies) {