@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./fonts/ubuntu-v14-latin-300.eot");
  src: local("Ubuntu Light"), local("Ubuntu-Light"),
    url("./fonts/ubuntu-v14-latin-300.eot?#iefix") format("embedded-opentype"),
    url("./fonts/ubuntu-v14-latin-300.woff2") format("woff2"),
    url("./fonts/ubuntu-v14-latin-300.woff") format("woff"),
    url("./fonts/ubuntu-v14-latin-300.ttf") format("truetype"),
    url("./fonts/ubuntu-v14-latin-300.svg#Ubuntu") format("svg");
}
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/ubuntu-v14-latin-regular.eot");
  src: local("Ubuntu Regular"), local("Ubuntu-Regular"),
    url("./fonts/ubuntu-v14-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    url("./fonts/ubuntu-v14-latin-regular.woff2") format("woff2"),
    url("./fonts/ubuntu-v14-latin-regular.woff") format("woff"),
    url("./fonts/ubuntu-v14-latin-regular.ttf") format("truetype"),
    url("./fonts/ubuntu-v14-latin-regular.svg#Ubuntu") format("svg");
}
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/ubuntu-v14-latin-700.eot");
  src: local("Ubuntu Light"), local("Ubuntu-Light"),
    url("./fonts/ubuntu-v14-latin-700.eot?#iefix") format("embedded-opentype"),
    url("./fonts/ubuntu-v14-latin-700.woff2") format("woff2"),
    url("./fonts/ubuntu-v14-latin-700.woff") format("woff"),
    url("./fonts/ubuntu-v14-latin-700.ttf") format("truetype"),
    url("./fonts/ubuntu-v14-latin-700.svg#Ubuntu") format("svg");
}

:root {
  --background-color: white;
  --colorpicker-color: #e5e9f0;
  --complementary-color: white;
  --title-color: #2b2f35;
  --text-color: #353941;
  --text-selection: #9bffff;
  --menu-shadow: #eee;
  --default-background-color: #569ad1;
  --colorpicker-select: rgba(0, 0, 0, 0.3);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #13171c;
    --colorpicker-color: #13171c;
    --complementary-color: #13171c;
    --title-color: #dfe1e3;
    --text-color: #c5c7ca;
    --text-selection: #1b5959;
    --menu-shadow: #090c0f;
    --default-background-color: #569ad1;
    --colorpicker-select: rgba(255, 255, 255, 0.8);
  }

  #menu ul li a img {
    filter: invert(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: 0s !important;
  }
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

strong,
em {
  font-weight: normal;
  font-style: normal;
}

::-moz-selection {
  background: var(--text-selection);
}
::selection {
  background: var(--text-selection);
}

#survey {
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 50px;
  left: 0;
  padding: 20px;
  text-align: center;
  width: 100%;
  background: var(--complementary-color);
}
#survey a {
  color: var(--title-color);
}

@keyframes translateup {
  0% {
    transform: translate(0, -20px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes translatediagonal {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-20px, -25px);
  }
}

@keyframes fading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes dotsanimation {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-20px, -25px) rotate(-10deg);
  }
}

@keyframes fadingdotsanimation {
  0% {
    transform: translate(-20px, 30px) rotate(25deg);
  }

  100% {
    transform: translate(0, 5px) rotate(35deg);
  }
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  font-family: "Ubuntu", sans-serif;
  background-color: var(--background-color);
}

/**
 * HEADER
 */
header {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.transition header svg {
  transition: fill 0.7s;
}

.transition #background,
.transition #fading-bubble {
  animation: translateup 1s;
}

header svg,
.page svg:not(.icon),
#bubble {
  fill: var(--colorpicker-color);
  position: absolute;
  transition: fill 0.4s;
  z-index: -1;
}

#background {
  left: 0;
  top: -1vw;
  width: 30vw;
}

#bubble {
  width: 28vw;
  bottom: -20vw;
  left: 15vw;
  opacity: 0.4;
  transform: scale(-0.8, 0.8) rotate(180deg);
}

#fading-bubble {
  width: 30vw;
  bottom: 10vh;
  right: 0;
  opacity: 0.2;
  transform: scale(1, 1) rotate(0deg);
}

#dots {
  width: 10vw;
  bottom: 20vh;
  right: 20vw;
  animation: dotsanimation 10s infinite alternate ease-in-out;
}

#fading-dots {
  width: 17vw;
  bottom: 10vw;
  left: 10vw;
  opacity: 0.5;
  filter: brightness(120%);
  animation: fadingdotsanimation 13s infinite alternate ease-in-out;
}

#fading-big-dots {
  width: 25vw;
  top: 0vw;
  right: 0vw;
  opacity: 0.3;
  animation: fadingdotsanimation 20s infinite alternate ease-in-out;
}

#colorpicker {
  display: inline-block;
  margin-top: 20vh;
  transition: 0.3s transform ease-in-out;
}

.sticky #colorpicker {
  position: fixed;
  top: -59px;
  left: 15px;
  transform: scale(0.3);
  margin: 0;
  z-index: 10010;
}

.slider {
  margin: 40px 15px;
  width: 210px;
}
.slider.blue {
  margin-bottom: 25px;
}

header img {
  width: 80%;
  margin-bottom: -40px;
}

header h1 {
  font-size: 2.4em;
  color: var(--title-color);
}

header h2 {
  color: var(--text-color);
  font-weight: normal;
  margin-top: 10px;
  font-size: 1em;
  transition: color 0.6s;
}

#menu {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 0;
  padding: 2rem 0;
  left: 0;
  width: 100%;
  z-index: 100;
  text-align: center;
  transition: 0.4s;
}

.sticky #menu {
  position: fixed;
  z-index: 10000;
  bottom: initial;
  top: 0;
  left: 0;
  background: var(--background-color);
  box-shadow: 0 0 10px -2px var(--menu-shadow);
}

/* .sticky #menu li:first-child a {
    color: #1b6df0;
    border: 2px solid #1b55f0;
    border-radius: 5px;
    padding: 12px 22px;
    transition: 0.2s;
}
.sticky #menu li:first-child a:hover {
    color: white;
    background: #1b55f0;
    text-decoration: none;
} */

#menu ul {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#menu ul li {
  list-style: none;
}
#menu ul li a {
  text-decoration: none;
  padding: 14px 24px;
  font-size: 1em;
  color: var(--title-color);
}
#menu ul li a:hover {
  text-decoration: underline;
}
#menu #github img {
  width: 1.2rem;
  position: relative;
  bottom: 2.2rem;
}
#menu #discord img {
  width: 1.2rem;
  position: relative;
  bottom: 2rem;
}

#language-select {
  background: var(--complementary-color);
  border: none;
  padding: 10px 5px;
  margin: 0 20px;
  color: var(--title-color);
  font-family: "Ubuntu", sans-serif;
  width: 12vw;
}

.transition .hexacode::before {
  transition: background 0.7s;
}

.hexacode::before {
  content: "";
  display: inline-block;
  position: relative;
  right: 5px;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: var(--colorpicker-color);
  transition: background 0.3s;
}

header .hexacode {
  position: absolute;
  opacity: 0;
  top: 10px;
  left: 31vw;
  color: #555b63;
  font-size: 0.9em;
  transition: opacity 0.2s;
  animation: fading 1s 1s forwards;
}

/**
 * COLORPICKER
 */
.colorpicker-app {
  position: absolute;
  z-index: 1000;
  width: 440px;
  height: 150px;
  background: var(--colorpicker-color);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
  transition: background 0.3s;
}
.mac .colorpicker-app,
.mac .colorsbook-app {
  border-radius: 5px;
}

.colorpicker-app .header {
  display: flex;
  justify-content: space-between;
  margin: 0 2px;
  height: 34px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: move;
}
.dark .colorpicker-app .header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mac .colorpicker-app .header,
.mac .colorsbook-app .header {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.colorpicker-app .header .app-buttons,
.colorsbook-app .header .app-buttons {
  margin-right: -2px;
  display: flex;
  cursor: initial;
}

.mac .colorpicker-app .header .app-buttons,
.mac .colorsbook-app .header .app-buttons {
  margin-right: 20px;
  margin-left: 4px;
  justify-content: center;
  align-items: center;
}

body:not(.mac) .app-buttons .left,
body:not(.mac) .app-buttons .middle,
body:not(.mac) .app-buttons .right {
  position: relative;
  width: 40px;
  height: 100%;
}

.mac .app-buttons .left,
.mac .app-buttons .middle,
.mac .app-buttons .right {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 12px;
  margin: 0 4px;
}

.mac .app-buttons .left {
  background: #f65f57;
  border: 1px solid #f35c54;
}

.mac .app-buttons .middle {
  background: #fabe2f;
  border: 1px solid #f6ba2b;
}

.mac .app-buttons .right {
  background: #41ca41;
  border: 1px solid #45ce45;
}

body:not(.mac) .app-buttons .left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 38%;
  width: 9px;
  border-bottom: 1px solid #000;
}
body:not(.mac).dark .app-buttons .left::before {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

body:not(.mac) .app-buttons .middle::before {
  content: "";
  position: absolute;
  top: 37%;
  left: 37%;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
}
body:not(.mac).dark .app-buttons .middle::before {
  border: 1px solid rgba(255, 255, 255, 0.8);
}

body:not(.mac) .app-buttons .left:hover,
body:not(.mac) .app-buttons .middle:hover {
  background: rgba(0, 0, 0, 0.2);
}
body:not(.mac).dark .app-buttons .left:hover,
body:not(.mac).dark .app-buttons .middle:hover {
  background: rgba(255, 255, 255, 0.2);
}

body:not(.mac) .app-buttons .right::before,
body:not(.mac) .app-buttons .right::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 32%;
  width: 14px;
  height: 0.5px;
  transform: rotate(45deg);
  background: #000;
}
body:not(.mac).dark .app-buttons .right::before,
body:not(.mac).dark .app-buttons .right::after {
  background: #fff;
  height: 0.6px;
}
body:not(.mac) .app-buttons .right::after {
  transform: rotate(-45deg);
}
body:not(.mac) .app-buttons .right:hover {
  background: rgba(232, 17, 35, 0.8);
}

.app-features {
  cursor: initial;
  display: flex;
}

.app-features div {
  height: 100%;
  width: 26px;
  padding: 0 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-features div svg {
  fill: #000;
  stroke: #000;
  opacity: 0.6;
  transition: 0.2s;
}
.dark .app-features div svg {
  opacity: 0.8;
  fill: #fff;
  stroke: #fff;
}

.app-features div:hover svg,
.dark .app-features div:hover svg {
  opacity: 1;
}

.colorpicker-app .app {
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  height: 75%;
}

.colorpicker-app .app .sliders .slider {
  margin: 22px 12px;
}
.colorpicker-app .app .sliders .slider.blue {
  margin-bottom: 18px;
}

.colorpicker-app .noUi-horizontal {
  height: 10px;
}
.colorpicker-app .noUi-horizontal .noUi-handle {
  width: 22px;
  height: 22px;
  left: 20px;
  top: -7px;
}

.colorpicker-app .app .inputs,
.colorpicker-app .app .values {
  margin-bottom: 3px;
}

.inputs input,
.values input {
  width: 40px;
  font-family: "Ubuntu", sans-serif;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 2px;
  display: block;
  margin-bottom: 8px;
  margin-left: 5px;
  font-size: 1.05em;
  font-weight: bold;
  outline: none;
  transition: 0.3s;
}

.dark .inputs input,
.dark .values input {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.values input {
  width: 105px;
  margin-left: 10px;
}

/**
 * FEATURES
 */

#pickerFeat {
  position: absolute;
  z-index: 20000;
  top: 0;
  left: 0;
  width: 78px;
  height: 78px;
  border-radius: 100px;
  cursor: crosshair;
  border: 9px solid var(--colorpicker-color);
}

#colorpicker-dots {
  position: absolute;
  width: 20vw;
  bottom: 5vw;
  right: 0vw;
  opacity: 0.3;
  animation: fadingdotsanimation 13s infinite alternate ease-in-out;
}

/**
 * MAIN PAGE
 */
#main {
  margin-top: 140px;
}

#main h2 {
  color: var(--title-color);
  font-size: 2.4rem;
  margin: 1rem 3rem;
  margin-bottom: 2rem;
  width: 70%;
}

#main p {
  color: var(--text-color);
  font-weight: 300;
  font-size: 1.3rem;
  margin: 1rem 3rem 0 3rem;
  line-height: 2.2rem;
  /* letter-spacing: 0.02rem; */
  width: 70%;
}

#main .page {
  display: flex;
  min-height: 95vh;
}

.page > section {
  position: relative;
  width: 50vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.page > section:first-child {
  align-items: center;
}

.page section aside {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.colors {
  align-items: space-between;
}

.picker-page {
  position: relative;
  overflow: hidden;
  transition: 0.3s background;
}

.picker-page .circle {
  position: absolute;
  top: -25vw;
  left: -30vw;
  width: 50vw;
  height: 55vw;
  border-radius: 100%;
  background: var(--colorpicker-color);
  transition: 0.3s background;
}
.picker-page .circle::after {
  content: "";
  position: absolute;
  bottom: -20vw;
  right: -25vw;
  width: 20vw;
  height: 20vw;
  border-radius: 100%;
  background: var(--colorpicker-color);
  opacity: 0.4;
  transition: 0.3s background;
}

.picker-page .picker-app {
  position: relative;
  width: 130px;
  height: 130px;
  border: 15px solid var(--colorpicker-color);
  border-radius: 100px;
  transition: 0.3s border-color;
  animation: translatediagonal 8s infinite alternate ease-in-out;
}
.picker-page .picker-app::before {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 15px);
  content: "";
  width: 30px;
  height: 2px;
  background: var(--title-color);
  border: 1px solid var(--background-color);
}
.picker-page .picker-app::after {
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 1px);
  content: "";
  width: 2px;
  height: 30px;
  background: var(--title-color);
  border: 1px solid var(--background-color);
}

.picker-page .colorpicker-app {
  z-index: 1;
  right: -180px;
  bottom: 5vh;
  box-shadow: none;
}
.picker-page .colorpicker-app .app {
  height: 100%;
}

.picker-page + section {
  background: var(--complementary-color);
  transition: 0.3s background;
}

.colorsbook-page {
  overflow: hidden;
}

#colorsbook-dots {
  position: absolute;
  width: 40vw;
  bottom: -15vw;
  left: -10vw;
  opacity: 0.1;
  animation: fadingdotsanimation 20s infinite alternate ease-in-out;
}

#colorsbook-bubble {
  position: absolute;
  z-index: -1;
  opacity: 0.7;
}

.colorsbook-app {
  width: 360px;
  height: 400px;
  background: #484d56;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
}

.mac .colorsbook-app {
  border-radius: 5px;
}

.colorsbook-app .header {
  display: flex;
  justify-content: flex-end;
  margin: 0 2px;
  height: 34px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.colorsbook-app .app {
  display: flex;
  align-items: stretch;
  height: calc(400px - 34px);
}

.colorsbook-app .app .categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #3d4249;
  padding: 10px 0;
  width: 72px;
  height: 100%;
}

.colorsbook-app .app .categories div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.8rem;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  margin: 0 4px;
  margin-bottom: 7px;
  background: #6b8790;
}
.colorsbook-app .app .categories div.active {
  border-radius: 18px;
}
.colorsbook-app .app .categories div:last-child {
  width: 58px;
  height: 58px;
  border: 2px dashed #20252e;
  background: none;
}
.colorsbook-app .app .categories div:last-child::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background: #20252e;
}
.colorsbook-app .app .categories div:last-child::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background: #20252e;
}

.colorsbook-app .app .colors {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 5px 15px;
  margin-left: -25px;
  overflow-y: scroll;
  position: relative;
  left: 40px;
}
.colorsbook-app .app .colors div {
  width: 75px;
  height: 75px;
  margin: 5px;
  border-radius: 70px;
  cursor: pointer;
}

#tint-bubble {
  position: absolute;
  width: 30vw;
  bottom: -5vw;
  left: 0;
  opacity: 0.2;
  transform: scale(-1, -1) rotate(60deg);
}

.tint-page .bar {
  display: flex;
  margin: 15px 0;
}

.tint-page .bar div {
  width: 3vw;
  height: 3vw;
  transition: 0.3s background;
}
.tint-page .bar div:first-child {
  border-radius: 5px 0 0 5px;
}
.tint-page .bar div:last-child {
  border-radius: 0 5px 5px 0;
}

.tint-page .bar div {
  background: var(--colorpicker-color);
}

#download-dots {
  position: absolute;
  width: 40vw;
  top: -4vw;
  right: 0vw;
  opacity: 0.3;
  animation: fadingdotsanimation 20s infinite alternate ease-in-out;
}

.page .download {
  align-items: flex-start;
}

.download p {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto !important;
}

.download a#download {
  display: inline-block;
  position: relative;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: 0.2s;
}

.download a#download::before {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  border-radius: 5px;
  background: var(--colorpicker-color);
  transition: 0.3s;
}
.download a#download:hover {
  transform: translateY(-3px);
}
.download a#download:hover::before {
  filter: brightness(80%);
}
body:not(.dark) .download a#download::before {
  filter: brightness(50%);
}
body:not(.dark) .download a#download:hover::before {
  filter: brightness(40%);
}

.download a:not(#download) {
  color: var(--text-color);
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  margin-top: 15px;
}
.download a:not(#download):hover {
  text-decoration: underline;
}

/**
 * CROWDIN
 */
#main #crowdin {
  position: relative;
  width: 100%;
  top: -20vh;
  background: var(--complementary-color);
  text-align: center;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  font-size: 1.2em;
}
#main #crowdin a {
  color: var(--text-color);
}

/**
 * FOOTER
 */
footer {
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background: var(--complementary-color);
  transition: 0.3s background;
}

footer > a {
  filter: saturate(70%);
}

footer #crea-that {
  height: 120px;
  fill: var(--colorpicker-color);
  transition: 0.3s fill;
}

footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer nav p {
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 2.2rem;
}

footer nav a {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px 25px;
}

footer nav a:hover {
  text-decoration: underline;
}

#footer-bubble {
  position: absolute;
  right: -5vw;
  top: -2vw;
  z-index: 0;
  fill: var(--background-color);
  width: 30vw;
}

/**
 * BOX COLORPICKER CSS
 */

.slider {
  transition: opacity 0.4s;
}

.red .noUi-connect {
  background: rgb(255, 87, 57);
}
.green .noUi-connect {
  background: rgb(105, 195, 59);
}
.blue .noUi-connect {
  background: rgb(65, 165, 225);
}

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.noUi-connects {
  overflow: hidden;
  z-index: 0;
  border-radius: 20px;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.transition .noUi-state-tap .noUi-connect,
.transition .noUi-state-tap .noUi-origin {
  transition: transform 1.2s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
.noUi-horizontal {
  height: 15px;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  width: 32px;
  height: 32px;
  top: -9.5px;
  left: 15px;
  box-shadow: inset 0 -2px 3px 0 #f3f3f3;
  border-radius: 20px;
  background: #f8f8f8;
  cursor: pointer;
  outline: none;
}
.noUi-target {
  background: var(--colorpicker-select);
  border-radius: 20px;
  transition: background 0.5s;
}
.dark .colorpicker-app .noUi-target {
  background: rgba(255, 255, 255, 0.7);
}

@media screen and (max-height: 460px) {
  #menu {
    position: relative;
    margin-top: 30px;
  }

  .sticky #menu {
    margin-top: 0;
  }
}

@media screen and (max-width: 1080px) {
  @keyframes fadingdotsanimation {
    0% {
      transform: translate(-20px, -30px) rotate(25deg);
    }

    100% {
      transform: translate(0, -5px) rotate(35deg);
    }
  }

  #fading-big-dots,
  #colorpicker-dots,
  #download-dots {
    right: 10px;
  }

  header h2 {
    padding: 15px;
  }

  #main .page {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10vh;
  }

  .sticky #colorpicker {
    display: none;
  }

  .sticky #menu {
    display: flex;
    justify-content: center;
    padding: 1.4rem 0;
  }

  .page > section {
    width: 100vw;
    min-height: 300px;
    padding: 40px 0;
  }

  .page section h2 {
    text-align: center;
  }

  #main .page:nth-child(2),
  #main .page:nth-child(4) {
    flex-direction: column-reverse;
  }

  .tint-page .bar div {
    width: 8vw;
    height: 6vw;
  }

  .page .download {
    min-height: 0;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }

  .download p {
    align-items: center;
  }

  footer nav p {
    font-size: 1rem;
  }
  footer #crea-that {
    height: 60px;
  }
}

@media screen and (max-width: 850px) {
  footer,
  footer nav {
    flex-direction: column;
  }

  footer #language-select {
    width: 40vw;
    margin-bottom: 20px;
  }

  footer nav p {
    padding: 10px 0;
    font-size: 1.2rem;
  }

  footer #crea-that {
    margin-top: 20px;
    width: 50vw;
    height: auto;
  }
}

@media screen and (max-width: 700px) {
  #menu ul li a {
    padding: 14px;
  }
  #menu #github,
  #menu #discord {
    padding: 4px;
  }

  .colorpicker-app,
  .colorsbook-app {
    transform: scale(0.8);
  }
}


#buy_now {
  margin-top: 100px;
  font-size: 1.2rem;
}

#buy_now_payment {
  line-height: 30px;
  margin-top: 20px;
}

#buy_now img {
  display: inline;
  width: auto;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
}

#mylogo {
  position: absolute;
  width: 200px;
  height: 100px;
  top: 10px;
  left: 100px;
}