.colors .container {
    width: 80%;
     margin: 30px auto;
     padding: 20px;
}
.colors .container .ulPallete {
    display: grid;
     grid-template-columns: repeat(auto-fill , minmax(160px ,1fr));
     list-style: none;
     gap: 8px;

}
.colors .container .ulPallete .liPallete {
background-color: white;
text-align: center;
height: 220px;
padding: 6px;
border-radius: 10px;
cursor: pointer;
transition: 0.2s;
text-align: center;
}
.colors .container .ulPallete .liPallete:hover .liDiv {
    filter: brightness(105%);
}
.colors .container .ulPallete .liPallete:active {
    transform: scale(0.95);
}
.colors .container .ulPallete .liPallete .liDiv {
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
/* margin: 10px auto; */
background-color: skyblue;
width:100%;
height: 70%;
margin-bottom: 12px;
transition: 0.4s;
text-align: center;


}
.colors .container .ulPallete .liPallete .liSpan {

background-color:transparent;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 10px;
}
.colors .colorGeneratorBtn {
    position: fixed;
    /* bottom: 20px; */
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-color: transparent;
    font-size: 18px;
    padding: 9px 15px;
    color: rgb(54, 53, 53);
    cursor: pointer;
    transition: 0.3s;

}
.colors .colorGeneratorBtn:hover {
    background-color: rgb(176, 162, 187);
    border: 2px dotted white;
    color: white;
    letter-spacing: 2px;
}

.colorBoxTab #colorBoxTab-flters {
  padding: 0;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.colorBoxTab #colorBoxTab-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 0px;
  transition: all 0.3s ease-in-out;
}

.colorBoxTab #colorBoxTab-flters li:hover,
.colorBoxTab #colorBoxTab-flters li.filter-active {
  color: #149ddd;
}

.colorBoxTab #colorBoxTab-flters li:last-child {
  margin-right: 0;
}
.colorBoxTab .borderTab-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.colorBoxTab .borderTab-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.colorBoxTab .borderTab-wrap .borderTab-links {
  opacity: 1;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.colorBoxTab .borderTab-wrap .borderTab-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}

.colorBoxTab .borderTab-wrap .borderTab-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}
