/* @import url("https://fonts.googleapis.com/css?family=Major+Mono+Display"); */
:root {
  --Hsl: 140;
}

* {
	margin: 0;
	padding: 0;
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
	box-sizing: border-box;
}

body {
  background: #242424;
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-height: 100vh;
  padding-bottom: 40px;
}

.main-wrap {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	justify-content: space-around;
	margin-bottom: 14px;
	-webkit-box-flex: 1;
	flex: 1;
	touch-action: none;
	margin-top: -42px;
	padding-top: 11px;
}

canvas {
  display: block;
  max-width: 45vw;
  height: auto;
  max-height: 50vh;
  width: auto;
}

h3,
h4 {
	color: #fff;
}

h3 {
  font-size: 14px;
  margin-bottom: 10px;
}

h4 {
	font-size: 14px;
	padding-top: 4px;
	padding-bottom: 4px;
}

.multiplier-wrap {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 15px 0 30px 0;
}
.multiplier-wrap button {
  padding: 4px 16px;
  width: 100px;
  border-radius: 25px;
  border-color: hsl(var(--Hsl), 72%, 78%);
  color: #fff;
  background-color: transparent;
  outline: none;
}
.multiplier-wrap button:hover {
  cursor: pointer;
}
.multiplier-wrap h4 {
  margin-bottom: 4px;
}
.multiplier-wrap h4:last-of-type {
  margin-bottom: 0;
  margin-top: 4px;
}
.multiplier-wrap #mValue {
  font-size: 16px;
}

.slideContainer {
  position: relative;
  display: block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 200px;
  line-height: 10px;
}
.slideContainer h4 {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
  position: absolute;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1;
  letter-spacing: 1px;
  bottom: 24px;
  left: 50%;
}
.slideContainer h4 span {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.slideContainer h4 span:not(:first-of-type) {
  margin-right: 10px;
}
.slideContainer--points h4 {
  margin-bottom: 0;
  bottom: -34px;
}
.slideContainer .slider {
  position: relative;
  z-index: 9999;
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  border-radius: 50%;
  background: hsl(var(--Hsl), 72%, 78%);
  outline: none;
  opacity: .8;
}
.slideContainer .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: hsl(var(--Hsl), 72%, 68%);
  border: 2px solid #fff;
  cursor: pointer;
  opacity: 0.9;
}
.slideContainer .slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}

.coolPatterns-wrap {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	flex-wrap: wrap;
	/* [disabled]padding-bottom: 20px; */
	margin-bottom: 25px;
}
.coolPatterns-wrap button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  outline: none;
  margin: 8px;
}
.coolPatterns-wrap button:hover {
  cursor: pointer;
}
@media (max-width: 500px) {
  .coolPatterns-wrap button {
    width: 70px;
    height: 70px;
  }
}
