﻿
.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    z-index: 2;
}

.progress {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    background-color: #198754;
    z-index: -1;
    transition: width 0.3s;
}

.step-circle {
    width: 50px;
    height: 50px;
    background-color: var(--bg-color-beige-dark);
    border: 3px solid black;
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    transition-delay: 0s;
}

    .step-circle:after {
        content: none;
        transition: all ease 1s;
        transition-delay: 1s;
    }

    .step-circle.active-step {
        background-color: var(--bg-color-beige-dark);
        border: 3px solid #198754;
        color: black;
        transition-delay: 0.2s;
    }

    .step-circle:nth-last-child(1 of .active-step) {
        border-color: var(--bg-color-beige-dark);
        background-color: #1A1A1A;
        color: var(--bg-color-beige-dark);
    }

        .step-circle:nth-last-child(1 of .active-step):after {
            content: '';
            position: absolute;
            top: 37px;
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 20px solid var(--bg-color-beige-dark);
            clear: both;
            z-index: -1;
            visibility: hidden;
            opacity: 0;
            animation: showAfter 0.5s forwards;
            animation-delay: 0.3s;
        }

@keyframes showAfter {
    to {
        visibility: visible;
        opacity: 1;
    }
}

.request-container {
    padding: 25px;
    min-height: 60dvh;
    border: 1px dashed;
    position: relative;
}

#step-carousel {
    margin-top: 15px;
    min-height: 400px;
}

.carousel {
    position: relative;
    /* filter: drop-shadow(0 0 10px #fff7);
                                                    -webkit-filter: drop-shadow(0 0 10px #fff7); */
    perspective: 100px;
}

.carousel-item {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    background-color: var(--bg-color-beige-dark);
    counter-increment: item;
    min-height: 60dvh;
    padding: 20px;
}

@media(max-width:425px) {
    .request-container {
        padding: 0;
        border: 0;
    }

}

