* {
    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;
}

.dike_control
{
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    z-index: 0;
}

/* Mozilla Firefox Only CSS */
@-moz-document url-prefix()
{
    .radius_control
    {
        margin-top: 356px;
    }
}
/* Edge Only CSS */
@supports (-ms-ime-align:auto)
{
    .radius_control
    {
        padding-left: 10px;
    }
}
/* 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;
}


.slidecontainer {
    width: 100%;
  }
  
  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .slider:hover {
    opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #CC0000;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #CC0000;
    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: 375px;
    padding: 20px;;
    height: 800px;
    min-height: 650px;
    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; width: 50%;}
#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);
}


