﻿/* 
    팝업 공통화용 css - 중복불가
    '#divPopupLayerPublic'로 시작해야함
*/

#divPopupLayerPublic 
{
    position:fixed;

    z-index:100;
}

#divPopupLayerPublic .plpWrap
{
    /*position:relative;*/
    position:fixed;
}

#divPopupLayerPublic .plpContent
{
    position:relative;

    /*width:800px;
    height:600px;*/
}

#divPopupLayerPublic .plpTitle
{
    background: #fa8d26;
    height: 40px;
    overflow: hidden;

    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
}

#divPopupLayerPublic .plpTitle .plpTitleText
{
    padding: 5px;

    color: #fff;
    font-family: ngb,나눔고딕, 'Nanum Gothic';
    font-weight: bold;
    font-size: 1.2em;
    line-height: 30px;
    
}

#divPopupLayerPublic .plpTitle .plpRightBtn
{
    float: right;
    margin-top: 5px;
}

#divPopupLayerPublic .plpTitle .plpRightBtn .plpCompleatBtn
{
    float: left;
    margin-right: 10px;
    background: #868686;
    height: 27px;
    padding: 0 8px;
    border: 1px solid #6a6a6a;
    border-radius: 4px;
    font-size: .9em;
    font-family: ngb,나눔고딕, 'Nanum Gothic';
    color: #fff;
}

#divPopupLayerPublic .plpTitle .plpRightBtn .plpCloseBtn
{
    float: left;
    margin: 3px 5px 0 0;
    background: url(../../img/Messenger/messenger_icon01.png) no-repeat 0 -150px;
    width: 23px;
    height: 20px;
    border: 0;
}

.buttonCompleatHide
, .buttonCloseHide
 {
    display:none;
}

#divPopupLayerPublic .plpMove
{
    cursor:move;

    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}


#divPopupLayerPublic .plpBody
{
    height:100%;
    width:100%;

    background-color:#ffffff;
}

#divPopupLayerPublic .plpBody.noBackGround {
    background: initial;
}
    

#divPopupLayerPublic .BlockBody 
{
    position: fixed;
    z-index: 99;
    display: block;
    filter: alpha(opacity=70);
    opacity: 0.7;
    -moz-opacity: 0.7;
    background: #000;
    left: 57px;
    top: 56px;
    width: 100%;
    height: 100%;
}
