.slide-submit {
    background: white;
    box-shadow: 0 0 0 1px #ccc;
    color: var(--123color);
    border: 2px solid var(--123color);
    border-radius: 30px;
    text-align: right;
    font-size: 1.00em;
    position: relative;
    overflow: hidden;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    transition: .2s;
    width: 80%;
    padding: 18px;
    margin: 15px 0;    
}

.slide-submit-text {
    display: inline-block;
    text-transform: uppercase;
}

.slide-submit-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to top, #B2B6C1, #CBD0D4);
    box-shadow:
        inset 0 0 0 3px #f3f5f6,
        inset 0 0 0 4px rgba(0, 0, 0, 0.17);
    text-shadow: 0 -1px #828282;
    border-radius: 30px;
    box-sizing: border-box;
    text-align: center;
    font-size: 20px;
    line-height: 35px;
    font-family: serif;
    color: #fff;
}

.slide-submit-thumb:hover,
.draggable {
    background: #1BA5FD;
    cursor: grab;
    cursor: -webkit-grab;
}

.slide-submit-thumb:active {
    background: #1BA5FD;
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.slide-success {
    background: #1BA5FD;
    text-align: left;
    color: #fff;
    box-shadow: 0 0 0 1px #157ABB;
}

.slide-success .slide-submit-thumb {
    background: #1E76AF;
    box-shadow:
        inset 0 0 0 3px #1BA5FD,
        inset 0 0 0 4px rgba(0, 0, 0, 0.17);
    color: #1BA5FD;
    pointer-events: none;
}
.slide-submit-wrap {
    opacity: 1 !important;
    pointer-events: all !important;
    width: 100%;
    display: flex;
    justify-content: center;
}

.input-col.empty-col{
    background-color: transparent;
    margin-top: 20px;
    display: flex !important;
    justify-content: center !important;
}
.slider-disabled {
    pointer-events: none !important;
    opacity: 0.35 !important;
}