.pop_wrap{
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	background: rgba(0,0,0,0.6);
	transition: opacity 0.2s, background 0.2s;
	opacity: 0;
	top: 0;
	left: 0;
}

.pop_wrap[show="1"]{
	opacity: 1;
}

.pop_win{
	position: absolute;
	left: 0;
	bottom: 0;
	background: white;
	border-radius: 20px 20px 0px 0px;
	transition: transform 0.2s;
	transform: translateY(100%);
	width: 100vw;
	padding: 30px 15px 20px;
}

.pop_wrap[show="1"] .pop_win{
	transform: translateY(0px);
}

.pop_body{
	position: relative;
	color: var(--pop_color);
	font-family: 'MontserratMedium';
}

.pop_message{
	width: 100%;
	padding: 50px 0;
	text-align: center;
	font-size: 20px;
}

.pop_big_button{
	display: flex;
	margin: auto;
	width: 76vw;
	justify-content: center;
	align-items: center;
	background: var(--pop_big_button);
	color: var(--font-color);
	height: 60px;
	border-radius: 5px;
	font-size: 20px;
	margin-top: 30px;
}

.pop_big_button[type="red"]{
	background: #b52c2c;
}

.pop_input_row,
.pop_input_row_info{
	margin-top: 15px;
}

.pop_input_row:first-child,
.pop_input_row_info:first-child{
	margin-top: 0;
}

.pop_input_row_info{
	font-family: 'MontserratMedium';
	display: block;
}

.pop_input_row_info .pop_input_label{
	font-size: 14px;
	line-height: 12px;
	color: var(--pop_row_info_label);	
}

.pop_input,
.pop_native_select,
.pop_input_value{
	font-family: 'MontserratMedium';
	font-size: 14px;
	line-height: 18px;
	color: var(--pop_input_color);
	height: 18px;
}

.pop_input{
	width: 100%;
}

textarea.pop_input{
	resize: none;
}

.pop_file_add,
.pop_small_button{
	font-size: 14px;
	background: var(--pop_big_button);
	color: var(--font-color);
	border-radius: 5px;
	line-height: 20px;
	text-align: center;
	width: 140px;
	padding: 5px 10px;
}

.pop_file_add > input[type="file"],
.pop_big_button > input[type="submit"]{
	display: none;
}



.pop_input[type="date"],
.pop_input[type="time"]{
	text-align: left;
	width: fit-content;
}

.pop_input_row_info .pop_input_value{
	line-height: 20px;
	font-size: 16px;
}