* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-size: 6.25%;
}

html * {
  font-family: Muli, sans-serif;
  font-size: 16rem;
  /* font-size: 16px; */
}

body {
  width: 100vw;
}

/*! Variables */
/*! Variables End */

/*! --- Transition Times ---  */
.ms100 {
  transition: all 100ms ease-in-out;
}

.ms150 {
  transition: all 150ms ease-in-out;
}

.ms200 {
  transition: all 200ms ease-in-out;
}

.ms250 {
  transition: all 250ms ease-in-out;
}

.ms300 {
  transition: all 300ms ease-in-out;
}

.ms500 {
  transition: all 500ms ease-in-out;
}

.s1 {
  transition: all 1s ease-in-out;
}

/*! --- Transition Times END ---  */

/*! --- Global Styles --- */
.flex-row {
  display: flex;
  /* flex-direction: row; */
}
.flex-row-resp {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

button {
  background-color: unset;
  border: none;
  cursor: pointer;
  width: fit-content;
}

/*! --- Global Styles End --- */

.palette {
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.285); */
}

.color {
  background-color: brown;
  position: relative;
  align-items: center;
  justify-content: space-between;
  min-height: 75vh;
  /* min-width: 12.5vw; */
  width: 100%;
  /* border: 1px solid black; */
  /* border-left: unset; */
  padding: 10vh 20px;
  box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.5);
  /* color: #5ae87a; */
  color: black;
  overflow: hidden;
}

.color h2 {
  color: inherit;
  position: relative;
  font-size: 22rem;
  cursor: pointer;
  padding: 4rem 12rem;
}
.color h2:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius:  4px;
  /* padding: 20px; */
}
.tooltiptext {
  position: absolute;
  font-size: 12rem;
  font-weight: normal;
  white-space: nowrap;
  padding: 2px 8px;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  background-color: black;
  color: white;
  opacity: 0.2;
}
.color h2:hover .tooltiptext {
  /* visibility: visible; */
  /* background-color: black; */
  /* color: white; */
}


.controls button {
  color: inherit;
  transition: transform 150ms ease-in-out;
}

.controls button:hover {
  transform: scale(1.2);
}
i {
  /* color: inherit; */
  font-size: 32rem;
  /* transform: scale(1); */
  pointer-events: none;
}
.controls .adjust {
  margin-bottom: 40px;
}

.sliders {
  background-color: white;
  position: absolute;
  width: 90%;
  max-width: 22vw;
  max-height: 30vh;
  bottom: -100px;
  padding: 7% 4%;
  padding-bottom: 16%;
  border-radius: 20px 20px 0% 0%;
  overflow: hidden;
  transition: all 400ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.sliders.active {
  /* background-color: red; */
  visibility: visible;
  bottom: 0px;
  opacity: 1;
}

.close-adjustment {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: rgb(67, 67, 67);
  width: 32px;
  height: 32px;
  color: white;
  top: 0px;
  right: 0px;
  border-radius: 0% 0% 0% 50%;
}

.sliders span {
  font-family: muli, sans-serif;
  font-size: 14rem;
  color: black;
}

.sliders input {
  margin-bottom: 10px;
  height: 20rem;
  -webkit-appearance: none;
  border-radius: 100px;
}
.sliders input::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: rgb(243, 243, 243);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  /* border: 1px solid black; */
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}






.tools-container {
  /* background-color: green; */
  margin: auto;
  /* margin-top: 100px; */
  width: 60%;
  min-height: 25vh;
  justify-content: space-between;
  align-items: center;
}

.tool-button {
  background-color: rgb(37, 37, 37);
  color: white;
  padding: 16rem 32rem;
  border-radius: 10px;
  transition: all 200ms ease-in-out;
}

.tool-button:hover {
  background-color: rgb(66, 66, 66);
  /* color: red; */
  transform: scale(1.05);
}

.tool-button i {
  font-size: 25rem;
  color: inherit;
}

.tool-label {
  text-align: center;
  font-size: 20rem;
  margin-top: 16px;
}


.save-container {
  /* background-color: #AAA; */
  background-color: white;
  position: fixed;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 360px;
  top: 50%;
  left: 50%;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%) scale(0);
  transition: all 500ms ease-in-out;
  border-radius: 15px;
  overflow: hidden;
  visibility: hidden;
  /* display: none; */
  opacity: 0;
}
.save-container.active {
  /* display: block; */
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.save-container h4 {
  font-size: 20rem;
  margin-bottom: 30rem;
}
.save-container input {
  display: block;
  height: 40rem;
  width: 75%;
  margin-bottom: 30rem;
  outline: none;
  padding: 0px 10px;
  /* margin: auto; */
}
.save-container input:focus {
  /* background-color: green; */
  /* outline: 2px solid yellow; */
}
.save-palette {
  /* width: 50px; */
  /* height: 50px; */
  padding: 15px 30px;
  border-radius: 10px;
}

.load-container {
  background-color: unset;
  position: fixed;
  width: 700px;
  height: 600px;
  top: 50%;
  left: 50%;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%) scale(0);
  transition: all 500ms ease-in-out;
  border-radius: 15px;
  /* overflow-y: scroll; */
  overflow: hidden;
  /* padding: 50px 0px; */
}
.load-container.active {
  transform: translate(-50%, -50%) scale(1);
}
.corner-button {
  position: absolute;
  background-color: black;
  width: 40px;
  height: 40px;
  color: white;
  right: 0px;
  top: 0px;
  border-radius: 0px 0px 0px 14px;
}
.load-content {
  /* background-color: #999; */
  background-color: rgb(243, 243, 243);
  width: 100%;
  height: 100%;
  padding: 30px 0px;
  padding-bottom: 100px;
  padding-right: 17px;
  overflow-y: scroll;
  box-sizing: content-box;
}
.load-item-contain {
  /* background-color: rgba(255, 0, 0, 0.027); */
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 10px; */
  /* margin-left: 20px; */
  padding: 0px 30px;
  padding-right: 50px;
  width: 100%;
  height: 80px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  /* border-bottom: solid 1px black; */
}
.loaded-title {
  font-weight: normal;
}
.loaded-controls {
  /* background-color: blue; */
  height: 100%;
  /* justify-self: flex-start; */
  align-items: center;
}
.loaded-colors {
  /* background-color: rgb(0, 128, 0); */
  width: 200px;
  height: 100%;
  padding: 10px 0px;
  margin-right: 10px;
  cursor: pointer;
}
.loaded-colors div {
  width: 100%;
  height: 100%;
  flex-shrink: 1;
}
.library-button {
  background-color: rgb(18, 18, 18);
  width: 40px;
  height: 40px;
  color: white;
  margin: 6px;
  border-radius: 5px;
}
.library-button:hover {
  background-color: rgb(213, 213, 213);
  color: black;
}
.library-button i {
  color: inherit;
  font-size: 20rem;
}
.empty-spacer {
  width: 100%;
  height: 60px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.copied {
  background-color: white;
  padding: 25px 40px;
  border-radius: 10px;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -0%);
  /* transition: all 200ms ease-in-out; */
  /* visibility: hidden; */
  opacity: 0;
}



