.gradient-slider {
    height: 30px;
    background-color: $gray-100;
    border-radius: 4px;
    position: relative;

    &__inner {
        width: 100%;
        height: 100%;
    }
}

.colorstop {
    cursor: pointer;
    position: absolute;
    top: 100%;
    width: 15px;
    transform: translate(-7.5px);
}

.colorstop1 {
    left: 0px;
}

.colorstop2 {
    left: 100%;
}

.colorstop-icon {
    display: block;
    width: 15px;
    height: 20px;

    &__triangle {
        position: absolute;
        top: 100%;
        left: 0;
        width: 15px;
        height: 15px;
        clip-path: polygon(0% 0%, 100% 0%, 50% 65%, 0% 0%);
        // border-style: solid;
        // border-width: 7.5px;
        // border-right-color: transparent;
        // border-bottom-color: transparent;
        // border-left-color: transparent;
    }
}