/* Largely taken from w3schools.com */

body {
    font-family: Roboto;
    background-color: #28292b;
    color: #f7f7f7;
}

h1 {
    font-size: 50px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2196F3;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


/* The slider itself */
.rangeslider {
    margin-top: 1px;
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 600px; /* Full-width */
    height: 15px; /* Specified height */
    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 */
.rangeslider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.rangeslider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    border-radius: 50%;
    background: #2196F3; /* Blue background */
    cursor: pointer; /* Cursor on hover */
}

.rangeslider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    border-radius: 50%;
    background: #2196F3; /* Blue background */
    cursor: pointer; /* Cursor on hover */
}

.button {
    background-color: #2196F3; /* Blue */
    border: none;
    color: white;
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-family: Roboto;
}

.button.soft {
    border-radius: 5px;
}

.button:hover {
    cursor: pointer;
    background-color: #1a7ece;
    -webkit-transition: .4s; /* 0.4 seconds transition on hover */
    transition: .4s;
}


#dropZone {
    border: 2px dashed #bbb;
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    color: #bbb;
    -webkit-transition: .4s; /* 0.4 seconds transition on hover */
    transition: .4s;
}

#drag_wrapper {
    max-width: 400px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

#wrapper {
    overflow: hidden;
}

#original {
    float: left;
    padding-right: 40px;
    padding-bottom: 30px;
}

#mirror {
    float: left;
}

#rightPanel {
    margin-top: -20px;
}

input[type="file"] {
    display: none;
}