.popover-layer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.75);
    z-index: 11000;
}
.popover {
    width: 400px;
    background: white;
    border: 1px solid #707070;
    position: absolute;
    top: 50px;
    left: 50%;
    padding: 0 20px;
    margin: 0 0 0 -200px;
    z-index: 11500;
    color: #818181;
    font-family: "merriweather_sansregular", Arial, Tahoma;
    font-size: 13px;
    line-height: 23px;
}
.popover .head {
    padding: 30px 0 20px 0;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.popover .head .close {
    width: 30px;
    height: 30px;
    display: block;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    background: url(/images/ico-close.svg) center center no-repeat;
    background-size: 16px;
}
.popover .text {
    padding: 25px 0;
}
.popover .text p {
    margin: 0 0 20px;
}
.popover .text p:last-of-type {
    margin: 0;
}
.popover .button {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ccc;
}
.popover .button a {
    line-height: 34px;
    padding: 0 15px;
    display: inline-block;
    background: #f5a212;
    position: relative;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: "merriweather_sansbold";
}
@media screen and (max-width: 425px) {
    .popover {
        width: 96%;
        margin: 0 0 0 -48%;
    }
}