 @font-face{
    font-family:'Yekan';
    src:url('https://javadb313.ir/Yekan.woff');
    font-weight:normal;
    font-style:normal;
}
html{
    font-family:Yekan,Arial;
    text-align:center;
}
body{
    max-width:600px;
    margin:0px auto;
    padding-top:100px;
}
.panel{
    background:#eee;
    border-radius:50px;
    width:400px;
    display:inline-block;
}
.switch{
    position:relative;
    display:inline-block;
    width:120px;
    height:63px;
}
.slider{
    border-radius:50px;
    position:absolute;
    cursor:pointer;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background:#ccc;
    transition:0.5s; 
    
}
.slider:before{
    border-radius:50px;
    position:absolute;
    content:"";
    height:55px;
    width:55px;
    left:4px;
    bottom:4px;
    background:white;
    transition:0.5s;
}
input:checked+.slider{
    background:#2396F3;
}
input:checked+.slider:before{
    transform:translateX(58px);
}

.inp{
    direction:rtl;
    font-family:Yekan;
    color:black;
    background:#bbb;
    border-radius:15px;
    border:none;
    height:40px;
    text-align:center;
    margin-top:20px;
}
.sub{
    font-family:Yekan;
    font-size:15px;
    color:#bbb;
    background:#222;
    border-radius:20px;
    margin:30px;
    padding:10px;
    border:none;
    transition:0.3s;
}
.sub:hover{
    background:#000;
    color:#eee;
}
.delete{
    cursor:pointer;
    color:red;
    font-size:12pt;
    border:1px solid red;
    border-radius:10px;
    padding:2px;
    transition:0.3s;
    margin:10px;
}
.delete:hover{
   color:white; 
   background:red;
}

