/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Styles for overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Styles for modal */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin: 0;
    width: 1000px;
    height: auto;
    z-index: 99999999999;
}


