html,
body {
  padding: 0;
  font-family: 'Poppins', sans-serif !important;
  overflow: hidden;
  margin: 0;
}

body {
  padding: 0 !important;
  display: flex;
}

.main {
  position: relative;
  display: flex;
  padding: 0;
  margin: 0;
  /* min-width: 501px; */
}

.collection {
  width: fit-content;
  display: flex;
  align-items: center;
}

.palette-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  justify-content: space-evenly;
  /* position: relative; */
  border-right: 0.2 px solid rgb(255, 255, 255, 0.6);
  /* animation-name: growWidth;
  animation-duration: 0.1s; */
  color: black;
}

.palette-item p {
  padding: 0;

  opacity: 1;
  width: 85px;
  font-size: 14px;
  color: white;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  /* padding: 10px; */
  justify-content: space-around;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  font-weight: bold;
  /* width: 200px; */
  height: 50px;
}
.palette-ctas {
  /* position: absolute; */
  /* bottom: 30px; */
  cursor: pointer;
  width: fit-content;
  /* left: 76px; */
}
.copyPaletteColor {
  margin: 0 auto;
  /* background-color: teal; */
  margin-bottom: 20px;
}
#color {
  border-radius: 5px;
  text-align: center;
  color: white;
  display: flex;
  /* padding: 10px; */
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

#hexText {
  opacity: 1;
  font-size: 14px;
  color: white;
}

#toggle,
#shareLink {
  font-size: 10px;
  font-weight: bold;
  cursor: pointer;
  width: fit-content;
}

#CTC {
  font-size: 10px;
  cursor: pointer;
  width: fit-content;
}

.c-left {
  width: 170px;
}

.c-right {
  height: 100%;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.c-right div {
  width: 20px;
  padding-right: 5px;
  height: 15px;
  display: flex;
  align-items: center;
}

#help-info {
  position: absolute;
  color: white;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.8);
  height: 170px;
  width: 500px;
  transition: all 2s linear;
  display: block;
  text-align: center;
  margin: 0 auto;
}

#help-info.hide {
  display: none;
}

.list {
  width: fit-content;
  text-align: left;
  margin: 0 auto;
}

#help-info .list p {
  font-size: 14px;
  line-height: 22px;
}

#help-info h3 {
  margin-bottom: 10px;
  margin: 0;
  font-size: 16px;
}

.visuallyhidden {
  opacity: 0;
}

.icon-q {
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}

#help-info h2 {
  margin: 5px 0;
  font-size: 18px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

#CTC.tooltip .tooltiptext {
  visibility: hidden;
  padding: 2px 4px;
  white-space: nowrap;
  background-color: rgb(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 8px;
  border-radius: 4px;
  padding: 5px 10px;
  top: -20px;
  left: -20px;
  position: absolute;
  z-index: 1;
}

#CTC.tooltip:hover .tooltiptext {
  visibility: visible;
}

#shareLink.tooltip .tooltiptext,
#toggle.tooltip .tooltiptext {
  visibility: hidden;
  padding: 2px 4px;
  white-space: nowrap;
  background-color: rgb(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 8px;
  border-radius: 4px;
  padding: 5px 10px;
  /* top: 20px; */
  left: 20px;
  position: absolute;
  z-index: 1;
}

#shareLink.tooltip:hover .tooltiptext,
#toggle.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip.hide {
  display: none;
}
