/* .caret-icon {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.caret-icon.right {
    transform: rotate(0deg);
}

.caret-icon.rotate {
    transform: rotate(90deg);
} */


.imagebox{
    background-color: white;
    aspect-ratio: 1 / 1;
    border: 2px dashed gray;
    border-radius: 10px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}
.tip{
    flex-grow: 1;
    min-width:50px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-left: 10px;
}
.tip:first-child{
    margin-left: 0px;
}
/* .colorgroup{
    display: grid;
    width: 100%;
    height:200px;
    grid-auto-flow:row dense;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.color-item{
    width: 30px;
    height: 30px;
    border-radius: 50%;
} */

.colormodel{
    height:80px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 1;
    /* pointer-events: none; */
    transition: opacity 0.3s;


}
.pop{
    position: fixed;
    left:0;
    top:50vh;
    height:50vh;
    width: 100vw;
    background-color: white;
    z-index: 1000;
    border-radius: 10px 10px 0 0;
}
.pop .title{
    height:30px;
    margin-left:30px;
    margin-right: 30px;
}
.colorframe{
    margin-left:30px;
    height:calc(50vh - 30px - 60px);
    width: calc(100vw - 60px);
    box-sizing: border-box;
}
.color-unit{
    display: inline-flex;
    width: calc((100vw - 60px - (5px * 5))/6 );
    height: auto;
    aspect-ratio: 1/1;
    box-sizing: border-box;
}
.color-item{
    width: 90%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border:2px solid transparent;
} 
.color-item-active{
    border: 2px solid #1a73e8;
}
.btns{
    flex-grow: 1;
    margin-left:30px;
    margin-right: 30px;
}
.btns .btn{
    flex-grow: 1;
    height: 100%;
}
.btncolorchange{
    flex-grow: 5;height: 100%;border-radius: 5px;background-color: #1a73e8;border: none;color:white;font-size: 15px;box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.btnsave{
    flex-grow: 1;
    height: 100%;
    margin-left: 15px;
    border-radius: 5px;
    background-color: white;
    /* border: 1px solid #1a73e8; */
    border:none;
    color:#1a73e8;
    font-size: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.content{
    background-color: #f0f0f0;
    border-radius: 0 0 5px 5px;
}

  
