.overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .56);
	z-index: 10000;
	overflow-y: hidden;
	top: 0;
    left: 0;
}
.modal {
	width: 90%;
	height: 80%;
	background-color: #ffffff;
	margin: auto;
	top: 50%;
	left: 50%;
	position: absolute;
	padding: 35px 30px;
	transform: translate(-50%, -50%);
	z-index: 10000
}
.modal__close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 18px;
	cursor: pointer
}
.modal__title {
	font-size: 24px;
	text-align: left;
	font-weight: 400;
	margin-top: 20px;
	width: 92%;
}
.modal__container {
	width: 45%;
	margin: auto;
}
.modal__form {
	display: flex;
	flex-direction: column;
}
.modal__input {
	padding: 20px 7px;
	margin-top: 15px;
	border: #e2e2e2 solid 1px;
	font-size: 14px;
	font-weight: 500;
}
.modal__text {
	margin-top: 15px;
	margin-bottom: 5px;
	font-weight: 500;
}
.modal__message {
	height: 145px;
	margin-bottom: 15px;
	border: #e2e2e2 solid 1px;
	resize: none;
}
.modal__btn {
	height: 40px;
	background-color: #000000;
	color: #fff;
	margin-bottom: 10px;
	border: none;
	cursor: pointer;
}
.modal__license {
	font-size: 13px;
	text-align: center;
}
.publicU {
	color: #000;
	text-decoration: none;
}

@media(max-width:768px){
    .modal{
        padding: 25px 10px;
    }
    .modal__container{
        width:100%;
        
    }
    .modal__title {
        font-size: 17px;
        text-align: center;
        margin-top: 30px;
        width: 100%;
    }
}
}
