@font-face {
    font-family: 'Gotham Light';
    src: url('../fonts/GOTHAMLIGHT.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Bold';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Black';
    src: url('../fonts/Gotham-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

:root {
    --komunik-pink: #EC4272;
    --komunik-black: #000000;
}

body {
    font-family: 'Gotham Light', sans-serif;
    color: var(--komunik-black);
}

h1 b, h2 {
    font-family: 'Gotham Bold', sans-serif;
}
h1 {
    font-family: 'Gotham Light', sans-serif;
}
h3 {
    font-family: 'Gotham Light', sans-serif;
}
h1 {
    text-align: center;
    margin-bottom: 30px;
} 

h3 {
    font-size: 1.2rem;
}
.btn-primary {
    background-color: var(--komunik-pink);
    border-color: var(--komunik-pink);
}

.btn-primary:hover {
    background-color: darken(var(--komunik-pink), 10%);
    border-color: darken(var(--komunik-pink), 10%);
}

.header-logo {
    text-align: left;
    padding: 0;
    margin-bottom: 40px;
    height: 50px;
    border-bottom: 1px solid #999;
}

.header-logo img {
    width: 200px;
    height: auto;
    float: right;
    margin-top: 10px;
}

.header-logo h1 {
    float: left;
    font-size: 29px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #444;
    position: fixed;
    color: #eee;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}

.chart-container {
    margin: 20px;
    display: inline-block;
    width: 400px;
    height: 300px;
}

#masque {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
}

.dropzone {
    border: 2px dashed #ccc;
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    padding: 50px;
    text-align: center;
    margin: 20px auto 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}
.dropzone.active:hover {
    background: #efefef;
    border-color: #888;
}
.dropzone.dragover {
    background: #e1e1e1;
    border-color: #000;
}
.dropzone img{
    margin-bottom: 15px;
}
.dev{
    font-size: 12px;
    text-align: center;
    color: #555;
}
.infos{
    margin: 25px auto 60px;
    width: 100%;
    max-width: 900px;
    text-align: center;
}        
.info h3{
    font-family: 'Gotham Bold', sans-serif;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
}   
.info a{
    color: #000;
}  
.info{
    font-size: 14px;
    text-align: center;
    background-color: #eee;
    padding: 15px;
    border-radius: 8px;
    margin: 20px;
    display: inline-block;
    width: 80%;
    max-width: 405px;
    background: #fff;
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, .1);
}
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

.container {
    padding: 10px 20px;
    max-width: unset;
    width: 100%;
}

#dropzone.dragover {
    border: 2px dashed #e83168;
    background-color: rgba(232, 49, 104, 0.1);
}

body{
    background-color: #f8f8f8;
}