﻿.layer_modal_wrap {
    z-index: 999;
    position: fixed;
    display: none;
    width: 100%;
    top: 0;
    left: 0;
}

    .layer_modal_wrap.active {
        display: block;
    }

    .layer_modal_wrap .layer_modal_bg {
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.6);
    }

    .layer_modal_wrap .layer_modal_contents_wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
        background: #fff;
        padding: 25px;
        box-sizing: border-box;
    }

.layer_modal_contents_wrap.mw_450 {
    border-radius: 10px;
    max-width: 450px;
    text-align: center;
}

.layer_modal_wrap .layer_close_btn {
    position: absolute;
    right: -10px;
    top: -50px;
    color: #fff;
}

.layer_modal_contents_wrap .layer_sevenday_close_btn {
    position: absolute;
    right: 0;
    bottom: -45px;
    cursor: pointer;
    padding: 3px 5px;
    box-sizing: border-box;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
}

.layer_modal_contents .notice_title h1 {
    line-height: 36px;
}

.layer_modal_contents .notice_title p {
    margin-top: 20px;
}

.layer_modal_contents_wrap a {
    width: 50%;
    margin: 0 auto;
    padding: 10px;
    margin-top: 30px;
    border-radius: 10px;
    background: #ccddff;
    cursor: pointer;
    transition: all 0.2s;
}

    .layer_modal_contents_wrap a:hover {
        background: #9abafe;
    }
