﻿/* The Modal (background) */
.fullPageBlack {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
    box-sizing: border-box;
    border : none 0;
}

    /* Modal Content/Box */
    .fullPageBlack .modal-content {
        margin-top: 5%;
        margin-left : auto;
        margin-right : auto;
        padding: 20px;
        border: 1px solid #888;
    }

/* The Close Button */
    .fullPageBlack .fullPageBlackClose {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

        .fullPageBlack .fullPageBlackClose:hover,
        .fullPageBlack .fullPageBlackClose:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

    .fullPageBlack .modal-content .posterPic
    {
        max-width : 100%;
        height : auto;
        width : 100%;
    }

    .fullPageBlack .modal-content embed, .fullPageBlack .modal-content iframe 
    {
        width: 100%;
    }

    .fullPageBlack .modal-content iframe
    {
        border : none 0;
    }



