body {
    font-family: 'Roboto', sans-serif;
}
.loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

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

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

.bg-blue {
    background-color: #003264;
}
.bg-blue-mod:hover {
    background-color: #002448;
}

a {
    text-decoration: none !important;
}

.h-max-100-custom {
    max-height: calc(100vh - 72.25px) !important;
}
.h-100-custom {
    height: calc(100vh - 72.25px) !important;
}

.bg-blue-dark {
    background-color: #002448;
}

.text-mid-dark {
    color: #b7bbbe;
}
.text-mid-dark:hover {
    color: #dddfe2;
}

@media (max-width: 991.98px) {
    .h-100-custom {
        height: calc(100vh - 151.5px) !important;
    }
    .h-max-100-custom {
        max-height: calc(100vh - 72.25px) !important;
    }
    .container {
        margin-bottom: 10px;
    }
    .no-mobil {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .bg-rouge {
        background-color: #dc3545;
    }
    .no-desktop {
        display: none;
    }
}
