﻿body {
}

#tblCalcExecVideo {
    border:0px solid red;
}

#tblCalcExecVideo {
    margin:0 auto;
    width: 800px;
}

    #tblCalcExecVideo img {
        width: 100%;        
    }

/*********************************************************************/

#divPopup {    
    background-color:black;    
}

.popup { /* 팝업이 열렸을 때, 팝업창 주변 전체를 어둡게 합니다 */
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    pointer-events: none;
    z-index:10000;
}

.popup-inner { /* 열렸을 때 팝업창 크기와 색상을 지정합니다. */
    position: absolute;
    width: 90%;
    /*height: 320px;*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    background-color: white;
    pointer-events: auto;
}

.popup-contents {
    display:block;
    width:100%;
    height:100%;
    background-color:black;    
}

#divPopupClose {
    display:block;
    text-align:right;
}

    #divPopupClose span {
        display:inline-block;
        position: relative;
        right: 0;
        margin-bottom:5px;
    }

.popup-close { /* 팝업창 내 닫기 버튼의 위치를 지정합니다. */
    position: absolute;
    display: block;
    top: 10px;
    right: 20px;
    font-size: 20pt;
    text-decoration: none;
    color: white;
}

/* 모바일 일때 */
@media screen and (max-width: 650px) {

    #tblCalcExecVideo {      
        width: 95%;
    }

                

}
/* 모바일 end */
