@media screen and (max-width: 991px) {
    /* .external-container-reorder {
        flex-direction: column !important;
    }

    .first-element {
        order: 1 !important;
        text-align: right !important;
        margin-bottom: 1.3em;
    }

    .second-element {
        order: 2 !important;
    } */
}

.container-breadcrumbs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width:280px)
{
    .container-breadcrumbs {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .first-element {
        order: 1 !important;
        text-align: right !important;
    }
    .second-element {
        order: 2 !important;
    }
}

.p-steps ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.p-steps-item {
    flex-basis: calc(50% - 10px) !important;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .p-steps-item {
        flex-basis: calc(33.33% - 10px) !important;
    }
}

@media screen and (min-width: 840px) {
    .p-steps-item {
        flex-basis: calc(15% - 10px) !important;
    }
}