* {
  font-family: 'Open Sans', sans-serif;
}

body {
  /* background-color: #3f345d; */
}

p {
	overflow: visible;
	opacity: 0.7;
}

#settingsDiv {
  width: 760px;
  margin-top: 40px;
  margin-left: 40px;
  overflow: visible;
}

#settingsDiv .settingsHeader {
  width: 100%;
  color: white;
  font-size: 18px;
  margin: 10px 0px;
  letter-spacing: 2px;
}

#settingsDiv .bar {
  width: 100%;
  /*height: 2px;*/
  background-color: rgba(236, 236, 236, 0.295);
  /*margin: 9px 0px;*/
}

.setting {
  color: #e2e2e2;
  width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  position: relative;
}

.setting[data-descrip]:not(.open):hover::after {
  text-align: left;
  white-space: pre-wrap;
  content: attr(data-descrip);
  position: absolute;
  right: 0px;
  top: 50px;
  width: 300px;
  border-radius: 4px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(20, 20, 20, 0.8)));
  background-image: linear-gradient(rgba(20, 20, 20, 0.8) 0 0);
  padding: 12px;
  color: white;
  font-size: 14px;
  z-index: 30;
  pointer-events: none;
}

.setting.select p:hover {
  cursor: pointer;
  -webkit-filter: brightness(140%);
          filter: brightness(140%);
}

.setting.select .s-hidden {
  /*display: none;*/
  opacity: 0;
  padding-right: 10px;
}

.setting.select .new-select2 {
  cursor: pointer;
  color: inherit;
  border: none;
  background: none;
  padding: 0px 12px;
  font-size: 16px;
  margin: auto 0px;
  text-align: right;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}

.setting.select .new-select2 p {
  color: white;
}

.setting.select .new-select2:after {
  content: "";
  margin-top: 1px;
  right: 10px;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(downarrow.png) no-repeat right;
  -webkit-filter: brightness(90000%);
          filter: brightness(90000%);
}

.setting.select .new-select2:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0 0);
}

.setting.select .new-select2:active, .setting.select .new-select2.active {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 0 0);
  z-index: 100;
}

.setting.select .new-option {
  position: absolute;
  right: 0px;
  top: 41px;
  text-align: left;
  /*display: none;*/
  opacity: 0;
  list-style: none;
  border-radius: 4px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(47, 47, 47, 1)));
  background-image: linear-gradient(rgba(47, 47, 47, 1) 0 0);
  z-index: 20;
  padding: 7px 0px;
  /*max-height: 80px;*/
  /* this is small for demonstration purposes */
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 14px;
  z-index: 100;
}

.setting.select .new-option li {
  width: 100%;
  padding: 10px 30px;
}

.setting.select .new-option li:hover {
  cursor: pointer;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 0 0);
  color: white;
}

.setting.sldr {
  margin: auto 0px;
}

.setting.sldr div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto 0px;
  width: 260px;
}

.setting.sldr div .range {
  width: 180px;
  height: 10px;
  margin: auto 0px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: dimgray;
  cursor: pointer;
}

.setting.sldr div .range::-moz-range-thumb {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  -moz-appearance: none;
       appearance: none;
  background-color: #e0e0e0;
}

.setting.sldr div .range::-moz-range-progress {
  background-color: #bebebe;
}

.setting.sldr div .range::-moz-range-track {
  background-color: dimgray;
}

.setting.sldr div .range::-ms-thumb {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  appearance: none;
  background-color: #e0e0e0;
}

.setting.sldr div .range::-ms-fill-lower {
  background-color: #bebebe;
}

.setting.sldr div .range::-ms-fill-upper {
  background-color: dimgray;
}

.setting.sldr div .range::-webkit-slider-runnable-track {
  height: 10px;
  -webkit-appearance: none;
          appearance: none;
  margin-top: -1px;
  overflow: hidden;
}

.setting.sldr div .range::-webkit-slider-thumb {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  -webkit-appearance: none;
          appearance: none;
  background-color: #e0e0e0;
  -webkit-box-shadow: -90px 0 0 90px #bebebe;
          box-shadow: -90px 0 0 90px #bebebe;
}

.setting.sldr div .number {
  width: 52px;
  height: 30px;
  border: 2px solid #999;
  border-radius: 4px;
  background: none;
  color: white;
  font-size: 16px;
  text-align: right;
  padding-right: 5px;
  -moz-appearance: textfield;
}

.setting.sldr div .number:hover {
  border-color: #aaa;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0 0);
}

.setting.sldr div .number:focus {
  border-color: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.3)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.3) 0 0);
  outline: none;
}

.inputBox {
  width: 200px;
  height: 30px;
  border: 2px solid #686868;
  border-radius: 4px;
  background: none;
  color: white;
  font-size: 16px;
  text-align: center;
  /*padding-right: 10px;*/
  -moz-appearance: textfield;
}

.inputBox:hover {
  border-color: #5a5a5a;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0 0);
}

.inputBox:focus {
  border-color: #4b4b4b;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.3)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.3) 0 0);
  outline: none;
}

.setting.sldr div .number::-webkit-inner-spin-button, .setting.sldr div .number::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0px;
}

.setting.toggle {
  margin: auto 0px;
}

.setting.toggle label {
  margin: auto 0px;
  width: 60px;
  height: 30px;
  position: relative;
  display: inline-block;
}

.setting.toggle label span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: dimgray;
  -webkit-transition: .2s;
  transition: .2s;
  border-radius: 4px;
}

.setting.toggle label span:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  margin-top: 3px;
  border-radius: 4px;
  background-color: #e0e0e0;
  -webkit-transition: .2s;
  transition: .2s;
}

.setting.toggle label .checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}

.setting.toggle label .checkbox:checked + span {
  background-color: #bebebe;
}

.setting.toggle label .checkbox:focus + span {
  -webkit-box-shadow: 0 0 1px #bebebe;
          box-shadow: 0 0 1px #bebebe;
}

.setting.toggle label .checkbox:checked + span:before {
  -webkit-transform: translateX(28px);
          transform: translateX(28px);
}
/*# sourceMappingURL=main.css.map */