#forma_cto .help-block.with-errors {
    color: red;
    margin-top: 5px;
    font-weight: bold;
}

#forma_cto {
    font-family: var(--m-font) !important;
}

/* loader */
.loader-fm {
    display: none;
    /* bottom: 50em; */
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.loading-fm {
    border: 10px solid #c8c8c8;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-top-color: #c8c8c8;
    border-left-color: #cd1e1f;
    animation: spin 2s infinite ease-in-out forwards;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
