.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border: 4px solid;
    border-top: 4px solid #5bb1b1;
    border-right: 4px solid white;
    border-bottom: 4px solid #5bb1b1;
    border-left: 4px solid white;
    width: 36px;
    height: 36px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

.ie-notif {
    display: none;
    text-align: center;
    font-family: Verdana, sans-serif;
}

.ie-notif h1 {
    color: #5bb1b1;
    text-align: center;
}

.ie-notif li {
    list-style: none;
    padding-bottom: 1rem;
}
