
html{
    background: rgba(30,18,63,1);
}
body{
    margin:0px;
}
#wrapper{
    display: flex;
    /*height: 60vh;*/
    justify-content: center;
    align-items: center;
    background:  rgba(30,18,63,1);
    width:500px;
    max-width: 100vw; 
    margin: 0 auto;
    margin-top: 15vh;
}
#item{
    background: #fff;
    width: 100%;
    padding: 20px;
    margin: 20px;
}
#img{
   width: 100%;
   border-radius: 10px;
}
#drag{
    position: relative;
    background-color: #e8e8e8;
    width: 100%; 
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-top: 10px;
    border-radius: 20px;
}
#drag .handler{
    position: absolute;
    top: 3px;
    left: 15px;
    width: 26px;
    height: 26px;
    border: 1px solid #ccc;
    cursor: move;
    border-radius: 20px;
}
.handler_bg{
    /* background: #fff url("../img/slider.png") no-repeat center; */
    border: 1px solid #fff;
   
}
.handler_ok_bg{
    background: #fff url("../img/complet.png") no-repeat center;
}
#drag .drag_bg{
    background:  linear-gradient(to right, #F2C990,#F25A08,#FC004D);
    height: 34px;
    width: 0px;
    border-radius: 20px 0 0 20px;
}
#drag .drag_text{
    position: absolute;
    top: 0px;
    width: 100%;
    color:#9c9c9c;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -o-user-select:none;
    -ms-user-select:none;
    border-radius: 20px;
    font-size: 14px;       
}