.pp-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    z-index: 99;
    display: none;
}

.policy-popup {
    position: relative;
}

.pp-title {
    position: absolute;
    top: 0;
    width: calc(100% - .3em);
    padding: 20px 30px;
    border-radius: 3px 3px 0 0;
    background-color: #eee;
    border-bottom: 1px solid #ddd;
    z-index: 1;
}

.pp-title h1 {
    font-size: 24px;
}

.pp-closeBtn {
    position: absolute;
    top: 26px; right: 30px;
    width: 20px;
    cursor: pointer;
    z-index: 2;
}

.policy-popup textarea {
    color: #222;
    width: 850px;
    height: 650px;
    padding: 30px;
    padding-top: 95px;
    font-size: 15px;
    line-height: 1.4;
    border: none;
    outline: none;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.policy-popup textarea::-webkit-scrollbar {
    width: .3em;
}

.policy-popup textarea::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .0);
}

.policy-popup textarea::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 30px;
    outline: none;
}


/*==================================================*/
@media (max-width: 950px) {
    .policy-popup {
        width: 90%;
    }

    .policy-popup textarea {
        width: 100%;
        height: 450px;
    }
}


@media (max-width: 550px) {
    .pp-title {
        padding: 15px 20px;
    }

    .pp-title h1 {
        font-size: 16px;
    }

    .pp-closeBtn {
        position: absolute;
        top: 15px; right: 16px;
        width: 10px;
        cursor: pointer;
        z-index: 2;
    }
    
    .policy-popup textarea {
        height: 350px;
        padding: 20px;
        padding-top: 70px;
        font-size: 13px;
        line-height: 1.5;
    }
}