html {
    font-size: 12px;
}
  
@media only screen and (max-width: 760px) {
    .options {
      justify-content: left !important;
    }
}

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

.card {
    margin: 0 2px;
}

.card-body {
    padding: 6px;
    display: inline-flex;
    border-bottom: solid 1px;
    border-right: solid 1px;
    border-left: solid 1px;
    height: 35px;
}

.inline {
    display: inline-flex;
}

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

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

#chart {
    height: calc(100% - 80px);
    width: 100%;
}

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;
}

.property-container {
    margin: 2px;
  }

.loader {
    position: absolute;
    top: calc(50% - 160px);
    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);
    }
}

.options-wrapper {
    width: 100vw;
    overflow-x: auto;
  }

div::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 5px;
  }
  div::-webkit-scrollbar-track-piece {
    background: #E9ECEF;
    border-radius: 5px;
  }
  div::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
  }
  