@font-face {
    font-family: 'Test';
    src: url('../typeface/Test.ttf');
}

@font-face{
	font-family:'Codex Bold';
	src:url('../fonts/CodexNext-Bold.otf') format("opentype");
}

@font-face{
	font-family:'Codex Medium';
	src:url('../fonts/CodexNext-Medium.otf') format("opentype");
}

@font-face{
	font-family:'Codex Semi';
	src:url('../fonts/CodexNext-SemiBold.otf') format("opentype");
}

@font-face{
	font-family:'Behrens';
	src:url('../fonts/BehrensAntique-Regular.otf') format("opentype");
}



html{
	margin: 0;
	padding: 0;
}
body{
	margin: 0;
	padding:2rem;
}
.c-controlPanel{
	display: flex;
	height: 2rem;
	width:90%;
	margin-left:auto;
	margin-right:auto;
	margin-bottom: 2rem;
	padding-bottom:6rem;
	padding-top:2rem;
	border-bottom: 1px solid #ccc;
	
}

.c-formBlock{
	margin-left: auto;
	margin-right:auto;
	width:28%;
}

.c-formBlock__label{
	font-family: 'Codex Bold';
	letter-spacing:.05em;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 12px;
	padding: 0;
	display: block;
}

.c-formBlock__select{
	width: auto;
	display: block;
	box-sizing: border-box;	
	box-shadow: 0px;
	border: none;
	outline: none;
	--webkit-outline: none;
	margin: 12px;
}

.c-formBlock__range{
	margin-top:12px;
	-webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;  
    background:#E9E9E9;
    outline: none;
    opacity: .8;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.c-formBlock__range::-webkit-slider-thumb{
	-webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%; 
    background: #F15A22;
    cursor: pointer;
}

.c-formBlock__range::-moz-range-thumb{
    width: 12px;
    height: 12px;
    border-radius: 50%;
	border-color:#F15A22;
    background: #F15A22;
    cursor: pointer;
}

.c-typeTester__textarea{
	width: 90%;
	font-size: 108px;
	line-height: 144px;
	display: block;
	padding: 1rem;
	box-sizing: border-box;	
	box-shadow: 0px;
	border: none;
	outline: none;
	--webkit-outline: none;
	--moz-outline: none;
	margin-left:auto;
	margin-right:auto;
	margin-top:60px;
	height: 100%;
	overflow-y: hidden;
	font-family: 'Behrens';
	resize: none;
	border: none;
	padding: 36px 0px;
	height: calc(90vh - 8rem);
	text-overflow: ellipsis;
	
}

.c-typeTester__textarea:focus{
	outline: none;
	border: none;
}