/*--------------------------------------- VARIABLES ---------------------------------------*/
/*--------------------------------------- GLOBAL ---------------------------------------*/
html {
  overflow-x: hidden;
}
body {
  padding: 0;
  margin: 0;
  line-height: 1.75;
  font-size: 125%;
  font-family: Rubik, Helvetica, Arial, sans-serif;
  font-weight: 400;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 1080px) {
  html {
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
  }
  body {
    overflow-x: scroll;
    overflow-y: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
  }
}
a {
  color: inherit;
  /* blue colors for links too */
  text-decoration: inherit;
  /* no underline */
}
.userSelectNone {
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInfiniteAnimation {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.checkeredBackground {
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), white;
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), white;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), white;
  background-repeat: repeat, repeat;
  background-position: 0px 0, 5px 5px;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  -webkit-background-origin: padding-box, padding-box;
  background-origin: padding-box, padding-box;
  -webkit-background-clip: border-box, border-box;
  background-clip: border-box, border-box;
  -webkit-background-size: 10px 10px, 10px 10px;
  background-size: 10px 10px, 10px 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
  transform: scaleX(1) scaleY(1) scaleZ(1);
}
/*--------------------------------------- AWESOME COLOUR TOOL ---------------------------------------*/
.awesomeColourTool {
  display: inline-flex;
  border-radius: 2px;
  margin: 10px;
  background-color: #F0F0F0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media screen and (max-width: 1080px) {
  .awesomeColourTool {
    margin: 0px;
  }
}
.awesomeColourTool .colourToolPanel {
  flex: 2 2 inherit;
  margin: 10px 10px 10px 10px;
  float: left;
  font-size: 0.8rem;
}
.awesomeColourTool .colourToolPanel .colourToolSliders {
  display: grid;
  grid-template-columns: 400px auto;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  margin: 0;
}
@media screen and (max-width: 1080px) {
  .awesomeColourTool .colourToolPanel .colourToolSliders {
    grid-template-columns: 300px auto;
  }
}
.awesomeColourTool .colourToolPanel input.slider {
  width: 100%;
  margin: 0;
  touch-action: none;
}
.awesomeColourTool .colourToolPanel input.slidertext {
  width: 30px;
}
.awesomeColourTool .colourToolInputs > .hexInput {
  width: 80px;
}
/*--------------------------------------- SLIDER ---------------------------------------*/
.awesomeColourTool input[type=range].slider {
  -webkit-appearance: none;
  width: 100%;
  margin: 5.3px 0;
}
.awesomeColourTool input[type=range].slider:focus {
  outline: none;
}
.awesomeColourTool input[type=range].slider::-webkit-slider-runnable-track {
  width: 100%;
  cursor: pointer;
}
.awesomeColourTool input[type=range].slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 19px;
  width: 15px;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
  margin-top: 0px;
}
.awesomeColourTool input[type=range].slider::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  opacity: 0%;
}
.awesomeColourTool input[type=range].slider::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 19px;
  width: 15px;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
}
.awesomeColourTool input[type=range].slider::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.awesomeColourTool input[type=range].slider::-ms-fill-lower {
  background: #646464;
  border: 0.5px solid #010101;
  border-radius: 4.8px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
.awesomeColourTool input[type=range].slider::-ms-fill-upper {
  border: 0.5px solid #010101;
  border-radius: 4.8px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
.awesomeColourTool input[type=range].slider::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 19px;
  width: 15px;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
  height: 8.4px;
}
.awesomeColourTool input[type=range].slider:focus::-ms-fill-lower {
  opacity: 0%;
}
.awesomeColourTool input[type=range].slider:focus::-ms-fill-upper {
  opacity: 0%;
}
/*--------------------------------------- POSITIONING ---------------------------------------*/
.darkOverlay {
  width: 100%;
  height: 100vh;
  text-align: center;
  background-color: #000000;
  margin: 0;
  padding: 0;
}
.nightTitle {
  font-size: 2rem;
  color: #E9E9E9;
  padding-top: 30vh;
  animation: fadeInAnimation ease 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.nightProse {
  font-size: 1.2rem;
  color: #E9E9E9;
  animation: fadeInAnimation ease 10s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.nightInput {
  display: block;
}
.mainScreen {
  width: 100%;
  min-height: 100vh;
  text-align: center;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), white;
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), white;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), white;
  background-repeat: repeat, repeat;
  background-position: 0px 0, 5px 5px;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  -webkit-background-origin: padding-box, padding-box;
  background-origin: padding-box, padding-box;
  -webkit-background-clip: border-box, border-box;
  background-clip: border-box, border-box;
  -webkit-background-size: 10px 10px, 10px 10px;
  background-size: 10px 10px, 10px 10px;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
  transform: scaleX(1) scaleY(1) scaleZ(1);
}
@media screen and (max-width: 1080px) {
  .mainScreen {
    width: 1080px;
    grid-template-columns: auto auto auto auto auto;
  }
}
.mainScreen > .colourColumn {
  min-height: 100vh;
  position: relative;
  background-color: #000000;
}
@media screen and (max-width: 1080px) {
  .mainScreen > .colourColumn {
    min-width: 180px;
  }
  .mainScreen > .colourColumn.selected {
    min-width: 360px;
  }
}
.colourColumn > .colourText {
  position: absolute;
  top: calc(100vh - 9vw);
  width: 100%;
  container-type: inline-size;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
  cursor: pointer;
}
.colourColumn > .colourText > .fg-text {
  font-size: 3vw;
  text-align: left;
  line-height: 1;
  margin: 0;
}
.colourColumn > .colourText > .bg-text {
  font-size: 6vw;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 650px) {
  .colourColumn > .colorText {
    font-size: 36px;
    top: calc(100vh - 36px);
  }
}
.emptyColourTextBox {
  padding-top: 30vh;
}
.thisColourTextBox {
  padding-top: 20vh;
}
.colourTextButton {
  font-size: 1.2rem;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Chrome all / Safari all */
  -moz-user-select: none;
  /* Firefox all */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Likely future */
  animation: fadeInfiniteAnimation 3s ease-out infinite;
}
.emptyColourTextBox > .colourTextButton {
  color: #E9E9E9;
}
.colourTextButton:hover {
  animation: none;
  scale: 1.1;
}
/* --------------------------------------- CANDLE --------------------------------------- */
.holder {
  margin: 0 auto 0;
  width: 100px;
  height: 350px;
  position: relative;
  cursor: pointer;
  animation: fadeInAnimation ease 12s;
}
.holder *,
.holder *:before,
.holder *:after {
  position: absolute;
  content: "";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  left: 0;
}
.candle {
  bottom: 0;
  width: 100px;
  height: 300px;
  border-radius: 150px / 70px;
  box-shadow: inset 20px -30px 50px 0 rgba(0, 0, 0, 0.4), inset -20px 0 50px 0 rgba(0, 0, 0, 0.4);
  background: #190f02;
  background: -moz-linear-gradient(#e48825, #e78e0e, #833c03, #4c1a03 50%, #1c0900);
  background: -webkit-linear-gradient(#e48825, #e78e0e, #833c03, #4c1a03 50%, #1c0900);
  background: -o-linear-gradient(#e48825, #e78e0e, #833c03, #4c1a03 50%, #1c0900);
  background: -ms-linear-gradient(#e48825, #e78e0e, #833c03, #4c1a03 50%, #1c0900);
  background: linear-gradient(#e48825, #e78e0e, #833c03, #4c1a03 50%, #1c0900);
}
.candle:before {
  width: 100%;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #d47401;
  background: #b86409;
  background: -moz-radial-gradient(#eaa121, #8e4901 45%, #b86409 80%);
  background: -webkit-radial-gradient(#eaa121, #8e4901 45%, #b86409 80%);
  background: -o-radial-gradient(#eaa121, #8e4901 45%, #b86409 80%);
  background: -ms-radial-gradient(#eaa121, #8e4901 45%, #b86409 80%);
  background: radial-gradient(#ffef80, #b86409 60%);
  background: radial-gradient(#eaa121, #8e4901 45%, #b86409 80%);
}
.candle:after {
  width: 34px;
  height: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  top: 14px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  background: -moz-radial-gradient(rgba(0, 0, 0, 0.6), transparent 45%);
  background: -webkit-radial-gradient(rgba(0, 0, 0, 0.6), transparent 45%);
  background: -o-radial-gradient(rgba(0, 0, 0, 0.6), transparent 45%);
  background: -ms-radial-gradient(rgba(0, 0, 0, 0.6), transparent 45%);
  background: radial-gradient(rgba(0, 0, 0, 0.6), transparent 45%);
}
.thread {
  width: 6px;
  height: 36px;
  top: -17px;
  left: 50%;
  z-index: 1;
  border-radius: 40% 40% 0 0;
  transform: translateX(-50%);
  background: #121212;
  background: -moz-linear-gradient(#d6994a, #4b232c, #121212, black, #e8bb31 90%);
  background: -webkit-linear-gradient(#d6994a, #4b232c, #121212, black, #e8bb31 90%);
  background: -o-linear-gradient(#d6994a, #4b232c, #121212, black, #e8bb31 90%);
  background: -ms-linear-gradient(#d6994a, #4b232c, #121212, black, #e8bb31 90%);
  background: linear-gradient(#d6994a, #4b232c, #121212, black, #e8bb31 90%);
}
/* --------------------------------------- HIDING --------------------------------------- */
.hidden {
  display: none;
}
.invisible {
  visibility: hidden;
}
