.rc-slider {
    border-radius: 6px;
    height: 14px;
    padding: 5px 0;
    position: relative;
    touch-action: none;
    width: 100%
}

.rc-slider,
.rc-slider * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box
}

.rc-slider-rail {
    background-color: #e9e9e9;
    border-radius: 6px;
    height: 4px;
    position: absolute;
    width: 100%
}

.rc-slider-track,
.rc-slider-tracks {
    background-color: #abe2fb;
    border-radius: 6px;
    height: 4px;
    position: absolute
}

.rc-slider-track-draggable {
    background-clip: content-box;
    border-bottom: 5px solid #0000;
    border-top: 5px solid #0000;
    box-sizing: initial;
    transform: translateY(-5px);
    z-index: 1
}

.rc-slider-handle {
    background-color: #fff;
    border: 2px solid #96dbfa;
    border-radius: 50%;
    cursor: pointer;
    cursor: grab;
    height: 14px;
    margin-top: -5px;
    opacity: .8;
    position: absolute;
    touch-action: pan-x;
    width: 14px;
    z-index: 1
}

.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
    border-color: #57c5f7;
    box-shadow: 0 0 0 5px #96dbfa
}

.rc-slider-handle:focus {
    box-shadow: none;
    outline: none
}

.rc-slider-handle:focus-visible {
    border-color: #2db7f5;
    box-shadow: 0 0 0 3px #96dbfa
}

.rc-slider-handle-click-focused:focus {
    border-color: #96dbfa;
    box-shadow: none
}

.rc-slider-handle:hover {
    border-color: #57c5f7
}

.rc-slider-handle:active {
    border-color: #57c5f7;
    box-shadow: 0 0 5px #57c5f7;
    cursor: grabbing
}

.rc-slider-mark {
    font-size: 12px;
    left: 0;
    position: absolute;
    top: 18px;
    width: 100%
}

.rc-slider-mark-text {
    color: #999;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    text-align: center;
    vertical-align: middle
}

.rc-slider-mark-text-active {
    color: #666
}

.rc-slider-step {
    background: #0000;
    height: 4px;
    position: absolute;
    width: 100%
}

.rc-slider-dot {
    background-color: #fff;
    border: 2px solid #e9e9e9;
    border-radius: 50%;
    bottom: -2px;
    cursor: pointer;
    height: 8px;
    position: absolute;
    vertical-align: middle;
    width: 8px
}

.rc-slider-dot-active {
    border-color: #96dbfa
}

.rc-slider-dot-reverse {
    margin-right: -4px
}

.rc-slider-disabled {
    background-color: #e9e9e9
}

.rc-slider-disabled .rc-slider-track {
    background-color: #ccc
}

.rc-slider-disabled .rc-slider-dot,
.rc-slider-disabled .rc-slider-handle {
    background-color: #fff;
    border-color: #ccc;
    box-shadow: none;
    cursor: not-allowed
}

.rc-slider-disabled .rc-slider-dot,
.rc-slider-disabled .rc-slider-mark-text {
    cursor: not-allowed !important
}

.rc-slider-vertical {
    height: 100%;
    padding: 0 5px;
    width: 14px
}

.rc-slider-vertical .rc-slider-rail {
    height: 100%;
    width: 4px
}

.rc-slider-vertical .rc-slider-track {
    bottom: 0;
    left: 5px;
    width: 4px
}

.rc-slider-vertical .rc-slider-track-draggable {
    border-bottom: 0;
    border-left: 5px solid #0000;
    border-right: 5px solid #0000;
    border-top: 0;
    transform: translateX(-5px)
}

.rc-slider-vertical .rc-slider-handle {
    margin-left: -5px;
    margin-top: 0;
    position: absolute;
    touch-action: pan-y;
    z-index: 1
}

.rc-slider-vertical .rc-slider-mark {
    height: 100%;
    left: 18px;
    top: 0
}

.rc-slider-vertical .rc-slider-step {
    height: 100%;
    width: 4px
}

.rc-slider-vertical .rc-slider-dot {
    margin-left: -2px
}

.rc-slider-tooltip-zoom-down-appear,
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-leave {
    animation-duration: .3s;
    animation-fill-mode: both;
    animation-play-state: paused;
    display: block !important
}

.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active,
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active {
    animation-name: rcSliderTooltipZoomDownIn;
    animation-play-state: running
}

.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
    animation-name: rcSliderTooltipZoomDownOut;
    animation-play-state: running
}

.rc-slider-tooltip-zoom-down-appear,
.rc-slider-tooltip-zoom-down-enter {
    animation-timing-function: cubic-bezier(.23, 1, .32, 1);
    transform: scale(0)
}

.rc-slider-tooltip-zoom-down-leave {
    animation-timing-function: cubic-bezier(.755, .05, .855, .06)
}

@keyframes rcSliderTooltipZoomDownIn {
    0% {
        opacity: 0;
        transform: scale(0);
        transform-origin: 50% 100%
    }

    to {
        transform: scale(1);
        transform-origin: 50% 100%
    }
}

@keyframes rcSliderTooltipZoomDownOut {
    0% {
        transform: scale(1);
        transform-origin: 50% 100%
    }

    to {
        opacity: 0;
        transform: scale(0);
        transform-origin: 50% 100%
    }
}

.rc-slider-tooltip {
    left: -9999px;
    position: absolute;
    top: -9999px;
    visibility: visible
}

.rc-slider-tooltip,
.rc-slider-tooltip * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box
}

.rc-slider-tooltip-hidden {
    display: none
}

.rc-slider-tooltip-placement-top {
    padding: 4px 0 8px
}

.rc-slider-tooltip-inner {
    background-color: #6c6c6c;
    border-radius: 6px;
    box-shadow: 0 0 4px #d9d9d9;
    color: #fff;
    font-size: 12px;
    height: 24px;
    line-height: 1;
    min-width: 24px;
    padding: 6px 2px;
    text-align: center;
    text-decoration: none
}

.rc-slider-tooltip-arrow {
    border-color: #0000;
    border-style: solid;
    height: 0;
    position: absolute;
    width: 0
}

.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
    border-top-color: #6c6c6c;
    border-width: 4px 4px 0;
    bottom: 4px;
    left: 50%;
    margin-left: -4px
}

.core_ac__INnVD {
    align-items: center;
    display: flex
}

.core_jc__UneuG {
    display: flex;
    justify-content: center
}

.core_jsb__u6lJJ {
    display: flex;
    justify-content: space-between
}

.core_psRl__zwPl6 {
    position: relative
}

.core_cResize__7kAYR {
    cursor: ew-resize
}

.core_cCross__Sucrv {
    cursor: crosshair
}

.core_rbgcpControlBtn__f6Ilq {
    align-items: center;
    background: #fff0;
    border-radius: 4px;
    box-shadow: 1px 1px 3px #0000;
    box-sizing: border-box;
    color: #565656;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 24px;
    justify-content: center;
    line-height: 1;
    padding-left: 8px;
    padding-right: 8px;
    transition: all .16s ease
}

.core_rbgcpControlIcon__nVJ8h {
    stroke: #323136
}

.core_rbgcpControlIconBtn__r4J2S {
    border-radius: 4px;
    height: 24px;
    width: 30px
}

.core_rbgcpControlBtnWrapper__9RWN0,
.core_rbgcpControlIconBtn__r4J2S {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    position: relative
}

.core_rbgcpControlBtnWrapper__9RWN0 {
    background: #e9e9f5;
    border-radius: 6px;
    height: 28px;
    padding: 2px
}

.core_rbgcpColorModelDropdown__y9suM {
    background: #e9e9f5;
    border-radius: 6px;
    box-shadow: 1px 1px 14px 1px #00000040;
    padding: 5px;
    position: absolute;
    right: -2px;
    top: 34px;
    z-index: 100000000
}

.core_rbgcpEyedropperCover__-Dr8J {
    cursor: copy;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 100000000
}

.core_rbgcpControlInput__DUUGd {
    background: #0000;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    color: #323136;
    font-size: 13px;
    font-weight: 500;
    height: 24px;
    outline: none;
    text-align: center;
    width: 34px
}

.core_rbgcpInputLabel__K16w1 {
    color: #565656;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center
}

.core_rbgcpInput__hqUmD {
    border: 1px solid #bebebe;
    border-radius: 6px;
    box-sizing: border-box;
    color: #000;
    font-weight: 400;
    height: 32px;
    outline: none;
    padding: 2px;
    text-align: center;
    width: 100%
}

.core_rbgcpHandle__I8gn- {
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 3px #00000080;
    box-sizing: border-box;
    height: 18px;
    position: absolute;
    transition: all 10ms linear;
    width: 18px;
    z-index: 1000
}

.core_rbgcpCanvasWrapper__0m34J {
    border-radius: 6px;
    height: 294px;
    overflow: hidden
}

.core_rbgcpCheckered__qkJiq {
    background: linear-gradient(45deg, #0000002e 25%, #0000 0, #0000 75%, #0000002e 0, #0000002e 0), linear-gradient(45deg, #0000002e 25%, #0000 0, #0000 75%, #0000002e 0, #0000002e 0), #fff;
    background-clip: border-box, border-box;
    background-origin: padding-box, padding-box;
    background-position: 0 0, 7px 7px;
    background-repeat: repeat, repeat;
    background-size: 14px 14px, 14px 14px;
    border-radius: 10px;
    box-shadow: none;
    text-shadow: none;
    transform: scaleX(1) scaleY(1) scaleZ(1);
    transform-origin: 0 0 0;
    transition: none
}

.core_rbgcpOpacityOverlay__5zgIx {
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.core_rbgcpGradientHandleWrap__6clE6 {
    outline: none;
    position: absolute;
    top: -2px;
    z-index: 10000
}

.core_rbgcpGradientHandle__B3uqs {
    align-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 3px #00000080;
    box-sizing: border-box;
    display: flex;
    height: 18px;
    justify-content: center;
    width: 18px
}

.core_rbgcpControlIcon2__io9lV {
    fill: #323136
}

.core_rbgcpControlBtnSelected__yb16G {
    background: #fff;
    box-shadow: 1px 1px 3px #0003;
    color: #568cf5
}

.core_rbgcpComparibleLabel__1\+Y1G {
    color: #323136
}

@media (prefers-color-scheme:dark) {
    .core_rbgcpInputLabel__K16w1 {
        color: #d4d4d4
    }

    .core_rbgcpControlBtnWrapper__9RWN0 {
        background: #363636
    }

    .core_rbgcpInput__hqUmD {
        background: #363636;
        border: none;
        color: #fff
    }

    .core_rbgcpControlBtn__f6Ilq {
        color: #d4d4d4
    }

    .core_rbgcpControlIcon__nVJ8h {
        stroke: #d4d4d4
    }

    .core_rbgcpControlIcon2__io9lV {
        fill: #d4d4d4
    }

    .core_rbgcpControlInput__DUUGd {
        color: #fff
    }

    .core_rbgcpControlBtnSelected__yb16G {
        background: #000;
        color: #568cf5
    }

    .core_rbgcpDegreeIcon__FPQTb {
        color: #d4d4d4
    }

    .core_rbgcpColorModelDropdown__y9suM {
        background: #202020
    }

    .core_rbgcpComparibleLabel__1\+Y1G {
        color: #d4d4d4
    }
	
	
	

}
/*# sourceMappingURL=main.7c20b780.css.map*/