#dap-pull-refresh{

    position:fixed;

    top:-70px;

    left:0;

    width:100%;

    height:70px;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    font-size:15px;

    font-weight:600;

    color:#0B3D91;

    z-index:999999;

    transition:.25s;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

#dap-pull-refresh.show{

    top:0;

}

.dap-spinner{

    width:22px;

    height:22px;

    border-radius:50%;

    border:3px solid #ddd;

    border-top-color:#0B3D91;

    animation:dap-spin .8s linear infinite;

}

@keyframes dap-spin{

    to{

        transform:rotate(360deg);

    }

}