/*Add the Global Styles if needed*/

/* Font Faces - Saans Corporate Typography */
@font-face {
    font-family: 'Saans-Regular';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-Regular-1.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-RegularItalic';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-RegularItalic-1.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-Light';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-Light-1.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-LightItalic';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-LightItalic-1.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-Medium';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-Medium-1.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-MediumItalic';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-MediumItalic-1.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;

}

@font-face {
    font-family: 'Saans-SemiBold';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-SemiBold-1.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-SemiBoldItalic';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-SemiBoldItalic-1.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-Bold';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-Bold-1.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-BoldItalic';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-BoldItalic-1.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-Heavy';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-Heavy-1.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saans-HeavyItalic';
    src: url('/sfsites/c/resource/BSM_Fonts/SaansFont/TipografiaCorporativaSaans/TTF/Saans-HeavyItalic-1.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Apply Saans font globally */
body, html {
    font-family: 'Saans-Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}



/* Define CSS Variables that can pierce Shadow DOM */
:root {
    --progress-marker-bg: #000000;
    --progress-marker-color: #000000;
    --progress-marker-border: var(--dxp-g-root);
    --progress-marker-radius: 25px;
    --progress-marker-height: 22px;
}

/* Try to target via CSS variables and global selectors */
.slds-progress__marker_icon .slds-icon,
c-bsm-styled-progress-indicator .slds-progress__marker_icon .slds-icon {
    fill: currentColor;
    background-color: var(--progress-marker-bg);
    border-radius: var(--progress-marker-radius);
}

.slds-progress__item.slds-is-completed .slds-progress__marker--icon, 
.slds-progress__item.slds-is-completed .slds-progress__marker_icon,
c-bsm-styled-progress-indicator .slds-progress__item.slds-is-completed .slds-progress__marker--icon {
    color: var(--progress-marker-color);
    border-color: var(--progress-marker-border);
    background-color: var(--progress-marker-bg);
    border-radius: var(--progress-marker-radius);
    height: var(--progress-marker-height);
}