@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.hover-pop {
    transform: scale(100%);
    transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
    &:hover {
        transform: scale(105%);
        box-shadow: 0px 30px 18px -8px rgba(0, 0, 0,0.1);
    }
}


.color-transition {
    transition: background-color linear 200ms, box-shadow linear 200ms;
}

.SwipeButton {
    float: left;
    width: 100%;
    height: 50px;
    position: relative;
}
.SwipeButton,
.SwipeButton * {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}
.sbContainer{
    float: left;
    width: 100%;
    height: 100%;
    background: #eee;
    border-radius: 50px;
    position: relative;
    /* box-shadow: inset 1px 1px 4px rgba(0,0,0,0.1); */
    overflow: hidden;
}
.sbContainerUnlocked{
    width: 50%!important;
    margin-left: 25%;
    transition: 0.5s;
    cursor: default;
}
.sbContainerUnlocked .sbcSlider{
    left: 100%!important;
    cursor: default;
    pointer-events: none;
}
.sbContainerUnlocked .sbcSliderArrow {
    transition: 0.5s;
    margin-right: -60px;
}
.sbContainerUnlocked .sbcSliderCircle {
    transition: 0.5s;
    margin-right: -60px;
}
.sbcSlider {
    float: left;
    width: 100%;
    position: absolute;
    height: 50px;
    top:0;
    left: 50px;
    margin-left:-100%;
    background: #333;
    border-radius: 25px;
    z-index: 100;
    /* box-shadow: 1px 1px 5px rgba(0,0,0,0.3); */
    cursor: pointer;
}
.sbcSliderText{
    position: absolute;
    top:0;
    left:0;
    right:0;
    line-height: 50px;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
    color: #fff;
    font-size: 13px;

}
.sbcSliderArrow{
    float: left;
    position: absolute;
    transform: rotate(45deg);
    border: 2px solid #fff;
    height: 8px;
    width: 8px;
    top:50%;
    right: 22px;
    margin-top: -6px;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform-origin: center;
    z-index: 10;
}
.sbcSliderCircle {
    position: absolute;
    right: 0;
    background: #444;
    top:0;
    height: 50px;
    width: 50px;
    border-radius: 100%;
}
.sbcText {
    float: left;
    position: absolute;
    top:0;
    left:0;
    right:0;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    letter-spacing: 2px;
    font-size: 13px;
    color: #aaa;
}

