.userpop {
  width: 450px;
  position: fixed;
  background: #212121;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.22);
display:block;
  z-index: 20000;
  left: 50%;
  margin-left: -225px;
      height: 250;
    top: 50%;
	margin-top:-125px;
}
.userpop:before {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  content: '';
  left: 0;
  top: 0;
  z-index: -1;
}
.userpop .userpophead {
 padding: 5px 10px;
    background: linear-gradient(#272727, #010408);
    color: #a7a7a7;
	text-align:center;
}
.userpop .userpophead h1 {
  margin: 0;
  padding: 0;
      font-size: 18px;
}
.userpop .userpopfooter {
    padding: 0px;
    text-align: right;
    border-top: 1px solid #6f6f6f;
    background: #000000;
    display: flex;
}
.userpop .userpopbody {
padding: 5px;
    background: #eee;
    height: 168px;
    overflow-y: auto;
	color:#333;
}
.userpop .userpopbody p {
  margin: 0;
  line-height: 1.5em;
}
.userpop .userpopfooter a {
  padding: 10px 20px;
    background: #252525;
    color: #FFF;
    text-decoration: none;
    border-radius: 0px;
    display: inline-block;
    text-align: center;
    margin: 0px 0px;
    border: 1px solid #000;
    flex: 1;
}
.userpop .popup-footer a:focus, .popup-container .popup-footer a:hover {
  box-shadow: 0px 0px 4px 1px #444;
}
.userpop .userpopfooter a:hover, .userpop .userpopfooter a:active{ background: #403f3f; }
.userpop .userpopbody::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.userpop .userpopbody::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.userpop .userpopbody::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.userpop .userpopbody::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

@media only screen
    and (max-device-width : 500px)
{
        .userpop{ width:320px; margin-left:-160px; }
}

