html {
    font-size: 12px;
}

.options {
    position: relative;
    display: flex;
    justify-content: center;
    min-width: 530px;
}

.card {
    position: relative;
    margin: 0 2px;
}

.card-body {
    padding: 0 2px;
    overflow: hidden;
    max-height: 50px;
}

.card-header {
    text-align: center;
    padding: 4px;
    color: white;
    background: #24282D;
    margin: 0;
}

label {
    margin: 0px;
    font-size: 12px;
}

.grid-input {
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: lightgray;
    width: 40px;
}

.chart-divs {
    position: relative;
    height: calc(100% - 100px);
    width: 100%;
    margin-top: 2px;
}

.bar-charts {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    height: 40%;
    width: 100%;
}
.bar-card {
    position: relative;
    width: calc(50% - 2px);
    height: 100%;
    margin: 0 2px;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.loader {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #24282D;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

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

.chart {
    width: 100%;
    height: calc(100% - 20px);
}

.chart2 {
    width: calc(100% - 4px);
    height: 60%;
}

.filter-ct {
    font-size: 14px;
}

.no-filter-msg {
    text-align: center;
    font-size: 18px;
    margin-top: 13px;
}

.filters-list {
    list-style-type: disc;
    margin: 4px 20px;
    padding: 0;
    font-size: 12px;
}
#im-card {
    min-height: 70px;
}
#im-card > ul > li:hover {
    text-decoration: line-through;
    cursor: pointer;
    color: red;
}