

.popup-1
{
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.5);
}
.openser
{
	display: block;
	animation: opac .5s 1;
	animation-fill-mode: forwards;
}
@keyframes opac
{
	0%{
		opacity: 0;
		transform: scale(2);
	}
	100%{opacity: 1;
	transform: scale(1);
	}
}
.pop-in
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 800px;
    
    border-radius: 10px;
	background-color: white;
	padding: 30px;
	overflow: hidden;
	box-sizing: border-box;
}
.pop-in ul
{
	padding-left: 20px;
}
.pop-in li
{font-size: 20px
    
}
.pop-button
{
	display: block;
	overflow: hidden;
	position: relative;
}
.pop-button-1
{
	float: right;
	padding: 10px 20px;
	background-color: orange;
	color: white;
    cursor: pointer;
}
.pop-button-1:hover{
    background-color: #262626;
    color: orange;
}