* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.rightColumn
{
    float: left;
    width: 60%;

}

.leftColumn
{
    float: left;
    width: 40%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.rescale_button
{
    margin-left: 150px;
    margin-top: 7px;
}

.radius_control
{
    background-color: #e9e9e9;
    border: 1px solid #ddd;
    z-index: 0;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}


.slideGridItem
{
    font-size: 14px;
    text-align: center;
}

.slideGridContainer
{
    display: grid;
    grid-template-columns: 260px;
    padding-left: 10px;
}

.slider {
    margin-top: 6px;
    width: 180px;
    -webkit-appearance: none;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 30px;
    background: #aa0000;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #aa0000;
    cursor: pointer;
}

.anomaly_slider {
    margin-top: 6px;
    width: 420px;
    -webkit-appearance: none;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.anomaly_slider:hover {
    opacity: 1;
}

.anomaly_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 30px;
    background: #aa0000;
    cursor: pointer;
}

.anomaly_slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #aa0000;
    cursor: pointer;
}

body {
    color: #444;
    font: 100%/30px 'Helvetica Neue', helvetica, arial, sans-serif;

    background-color: #434343;
    background-position:  center;
    background-size: cover;
    height: 100%;
}

#module_style_text_area
{
    background: #FFFFFF;
    padding: 1em;
    margin: 1em auto;
    min-height: 300px;
    border-top: 5px solid #aa0000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

#module_style_canvas {
    float: left;
    width: 525px;
    background: #FFFFFF;
    padding: 1em;
    margin: 1em auto;
    min-height: 300px;
    border-top: 5px solid #aa0000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.module_style_controls {
    float: right;
    width: 270px;
    height: 625px;
    min-height: 625px;
    background: #FFFFFF;
    margin: 1em 25px;
    border-top: 5px solid #aa0000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

#module_style_dataACQ {
    background: #FFFFFF;
    margin: 1em 25px;
    border-top: 5px solid #aa0000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
h1 {
    margin-top: 0;
}
img {
    max-width: 100%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#fileDisplayArea {
    margin-top: 2em;
    width: 100%;
    overflow-x: auto;
}

#stats {
    border-collapse: collapse;
    box-shadow: inset 0 1px 0 #fff;
    font-size: 12px;
    line-height: 24px;
    margin: 30px auto;
    text-align: left;
    width: 500px;
    padding-left: 40px;
}
#stats td {border: 1px solid #ddd;}
#stats tr:nth-child(even) {background-color: #e9e9e9;}
#stats tr:hover {background-color: #bbb;}

.ArrowButtons{
    background-color: #aa0000;
    border: none;
    color: white;
    padding-left: 6px;
    padding-right: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 25px;
    height: 25px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;

}

.rotate90 {
    transform: rotate(90deg);
}
.rotate180{
    transform: rotate(180deg);
}
.rotate270{
    transform: rotate(270deg);
}


