.report-step-container{
    position: absolute;
    top: 0;
    left: 50%;
    width: 750px;
    max-width: 95%;
    transition: .5s;
    transform: translateX(100vw);
    overflow: auto;
    padding: .5rem;
    display: flex;
    justify-content: stretch;
    height: 100%;
    opacity: 0;
}
.report-step-container.active{
    transform: translateX(-50%);
    opacity: 1!important;
}
.report-step-container.completed{
    transform: translateX(-100vw);
}

.report-step-indicator{
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}
.report-step-indicator-dot{
    display: block;
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50rem;
    background-color: #C0C2C333;
    margin: 0 .5rem;
    transition: .25s;
}
.report-step-indicator-dot.active{
    background-color: #E5B80B;
}
