/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./css/styles.scss ***!
  \**********************************************************************************************************/
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.shake {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  background-color: rgba(255, 0, 0, 0.4196078431) !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#main-box {
  height: 100vh;
  display: flex;
}

#additional {
  height: 7vh;
  color: white;
  padding: 0.5rem;
  background: rgba(2, 2, 2, 0.4196078431);
  backdrop-filter: blur(100px);
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
}
#additional .additional-col-1 {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}
#additional .additional-col-2 {
  align-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
#additional .additional-col-2 div {
  height: 100%;
}
#additional button {
  color: white;
}
#additional button.active {
  background: rgba(4, 4, 4, 0.6588235294);
}
#additional button.active:hover {
  background: rgba(4, 4, 4, 0.6588235294);
  cursor: default;
}

.color-box {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.color-box:hover .button-box {
  opacity: 1;
}
.color-box .fa-solid, .color-box .shade {
  cursor: pointer;
}
.color-box .button-box {
  display: grid;
  opacity: 0;
  height: fit-content;
  top: 8vh;
  position: absolute;
  transition: all 0.3s ease;
}
.color-box h2 {
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  transition: background 0.3s;
  position: absolute;
  bottom: 10vh;
}
.color-box h2:hover {
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.color-box button {
  font-size: 2.5vh;
}

.color-box button,
#additional button {
  outline: none;
  border: none;
  background: transparent;
  padding: 8px;
  border-radius: 10px;
  margin: 5px;
  transition: all 0.3s ease;
}
.color-box button:hover,
#additional button:hover {
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

button[data-type=add] {
  position: relative;
  border: none;
}
button[data-type=add] i {
  position: absolute;
  z-index: 1;
  width: 44px;
  height: 44px;
  backdrop-filter: blur(100px);
  left: -22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  bottom: 10vh;
  cursor: pointer;
  transition: all 0.3s ease;
}
button[data-type=add] i:hover {
  filter: contrast(1.5);
}

button[data-type=manual] {
  color: white;
}

#shades-container {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 93vh;
  overflow-y: auto;
  padding: 0;
  z-index: 11;
}
#shades-container .shade {
  width: 100%;
  padding: 5px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
}

#backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blur-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  z-index: 2;
  transition: all 1s ease-in;
  width: 100%;
  background: rgba(255, 250, 250, 0.1294117647);
  backdrop-filter: blur(100px);
  position: absolute;
  top: -60px;
  opacity: 0;
}
.blur-overlay .nav-btn {
  margin: 0 0.25rem;
  padding: 0.25rem 1rem;
  background: rgba(0, 0, 0, 0.0588235294);
  border: 2px solid transparent;
  border-radius: 0.5rem;
  font-weight: 700;
}
.blur-overlay h1 {
  margin-right: 2rem;
}

input[type=text] {
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  transition: background 0.3s;
  position: absolute;
  bottom: 11vh;
  background: rgba(2, 2, 2, 0.4196078431);
  width: 68%;
  border: none;
  font-weight: bold;
  text-align: center;
  z-index: 11;
}
input[type=text]:focus-visible {
  border: none;
  outline: none;
}

.input-error:focus {
  border-color: initial;
  background-color: initial;
}

.modal-content {
  border-radius: 10px;
  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(100px);
  padding: 20px;
  width: 50vw;
}
.modal-content .close {
  color: black;
  float: right;
  font-size: 28px;
  transition: all 0.3s ease;
}
.modal-content .close:hover, .modal-content .close:focus {
  color: #c65858;
  cursor: pointer;
}
.modal-content p {
  margin-bottom: 0.75rem;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}
.modal-content b {
  margin-top: 1.5rem;
  display: block;
}
.modal-content .modal-col-2 {
  display: grid;
  grid-template-columns: minmax(40%, 1fr) minmax(60%, 1fr);
  grid-gap: 10px;
  overflow: hidden;
}
.modal-content .modal-col-2 .color-block {
  border-radius: 10px;
  margin-top: 1.25rem;
  padding: 1rem;
  background: linear-gradient(to right, #d1e4ff, #daffd2, #ffcaed);
  background-size: 200% 100%;
  animation: gradientAnimation 20s ease infinite;
}
.modal-content .modal-col-2 .color-block table i {
  cursor: default;
}
.modal-content .modal-col-2 .color-block table td {
  font-weight: 400;
  text-align: start;
  padding: 5px 3px;
}

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