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;
}
.bg-blue-custom {
    background-color: rgba(62, 110, 253, 0.5);
}
#openning {
    z-index: 1100;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.85);
}
@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: 992px) {
    .w-25-desktop {
        width: 50% !important;
    }
}
@media (min-width: 1200px) {
    .bg-rouge {
        background-color: #dc3545;
    }
    .no-desktop {
        display: none;
    }
    .w-25-desktop {
        width: 25% !important;
    }
}
.h-100-total {
    height: calc(100vh - 48px) !important;
}
svg.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1);
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.stroke-still {
    stroke: #232323;
}

.stroke-animation {
    -webkit-animation: stroke-spacing 1.2s ease-in, stroke-color 4.8s linear;
    animation: stroke-spacing 1.2s ease-in, stroke-color 4.8s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

@-webkit-keyframes stroke-spacing {
    0% {
        stroke-dasharray: 0 200;
    }
    45% {
        stroke-dashoffset: 0;
        stroke-dasharray: 200 200;
    }
    90% {
        stroke-dashoffset: -200;
        stroke-dasharray: 200 200;
    }
    100% {
        stroke-dashoffset: -200;
        stroke-dasharray: 200 200;
    }
}

@keyframes stroke-spacing {
    0% {
        stroke-dasharray: 0 200;
    }
    45% {
        stroke-dashoffset: 0;
        stroke-dasharray: 200 200;
    }
    90% {
        stroke-dashoffset: -200;
        stroke-dasharray: 200 200;
    }
    100% {
        stroke-dashoffset: -200;
        stroke-dasharray: 200 200;
    }
}

@-webkit-keyframes stroke-color {
    0%  { stroke: #3498DB; }
    24% { stroke: #643232; }
    25% { stroke: #327864; }
    49% { stroke: #327864; }
    50% { stroke: #32326e; }
    74% { stroke: #32326e; }
    75% { stroke: #78325a; }
    99% { stroke: #78325a; }
}

@keyframes stroke-color {
    0%  { stroke: #3498DB; }
    24% { stroke: #643232; }
    25% { stroke: #327864; }
    49% { stroke: #327864; }
    50% { stroke: #32326e; }
    74% { stroke: #32326e; }
    75% { stroke: #78325a; }
    99% { stroke: #78325a; }
}

#chart {
    width: 100%;
    margin: 35px auto;
}
.hover-tr {
    cursor: pointer !important;
    transition-duration: 100ms !important;
}
.hover-tr:hover {
    background-color: rgba(62, 110, 253, 0.5) !important;
}
