body {
    overflow-x: hidden;
}

.block {
    position: absolute;
    left: 0;
    top: 0;
}

.sliderContainer {
    position: relative;
    text-align: center;
    line-height: 40px;
    background: #f7f9fa;
    color: #45494c;
    border-radius: 2px;
}

.sliderbg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: #f7f9fa;
    height: 40px;
    border-radius: 2px;
    border: 1px solid #e6e8eb;
}

.sliderContainer_active .slider {
    top: -1px;
    border: 1px solid #1991FA;
}

.sliderContainer_active .sliderMask {
    border-width: 1px 0 1px 1px;
}

.sliderContainer_success .slider {
    top: -1px;
    border: 1px solid #52CCBA;
    background-color: #52CCBA !important;
}

.sliderContainer_success .sliderMask {
    border: 1px solid #52CCBA;
    border-width: 1px 0 1px 1px;
    background-color: #D2F4EF;
}

.sliderContainer_success .sliderIcon:before {
    content: "\f00c";
}

.sliderContainer_fail .slider {
    top: -1px;
    border: 1px solid #f57a7a;
    background-color: #f57a7a !important;
}

.sliderContainer_fail .sliderMask {
    border: 1px solid #f57a7a;
    background-color: #fce1e1;
    border-width: 1px 0 1px 1px;
}

.sliderContainer_fail .sliderIcon:before {
    content: "\f00d";
}

.sliderContainer_active .sliderText, .sliderContainer_success .sliderText, .sliderContainer_fail .sliderText {
    display: none;
}

.sliderMask {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    border: 0 solid #1991FA;
    background: #D1E9FE;
    border-radius: 2px;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background .2s linear;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slider:hover {
        background: #1991FA;
    }

        .slider:hover .sliderIcon {
            background-position: 0 -13px;
        }

.sliderText {
    position: relative;
}

.sliderIcon {
}

.refreshIcon {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    margin: 6px;
    color: rgba(0,0,0,.25);
    font-size: 1rem;
    z-index: 5;
    transition: color .3s linear;
}

    .refreshIcon:hover {
        color: #6c757d;
    }

button {
    margin-top: -30px;
    position: relative;
    overflow: hidden;
    -webkit-transition: background 400ms;
    transition: background 400ms;
    color: #fff;
    background-color: #6200ee;
    padding: 1em 2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    outline: 0;
    border: 0;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.ripple {
    background-position: center;
    -webkit-transition: background 0.8s;
    transition: background 0.8s;
}

    .ripple:hover {
        background: #6200ee radial-gradient(circle, transparent 1%, #6200ee 1%) center/15000%;
    }

    .ripple:active {
        background-color: #cfb2f9;
        background-size: 100%;
        -webkit-transition: background 0s;
        transition: background 0s;
    }

.ft-slider {
    position: relative;
    text-align: center;
    font-size: 12px;
    background-color: rgb(232, 232, 232);
    color: rgb(102, 102, 102);
    margin: 0 auto;
}

    .ft-slider .ft-slider-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-user-select: none;
        user-select: none;
    }

.lock {
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #4d4d4d), color-stop(.4, #4d4d4d), color-stop(.5, #fff), color-stop(.6, #4d4d4d), color-stop(1, #4d4d4d));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: lock 2.6s infinite;
    -webkit-text-size-adjust: none;
}

.ft-slider .transition {
    transition: all .4s;
}

.ft-slider .ft-slider-content.success {
    color: #fff;
}

.ft-slider .ft-slider-bar {
    position: absolute;
    top: 0;
    left: 0;
    /*background: url(../img/slider.png) no-repeat center center #fff;*/
    background-color: #fff;
    background-size: 16px 16px;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*.ft-slider .ft-slider-bar.success {
	background-image: url(../img/success.png);
}*/

.ft-slider .ft-slider-bg {
    width: 0;
    height: 100%;
    background-color: rgb(122, 194, 60);
}

@-webkit-keyframes lock {
    0% {
        background-position: -140px 0;
    }

    100% {
        background-position: 140px 0;
    }
}

@keyframes lock {
    0% {
        background-position: -140px 0;
    }

    100% {
        background-position: 140px 0;
    }
}
