/* Wrapper */

.bvm-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:40px 0;
}

/* Button */

.bvm-button{

    background:#000;
    color:#fff;

    border:none;

    padding:14px 36px;

    font-size:16px;

    font-weight:600;

    border-radius:4px;

    cursor:pointer;

    transition:.3s;

}

.bvm-button:hover{

    background:#222;

}

.bvm-button:disabled{

    opacity:.6;

    cursor:not-allowed;

}

/* Loading */

.bvm-loading{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:15px;

    color:#666;

}

.spinner{

    width:18px;

    height:18px;

    border:3px solid #ddd;

    border-top:3px solid #000;

    border-radius:50%;

    animation:bvm-spin .8s linear infinite;

}

@keyframes bvm-spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}