﻿html {
    font-size: 14px;
    font-family: Cabin !important;
    -webkit-font-smoothing: antialiased;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin:0;
}

main {
    flex: 1;
    display: flex;
    /*flex-direction: column;*/
}

nav {

}

h1, h2, h3, h4, h5, h6 {
    margin:0;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
}

h3 {
    font-size: 1.75rem;
    font-weight: bold;
}

h4 {
    font-size: 1.5rem;
    font-weight: bold;
}

h5 {
    font-size: 1.25rem;
    font-weight: bold;
}

h6 {
    font-size: 1rem;
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0px;
    border: none;
    text-align: left;
}

th {
    
}

td {
    
}

tr.tr-padding-t-30 td {
    padding-top:30px;
}
tr.tr-padding-b-30 td {
    padding-bottom: 30px;
}
tr.tr-padding-t-10 td {
    padding-top: 10px;
}

tr.tr-padding-b-10 td {
    padding-bottom: 10px;
}

#nbNotifs {
    position: absolute;
    right: -12px;
    top: -8px;
    font-size: 10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}

#drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    transition: all linear 0.25s;
    box-shadow: 0 2px 10px 1px rgba(202, 202, 202, 0.5);
}

#drawer.inactive {
    left: -300px;
    width: 0px;
    overflow: hidden;
}

#overlay.inactive {
    display: none;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
}

#logo {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
}
#logo.inactive {
    display: none;
}

#drop-area {
    border: 2px dashed #ccc;
    padding: 20px;
}

    #drop-area.highlight {
        border-color: purple;
    }