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

html, body, .row {
    height: 100%;
    margin: 0;
}

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

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

.add-data {
    width: 240px;
    height: 140px;
    position: fixed;
    bottom: 0px;
    background: #79797970;
    right: 0px;
    padding: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    margin-bottom: 40px;
    border-radius: 3px;
    z-index: 1000;
}

.add-data > .label {
    font-size: 12px;
    margin: 10px 0px 15px 0px;
    text-transform: uppercase;
    color: #1d1d1d;
}

.add-data-form {
    width: 200px;
    display:flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.add-data-form > input {
    margin-bottom: 5px;
    width: 100%;
    border: none;
    height: 20px;
    padding: 4px;
}

.add-data-form > button {
    width: 90px;
}
