.el-listSteps > li a {
    font-weight: 400;
    color: #24292f;
}
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 58px;
    height: 5px;
    top: -2.2rem;
}
.lds-ellipsis div {
    position: absolute;
    top: 35px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    /*background: #fff;*/
    background: #24292f;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}


form .el-input{
    height: 48px;
}

form input.has-error:focus-visible{
    outline-color: #f6816e !important;
}

form .help-block {
    position: relative;
    left: 0;
    top: -1rem;
}

form .help-block.text-danger {
    color: #f6816e !important;
}

#uniModal .modal-dialog {
    max-width: 600px;
    z-index: 9999;
    min-height: 0;
    height: 90vh;
}

#uniModal .modal-content {
    height: calc(100% - 2rem);
    overflow-y: auto;
    display: block;
}

@media (max-width: 991px) {
    .el-risk {
        width: 40px;
        height: 40px;
    }
}

