.modal {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #676767c4;

	left: 0;
	top: 0;
	z-index: 9999999999;
}
.modal.show {
	display: block;
}

.modal-content {
	position: relative;
	width: 100%;
	height: 100%;
}
.modal-body {
	/* background: #fff; */
	padding: 30px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.modal-close {
	  padding: 0;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
	/* отображаем курсор в виде руки при наведении; некоторые
	считают, что необходимо оставлять стрелочный вид для кнопок */
	cursor: pointer;

	position: absolute;
	color: #fff;
	right: 10px;
	top: 10px;
	font-size: 30px;
}
@media screen and (max-width: 480px) {
    .modal .form__content {
        padding: 30px;
    }
}