/*popup code*/

.policy-content {
    padding: 25px;
}

#policy-wrap {
    display: none;
    width: 70%;
    height: 80%;
    padding: 0;
    position: fixed;
    text-align: center;
    z-index: 999999999;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    -webkit-animation: zoom-in 1s 1 cubic-bezier(.77, 0, .175, 1);
    animation: zoom-in 1s 1 cubic-bezier(.77, 0, .175, 1);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    background-color: #fff;
    -webkit-transition: 300ms all cubic-bezier(.4, 0, .2, 1);
    transition: 300ms all cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 8px 60px 0 rgba(0, 0, 0, 0.31), 0 12px 90px 0 rgba(0, 0, 0, 0.42);
    border-radius: 8px;
    overflow: hidden;
}

iframe {
    border: none;
}

#policy-btn,
#terms-btn {
    cursor: pointer;
    color: blue;
}

#policy-close {
    width: 30px;
    height: 30px;
    background: gray;
    float: right;
}

#policy-close img {
    width: 14px;
    padding-top: 7px;
}


/*end popup code*/