.float-left {
    float: left;
}

.float-right {
    float: right;
}

.form-bar {
    height: 50px;
    position: sticky;
    top: 53px;
    z-index: 1;
}

.help-block {
    display: block;
    margin-top: 10px;
    color: red;
}

.help-block-error {
    color: red;
}

.cursor-pointer {
    cursor: pointer !important;
}

.sticky {
    position: fixed;
    top: 63px;
    left: 255px;
    width: calc(100vw - 255px);
    padding: 20px 55px 10px;
    background: white;
    transition: 0.3s;
    z-index: 1;
    box-shadow: 0 4px 5px #888888;
}

#sticky-title {
    background: white;
}

@media only screen and (max-width: 1023px) {
    .sticky {
        width: 100%;
        left: 0;
    }
}

.pagination {
    margin-top: 1rem;
}
.pagination a, .pagination span {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}

.pagination .active {
    background: green;
}

.pagination .active>a {
    color: white;
}

.display-none {
    display: none !important;
}

.card-title{
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid #9e9e9e;
    padding-bottom: 2px;
}

.highcharts-figure, .highcharts-data-table table {
    min-width: 310px;
    max-width: 800px;
    margin: 1em auto;
}

#container {
    height: 400px;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #EBEBEB;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}
.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}
.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}
.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
    padding: 0.5em;
}
.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}
.highcharts-data-table tr:hover {
    background: #f1f7ff;
}