.openBtn {
    background: #f1f1f1;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

.openBtn:hover {
    background: #bbb;
}

.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 666;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.overlay .closebtn:hover {
    color: #ccc;
}

.overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: white;
}

.overlay input[type=text]:hover {
    background: #f1f1f1;
}

.overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

.overlay button:hover {
    background: #bbb;
}

._policy-modal {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: auto;
    z-index: 99999;

    width: 500px;
    max-width: calc(100% - 20px);

    padding: 10px 20px 10px 10px;
    display: none;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;

    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    font-size: 13px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    box-sizing: border-box;
}
._policy-modal p{
    padding: 0px;
    margin: 0px;
}

._policy-modal._policy-modal--show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}