

.colorbox_main_container .colorbox_singel_box {
	
	
	opacity: 0;
}

.colorbox_main_container .colorbox_singel_box.shown,
.no-js .colorbox_main_container .colorbox_singel_box,
.no-cssanimations .colorbox_main_container .colorbox_singel_box {
	opacity: 1;
}



/* Effect 1: opacity */
.colorbox_main_container.effect-1 .colorbox_singel_box.animate {
	-webkit-animation: fadeIn 0.65s ease forwards;
	animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
	0% { }
	100% { opacity: 1; }
}

@keyframes fadeIn {
	0% { }
	100% { opacity: 1; }
}

/* Effect 2: Move Up */
.colorbox_main_container.effect-2 .colorbox_singel_box.animate {
	-webkit-transform: translateY(200px);
	transform: translateY(200px);
	-webkit-animation: moveUp 0.65s ease forwards;
	animation: moveU