/* LOCKED CARD */

.yiwu-lock{

    width:100%;
    min-height:70vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    border:1px solid #EA00FF;
    border-radius:20px;

    padding:50px;

    background:#fff;

    box-sizing:border-box;

}

.yiwu-lock-icon{

    font-size:60px;
    margin-bottom:20px;

}

.yiwu-lock h2{

    margin:0;
    font-size:34px;
    color:#222;

}

.yiwu-lock p{

    color:#777;
    font-size:18px;
    margin:18px 0 35px;

}

.yiwu-btn{

    display:inline-block;

    background:#EA00FF;

    color:#fff;

    padding:15px 40px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

    transition:.25s;

}

.yiwu-btn:hover{

    background:#c700d8;
    color:#fff;

}

/* LOADER */

.yiwu-frame-wrapper{

    width:100%;

    min-height:80vh;

}

.yiwu-loader{

    width:100%;
    height:80vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    gap:20px;

    border:1px solid #EA00FF;
    border-radius:20px;

    background:#fff;

}

.yiwu-loader p{

    margin:0;

    color:#666;

    font-size:18px;

}

.yiwu-spinner{

    width:60px;
    height:60px;

    border:6px solid #ececec;
    border-top-color:#EA00FF;

    border-radius:50%;

    animation:yiwuSpin 1s linear infinite;

}

.yiwu-iframe{

    width:100%;
    height:80vh;

    border:1px solid #EA00FF;
    border-radius:20px;

    overflow:hidden;

}

@keyframes yiwuSpin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}