@charset "utf-8";
/* CSS Document */

.toolcontainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #42444e;
  margin: 24px auto;
}
.preview {
  width: 100%;
  height: 150px;
}
.gradient-type {
  color: #ffffff;
  margin-top: 14px;
}
.color-control {
  display: flex;
  gap: 10px;
}
.color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.color-list input[type="color"] {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 4px;
  padding: 4px;
  cursor: pointer;
}
.color-stop .add-color {
  width: 60px;
  height: 60px;
}
.fa-solid.fa-delete-left {
  position: absolute;
  opacity: 0;
  top: 12px;
  left: calc(100% - 20px);
  transform: none;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.color-stop {
  position: relative;
}
.color-stop:hover .fa-solid.fa-delete-left {
  opacity: 1;
}
.add-color-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 4px;
  padding: 4px;
  cursor: pointer;
}
.slider-wrapper {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  width: 100%;
  color: #ffffff;
}
.slider-wrapper input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: #e5e7eb;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.slider-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: #119cec;
  cursor: pointer;
}
.slider-wrapper input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: #119cec;
  cursor: pointer;
}
.slider-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#output {
  color: #000;
  width: 100%;
  height: 80px;
  padding: 15px;
  border: 1px solid #e7e2e2;
  border-radius: 12px;
}
.css-output {
  display: none;
}
.copy-css {
  color: #ffffff;
  width: 100%;
  font-size: 1.2rem;
  height: 45px;
  background-color: #119cec;
  border-radius: 4px;
  font-weight: 800;
  border: none;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  margin-top: 12px;
}
button.copy-css {
  background: #0088cc;
  background: linear-gradient(90deg, rgba(84, 126, 180, 1) 8%, rgba(25, 158, 77, 1) 99%);
}
button.copy-css:hover {
  opacity: 0.5;
}
