@charset "utf-8";
body {
  min-width: 750px;
  min-height: 1040px;
  font-family: Montserrat;
  font-size: 12px;
  margin: 0px;
  padding: 0px;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
  height: 100%;
}

.overall {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.rows {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #eee;
}
.pixel {
  margin-right: -1px;
  margin-bottom: -1px;
  width: 10px;
  height: 10px;
  background-color: black;
  border: solid 1px #444;
  border-radius: 3px;
}

.pixel:hover {
  opacity: 0.8;
  cursor: pointer;
}

.pixels {
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.4);
  position: relative;
  /*border: solid 4px #eee;*/
  padding: 16px;
  border-radius: 10px 10px 0 0;
}

#tra {
  z-index: 2;
  position: absolute;
  top: -12px;
  right: -12px;
  width: 16px;
  height: 16px;
  background-color: #0f6;
  box-shadow: 0 0 10px #0f6;
  border-radius: 16px;
  border: solid 3px rgba(224, 224, 224, 0.8);
}

p {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4),
    inset 0px -2px 6px rgba(0, 0, 0, 0.2);
}

a {
  font-size: 12px;
  line-height: 20px;
}

input {
  border-radius: 6px;
  border: none;
  margin-left: 4px;
}

#inpP:hover{
  opacity: 0.6;
  cursor: pointer;
}
#inp {
  cursor: pointer;
  height: 100%;
  position: absolute;
  z-index: 99;
  /*This makes the button huge. If you want a bigger button, increase the font size*/
  font-size: 50px;
  /*Opacity settings for all browsers*/
  opacity: 0;
  -moz-opacity: 0;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  width: 80px;
  height: 32px;
  margin-top: -7px;
  margin-left: -10px;
}

button {
  font-size: 14px;
  margin: 0 8px;
  border: solid 2px #ddd;
  background-color: white;
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6),
    inset 0px -2px 6px rgba(0, 0, 0, 0.2);
}

button:hover {
  opacity: 0.6;
  cursor: pointer;
}

.button_imgs {
  width: 20px;
  margin-bottom: -5px;
  margin-right: 4px;
  margin-top: -2px;
}

/*______________________________spinner___________________________________*/

.loader {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(
    #fff,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.3)
  );
  animation: animate 1.2s linear infinite;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(rgb(229, 181, 161), transparent, transparent);
}

.loader span:nth-child(1) {
  filter: blur(5px);
}

.loader span:nth-child(2) {
  filter: blur(10px);
}

.loader span:nth-child(3) {
  filter: blur(25px);
}

.loader span:nth-child(4) {
  filter: blur(50px);
}

.loader:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
}
img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
