/* dbcenter_view */
.panda_blur{
    position: relative;
}
.panda_blur p{
    filter: blur(6px);
    -webkit-filter: blur(6px);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.join_panda_btn{
    cursor: pointer;
    width: 150px;
    height: 32px;
    color: white;
    text-align: center;
    display: block;
    background-color: #049ed5;
    box-sizing: border-box;
    padding-top: 3px;
    border-radius: 6px;
    font-size: 13px;
    position: absolute;
    top: calc(50% - 16px);
    left: calc(50% - 69px);
}

/*공통*/
button.panda_keyword_btn{
    width: 125px;
    background-color: #0475D5;
    color: white;
    border: none;
}
.cm_api_layer_wrap .panda_keyword_btn{
    background-color: #FF3800 !important;
}
.panda_box{
    display: none;
    position: absolute;
    margin-top: 10px;
    width: 358px;
    min-height: 267px;
    padding: 0 16px 40px 16px;
    background-color: white;
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    z-index: 999;
}
.panda_box .panda_title{
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 46px;
}
.panda_box .panda_close{
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.panda_box .panda_con{
    box-sizing: border-box;
    min-height: 98px;
    border-top: 1px solid #F0F3F6;
    border-bottom: 1px solid #F0F3F6;
    padding: 14px 0 14px;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: #737E88;
    letter-spacing: -0.011rem;
}
#panda_agree{
    display: none;
}
#panda_agree + label{
    background-image: url(../images/panda_check.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px;
    padding-left: 24px;
    height: 24px;
    display: inline-block;
    line-height: 24px;
    font-size: 13px;
}
#panda_agree:checked + label{
    background-image: url(../images/panda_checked.png);
}
#panda_agree2{
    display: none;
}
#panda_agree2 + label{
    background-image: url(../images/panda_check.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px;
    padding-left: 24px;
    height: 24px;
    display: inline-block;
    line-height: 24px;
    font-size: 13px;
}
#panda_agree2:checked + label{
    background-image: url(../images/panda_checked.png);
}
.panda_terms{
    height: 130px;
    background-color: #F0F0F0;
    border-radius: 6px;
    padding: 8px 10px;
    overflow: scroll;
    margin-top: 14px;
}
.panda_box ul{
    padding: 12px 0 12px;
    font-size: 13px;
    font-weight: 700;
    line-height: 100%;
}
.panda_box ul li{
    padding: 0px;
    min-height: auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}
.panda_box ul li>div{
    line-height: 150%;
    width: auto;
    font-size: 16px;
}
.panda_box ul span{
    font-weight: 400;
    font-size: 13px;
}
.panda_btn{
    display: block;
    width: 100%;
    background-color: #0475D5;
    border-radius: 0px 0px 6px 6px;
    font-weight: 700;
    font-size: 14px;
    box-sizing: border-box;
    color: white;
    text-align: center;
    padding-top: 10px;
    line-height: 120%;
    height: 40px;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.panda_btn.load span,
.join_panda_btn.load span {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    background-image: url(../images/panda_load.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    animation: load 2s infinite linear;
}
@keyframes load {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}