HEX
Server: Apache
System: Linux b5.s-host.com.ua 4.18.0-305.10.2.el7.x86_64 #1 SMP Fri Jul 23 21:00:55 UTC 2021 x86_64
User: unelbhzm (1470)
PHP: 8.0.18
Disabled: NONE
Upload Files
File: /sites/nuofama.com/wp-content/themes/blocksy/static/sass/frontend/5-modules/off-canvas/modal.scss
// modal animations
[data-panel*='in'] [data-behaviour='modal'].active,
[data-panel*='out'] [data-behaviour='modal'] {
	.ct-panel-content {
		animation-duration: 0.3s;
		animation-fill-mode: both;
	}
}

[data-panel*='in'] [data-behaviour='modal'].active {
	opacity: 1;
	visibility: visible;

	.ct-panel-content {
		animation-name: move-in;
	}
}

[data-panel*='out'] [data-behaviour='modal'] {
	.ct-panel-content {
		animation-name: move-out;
	}
}

// move keyframes
@keyframes move-in {
	0% {
		opacity: 0;
		transform: translate3d(0, -40px, 0);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes move-out {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(0, 40px, 0);
	}
}