.olc_modal_overlay {
	position: fixed;
    width: 100%;
    height: 100%;
    background-color: #404046e3;
    top: 0;
    left: 0;
	z-index: 9999999999;
	display: flex;
    align-items: center;
	justify-content: center;
	opacity: 0;
	transition: .3s;
	pointer-events: none;
}

.olc_modal_overlay.ocl_modal_open {
	opacity: 1;
	pointer-events: auto;
}

.olc_modal_content {
	padding: 50px 70px;
	border-radius: 15px;
	width: 95%;
	max-width: 800px;
	position: relative;
	max-height: 90vh;
	overflow: auto;
}

.olc_close_modal {
	width: 30px;
	height: 30px;
	background-color: var(--color_primary);
	-webkit-mask: url("/wp-content/uploads/2023/03/close.svg") no-repeat;
	mask: url("/wp-content/uploads/2023/03/close.svg") no-repeat;
	position: absolute;
	top: 20px;
	right: 25px;
	cursor: pointer;
	transition: .3s;
}

.olc_close_modal:hover {
	background-color: var(--color_tertiary);
}

.olc_modal_content h3 {
	font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.07rem;
    color: var(--color_secondary);
	line-height: 1.2;
	margin-bottom: 20px;
	text-align: center;
}

.olc_modal_content h3::after {
	content: "";
    width: 80px;
    height: 9px;
    -webkit-mask: url(/wp-content/uploads/2023/03/deco_title.svg) no-repeat;
    mask: url(/wp-content/uploads/2023/03/deco_title.svg) no-repeat;
    background-color: currentColor;
	display: block;
	margin: auto;
	margin-top: 7px;
}

@media screen and (max-width: 767px) {

	.olc_modal_content {
		padding: 50px 50px;
	}

}

@media screen and (max-width: 480px) {

	.olc_modal_content {
		padding: 70px 10px;
	}

}