.gradient-colors-bar{
    height: 25px;
    background: linear-gradient(to right, #2bb9e9, #2262d9, #9c4fab);
    position: relative;
    cursor: copy;
}
.gradient-colors-bar .color-stop{
    height: 30px;
    width: 8px;
    border-radius: 50px;
    /* border: 2px solid #332d2d; */
    outline: 2px solid #332d2d;
    border: 2px solid #e4e4e4;
    box-sizing: border-box;
    left: 0%;
    position: absolute;
    transform: translate(-50%, 0%);
    cursor: move;
}
.active-color-stop-input{
    background: #6999e6c5;
    transform: scale(1.05);
}
.gradient-colors-bar .color-stop:focus{
    outline: auto;
}
.btn-show-grad-inputs{
    transition: all 250ms ease-in;
}
.gradient-colors-input-container input{
    overflow: hidden;
}
.gradient-colors-input-container input[type="number"]{
    height: 40px;
    width: 75px;
}
.gradient-colors-input-container input[type="color"]{
    height: 40px;
    width: 40px;
}
.gradient-colors-input-container > div{
    transition: transform 0.2s ease-in, background 0.2s ease-in;
}