.pf
    {
      width: 100%;
      /*padding-top: 100px;*/
      position:fixed;
      top:5px;  
      z-index:999999;
    }
    .popp
    {
        width:40% !important;
        background:rgb(255,255,255) !important;
        z-index:999999;
       margin: auto;
       padding:20px;
    }
    .pop
    {
     
      animation-name: pop;
      animation-duration: .8s;
      -webkit-animation-delay: 2s;
      animation-fill-mode: forwards;
      z-index:999999;
      transform: scale(0);
    }
    .popp img
    {
      width: 100%;
    }
    .popp .close
    {
      top: 20px;
      z-index: 9999;
      background-color: #000;
      padding: 10px 20px 15px 20px;
      color: #fff;
      border-radius: 100%;
      opacity: .7 !important;
    }
    @keyframes pop
    {
      0%{transform: scale(.2);}
     100%{transform: scale(1);}
    }
    .fade:not(.show) {
   opacity: 1 !important; 
    }

    @media screen and (max-width:768px)
    {
      .popp img
      {
        width: 100%;
      }
      .popp
      {
          width:100% !important;
      }
      .popp .close
      {
          font-size:6px !important;
      }
    }