/*.loader {
    border: 16px solid #f3f3f3; 
    border-top: 16px solid #a40dca /*#f48928;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    position: absolute;
    animation: spin 2s linear infinite;
    z-index: 99999;
    margin: auto auto;

}*/
.required{
    color: #a40dca /*#f48928*/ !important;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.not-active {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: black;
}
.page-item.active .page-link {

    z-index: 1;
    color: #fff;
    background-color: #a40dca /*#f48928*/;
    border-color: #a40dca /*#f48928*/;

}
.page-link{
    color: #a40dca /*#f48928*/; /*f44336*/
}

.custom-control-label{
    cursor: pointer !important;
}
.form-control:focus{
    border-bottom: 1px solid #a40dca /*#f48928*/ !important;
}
#contenue-application{
    margin: 20px !important;
}

/*mettre les colonne à la même hauteur */
.row.equal-cols {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.equal-cols:before,
.row.equal-cols:after {
    display: block;
}

.row.equal-cols > [class*='col-'] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.row.equal-cols > [class*='col-'] > * {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
/*fin mettre les colonne à la même hauteur */