@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

.color-catalogue--card {
    /* clip-path: polygon(93% 6%, 66% 6%, 23% 6%, 6% 6%, 3% 16%, 8% 22%, 15% 93%, 40% 95%, 60% 95%, 83% 93%, 91% 22%, 97% 17%); */
    
    height:120px;
    width: 120px;
    margin-bottom: 13px;
    border: 5px; 
    border-radius:30% 0 30% 0;
    padding: 2px;
    align-content: center;
    transition: 1s;
}


.clip-path-shadow:hover {        
    transform: scale(1.5);    
    z-index: 3; 
    opacity: 1;   
} 

.color-catalogue ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-gap: 2vw;
    height: fit-content;
 
    }

.colorTitle{
    position: absolute;
    top:0;
    left: 0;
    height:120px;
    width: 120px;
    color: #0c0000;
    mix-blend-mode:color-burn;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;  
    font-family: 'Poppins', sans-serif;
    font-size: 12px; 
    font-weight: 600; 
}

.colorTitle:hover {    
    opacity: 1; 
    transform: translateY(10px);
    transition: transform 0.25s;   
} 

/*Page Background */
#colorpallete{
	height: 100% auto;
    width: 100% auto;
	background: rgb(252, 252, 252);
}


.wrapperscolor {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 15px 40px;
    border-radius: 5px;
    /* box-shadow: 0 15px 25px rgba(0,0,50,0.2); */
    box-shadow: -3px -3px 7px #ffffffb2,
        3px 3px 5px rgba(94, 104, 121, 0.945),
        inset -3px -3px 7px #ffffffb0,
        inset 3px 3px 5px rgba(94, 104, 121, 0.692);
}

/** Brush Setup **/
.counselin:before {
    content: "";
    width: 853px;
    height: 239px;
    display: block;
    position: absolute;
    left: 60px;
    bottom: -155px;
    background: url(../img/brush.png) left top no-repeat;
    background-size: 80%;
}
.empty{
    height: 50px;
}
.empty2{
    height: 100px;
}


#bhide{
    visibility: hidden;
}

.display span{
    display: inline-block;
    margin: 5px;
    padding: 5px;
  
}

.bucket{
    text-align: center;
    border: none;
    outline: none;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 18px;
    clip-path: polygon(93% 6%, 66% 6%, 23% 6%, 6% 6%, 3% 16%, 8% 22%, 15% 93%, 40% 95%, 60% 95%, 83% 93%, 91% 22%, 97% 17%);
    height: 70px;
    width: 70px;
    /* height: 50px;
    width: 50px;
    border-radius: 50%; */
}
.ALL{
    background:linear-gradient(180deg, rgba(55,3,167,1) 0%, rgba(21,39,227,1) 25%, rgba(0,187,252,1) 50%, rgba(255,165,0,1) 75%, rgba(255,0,0,1) 100%);
}
.RO{
    background: #e43225;
}
#RO{
    display: none;
}
.YG{
    background: #bbf717;
}
#YG{
    display: none;
}
.TB{
    background:#0095B4 ;
}
#TB{
    display: none;
}
.PP{
    background: #c97ebc;
}
#PP{
    display: none;
}
.CN{
    background: #a09e9b;
}
#CN{
    display: none;
}
.WN{
    background: #a05930;
}
#WN{
    display: none;
}
.WH{
    background:white ;
    
}
#WH{
    display: none;
}
aside {
    border-radius: 25px;
    height: 135px;
    width: 110px;
    display: inline-block;
    vertical-align:top;
    background:rgb(155, 227, 245);
    padding: 3px;
    margin: 2px;
  }
  
  .text {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    background:none;
    text-align: center;
  }
 
.display{
    left: 0;
}


/* Tooltip */

[data-title]:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
  }
  [data-title]:after {
    content: attr(data-title);
    position: absolute;
    top:0em;
    font-family: Verdana, Geneva, Tahoma, sans-serif !important;
    font-size: 14px;
    font-weight: 800;
    left: 50%;
    padding: 4px 4px 4px 8px;
    color: #666;
    white-space: wrap;
   -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0px 0px 4px #666;
    -webkit-box-shadow: 0px 0px 4px #666;
    box-shadow: 0px 0px 4px #666;
    background-image: -moz-linear-gradient(top, #f0eded, #bfbdbd);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f0eded), color-stop(1, #bfbdbd));
    background-image: -webkit-linear-gradient(top, #f0eded, #bfbdbd);
    background-image: -moz-linear-gradient(top, #f0eded, #bfbdbd);
    background-image: -ms-linear-gradient(top, #f0eded, #bfbdbd);
    background-image: -o-linear-gradient(top, #f0eded, #bfbdbd);
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
  }
  [data-title] {
    position: relative;
  }