/**
 * Contact Us Modal Styles
 * Consistent with Show Us modal branding
 */

.show-us-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 20px 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.show-us-modal-overlay.active {
    display: flex;
}