
.kadence-block-pro-modal {
	display: none;
	text-align: left;
}

.kadence-block-pro-modal.is-open {
	display: block;
}

.kt-modal-overlay {
	align-items: center;
	background: rgba(0, 0, 0, .6);
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99999;
}

.kt-modal-container {
	align-items: flex-start;
	background-color: #fff;
	border: 0 solid transparent;
	border-radius: 0;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	margin: 20px;
	max-height: 100vh;
	max-width: 600px;
	overflow-y: auto;
	padding: 30px;
	position: relative;
	text-align: left;
	width: 100%;
}

.kt-modal-height-full {
	height: 100%;
	margin: 0;
}

.kt-modal-content {
	max-height: 100%;
	width: 100%;
}

.kt-modal-overlay .kt-modal-close {
	align-items: center;
	-webkit-appearance: none;
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #444;
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 4px;
	text-shadow: none;
	top: 4px;
	z-index: 10;
	z-index: 1000;
}

.kt-modal-overlay .kt-modal-close:hover {
	box-shadow: none;
	outline: none;
}

.kt-modal-overlay .kt-modal-close:focus {
	box-shadow: none;
}

.kt-modal-close svg {
	height: 24px;
	pointer-events: none;
	width: 24px;
}

.kt-modal-linkalign-left {
	text-align: left !important;
}

.kt-modal-linkalign-center {
	text-align: center !important;
}

.kt-modal-linkalign-right {
	text-align: right !important;
}

.kt-blocks-modal-link .kt-btn-side-right {
	padding-left: .5em;
}

.kt-blocks-modal-link .kt-btn-side-left {
	padding-right: .5em;
}

.kt-blocks-modal-link svg {
	height: 1em;
	width: 1em;
}

.kt-blocks-modal-link:not(.kb-btn-global-inherit) {
	align-items: center;
	background: transparent;
	border: 2px solid #555;
	border-radius: 4px;
	color: #555;
	cursor: pointer;
	display: inline-block;
	display: inline-flex;
	font-size: 16px;
	justify-content: center;
	line-height: 24px;
	outline: 0;
	padding: 4px 8px;
	transition: all .3s cubic-bezier(0, 0, .2, 1);
}

.kt-blocks-modal-link:not(.kb-btn-global-inherit) .kt-blocks-modal-link:hover, .kt-blocks-modal-link:not(.kb-btn-global-inherit) body:not(.hide-focus-outline) .kt-blocks-modal-link:focus {
	background: #444;
	border-color: #444;
	color: #fff;
}

.kt-modal-label-hide .kt-btn-svg-icon.kt-btn-side-left, .kt-modal-label-hide .kt-btn-svg-icon.kt-btn-side-right {
	padding: 0;
}

.modal-trigger {
	cursor: pointer;
}

.kt-modal-label-hide .kt-blocks-modal-link-inner {
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.kt-modal-label-hide .kt-blocks-modal-link-inner:focus {
	clip: auto;
	height: auto;
	overflow: auto;
	position: relative;
	width: auto;
}

@keyframes kbmfadeIn {
	0% {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@keyframes kbmfadeOut {
	0% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

.kadence-block-pro-modal[aria-hidden=false] .kt-modal-overlay {
	animation: kbmfadeIn .3s cubic-bezier(0, 0, .2, 1);
}

.kadence-block-pro-modal[aria-hidden=true] .kt-modal-overlay {
	animation: kbmfadeOut .3s cubic-bezier(0, 0, .2, 1);
}

.kt-m-animate-in-fade[aria-hidden=false] .kt-modal-container {
	animation: kbmfadeIn .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmfadeInUp {
	0% {
		opacity: 0;
		transform: translateY(15%);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.kt-m-animate-in-fadeup[aria-hidden=false] .kt-modal-container {
	animation: kbmfadeInUp .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmfadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-15%);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.kt-m-animate-in-fadedown[aria-hidden=false] .kt-modal-container {
	animation: kbmfadeInDown .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmfadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-15%);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.kt-m-animate-in-fadeleft[aria-hidden=false] .kt-modal-container {
	animation: kbmfadeInLeft .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmfadeInRight {
	0% {
		opacity: 0;
		transform: translateX(15%);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.kt-m-animate-in-faderight[aria-hidden=false] .kt-modal-container {
	animation: kbmfadeInRight .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmslideInUp {
	0% {
		transform: translateY(45%);
	}
	
	to {
		transform: translateY(0);
	}
}

.kt-m-animate-in-slideup[aria-hidden=false] .kt-modal-container {
	animation: kbmslideInUp .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmslideInDown {
	0% {
		transform: translateY(-45%);
	}
	
	to {
		transform: translateY(0);
	}
}

.kt-m-animate-in-slidedown[aria-hidden=false] .kt-modal-container {
	animation: kbmslideInDown .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmslideInLeft {
	0% {
		transform: translateX(-45%);
	}
	
	to {
		transform: translateX(0);
	}
}

.kt-m-animate-in-slideleft[aria-hidden=false] .kt-modal-container {
	animation: kbmslideInLeft .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmslideInRight {
	0% {
		transform: translateX(45%);
	}
	
	to {
		transform: translateX(0);
	}
}

.kt-m-animate-in-slideright[aria-hidden=false] .kt-modal-container {
	animation: kbmslideInRight .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmzoomIn {
	0% {
		transform: scale3d(.3, .3, .3);
	}
	
	to {
		transform: scaleX(1);
	}
}

.kt-m-animate-in-zoomin[aria-hidden=false] .kt-modal-container {
	animation: kbmzoomIn .3s cubic-bezier(0, 0, .2, 1);
}

.kt-m-animate-out-fadeout[aria-hidden=true] .kt-modal-container {
	animation: kbmfadeOut .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmfadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	to {
		opacity: 0;
		transform: translateY(-15%);
	}
}

.kt-m-animate-out-fadeoutup[aria-hidden=true] .kt-modal-container {
	animation: kbmfadeOutUp .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmfadeOutDown {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	to {
		opacity: 0;
		transform: translateY(15%);
	}
}

.kt-m-animate-out-fadeoutdown[aria-hidden=true] .kt-modal-container {
	animation: kbmfadeOutDown .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmfadeOutLeft {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	to {
		opacity: 0;
		transform: translateX(-15%);
	}
}

.kt-m-animate-out-fadeoutleft[aria-hidden=true] .kt-modal-container {
	animation: kbmfadeOutLeft .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmfadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	to {
		opacity: 0;
		transform: translateX(15%);
	}
}

.kt-m-animate-out-fadeoutright[aria-hidden=true] .kt-modal-container {
	animation: kbmfadeOutRight .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmslideOutUp {
	0% {
		transform: translateY(0);
	}
	
	to {
		transform: translateY(-45%);
	}
}

.kt-m-animate-out-slideoutup[aria-hidden=true] .kt-modal-container {
	animation: kbmslideOutUp .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmslideOutDown {
	0% {
		transform: translateY(0);
	}
	
	to {
		transform: translateY(45%);
	}
}

.kt-m-animate-out-slideoutdown[aria-hidden=true] .kt-modal-container {
	animation: kbmslideOutDown .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmslideOutLeft {
	0% {
		transform: translateX(0);
	}
	
	to {
		transform: translateX(-45%);
	}
}

.kt-m-animate-out-slideoutleft[aria-hidden=true] .kt-modal-container {
	animation: kbmslideOutLeft .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmslideOutRight {
	0% {
		transform: translateX(0);
	}
	
	to {
		transform: translateX(45%);
	}
}

.kt-m-animate-out-slideoutright[aria-hidden=true] .kt-modal-container {
	animation: kbmslideOutRight .3s cubic-bezier(0, 0, .2, 1);
}

@keyframes kbmzoomOut {
	0% {
		transform: scaleX(1);
	}
	
	to {
		transform: scale3d(.3, .3, .3);
	}
}

.kt-m-animate-out-zoomout[aria-hidden=true] .kt-modal-container {
	animation: kbmzoomOut .3s cubic-bezier(0, 0, .2, 1);
}

.kadence-block-pro-modal .kt-modal-container, .kadence-block-pro-modal .kt-modal-overlay {
	will-change: transform;
}

body.kt-modal-open .wp-block-kadence-column.aos-animate {
	transform: none;
	transition-duration: 0s;
}

@media (min-width:1025px) {
	body.kt-modal-open {
		overflow: hidden;
	}
}

@media (max-width:1024px) {
	body.kt-modal-open {
		-webkit-overflow-scrolling: none;
		overflow: hidden;
		overscroll-behavior: none;
		touch-action: none;
	}
	
	.kt-modal-container.kt-modal-height-fittocontent {
		margin-bottom: 5vh;
		margin-top: 5vh;
		max-height: 90vh;
	}
}
