/* h1 {
    background-color: #AEDB9F;
    color: #000000;
    text-align: center;
    font-family: "Arial";
} */

.desc {
    display: none;
}

h2 {
    color: #000000;
    font-family: "Arial";
}

h3 {
    color: #000000;
    font-family: "Times New Roman";
    font-size: 20pt;
}

h4 {
    color: #000000;
    font-family: "Times New Roman";
    font-size: 18pt;
}

h5 {
    color: #000000;
    font-family: "Times New Roman";
    font-size: 15pt;
}

h6 {
    color: #000000;
    font-family: "Times New Roman";
}

label {
    font-family: "Times New Roman";
    font-size: 16px;
}

hr {
    border: none;
    height: 1px;
    /* Set the hr color */
    color: #333; /* old IE */
    background-color: #333; /* Modern Browsers */
}

p.error_text {
    color: red;
}

div.metric-table {
    background-color: white;
    width: 100%;
    height: 270px;
    overflow: scroll;
}

div.example-csv {
    background-color: white;
    width: 100%;
    height: 100%;
    overflow: scroll;
}

input.form-fixer {
    padding: 1px;
}

.form-horizontal .form-group input,
.form-horizontal .form-group select,
.form-horizontal .form-group label
 {
    height: 14px;
    line-height: 14px;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #4ecf4f;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

/*Slider*/
.slidecontainer {
    width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px;
    border-radius: 50%;
    background: #5cb85c; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px;
    border-radius: 50%;
    background: #5cb85c; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.file_error_highlight {
    "border": '#FF0000 1px solid',
    "border-radius": '4px';
}