.layerPopup#agrForm .layerBody{
    height: 500px;
    transform: translate(-50%, -50%);
}
.layerPopup#agrForm .layerBody .contPop{
    padding-top: 0;
    height: auto;
}
.layerPopup#agrForm .layerBody .policy_con{
    padding: 0;
}

.title-wrap{
    padding: 30px 25px 0;
}
.title-wrap h2{
    margin-bottom: 30px;
    font-size: 20px;
    color: #111;
}
.use-content-wrap{
    height: calc(500px - 193px);
    overflow: auto;
}

.use-content{
    margin: 0 25px 25px;
    padding: 30px 30px 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.use-content strong{
    font-size: 14px;
    color: #333;
}
.use-content ul{
    margin-bottom: 20px;
}
.use-content ul li{
    margin:8px 0;
    font-size: 13px;
    line-height:1.6;
    color: #555;
}

.useAgree{
    margin-bottom: 20px;
}
.useAgree input[type="checkbox"] {
    display:none; appearance:none; display:none;
}
.useAgree input[type="checkbox"] + label {
    display: block;
    position:relative;
    padding: 0;
    background: none;
    font-size:16px;
    font-weight:700;
    letter-spacing: -0.3px;
    color:#111;
    cursor:pointer;
}
.useAgree input[type="checkbox"] + label span{
    display: inline-block;
    padding-left: 30px;
    line-height: 1.4;
}
.useAgree input[type="checkbox"] + label:before {
    content:'';
    position:absolute;
    width:20px;
    height:20px;
    top:50%;
    left:0;
    transform:translateY(-50%);
    border: 1px solid #111;
    border-radius: 2px;
}
.useAgree input[type="checkbox"]:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    left: 8px;
    width: 10px;
    height: 6px;
    border-bottom: 2px solid #111;
    border-left: 2px solid #111;
    transform: rotate(-45deg) translateY(-50%);
}

.use-btn{
    display: block;
    margin: 0 auto 20px;
    width: 94%;
    height: 50px;
    background: #111;
    border: 0;
    border-radius: 10px;
    font-size:18px;
    font-weight: 700;
    text-align: center;
    text-shadow: none;
    color: #fff;
}
.use-btn.deactivate{
    background: #ddd;
}

@media (max-width: 768px) {
    .title-wrap{
        padding: 20px 20px 0;
    }
    .title-wrap h2{
        margin-bottom: 20px;
        font-size: 16px;
    }
    .use-content-wrap{
        height: calc(500px - 150px);
    }
    
    .use-content{
        margin: 0 20px 20px;
        padding: 20px 20px 5px;
    }
    
    .use-content ul{
        margin-bottom: 10px;
    }
    .use-content ul li{
        font-size: 11px;
    }
    
    .useAgree input[type="checkbox"] + label {
        font-size:14px;
    }
    
    .use-btn{
        height: 40px;
        font-size:14px;
    }
}