#app-mount {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 75px;
}

.step-container {
    background-color: #fff;
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
    padding: 52px 30px 30px 30px;
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    gap: 25px;
}

.success-step {
    padding: 5px;
    border-radius: 999px;
    position: relative;
    left: -5px;
    /* background-color: var(--color-sub); */
}

.success-step::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--color-main);
    border-radius: 999px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.4;
}

.success-step>* {
    position: relative;
    z-index: 4;
}

.step:hover {
    cursor: pointer;
}

.verticalLine {
    height: 20px;
    border-left: 1px solid red;
}

.unsolved {
    opacity: 0.6;
}

.success-step .unsolved{
    opacity: 1;
}

.step-circle {
    width: 35px;
    height: 35px;
    /* border: 2px solid var(--color-main); */
    border-radius: 50%;
    display: grid;
    place-content: center;
    transition: all 350ms;
    transition-delay: 350ms;
}

.circleAnimation {
    animation: scaleCircle 500ms ease-in-out 350ms 1;
}

.flag-icon {
    width: 23px;
    height: auto;
}

.star-icon {
    transform: translateY(-1px);
}

.filledCircle {
    background: #456D6A;
}

.filledCheckmark path {
    fill: #fff !important;
}

.step-circle .checkIcon path {
    fill: #456D6A;
    stroke: #456D6A;
    transition: all 350ms;
    transition-delay: 350ms;
}

.filledCheckmark.flag-icon path {
    stroke: #fff;
}

@keyframes scaleCircle {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.verticalLine {
    height: 0px;
    border-left: 2px solid var(--color-main);
    margin-left: 17px;
    transition: all 350ms;
}

.step-container p {
    color: #456D6A;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    transition: all 350ms;
    transition-delay: 350ms;
}

.step-container p.step-container--title {
    color: #000000;
}

.step-container .goalContainer {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #456D6A;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    gap: 25px;
}

.step-container .goalContainer p {
    color: #fff;
    margin-bottom: 0;
}

.step-container .goalContainer a {
    text-decoration: underline;
    color: #fff;
}

.outerWrap-container {
    position: relative;
    padding: 12px;
    /* background-image: url("https://staging.bipg.de/wp-content/uploads/2023/07/rectangle-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%; */
    -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
}

.outerWrap-container::before,
.outerWrap-container::after,
.content-container::before,
.content-container::after{
    content: '';
    width: 50%;
    height: 50%;
    position: absolute;
    top: 0;
    background-color: var(--color-main);
    z-index: 1;
    display: none;
}

.content-container::before,
.content-container::after{
    width: calc(50% + 12px);
    height: calc(50% + 12px);
    top: auto;
    bottom: -12px;
}

.outerWrap-container::before{
    left: 0;
    border-top-left-radius: 28px;
}

.outerWrap-container::after{
    right: 0;
    opacity: 0.8;
}

.content-container::before{
    left: -12px;
    opacity: 0.4;
}

.content-container::after{
    opacity: 0.6;
    right: -12px;
}

.content-container {
    height: 100%;
    z-index: 2;
    position: relative;
}

.content-container .content-container__inner{
    height: 100%;
    border-top-left-radius: 28px;
    padding: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 9;
    background-color: #fff;
}


.content-container .content {
    margin-top: 25px;
}

.content-container .content h4 {
    color: #456D6A;
    margin-bottom: 30px;
    font-weight: 700;
}

.actions-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75px;
    margin-top: auto;
}

/* .backArrow {
    height: 20px;
} */

.forwardArrow {
    /* height: 20px; */
    transform: rotate(180deg) !important;
}

.forwardArrow:hover,
.backArrow:hover {
    cursor: pointer;
}

.hiddenClass {
    visibility: hidden;
}

.hiddenClassBtn {
    display: none;
}

.actions-container .bewerbenBtn {
    background-color: #456D6A;
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 500ms;
    text-align: center;
}

.actions-container .bewerbenBtn:hover {
    background-color: #709693;
    color: #fff;
    cursor: pointer;
}

.steps-responsive-container {
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

@media (max-width: 962px) {
    #app-mount {
        display: block;
    }

    .step-container {
        display: none;
    }

    .step {
        gap: 0;
    }

    .horizontal-line {
        border-top: 2px solid var(--color-main);
        transition: all 350ms;
    }

    .steps-responsive-container {
        display: flex;
    }

    .hiddenClassBtn {
        display: block;
    }
}

@media (max-width: 768px) {
    .content-container .content-container__inner {
        padding: 20px;
    }

    /* .backArrow,
    .forwardArrow {
        height: 12px;
    } */

    .steps-responsive-container .step-circle {
        width: 30px;
        height: 30px;
    }

    .actions-container {
        margin-top: 50px;
    }

    .star-icon {
        width: 20px;
    }

    .flag-icon {
        width: 20px;
    }

}

@media (max-width: 767px) {
    .actions-container .bewerbenBtn{
        padding-left: 15px;
        padding-right: 15px;
    }

    .actions-container svg{
        width: 40px;
    }
}

@media (max-width: 370px) {
    .steps-responsive-container .step-circle {
        width: 23px;
        height: 23px;
    }

    .star-icon {
        width: 15px;
    }

    .flag-icon {
        width: 15px;
    }

    .checkIcon {
        width: 15px;
    }

}