@font-face {
	font-family: 'MediationFont';
	src: url('../resources/Meditation.woff')  format('woff'),
	url('../resources/Meditation.ttf')  format('truetype');
}

/* Remove number input stuff - Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

/* Remove number input stuff - Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

/*Range input Chrome*/
@media screen and (-webkit-min-device-pixel-ratio:0) {
	input[type='range'] {
		overflow: hidden;
		width: 80px;
		-webkit-appearance: none;
		background-color: #DAD276;
	}

	input[type='range']::-webkit-slider-runnable-track {
		height: 10px;
		-webkit-appearance: none;
		color: #524C37;
		margin-top: -1px;
	}

	input[type='range']::-webkit-slider-thumb {
		width: 10px;
		-webkit-appearance: none;
		height: 10px;
		cursor: ew-resize;
		background: #DAD276;
		box-shadow: -80px 0 0 80px #524C37;
	}

}
/**Range input FF*/
input[type="range"]::-moz-range-progress {
	background-color: #524C37;
}
input[type="range"]::-moz-range-track {
	background-color: #524C37;
}

* {
	user-select: none;
	-moz-user-select: none;
}

html, body {
	height: 100%;
	overflow-y: hidden;
	overflow-x: hidden;
}

body {
	font-family: "MediationFont", Helvetica, sans-serif;
	font-weight: bold;
	color: #524C37;
	background-color: #DAD276;
}

h1 {
	font-size: 4em;
	text-align: center;
	margin: .1em;
}

span, label {
	font-size: 3em;
}

main, div {
	display:flex;
	justify-content: center;
	align-items: center;
}

main {
	flex-direction: column;
	height: 100%
}

div#timer-inputs {
	flex-direction: column;
}

div#timer-inputs > div :first-child {
	width: 1.6em;
	text-align: right;
}

div#timer-inputs > div :last-child{
	width: 1.6em;
}


div#timer-inputs input{
	width: 1.5em;
	font-family: "Courier 10 Pitch", monospace;
	font-size: 2em;
	font-weight: bold;
	color: #524C37;
	background-color: #AE8345;
	margin-left: .2em;
	margin-right: .2em;
}


div#actions > div {
	align-items: center;
	justify-content: center;
	cursor: pointer;
	height: 4em;
	width: 4em;
	margin-left: .2em;
	margin-right: .2em;
}

div#actions > div svg,g {
	height: 3em;
	width: 3em;
	fill: #524C37;
}

div#actions > span#timer {
	font-family: "Courier 10 Pitch", monospace;
	font-size: 3em;
	font-weight: bold;
}

img#bell {
	cursor: pointer;
	max-width: 500px;
	width: 100%;
}

div#volume-input svg {
	height: 1em;
	width: 1em;
	margin-right: .2em;
	fill: #524C37;
}

