* {
  box-sizing: border-box;
}

html {
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background: #2d2d2d !important;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  z-index: -100;
  background: #2d2d2d !important;
}

#resetBocks {
  margin-left: 20px;
  width: 30px;
  heigh: 100px;
  writing-mode: tb;
  background: grey;
  padding: 0.5rem;
  user-select: none;
  cursor: pointer;
  direction: rtl;
  box-shadow: 0 2px 7px 3px black;
  text-align: center;
}

#resetBocks:hover, #resetBocks:focus {
  box-shadow: 0 2px 2px 1px black;
  background-color: #6c1414;
}

#tools {
  height: 100px;
  width: 100%;
  position: relative;
  top: 0;
  z-index: 900;
  backdrop-filter: saturate(180%) blur(20px);
  background: #2d2d2d !important;
  box-shadow: 0 0 5px 5px black;
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
}

#tools #rgbHexContainer {
  height: 100%;
  position: relative;
  left: 10px;
  width: 670px;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

#tools #rgbHexContainer #rgb-field {
  margin: auto;
  height: 50px;
  display: flex;
  justify-content: space-between;
  width: 165px;
  text-align: center;
  align-self: center;
}

@media screen and (max-width: 350px) {
  #tools #rgbHexContainer #rgb-field {
    display: none;
  }
}

#tools #rgbHexContainer #rgb-field label {
  width: 45px;
  color: darkgrey;
  height: 50%;
  font-size: 1.3rem;
  align-self: center;
  user-select: none;
}

#tools #rgbHexContainer #rgb-field #red {
  font-size: 0.8rem;
  width: 37px;
  height: 50%;
  background-color: #878787;
  border: 1px solid #6d6d6d;
  box-shadow: inset 0 0 2px 2px black;
  border-radius: 0.2rem;
  text-align: center;
  align-self: center;
}

#tools #rgbHexContainer #rgb-field #green {
  font-size: 0.8rem;
  width: 37px;
  height: 50%;
  background-color: #878787;
  border: 1px solid #6d6d6d;
  box-shadow: inset 0 0 2px 2px black;
  border-radius: 0.2rem;
  text-align: center;
  align-self: center;
}

#tools #rgbHexContainer #rgb-field #blue {
  font-size: 0.8rem;
  width: 37px;
  height: 50%;
  background-color: #878787;
  border: 1px solid #6d6d6d;
  box-shadow: inset 0 0 2px 2px black;
  border-radius: 0.2rem;
  text-align: center;
  align-self: center;
}

#tools #rgbHexContainer #hex-field {
  margin: auto;
  height: 50px;
  display: flex;
  justify-content: space-between;
  width: 120px;
  margin-right: 10px;
}

@media screen and (max-width: 350px) {
  #tools #rgbHexContainer #hex-field {
    margin-left: 10px;
  }
}

#tools #rgbHexContainer #hex-field label {
  width: 45px;
  color: darkgrey;
  height: 50%;
  font-size: 1.3rem;
  align-self: center;
  user-select: none;
  margin-left: 4px;
  margin-right: 4px;
}

#tools #rgbHexContainer #hex-field #hexValue {
  font-size: 0.8rem;
  width: 70px;
  height: 50%;
  background-color: #878787;
  border: 1px solid #6d6d6d;
  box-shadow: inset 0 0 2px 2px black;
  border-radius: 0.2rem;
  text-align: center;
  align-self: center;
}

#tools #rgbHexContainer #colorEdit {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 330px;
}

#tools #rgbHexContainer #colorEdit .colorBox {
  box-shadow: inset 0 0 2px 2px black;
  width: 60px;
  height: 60px;
  position: relative;
  margin: auto;
  border: 1px solid #6d6d6d;
  border-radius: 0.3rem;
  background-color: transparent;
  padding: 2px;
  color: #b000ff;
}

#tools #rgbHexContainer #colorEdit .colorBox:hover, #tools #rgbHexContainer #colorEdit .colorBox:focus {
  border-color: black;
}

#tools #rgbHexContainer #colorEdit .colorBox > div {
  background-color: transparent;
  width: 54px;
  height: 54px;
  position: absolute;
  cursor: pointer;
  opacity: 1;
  box-shadow: inset 0 0 1px 1px black;
}

#tools #rgbHexContainer #colorEdit .colorBox > div #col {
  width: 54px;
  height: 54px;
  position: absolute;
  cursor: pointer;
  border: 1px solid black;
  padding: 0;
  margin: 0;
}

#tools #rgbHexContainer #colorEdit .edit {
  position: relative;
  width: 225px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /*> label{
          width:100%;
          text-align: center;
          color: #6d6d6d;
          font-size: 0.9rem;
          align-self: center;

        }*/
  color: #1c0000;
}

#tools #rgbHexContainer #colorEdit .edit #opacity_box {
  display: flex;
  flex-direction: column;
  height: 36px;
}

#tools #rgbHexContainer #colorEdit .edit #opacity_box #opacity_span {
  display: flex;
  width: 90%;
  font-size: 0.8rem;
  color: #767676;
  top: 8px;
  justify-content: space-between;
  margin: 0 auto;
}

#tools #rgbHexContainer #colorEdit .edit #opacity_box #opacityValue {
  display: flex;
  justify-content: space-around;
  height: 8px;
  color: #4c4c4c;
  left: 0;
  top: 20px;
  margin: 5px;
}

#tools #rgbHexContainer #colorEdit .edit #opacity_box #opacity {
  height: 16px;
  margin: 0;
}

#tools #rgbHexContainer #colorEdit .edit #blackWhite_box {
  display: flex;
  flex-direction: column;
  height: 50px;
  display: none;
  justify-content: space-around;
}

#tools #rgbHexContainer #colorEdit .edit #blackWhite_box span {
  display: flex;
  font-size: 0.8rem;
  color: #767676;
  text-align: center;
  top: 8px;
  justify-content: space-between;
  margin: 0 auto;
}

#tools #rgbHexContainer #colorEdit .edit #blackWhite_box input {
  width: 65px;
  height: 35px;
  font-size: 14pt;
  z-index: 1;
  text-align: center;
  border-radius: 0.2rem;
  background-color: #878787;
  border: 1px solid #6d6d6d;
  box-shadow: inset 0 0 2px 2px black;
}

#tools #rgbHexContainer #colorEdit .edit #blackWhite_box #inc-button {
  width: 14.5px;
  cursor: pointer;
  position: absolute;
  right: 8px;
  height: 17px;
  align-content: center;
  border-radius: 0 0.2rem 0 0;
  top: 31px;
  display: block;
  justify-content: space-around;
  flex-direction: column;
  background-color: #878787;
  box-shadow: inset 0 0 1px 1px black;
  z-index: 2;
  text-align: center;
  user-select: none;
}

#tools #rgbHexContainer #colorEdit .edit #blackWhite_box #inc-button:hover {
  background-color: #3e3e3e;
  color: #8e8e8e;
}

#tools #rgbHexContainer #colorEdit .edit #blackWhite_box #dec-button {
  width: 14.5px;
  cursor: pointer;
  position: absolute;
  right: 8px;
  height: 17px;
  font-size: 1.4rem;
  align-content: center;
  border-radius: 0 0 0.2rem 0;
  top: 46px;
  display: block;
  justify-content: space-around;
  flex-direction: column;
  background-color: #878787;
  box-shadow: inset 0 0 1px 1px black;
  z-index: 2;
  text-align: center;
  user-select: none;
  line-height: 1.2rem;
}

#tools #rgbHexContainer #colorEdit .edit #blackWhite_box #dec-button:hover {
  background-color: #3e3e3e;
  color: #8e8e8e;
}

#tools #rgbHexContainer #colorEdit .edit > input {
  align-self: baseline;
  cursor: grab;
  height: 20px;
  margin-top: 25px;
  z-index: 1;
  color: #3e3e3e;
}

#tools #rgbHexContainer #colorEdit .edit > input:hover {
  cursor: grab;
}

#tools #rgbHexContainer #colorEdit .edit > input:focus {
  cursor: grabbing;
}

#tools #closer {
  cursor: pointer;
  position: relative;
  width: 20px;
  height: 100%;
  top: 0;
  right: 5px;
  z-index: 500;
  margin-left: 20px;
  margin-right: 5px;
  padding: 4px;
  background-color: transparent;
}

#tools #closer.open {
  animation: closeCover 1.5s ease-in forwards;
}

#tools #closer .span-1 {
  display: inline-block;
  position: absolute;
  border-radius: 0;
  margin: 0 auto;
  width: .7rem;
  height: .7rem;
  border: 3px solid #8e8e8e;
  border-right: none;
  border-bottom: none;
  transform: rotate(225deg);
  top: 10%;
  animation: push-up-2 1s 0.6s ease-in forwards infinite;
}

#tools #closer .span-2 {
  display: inline-block;
  position: absolute;
  border-radius: 0;
  width: .7rem;
  height: .7rem;
  border: 3px solid #8e8e8e;
  border-right: none;
  border-bottom: none;
  transform: rotate(225deg);
  top: 33%;
  animation: push-up-2 1s 0.8s ease-in forwards infinite;
}

#tools #closer .span-3 {
  display: inline-block;
  position: absolute;
  border-radius: 0;
  width: .7rem;
  height: .7rem;
  border: 3px solid #8e8e8e;
  border-right: none;
  border-bottom: none;
  transform: rotate(225deg);
  top: 55%;
  animation: push-up-2 1s 1s ease-in forwards infinite;
}

#page {
  position: absolute;
  top: 100px;
  width: 100vw;
  height: calc(100vh - 100px);
  display: grid;
  overflow: scroll;
  overflow-x: hidden;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(306, 1fr);
  background-color: #2d2d2d;
  z-index: 1;
}

@media screen and (min-width: 480px) {
  #page {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(255, 1fr);
  }
}

@media screen and (min-width: 640px) {
  #page {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(153, 1fr);
  }
}

@media screen and (min-width: 960px) {
  #page {
    grid-template-columns: repeat(15, 1fr);
    grid-template-rows: repeat(102, 1fr);
  }
}

#page > div {
  cursor: pointer;
  padding-bottom: 100%;
  border: 0.1px solid #2d2d2d;
  background-color: #474747;
  transition: background-color .3s ease;
  user-select: none;
}

#page > div.onHover {
  z-index: 1;
}

#page > div.onHover:hover, #page > div.onHover:focus {
  border: none;
  animation-name: colorHover;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-duration: 0.4s;
}

#page > div.copy {
  z-index: 1;
  animation-name: colorCopy;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-duration: 0.4s;
}

#page > div.onHoverDark {
  z-index: 1;
}

#page > div.onHoverDark:hover, #page > div.onHoverDark:focus {
  border: none;
  animation-name: colorHoverDark;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-duration: 0.4s;
}

#page > div.copyDark {
  z-index: 1;
  animation-name: colorCopyDark;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-duration: 0.4s;
}

#colorField {
  z-index: -1000;
  position: absolute;
}

@keyframes colorHover {
  from {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(19, 19, 19, 0.88);
  }
  to {
    transform: scale(1.3);
    box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.84);
  }
}

@keyframes colorCopy {
  from {
    transform: scale(1.3);
    box-shadow: 0 0 0 0 rgba(19, 19, 19, 0.88);
  }
  30% {
    transform: scale(1.2);
    box-shadow: 0 0 3px 1px rgba(19, 19, 19, 0.88);
  }
  to {
    transform: scale(1.3);
    box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.84);
  }
}

@keyframes colorHoverDark {
  from {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.88);
  }
  to {
    transform: scale(1.3);
    box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.88);
  }
}

@keyframes colorCopyDark {
  from {
    transform: scale(1.3);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.88);
  }
  30% {
    transform: scale(1.2);
    box-shadow: 0 0 3px 1px rgba(42, 42, 42, 0.88);
  }
  to {
    transform: scale(1.3);
    box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.84);
  }
}

#cover {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  user-select: none;
  backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
  background: #2d2d2d !important;
  box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.63);
}

#cover.open {
  animation: openCover 1.5s ease-in forwards;
}

#cover.close {
  animation: closeCover 1s ease-in forwards;
}

@keyframes openCover {
  from {
    top: 0;
  }
  to {
    top: -100vh;
  }
}

@keyframes closeCover {
  from {
    top: -100vh;
  }
  to {
    top: 0;
  }
}

@keyframes showBlocks {
  from {
    top: 100vh;
  }
  to {
    top: 10%;
  }
}

@keyframes hideBlocks {
  from {
    top: 10%;
  }
  to {
    top: 100vh;
  }
}

.span1 {
  display: inline-block;
  position: absolute;
  border-radius: 0.5rem;
  width: 5rem;
  height: 5rem;
  border: 10px solid #8e8e8e;
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
  top: 25%;
  left: calc(50vw - 2.5rem);
  animation: push-up-1 1s 1s ease-in forwards infinite;
}

.span2 {
  display: inline-block;
  position: absolute;
  border-radius: 0.5rem;
  width: 5rem;
  height: 5rem;
  border: 10px solid #8e8e8e;
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
  top: 30%;
  left: calc(50vw - 2.5rem);
  animation: push-up-1 1s 0.8s ease-in forwards infinite;
}

.span3 {
  display: inline-block;
  position: absolute;
  border-radius: 0.5rem;
  width: 5rem;
  height: 5rem;
  border: 10px solid #8e8e8e;
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
  top: 35%;
  left: calc(50vw - 2.5rem);
  animation: push-up-1 1s 0.6s ease-in forwards infinite;
}

h1 {
  font-size: 3rem;
  position: absolute;
  margin: 0 auto;
  width: 100%;
  top: 60%;
  color: #8e8e8e;
  text-align: center;
  animation: push-up-1 1s 0.6s ease-in forwards infinite;
}

@keyframes push-up-1 {
  from {
    border-color: #2d2d2d;
    color: #2d2d2d;
    filter: brightness(70%);
  }
  33% {
    border-color: #6d6d6d;
    color: #6d6d6d;
    filter: brightness(90%);
  }
  to {
    border-color: #ffffff;
    color: #ffffff;
    filter: brightness(110%);
  }
}

@keyframes push-up-2 {
  from {
    border-color: #2d2d2d;
    color: #2d2d2d;
    filter: brightness(70%);
  }
  33% {
    border-color: #6d6d6d;
    color: #6d6d6d;
    filter: brightness(90%);
  }
  to {
    border-color: #ffffff;
    color: #ffffff;
    filter: brightness(110%);
  }
}

/*# sourceMappingURL=style.css.map */