/* .icms-forms__full-msg{z-index:99;top:0;left:0;background-color:rgba(255, 255, 255, 0.85);color:#000000} */

.icms-forms__full-msg {
	background-color: rgba(255, 255, 255, 1);
	color: var(--theme-color);
	position: fixed !important;
	z-index: 1041;
	top: 30px;
	bottom: 30px;
	left: 30px;
	right: 30px;
	padding: 15px;
	max-width: calc(100% - 60px) !important;
	box-shadow: 0 0 5000px 5000px rgba(0,0,0,.7);
}
.icms-forms__full-msg {
	background-color: rgba(255, 255, 255, 1);
	color: var(--theme-color);
	position: fixed !important;
	z-index: 1041;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px;
	box-shadow: 0 0 5000px 5000px rgba(0,0,0,.7);
	width: 600px !important;
	max-width: calc(100% - 60px) !important;
	height: 400px !important;
	max-height: calc(100% - 60px) !important;
}
.icms-forms__full-msg .success-text.display-4 {
	font-size: 30px;
	font-weight: 600;
}
.icms-forms__full-msg .close {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	text-shadow: none;
	background-color: var(--theme-color);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 1.75rem;
	font-weight: 500;
	opacity: 1;
	position: absolute;
	padding: 0 !important;
	top: -15px;
	right: -15px;
	transition: .3s;
}

.icms-forms__full-msg .close:hover {
	transform: rotate(360deg);
	opacity: 0.75;
}
@media (min-width: 768px) {
	/* .icms-forms__full-msg {
		width: 600px !important;
		max-width: 100%;
		height: 400px !important;
		max-height: 100% !important;
		top: 50%;
		bottom: auto;
		left: 50%;
		right: auto;
		transform: translate(-50%, -50%);
	} */
}