/home/arranoyd/www/wp-content/themes/jevelin/framework-customizations/theme/options/lightbox.php
<?php if ( ! defined( 'FW' ) ) {
	die( 'Forbidden' );
}

$options = array(
	'lightbox' => array(
		'title'   => esc_html__( 'Lightbox', 'jevelin' ),
		'type'    => 'tab',
		'icon'	  => 'fa fa-phone',
		'options' => array(
			'lightbox-box' => array(
				'title'   => esc_html__( 'Lightbox Options', 'jevelin' ),
				'type'    => 'box',
				'options' => array(

					'lightbox_transition' => array(
					    'type'  => 'radio',
					    'value' => 'elastic',
					    'label' => esc_html__('Transition', 'jevelin'),
					    'desc'  => esc_html__('Choose lightbox transition', 'jevelin'),
					    'choices' => array(
					        'none' => esc_html__( 'None', 'jevelin' ),
					        'elastic' => esc_html__( 'Elastic', 'jevelin' ),
					        'fade' => esc_html__( 'Fade', 'jevelin' ),
					        'fadeInline' => esc_html__( 'Fade Inline', 'jevelin' ),
					    ),
					),

					'lightbox_opacity' => array(
					    'type'  => 'slider',
					    'value' => 88,
					    'properties' => array(
					        'min' => 1,
					        'max' => 100,
					    ),
					    'label' => esc_html__('Background Opacity', 'jevelin'),
					    'desc'  => esc_html__('Choose lightbox background opacity', 'jevelin'),
					),

				)
			),
		)
	)
);