
/* Set footer sticky at the bottom */
html,
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body > footer {
    margin-top: auto;
}

/* gradient
   url: https://coolors.co/gradient-maker/9bafd9-103783?position=0,100&opacity=100,100&type=linear&rotation=180
*/
.base-gradient {
    background: hsla(221, 45%, 73%, 1);

    background: linear-gradient(180deg,  hsla(220, 78%, 29%, 1) 0%,hsla(221, 45%, 73%, 1) 100%);

    background: -moz-linear-gradient(180deg,  hsla(220, 78%, 29%, 1) 0%,hsla(221, 45%, 73%, 1) 100%);

    background: -webkit-linear-gradient(180deg,  hsla(220, 78%, 29%, 1) 0%,hsla(221, 45%, 73%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#9bafd9", endColorstr="#103783", GradientType=1 );
}


.center-alert {
    position: fixed!important;
    left: 40%;
    top: 30%;
    z-index: 100;
}

#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:1;
    display:none;
}

#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -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); }
}

.nav-link {
    text-decoration: underline;
}