﻿.popup-message-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	background-color: rgba(0,0,0, 0.7);
}
.popup-message{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
    max-width: 1000px;
    width: calc(100% - 20px);
}
.text-block {
	padding: 40px;
	max-height: 500px;
	background-color: #fff;
}
.text-block h2,
.text-block h3 {
	margin-top: 10px;
}
.close-popup{
	position: absolute;
	right: 20px;
	top: 20px;
	width: 44px;
	height: 44px;
	margin: 0;
	cursor: pointer;
	background-color: #fff;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.2s cubic-bezier(.58,.00,.32,1);
}
.close-popup span{
	transition: all 0.2s cubic-bezier(.58,.00,.32,1);
	font-family: "Ubuntu", sans-serif;
	font-weight: 700;
	font-size: 30px;
}
@media only screen and (max-width: 1024px) {
	.popup-message .text-block{
			padding: 40px 20px;
	}
}
@media only screen and (max-width: 600px) {
	popup-message .close-popup{
		width: 38px;
		height: 38px;
	}
	popup-message .close-popup span{
		font-size: 24px;
	}
}