@font-face{
	font-family: 'Inconsolata';
	src: url('Inconsolata-Regular.ttf') format('truetype');
}

body{
	height: 100vh;
	font-family: 'Inconsolata';
	font-size: 20px;
}
.vertical-center{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	min-height: 620px;
}
.wrapper{
	width: 100%;
	max-width: 1120px;
	display: flex;
}
.controls-container{
	width: 40%;
	padding: 27px 30px 100px 0;
	position: relative;
}
#canvas-container{
	width: 60%;
	text-align:center;
	padding: 15px;
}
#canvas{
	border: 1px solid #000;
}
.slider-description{
	margin-bottom: 35px;
}
.button{
	border: 1px solid #000;
	display: inline-block;
	padding: 10px 20px;
	cursor: pointer;
	margin-right: 15px;
}

.hide-canvas{
	overflow: hidden;
	width: 0;
	height: 0;
}
.hide{
	display: none;
}
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 1px;  
    background: #000;
    outline: none;
    margin-bottom: 10px;
    margin-left: -2px;
}

.slider-label{
	display: flex;
	justify-content: space-between;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 1px solid #000;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}
.info{
	position: absolute;
	bottom: 0;
	font-size: 12px;
	padding: 0 30px 50px 0;
	text-align: justify;
}

@media only screen and (max-width: 1130px) {
	.vertical-center{
		display: block;
		width: auto;
	}
	.wrapper{
		flex-direction: column-reverse;
		padding: 10px;
		width: auto;
	}
	.controls-container{
		width: 100%;
	}
	#canvas-container{
		width: 100%;
		margin-bottom: 40px;
	}
	.info{
		padding-bottom: 0;
	}
}