/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: local('Roboto Thin'), local('Roboto-Thin'), url(Roboto100.woff2) format('woff2'), url(Roboto100.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Roboto-Light'), url(Roboto300.woff2) format('woff2'), url(Roboto300.woff) format('woff');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(Roboto400.woff2) format('woff2'), url(Roboto400.woff) format('woff');
}

  

body {
    height: 100%;
    position: fixed;
    overflow-y: scroll;
    margin: 0px;
    padding: 0px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-weight: 300;   
}

.text {
	width: 30px;	
	margin-left: 20px;
	margin-right: 20px;
	border: none;
	font-size: 30px;
}

#equals {
	cursor: pointer;
	border: none;
	background: none;	
	border-style: solid;
	border-color: #007AFF;
	border-width: 2px;
	border-radius: 2px;
	outline: none;
	margin-top: 15px;
	font-size: 30px;
    width: 90px;
    padding-left: 0px;
    padding-right: 0px;
}

#waterTank {
	position: relative;
    top: -50px;
    z-index: 2;
}

#whiteCover {
    position: absolute;
    width: 100%;   
    height: 600px;
    background-color: #ffffff;
    top: 402px;
    z-index: 2;
}

#allArrows {
    position: relative;
    top: -250px;
    margin-left: -15px;
}

#subArrow1 {
    margin-right: -20px;
}

#subArrow2 {
    margin-left: -20px;
}

#tick {
	position: relative;
	z-index: 2;
	width: 39px;	
	margin-right: -12px;
	top: -61px;
}

#arrow1 {
    position: fixed;
    width: 120px;
    z-index: 2;
    opacity: 0;
	top: 280px;
	margin-left: -50px;
	margin-right: -10px;
    -webkit-animation: fade1  1s 4s 1 forwards;
    -moz-animation: fade1 1s 4s 1 forwards;
    -o-animation: fade1 1s 4s 1 forwards;
}

#arrow2 {
    position: fixed;
    width: 120px;
    z-index: 2;
    opacity: 0;
	top: 280px;
	margin-left: -70px;
    -webkit-animation: fade2 1s 4s 1 forwards;
    -moz-animation: fade2 1s 4s 1 forwards;
    -o-animation: fade2 1s 4s 1 forwards;
}

#lineOut {
    position: absolute;
    top: 347px;
    margin-left: -30px;
    width: 50px;
    opacity: 0;
    -webkit-animation: out 1s 6s 1 forwards;
    -moz-animation: out 1s 6s 1 forwards;
    -o-animation: out 1s 6s 1 forwards;
}

#lineIn {
    position: absolute;
    top: 110px;
    margin-left: -140px;
    width: 50px;
    opacity: 0;
	z-index: 2;
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

#arrowTip {
	opacity: 0;
	position: absolute;
	width: 35px;
}

#moveDown {
	margin-top: 80px;	
}

#goDown {
    margin-top: 100px;
}

#water {
    position: relative;
    left: -29px;   
    z-index: 1;
    opacity: 0;
    width: 233px;
    /*-webkit-animation: squeez 2s 1s 1 forwards;
    -moz-animation: squeez 2s 1s 1 forwards;
    -o-animation: squeez 2s 1s 1 forwards;*/
}

#waterTime {
	width:130px;
	height: 43px;
	opacity: .7;
	z-index: -1;
	position: relative;
	margin-left: -122px;	
	margin-bottom: -10px;
}

/*
@-webkit-keyframes squeez {
    0% {
        margin-top: 20px;  
        opacity: 0;
    } 
    100% {
        margin-top: -200px;
        opacity: .65;
    }
}
@-moz-keyframes squeez {
    0% {
        margin-top: 20px;  
        opacity: 0;
    }
    100% {
        margin-top: -200px;
        opacity: 1;
    }
}
@-o-keyframes squeez {
    0% {
        margin-top: 20px;  
        opacity: 0;
    }
    100% {
        margin-top: -200px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    to {
        margin-top: 45px;
    }
}
@-moz-keyframes fadeOut {
    to {
        margin-top: 45px;
    }
}
@-o-keyframes fadeOut {
    to {
        margin-top: 45px;
    }
}

@-webkit-keyframes fade1 {
    0% { 
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fade1 {
    0% { 
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes fade1 {
    0% { 
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fade2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fade2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes fade2 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes out {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes out {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes out {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
*/
#one {
    opacity: 0;
    -webkit-animation: one 2s 1.6s 1 forwards;
    -moz-animation: one 2s 1.6s 1 forwards;
    -o-animation: one 2s 1.6s 1 forwards;
}
/*
@-webkit-keyframes one {
    to {
        opacity: 1;   
    }
}
@-moz-keyframes one {
    to {
        opacity: 1;   
    }
}
@-o-keyframes one {
    to {
        opacity: 1;   
    }
}
*/
#minus {
    opacity: 0;
    -webkit-animation: minus  2s 4.5s 1 forwards;
    -moz-animation: minus 2s 4.5s 1 forwards;
    -o-animation: minus 2s 4.5s 1 forwards;
}
/*
@-webkit-keyframes minus {
    to {
        opacity: 1;   
    }
}
@-moz-keyframes minus {
    to {
        opacity: 1;   
    }
}

@-o-keyframes minus {
    to {
        opacity: 1;   
    }
}
*/

#three {
    opacity: 0;
    -webkit-animation: three 1s 11s 1 forwards;
    -moz-animation: three 1s 11s 1 forwards;
    -o-animation: three 1s 11s 1 forwards; 
}
/*
@-webkit-keyframes three {
    to {
        opacity: 1;   
    }
}
@-moz-keyframes three {
    to {
        opacity: 1;   
    }
}

@-o-keyframes three {
    to {
        opacity: 1;   
    }
}
*/
#minusTwo {
    opacity: 0;
    -webkit-animation: minusTwo 1s 13s 1 forwards;
    -moz-animation: minusTwo 1s 13s 1 forwards;
    -o-animation: minusTwo 1s 13s 1 forwards;
}
/*
@-webkit-keyframes minusTwo {
    to {
        opacity: 1;   
    }
}
@-moz-keyframes minusTwo {
    to {
        opacity: 1;   
    }
}

@-o-keyframes minusTwo {
    to {
        opacity: 1;   
    }
}
*/
.range {
	padding-top: 20px;
	width:	110px;
	
}

input[type=range] {
  -webkit-appearance: none;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 2px;
  cursor: pointer;
  background-color: #007AFF;
}
input[type=range]::-webkit-slider-thumb {
  height: 36px;
  width: 36px;
  border-radius: 18px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -17px;
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.75);
}

#firstRange {
	margin-right: 31px;
}

#secondRange {
	margin-left: 32px;;
}
.bot {
	border-color: #3071a9;
	border-style: solid;	
	border-width: 1.5px;
	border-radius: 0px;
	width: 45px;
	height: 30px;
	background-color: #ffffff;
	outline: none;
	font-size: 22px;
}
.bot span {
	
}	
#addBot {
	margin-right: -3px;	
}

#subBot {
	margin-left: -3px;	
}

.blue1 {
	background-color: #007AFF;
	color: #ffffff;
}

.white1 {
	background-color: #ffffff;	
	color: #000000;
}