.openVrModal {
    position: fixed;
    width: 400px;
    height: 260px;
    background-color: #fff;
    top: 35%;
    left: 30%;
    z-index: 6;
    transform: translate(50%,-50%);
    border: 1px solid #aaa;
    box-shadow: 3px 3px 5px rgb(0 0 0 / 10%);
    padding: 25px;
    text-align: center;
    display: none;
}

.pop_basket .move_btn button {
    width: 48%;
    height: 42px;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    transition: all .25s ease;
    background-color: #0e7bbe;
    color: #fff;
}

.pop_basket .move_btn button:hover {
    background-color: #008be4;
}

.pop_basket .popup_circle {
    display: block;
    content: "";
    width: 100px;
    height: 100px;
    background-color: #f7f7f7;
    border-radius: 50%;
    margin: 10px auto 13px;
}

.pop_basket .popup_circle i {
    font-size: 40px;
    line-height: 100px;
    color: #bbb;
}

.pop_basket .in_text {
    font-size: 15px;
    color: #444;
    font-weight: 400;
    padding-bottom: 20px;
}

.pop_basket .d_pop_closeBtn {
    position: absolute;
    top: 10px;
    right: 5%;
    font-size: 25px;
    color: #aaa;
    transition: all .25s ease;
}

@media screen and (max-width:999px){
    .openVrModal{
        width: 80%;
        left: -30%;
    }
}