
.tn-color-palette-container {
    // height: 200px;
    position: relative;
    display: flex;
    // background-color: #eeeeee;
    width: 600px;

    .left-panel, .right-panel {
        width: 50%;
        padding: 10px;
    }
    .right-panel {
        display: flex;
        flex-direction: column;

    }

    .palette-saturation {
        position: relative;
        height: 200px;
    }
    .palette-hue {
        position: relative;
        margin-top: 6px;
        height: 18px;
    }
    .hue-pointer {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        transform: translate(-9px, 0px);
        background-color: rgb(248, 248, 248);
        box-shadow: rgb(0 0 0 / 37%) 0px 1px 4px 0px;
    }
    .input-wrapper {
        display: flex;
        padding-top: 4px;
        .input-item-hex {
            width: 80px;
        }
        .input-item-rgb {
            width: 50px;
            margin-left: 10px;
        }
    }


    .color-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        // width: 180px;
        height: 80px;
        z-index: 1001;
        .color-item {
            flex: 0, 0, 20px;
            width: 20px;
            height: 20px;
            padding: 2px 2px;
            cursor: pointer;
            &:hover {
                padding: 1px;
                .color-box {
                    width: 19px;
                    height: 19px;
                }
            }
        }
        .color-box {
            border: 1px solid #cccccc;
            width: 16px;
            height: 16px;
            margin-right: 8px;
            // box-shadow: rgb(221 221 221) 0px 0px 0px 1px inset;
        }
    }

    .color-footer {
        // margin-top: 40px;
        display: flex;
        align-items: flex-end;
    }

    .current-color {
        width: 80px;
        height: 80px;
        border: 1px solid #666666;
        // margin-bottom: 78px;
    }
}