.loader_container {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.1);
    z-index: 9;
}

.fade_content {
    opacity: 0.4;
}

#loading {
    width: 50px;
    height: 50px;
    margin: 30px auto;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    background: #141C52;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

.linov-portfolio {
    display: grid;
    grid-auto-flow: row;
    align-items: start;
    grid-gap: 30px;
    grid-template-columns: repeat(5, 1fr);
}

.page-item.selected {
    text-decoration: underline;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.linov-portfolio h3.entry-title a {
    word-break: break-word;
}

.filtre_annuaire_wrapper .input-wrapper {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.filtre_annuaire_wrapper {
    margin-bottom: 30px;
}

.filtre_annuaire_wrapper .btn-wrapper {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width : 1390px) {
    .linov-portfolio {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .linov-portfolio {
        grid-template-columns: repeat(1, 1fr);
    }

    .filtre_annuaire_wrapper .btn-wrapper {
        grid-auto-flow: row;
    }
}
