/*
Steps styles
*/
.steps-container .step {
    box-shadow: 10px 0px 25px #565656;
    height: fit-content;
}

.steps-container .step .step-text {
    transition: 200ms;
    font-size: 8px;
    width: min-content;
    margin: 0.5em 0em 0.5em 1.9em
}

.steps-container .step:hover .step-text {
    font-weight: bold;
}

.steps-container .step a {
    display: flow-root;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
}

.steps-container .step a:focus {
    outline: none;
}

.steps-container .step-number {
    position: absolute;
    right: 0;
    top: 0;
    background-color: white;
    font-weight: bold;
    border-radius: 100%;
    font-size: 15px;
    width: 23px;
    height: 23px;
    text-align: center;
    margin: 0.45em 0.2em 0 0;
}

@media (min-width: 992px) {
    .steps-container .step .step-text {
        font-size: 13px;
        width: auto;
        margin: 1em 2em 1em;
    }

    .steps-container .step-number {
        margin: 0.2em 0.3em 0 0;
        font-size: 23px;
        width: 35px;
        height: 35px;
    }

    .arrow-right {
        right: -22px !important;
        border-top-width: 23px !important;
        border-bottom-width: 23px !important;
        border-left-width: 23px !important;
    }
}

.arrow-right {
    position: absolute;
    top: 0;
    height: 0;
    right: -16px;
    border-top-width: 16px;
    border-top-style: solid;
    border-top-color: transparent;
    border-bottom-width: 16px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    border-left-width: 16px;
    border-left-style: solid;
}