#qb-quick-buy-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.qb-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}

.qb-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.qb-quick-buy-button,.qb-quick-buy-button-form {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: -13px;
    height: 4vh;
    text-transform: uppercase;
}
@media (max-width: 468px) {
    .qb-quick-buy-button,.qb-quick-buy-button-form {
        margin-left: 28%;
    }
}