/* Всплывающее окно */

#backfon {
    background: rgba(81, 72, 64, 0.7);
    background-image: url("images/grid-pattern.png");
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 105;
    top: 0;
    display: none;
}

.popup {display: none; /*opacity: 0;*/ z-index: 999; position: fixed; top: 50%; left: 50%;}

p.close {
    position: absolute;
    text-align: center;
    width: 50px;
    line-height: 50px;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 9;
    background: #FF9800;
    font-size: 1.4rem;
}

p.close i {margin-right: 0;}

p.close img {-o-transition: all 0.3s; transition: all 0.3s ease; -webkit-transition: all 0.3s ease 0s;}
p.close img:hover {transform: rotate(90deg);}  
 
p.popup-title {text-align: center; margin: 0 0 25px 0; text-transform: uppercase; font-size: 16px; font-weight: bold;}

/*.popup img {width:100%; height: auto; display: block;}*/

.popup .text {width: 100%; float: left; text-align: center; padding: 10px 5px 12px 5px; box-sizing: border-box; font-size: 1.8rem; background: #fff; color: #111;}

@media screen and (max-device-width: 480px) { .popup {width: 100%;} }