.gwp-progress__wrapper {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: fit-content;
}

.gwp-progress__wrapper .gwp-progress__message {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-family: var(--font-heading-family);
    font-weight: var(--font-heading-weight);
    font-style: var(--font-heading-style);
    text-align: center;
}

.gwp-progress__background {
    width: calc(100% - 60px);
    border-radius: 8px;
    height: 10px;
    position: relative;
}

.gwp-progress__fill {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 0%;
    height: 100%;
    border-radius: 8px;
    transition: width 0.5s 0s ease-in;
}

.gwp-link {
    appearance: none;
    text-decoration: none;
    color: var(--color-base-text);
}

.gwp-link__text {
    font-family: var(--font-body-family);
    font-size: 1.2rem;
    text-align: left;
    text-decoration: underline;
    color: var(--color-base-text);
}