.pop_wraper{
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.56);
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	opacity: 0;
}

.pop_up_win{
	border-radius: 0px;
	padding: 30px 10px;
	-webkit-transition: opacity 0.3s,transform 0.3s;
	transition: opacity 0.3s,transform 0.3s;
	color: #353535;
	background: #FFFFFF;
	min-width: 320px;
}


.pop_up_win[hide]{
	-webkit-transform: translate(0%, -30px);
	transform: translate(0%, -30px);
	opacity: 0;
}

.pop_up_win[close]{
	-webkit-transform: translate(0%, 30px);
	transform: translate(0%, 30px);
	opacity: 0;
}

.pop_title{
	font-family: 'MontserratSemiBold';
	font-size: 20px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pop_input_wrap{
	margin: 10px 0 0;
}

.pop_input_title{
	font-family: MontserratMedium;
	font-size: 14px;
}

.pop_input{
	display: block;
	width: 100%;
	background: #e2e2e2;
	height: 40px;
	font-family: 'Montserrat';
	padding: 0 5px;
	font-size: 16px;
}

.pop_button{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	margin: 20px 0 0;
	background: #0083cc;
	color: white;
	cursor: pointer;
	user-select: none;
}

.pop_button:hover{
	background: #0097eb;
}

.pop_button:active{
	background: #006ca8;
}

.pop_button[red]{
	background: #cc0000;
}

.pop_button[red]:hover{
	background: #eb0000;
}

.pop_button[red]:active{
	background: #a80000;
}

.pop_info_wrap{
	width: 370px;
	padding: 15px 0;
	min-height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	text-align: center;
}

.user_remove_pop_wrap{
	width: 370px;
	text-align: center;
}

.users_remove_text{

}

.users_remove_name{
	margin: 10px 0 0;
}