.alert{
    position:absolute;
    min-width:200px;
    /* bottom:20px; */
    left:20px;
    z-index:9;
    /* transition: all 2s; */
    display:none
}
.logo{
    font-size:25px;
}

/* footer를 항상 바탁에 있도록 하기 위하여 */
body {
  display: flex;
  flex-direction: column;
}
#content-wrap {
    flex: 1 0 auto;
}
#footer {
    flex-shrink: 0;
}
/* ~ footer를 항상 바탁에 있도록 하기 위하여 */

#header, #footer {
    background-color: #2b2926;
    color:#fff;
}

#menu a,
#menu-membership a,
#mobile-menu a{
    margin-left:20px;
}
#menu a:hover,
#menu-membership a:hover{
    font-weight:bold;
}
#mobile-menu{
    position:fixed;
    display:none;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow: auto;
    background:rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    /* border-left:1px solid silver; */
    z-index:998;
}
#mobile-menu-body{
    position:fixed;
    display:none;
    top:0;
    right:0;
    width:80%;
    background:#ffffff;
    height:100%;
    text-align:left;
    /* border-left:1px solid silver; */
    overflow-y:scroll;
    overflow-x:hidden;
    z-index:999;
    /* padding:15px; */
}
.selected {
     outline : 4px solid var(--xred);
}
button.selected {
    background-color : var(--red);
    color : #fff;
}
.template-item{
    position:relative;
}
.template-item-ui{
    visibility: hidden;
    opacity:0;
    background-color:rgba(26, 140, 255, 0.25);;
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    transition: all .2s ease-in;
}
.template-item:hover .template-item-ui{
    visibility: visible;
    opacity:1;
}
/* qpf : qpress framework */
.qpf-modal-wrap {
    z-index: 3;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-left: var(--space);
    padding-right: var(--space);
    display: flex;
    justify-content: center;
    align-items: center;
}
.qpf-modal-body {
    /* margin: 0 auto; */
    width:80%;
    /* max-width: 750px; */
    background: #fff;
    position: relative;
    box-shadow: 2px 2px 5px #6E6E6E;
    border-radius: var(--default-radius);
    overflow: hidden;
    padding:16px;
}
.qpf-modal-closer{
    position:absolute;
    top:10px;
    right:10px;
}

.qp-modal-header a,
.qp-modal-header button {
    padding:5px 10px!important;
    margin:5px;
}
.warning-msg {
    position:absolute;
    display:block;
    color:var(--xred);
    background-color:var(--redx);
    padding:5px;
    font-size:11px;
}
.page-edit-btn {
    position: fixed!important;
    bottom: 10px;
    right: 10px;
    z-index: 999999999;
}
