        /* *************************
            Modal 
        ************************* */
        
        #modalOverlay {
            width: 100%;
            height: 100%;
            /*  visibility: hidden; */
            display: none;
            position: fixed;
            top: 0;
            background-color: rgba(0, 0, 0, 0.8);
            align-items: center;
            display: flex;
            display: none;
        }
        
        #modalBox {
            background: rgba(0, 0, 0, 0.7);
            margin: 0 auto;
            width: 100%;
            z-index: 41;
            top: 25%;
            padding: 30px;
            -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            display: none;
        }
        
        #modalBox header {
            display: flex;
        }
        
        #modalBox h1 {
            margin: 0 0 20px 38px;
            text-align: center;
            color: #eee;
            flex: 1;
        }
        
        #modalBox button#closeModal {
            padding: 6px;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            background-color: rgb(255, 255, 255);
            font-weight: 600;
            color: #333333;
            box-shadow: 0px 0px 2px #333333;
            border-width: 0;
            font-size: large;
            cursor: pointer;
        }
        /* YouTube */
        
        #modalBox iframe {
            margin-left: calc(50% - 280px);
            border: 0px;
        }