* {
	box-sizing: border-box;
}

/* BUTTON */
.response-window .button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 180px;
	max-width: 300px;
	padding: 10px 15px;
	height: 48px;
	border-radius: 3px;
	border: none;
	vertical-align: middle;
	margin-right: 10px;
	margin-bottom: 10px;
	font-family: 'GTE-regular', sans-serif;
	font-size: 15px;
	text-align: center;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	user-select: none;
	text-decoration: none;
	transition: 0.1s ease;
	outline: none;
	background: #2362A9;
	color: #fff !important;
}
/* /BUTTON */

/* POPUP */
.response-window-wr {
	display: flex;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.close-area {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #dee0e457;
}

.response-window {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	max-width: 600px;
	font-size: 20px;
	background: #fff;
	color: #2b3137;
	box-shadow: 0px 1px 5px 0px rgba(27, 31, 35, 0.15);
	font-size: 16px;
	margin: 10px;
	border-radius: 10px;
	overflow: hidden;
}

.response-window .response-window__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 50px;
	background: #364250;
	color: #fff;
	padding: 0 20px;
	font-size: 20px;
}

.response-window .response-window__body {
	width: 100%;
	padding: 0px 20px;
	margin: 12px 0;
	min-height: 80px;
}

.response-window .response-window__footer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 12px;
}

.response-window .response-window__close {
	display: inline-flex;
	justify-self: center;
	align-items: center;
	width: 20px;
	height: 20px;
	padding: 14px;
	/*background: url("../images/common/close-w.svg") no-repeat center center;*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px;
	transition: 0.1s ease;
	cursor: pointer;
}

.response-window .response-window__image {
	width: 560px;
	height: 560px;
	box-shadow: 0 0 20px 0px #ced5de;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.response-window .response-window__image .button {
	position: absolute;
	top: 210px;
	/* bottom: 327px; */
	left: 55px;
	/* right: 10px; */
	margin: auto;
	width: 180px;
}

.response-window .response-window__image .response-window__close {
	padding: 22px;
	position: absolute;
	right: 0;
	margin: 10px;
	/* border: 1px solid #2362a9; */
	border: 1px solid #aad4bf;
	background-color: #fcfcfc;
	border-radius: 100%;
	background-image: url("../images/common/close-g.svg");
}

.response-window .message-success,
.response-window .message-error,
.response-window .message-info {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
	width: 100%;
}

/*
.response-window .message-success::before {
	content: "";
	display: inline-flex;
	width: 36px;
	min-width: 36px;
	height: 20px;
	background: url("../images/form/form-checked.svg") no-repeat left center;
	background-size: 26px;
}
.response-window .message-error::before {
	content: "";
	display: inline-flex;
	width: 36px;
	min-width: 36px;
	height: 20px;
	background: url("../images/form/form-error.svg") no-repeat left center;
	background-size: 26px;
}
*/

.response-window .message-info::before {
	content: "";
	display: inline-flex;
	width: 36px;
	min-width: 36px;
	height: 20px;
	background: url("../images/form/form-info.svg") no-repeat left center;
	background-size: 26px;
}

.d-none {
	display: none !important;
}

@media (max-width: 800px) {
	.response-window .response-window__image {
	width: 320px;
	height: 320px;
	}
	.response-window .response-window__image .button {
	top: 120px;
	left: 30px;
	width: 130px;
	min-width: 100px;
	height: 42px;
	}
	.response-window .response-window__image .response-window__close{
	padding: 20px;
	margin: 6px;
	background-size: 22px;
	}
}

@media (max-width: 320px) {
	.response-window {
	margin: 2px;
	}
	.response-window .response-window__image {
	width: 300px;
	height: 300px;
	}
}

/* /POPUP */