﻿#developer_div_popup {
    width: 600px;
}

.container-box {
    height: 470px;
    padding: 40px;
    text-align: center;
}

    .container-box h1 {
        font-size: 47px;
        font-weight: bold;
        color: #fff;
        margin: 0;
        font-family: "Noto Sans KR", sans-serif;
    }

    .container-box h2 {
        font-size: 47px;
        font-weight: bold;
        color: #fff;
        margin: 10px 0 30px;
        font-family: "Noto Sans KR", sans-serif;
    }

    .container-box p {
        font-size: 17px;
        color: #fff;
        line-height: 30px;
        margin-bottom: 20px;
        text-align: left;
    }

    .container-box h1 .po_r {
        font-size: 20px;
        color: #ffffff;
        line-height: 0px;
        background: transparent;
        padding: 0;
        font-weight: 400;
        border-radius: 0px;
    }

.popup_bottom {
    position: absolute;
    width: 100%;
    padding: 15px 30px;
    background: #212529
}

.container-box .ar_sdk_go_btn_box {
    margin-top: 50px;
    text-align: center;
}


#developer_div_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    z-index: 1000000000;
}

#developer_div_popup {
    display: inline-block;
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
    -o-animation: fadein 2s; /* Opera */
}

@keyframes fadein {
    from {
        opacity: 0;
        margin-top: 20px
    }

    to {
        opacity: 1;
        margin-top: 0px
    }
}

@-moz-keyframes fadein { /* Firefox */
    from {
        opacity: 0;
        margin-top: 20px
    }

    to {
        opacity: 1;
        margin-top: 0px
    }
}

@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
        margin-top: 20px
    }

    to {
        opacity: 1;
        margin-top: 0px
    }
}

@-o-keyframes fadein { /* Opera */
    from {
        opacity: 0;
        margin-top: 20px
    }

    to {
        opacity: 1;
        margin-top: 0px
    }
}

.developer_div_popup-content {
    width: 100% !important;
    outline: 2px solid #212529;
    outline-offset: -2px;
    background: url('/images/popup.jpg') no-repeat bottom;
}

.container-box span {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 25px;
    background: #fff;
    border-radius: 7px;
    padding: 8px 22px;
    margin-bottom: 24px;
    display: inline-block;
    font-family: "Noto Sans KR", sans-serif;
}

.developer_popup_bk {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba( 0, 0, 0, 0.8 );
    z-index: 10000000;
    backdrop-filter: blur(3px);
}

.popup_check {
    width: 20px;
    height: 20px;
    margin-top: 5px;
}

input {
    display: none;
}

    input + label {
        width: 24px;
        height: 24px;
        border: 2px solid #fff;
        background: #fff;
        display: inline-block;
        cursor: pointer;
        vertical-align: middle;
        border-radius: 3px;
        margin-top: 5px;
        user-select: none
    }
    /* 체크되었을 때 */
    input:checked + label {
        border: 2px solid #056b6e;
        background: #00898c;
    }

    input + label + label {
        position: relative;
        top: 3px;
        cursor: pointer;
        user-select: none;
        font-size: 16px;
        color: #a7a8ac;
        vertical-align: super;
        height: 30px;
        padding-left: 10px
    }

.popup_img {
    width: 90%
}

.close_popup a {
    width: 50px;
    height: 30px;
    float: right;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    line-height: 32px
}

    .close_popup a:hover {
        color: #00c3b3
    }

.popup_close {
    display: block
}

.ar_sdk_go_btn {
    display: inline-block;
    width: 180px;
    margin-top: 30px;
    padding: 5px 20px;
    border: 2px solid #000;
    border-radius: 50px;
    font-size: 16px;
    color: #fff;
    background: #071124;
    font-weight: 500;
    transition: all 0.5s;
    text-align: center;
    margin: 0 10px;
}

    .ar_sdk_go_btn:hover {
        border: 2px solid #fff;
        color: #071124;
        background-color: rgba( 255, 255, 255, 0.7 );
        transition: all 0.5s;
        font-weight: 600;
        text-decoration: none;
    }
