/* Base plugin styles */
.vv2-event-checkout {
    margin-top: 20px;
}

/* Modal Styles */
#wrapper {
    position: relative;
}

#liability-waiver-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}

#liability-waiver-modal:target {
    display: block;
}

.modal-box {
    background: #fff;
    padding: 20px;
    max-width: 700px;
    width: 90%;
    margin: 5% auto;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
}

.modal-box .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 15px;
}

.modal-box .close:hover,
.modal-box .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}