*{
	padding: 0;
	margin: 0;
}

html{
	height: 100%;
}

body{
	height: 100%;
	overflow: hidden;

	background-image: url('images/bgUp.png');
}

.main{
	width: 100%;
	height: 55%;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	
	justify-content: center;
	align-items: center;

	justify-content: flex-end;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.tools{
	width: 100%;
	height: 45%;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	
	justify-content: center;
	align-items: center;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.timer{
	font-family: sans-serif;
	font-size: 100px;
	color: white;
}

.button{
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	margin: 0 30px;

	margin-top: 15%;

	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 8px 16px;
	opacity: 0.8;
}

.buttonStart{
	 pointer-events: auto;
}

.button:hover{
	background-color: #ad5e7e;
	opacity: 1;
}

.gear{
	width: 22px;
	height: 22px;
	opacity: 0.8;
}

.buttons{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.gearButton{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.parentOfTools{
	position: absolute;
	left: 0;
	top: 0;

	width: 300px;
	height: 250px;
	
	background-color: #fff;

	font-family: sans-serif;

	border: 3px solid #ad5e7e;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	justify-content: center;

	-ms-align-items: center;
	align-items: center;
}

.buttonDiv{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	justify-content: space-around;

	margin-top: 30px;
}

.buttonDiv a:hover{
	opacity: 1;
}

.buttonClear{
	font-size: 14px;

	padding: 5px 0;
	text-decoration: none;

	color: #000;
}

.buttonClear:hover{
	text-decoration: underline;
}

.sett{
	font-size: 24px;
}

.buttonApp{
	text-decoration: none;
	color: #fff;
	padding: 5px 10px;

	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;

	opacity: 0.7;
}

.tools{
}

.settings{
	color: #fff;

	width: 400px;
	height: 50%;

	visibility: hidden;
}

.line{

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	justify-content: space-around;
}

.elem{
	width: 100px;
	height: 60px;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;

	justify-content: space-around;

	-ms-align-items: center;
	align-items: center;
}

input[type="text"]{
	width: 40px;
	background-color: transparent;
	border: 1px solid #fff;
	outline: none;

	color: #fff;
	padding: 5px;
}

/*moz*/
input[type='range']::-moz-range-track{
	-webkit-appearance: none;
    border-radius:50px;
    height:4px;
    outline: none;
    background-color: #fff;
    cursor: pointer;
}

/*chrome*/
input[type='range']{
	-webkit-appearance: none;
    border-radius:50px;
    height:4px;
    outline: none;
    background-color: #fff;
    cursor: pointer;
}

input[type='range']::-webkit-slider-thumb{
    -webkit-appearance: none;
    border: 1px solid #fff;
    width: 10px;
    height: 15px;
    background-color: #999;
    border-radius: 5px;
    cursor: pointer;
}

input[type="range"]{
	width: 70px;
}

.range{
	width: 72px;
	height: 27px;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

	-ms-align-items: center;
	align-items: center;
}

input[type="text"].dummyOne, input[type="text"].dummyTwo{
	width: 15px;
	border-left: none;

	pointer-events: none;
}