.check{
    width: 0;
    height: 0;
    position: absolute;
    top:0;
    left: 0;
    visibility: hidden;
}
.new_checker{
    width: 18px;
    height: 18px;
    position: relative;
    margin-bottom: -5px;
}
.new_checker:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    box-shadow: inset 0 0 5px 0 #1b1b1b;
}
.new_checker:after{
    content: "";
    width: 80%;
    height: 80%;
    position: absolute;
    bottom: 10%;
    left: 12%;
    background: transparent;
}
.check:checked + .new_checker:after{
    background: #e23300;
    border-radius: 3px;
}
.width-input span{
    font-size: 10pt;
    margin-top: -10px;
    display: inline-block;
}
.width-input .btn-danger{
    margin-top: 10px;
}
.popup-form{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 10;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.62);
}
.popup-form h2{
    text-align: center;
    font-size: 16pt;
}
.popup-form .input{
    pointer-events: none;
}
.popup-form .width-input{
    background: rgb(235, 227, 26);
    padding: 15px;
    max-width: 330px;
}
.popup-form .width-input input{
    width: 100%;
    margin: 5px auto;
}
