Current Path : /storage/v11800/affypharma/public_html/wp-content/plugins/bdthemes-element-pack/assets/js/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/affypharma/public_html/wp-content/plugins/bdthemes-element-pack/assets/js/element-pack-site.js
( function( $, elementor ) {

	'use strict';

	var ElementPack = {

		init: function() {

			var widgets = {
				'bdt-advanced-gmap.default' 			   : ElementPack.widgetAvdGoogleMap,
				'bdt-accordion.default' 			   	   : ElementPack.widgetAccordion,
				'bdt-animated-heading.default'  		   : ElementPack.widgetAnimatedHeading,
				'bdt-audio-player.default' 				   : ElementPack.widgetAudioPlayer,
				'bdt-audio-player.bdt-poster' 			   : ElementPack.widgetAudioPlayer,
				'bdt-chart.default' 					   : ElementPack.widgetChart,
				'bdt-carousel.default' 					   : ElementPack.widgetCarousel,
				'bdt-carousel.bdt-alice' 				   : ElementPack.widgetCarousel,
				'bdt-carousel.bdt-vertical' 			   : ElementPack.widgetCarousel,
				'bdt-custom-carousel.default' 			   : ElementPack.widgetCustomCarousel,
				'bdt-custom-carousel.bdt-custom-content'   : ElementPack.widgetCustomCarousel,
				'bdt-panel-slider.default' 				   : ElementPack.widgetPanelSlider,
				'bdt-panel-slider.bdt-middle' 		   	   : ElementPack.widgetPanelSlider,
				'bdt-slider.default' 					   : ElementPack.widgetSlider,
				'bdt-circle-menu.default' 				   : ElementPack.widgetCircleMenu,
				'bdt-open-street-map.default' 			   : ElementPack.widgetOpenStreetMap,
				'bdt-contact-form.default' 				   : ElementPack.widgetSimpleContactForm,
				'bdt-cookie-consent.default' 			   : ElementPack.widgetCookieConsent,
				'bdt-event-carousel.default' 			   : ElementPack.widgetEventCarousel,
				'bdt-helpdesk.default' 					   : ElementPack.widgetHelpDesk,
				'bdt-iconnav.default' 					   : ElementPack.widgetIconNav,
				'bdt-iframe.default' 					   : ElementPack.widgetIframe,
				'bdt-instagram.default' 				   : ElementPack.widgetInstagram,
				'bdt-instagram.bdt-instagram-carousel'	   : ElementPack.widgetInstagram,
				'bdt-image-compare.default' 			   : ElementPack.widgetImageCompare,
				'bdt-image-magnifier.default' 			   : ElementPack.widgetImageMagnifier,
				'bdt-marker.default' 					   : ElementPack.widgetMarker,
				'bdt-mailchimp.default' 				   : ElementPack.widgetMailChimp,
				'bdt-modal.default' 					   : ElementPack.widgetModal,
				'bdt-news-ticker.default' 				   : ElementPack.widgetNewsTicker,
				'bdt-offcanvas.default' 				   : ElementPack.widgetOffcanvas,
				'bdt-scrollnav.default' 				   : ElementPack.widgetScrollNav,
				'bdt-post-grid-tab.default' 			   : ElementPack.widgetPostGridTab,
				'bdt-price-table.default' 				   : ElementPack.widgetPriceTable,
				'bdt-price-table.bdt-partait' 			   : ElementPack.widgetPriceTable,
				'bdt-progress-pie.default' 				   : ElementPack.widgetProgressPie,
				'bdt-comment.default' 					   : ElementPack.widgetComment,
				'bdt-qrcode.default' 					   : ElementPack.widgetQRCode,
				'bdt-scroll-button.default' 			   : ElementPack.widgetScrollButton,
				'bdt-table.default' 				  	   : ElementPack.widgetTable,
				'bdt-table-of-content.default' 			   : ElementPack.widgetTableOfContent,
				'bdt-tabs.default' 			   			   : ElementPack.widgetTabs,
				'bdt-timeline.bdt-olivier' 				   : ElementPack.widgetTimeline,
				'bdt-testimonial-carousel.default' 		   : ElementPack.widgetTCarousel,
				'bdt-testimonial-carousel.bdt-twyla' 	   : ElementPack.widgetTCarousel,
				'bdt-testimonial-carousel.bdt-vyxo' 	   : ElementPack.widgetTCarousel,
				'bdt-testimonial-slider.default' 		   : ElementPack.widgetTSlider,
				'bdt-twitter-carousel.default' 		       : ElementPack.widgetTwitterCarousel,
				'bdt-twitter-slider.default' 		       : ElementPack.widgetTwitterSlider,
				'bdt-threesixty-product-viewer.default'    : ElementPack.widgetTSProductViewer,
				'bdt-video-gallery.default' 			   : ElementPack.widgetVideoGallery,
				'bdt-wc-carousel.default' 				   : ElementPack.widgetWCCarousel,
				'bdt-wc-carousel.wc-carousel-hidie'		   : ElementPack.widgetWCCarousel,
				'bdt-wc-products.bdt-table' 			   : ElementPack.widgetWCProductTable
			};

			$.each( widgets, function( widget, callback ) {
				elementor.hooks.addAction( 'frontend/element_ready/' + widget, callback );
			});

			elementor.hooks.addAction( 'frontend/element_ready/section', ElementPack.elementorSection );
		},		
		
		//Animated Heading
		widgetAnimatedHeading: function( $scope ) {
			var $heading = $scope.find( '.bdt-heading > *' ),
				$animatedHeading = $heading.find( '.bdt-animated-heading' ),
				$settings = $animatedHeading.data('settings');
				
			if ( ! $heading.length ) {
				return;
			}

    		if ( $settings.layout === 'animated' ) {
				$($animatedHeading).Morphext($settings);
			} else if ( $settings.layout === 'typed' ) {
				var animateSelector = $($animatedHeading).attr('id');
				var typed = new Typed('#'+animateSelector, $settings);
			}

	        $($heading).animate({
	        	easing:  'slow',
                opacity: 1
            }, 500 );


		},

		//Audio Player
		widgetAudioPlayer: function( $scope ) {

			var $audioPlayer         = $scope.find( '.bdt-audio-player > .jp-jplayer' ),
				$container 			 = $audioPlayer.next('.jp-audio').attr('id'),
				$settings 		 	 = $audioPlayer.data('settings');
				

			if ( ! $audioPlayer.length ) {
				return;
			}

			$($audioPlayer).jPlayer({
				ready: function (event) {
					$(this).jPlayer('setMedia', {
						title : $settings.audio_title,
						mp3   : $settings.audio_source
					});
					if($settings.autoplay) {
						$(this).jPlayer('play', 1);
					}
				},
				play: function() {
					$(this).next('.jp-audio').removeClass('bdt-player-played');
					$(this).jPlayer('pauseOthers');
				},
				ended: function() {
			    	$(this).next('.jp-audio').addClass('bdt-player-played');
			  	},

				timeupdate: function(event) {
					if($settings.time_restrict) {
						if ( event.jPlayer.status.currentTime > $settings.restrict_duration ) {
							$(this).jPlayer('stop');
						}
					}
				},

				cssSelectorAncestor : '#' + $container,
				useStateClassSkin   : true,
				autoBlur            : $settings.smooth_show,
				smoothPlayBar       : true,
				keyEnabled          : $settings.keyboard_enable,
				remainingDuration   : true,
				toggleDuration      : true,
				volume              : $settings.volume_level,
				loop                : $settings.loop
				
			});

		},

		//Advanced Google Map
		widgetAvdGoogleMap: function( $scope ) {

			var $advancedGoogleMap = $scope.find( '.bdt-advanced-gmap' ),
				map_settings       = $advancedGoogleMap.data('map_settings'),
				markers            = $advancedGoogleMap.data('map_markers'),
				map_form           = $scope.find('.bdt-gmap-search-wrapper > form');				

			if ( ! $advancedGoogleMap.length ) {
				return;
			}
			
			var avdGoogleMap = new GMaps( map_settings );

			for (var i in markers) {
				avdGoogleMap.addMarker(markers[i]);
			}

			if($advancedGoogleMap.data('map_geocode')) {
				$(map_form).submit(function(e){
					e.preventDefault();
					GMaps.geocode({
						address: $(this).find('.bdt-search-input').val().trim(),
						callback: function(results, status){
							if( status === 'OK' ){
								var latlng = results[0].geometry.location;
								avdGoogleMap.setCenter(
									latlng.lat(), 
									latlng.lng()
								);
								avdGoogleMap.addMarker({
									lat: latlng.lat(),
									lng: latlng.lng()
								});
							}	
						}
					});
				});
			}

			if($advancedGoogleMap.data('map_style')) {
		        avdGoogleMap.addStyle({
		            styledMapName: 'Custom Map',
		            styles: $advancedGoogleMap.data('map_style'),
		            mapTypeId: 'map_style'
				});
		        avdGoogleMap.setStyle('map_style');
	        }
		},

		//Open Street Map
		widgetOpenStreetMap: function( $scope ) {

			var $openStreetMap = $scope.find( '.bdt-open-street-map' ),
				settings       = $openStreetMap.data('settings'),
				markers        = $openStreetMap.data('map_markers');

			if ( ! $openStreetMap.length ) {
				return;
			}

			var avdOSMap = L.map($openStreetMap[0], {
					zoomControl: settings.zoomControl,
					scrollWheelZoom: false
				}).setView([
						settings.lat,
						settings.lng
					], 
				    settings.zoom
				);

			L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=' + settings.osmAccessToken, {
				maxZoom: 18,
				attribution: 'Map data &copy; <a href="https://www.openstreetmap.org/">OpenStreetMap</a> contributors, ' +
					'<a href="https://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
					'Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
				id: 'mapbox.streets'
			}).addTo(avdOSMap);

			var LeafIcon = L.Icon.extend({
				options: {
					iconSize:     [38, 95],
					iconAnchor:   [22, 94],
					shadowAnchor: [4, 62],
					popupAnchor:  [-3, -76]
				}
			});

			for (var i in markers) {
				var greenIcon = new LeafIcon({iconUrl: markers[i]['iconUrl'] });
				L.marker([markers[i]['lat'], markers[i]['lng']], {icon: greenIcon}).bindPopup(markers[i]['infoWindow']).addTo(avdOSMap);
			}			

		},

		//Chart widget
		widgetChart: function( $scope ) {

			var	$chart    	  = $scope.find( '.bdt-chart' ),
				$chart_canvas = $chart.find( '> canvas' ),
				settings      = $chart.data('settings');

			if ( ! $chart.length ) {
				return;
			}

			elementorFrontend.waypoint( $chart_canvas, function() {
				var $this   = $( this ),
					ctx     = $this[0].getContext('2d'),
					myChart = new Chart(ctx, settings);
			}, {
				offset: 'bottom-in-view'
			} );
		},

		//Carousel
		widgetCarousel: function( $scope ) {

			var $carousel 		   = $scope.find( '.bdt-carousel' );
				
			if ( ! $carousel.length ) {
				return;
			}

			ElementPack.swiperSlider($carousel);		    
		},

		//Carousel
		widgetCustomCarousel: function( $scope ) {

			var $carousel = $scope.find( '.bdt-custom-carousel' );
				
			if ( ! $carousel.length ) {
				return;
			}

			ElementPack.swiperSlider($carousel);		    
		},

		//Testimonial Carousel
		widgetTCarousel: function( $scope ) {

			var $tCarousel = $scope.find( '.bdt-testimonial-carousel' );
				
			if ( ! $tCarousel.length ) {
				return;
			}

			ElementPack.swiperSlider($tCarousel);		    
		},

		//Twitter Carousel
		widgetTwitterCarousel: function( $scope ) {

			var $twitterCarousel = $scope.find( '.bdt-twitter-carousel' );
				
			if ( ! $twitterCarousel.length ) {
				return;
			}

			//console.log($twitterCarousel);

			ElementPack.swiperSlider($twitterCarousel);		    
		},

		//Twitter Slider
		widgetTwitterSlider: function( $scope ) {

			var $twitterSlider = $scope.find( '.bdt-twitter-slider' );
				
			if ( ! $twitterSlider.length ) {
				return;
			}

			ElementPack.swiperSlider($twitterSlider);		    
		},

		//WC Carousel
		widgetWCCarousel: function( $scope ) {

			var $wcCarousel = $scope.find( '.bdt-wc-carousel' );
				
			if ( ! $wcCarousel.length ) {
				return;
			}

			ElementPack.swiperSlider($wcCarousel);		    
		},

		//Panel Slider
		widgetPanelSlider: function( $scope ) {

			var $slider = $scope.find( '.bdt-panel-slider' );
				
			if ( ! $slider.length ) {
				return;
			}

			ElementPack.swiperSlider($slider);		    
		},

		//Slider
		widgetSlider: function( $scope ) {

			var $slider = $scope.find( '.bdt-slider' );
				
			if ( ! $slider.length ) {
				return;
			}

			ElementPack.swiperSlider($slider);		    
		},

		swiperSlider: function( $slider ) {

			var $sliderContainer = $slider.find('.swiper-container'),
				$settings 		 = $slider.data('settings');

		    var swiper = new Swiper($sliderContainer, $settings);

		    if ($settings.pauseOnHover) {
			 	$($sliderContainer).hover(function() {
				    (this).swiper.autoplay.stop();
				}, function() {
				    (this).swiper.autoplay.start();
				});
			}
		},

		// Comment widget
		widgetComment: function( $scope ) {

			var $comment = $scope.find( '.bdt-comment-container' ),
				$settings = $comment.data('settings');
				
			if ( ! $comment.length ) {
				return;
			}

		    if ($settings.layout === 'disqus') {

			    var disqus_config = function () {
			    this.page.url = $settings.permalink;  // Replace PAGE_URL with your page's canonical URL variable
			    this.page.identifier = $comment; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
			    };
			    
			    (function() { // DON'T EDIT BELOW THIS LINE
			    var d = document, s = d.createElement('script');
			    s.src = '//' + $settings.username + '.disqus.com/embed.js';
			    s.setAttribute('data-timestamp', +new Date());
			    (d.head || d.body).appendChild(s);
			    })();

		    } else if ($settings.layout === 'facebook') {
		    	
		    	//var $fb_script = document.getElementById("facebook-jssdk");

		    	//console.log($fb_script);

		    	// if($fb_script){
		    	// 	$($fb_script).remove();
		    	// } else {
		    	// }

				// jQuery.ajax({
				// 	url: 'https://connect.facebook.net/en_US/sdk.js',
				// 	dataType: 'script',
				// 	cache: true,
				// 	success: function() {
				// 		FB.init( {
				// 			appId: config.app_id,
				// 			version: 'v2.10',
				// 			xfbml: false
				// 		} );
				// 		config.isLoaded = true;
				// 		config.isLoading = false;
				// 		jQuery( document ).trigger( 'fb:sdk:loaded' );
				// 	}
				// });
				// 
				// 
				(function(d, s, id){
					var js, fjs = d.getElementsByTagName(s)[0];
					if (d.getElementById(id)) {return;}
					js = d.createElement(s); js.id = id;
					js.src = 'https://connect.facebook.net/en_US/sdk.js';
					fjs.parentNode.insertBefore(js, fjs);
				}(document, 'script', 'facebook-jssdk'));
	    	        

    	        window.fbAsyncInit = function() {
    	           FB.init({
    	             appId            : $settings.app_id,
    	             autoLogAppEvents : true,
    	             xfbml            : true,
    	             version          : 'v3.2'
    	           });
    	        };

		    } 
		},

		// loadSDK: function() {
		// 	// Don't load in parallel
		// 	if ( config.isLoading || config.isLoaded ) {
		// 		return;
		// 	}

		// 	config.isLoading = true;

		// 	jQuery.ajax( {
		// 		url: 'https://connect.facebook.net/en_US/sdk.js',
		// 		dataType: 'script',
		// 		cache: true,
		// 		success: function() {
		// 			FB.init( {
		// 				appId: $settings.app_id,
		// 				version: 'v2.10',
		// 				xfbml: false
		// 			} );
		// 			config.isLoaded = true;
		// 			config.isLoading = false;
		// 			jQuery( document ).trigger( 'fb:sdk:loaded' );
		// 		}
		// 	} );
		// },


		//360 degree product viewer
		widgetTSProductViewer: function( $scope ) {

			var $TSPV      	   = $scope.find( '.bdt-threesixty-product-viewer' ),
				$settings      = $TSPV.data('settings'),
				$container     = $TSPV.find('> .bdt-tspv-container'), 
				$fullScreenBtn = $TSPV.find('> .bdt-tspv-fb');  

			if ( ! $TSPV.length ) {
				return;
			}
			

			if ($settings.source_type === 'remote') {
				$settings.source = SpriteSpin.sourceArray( $settings.source, { frame: $settings.frame_limit, digits: $settings.image_digits} );
			}

			elementorFrontend.waypoint( $container, function() {
				var $this = $( this );
				$this.spritespin($settings);

			}, {
				offset: 'bottom-in-view'
			} );

			

			//if ( ! $fullScreenBtn.length ) {
				$($fullScreenBtn).click(function(e) {
				    e.preventDefault();
				    $($container).spritespin('api').requestFullscreen();
			    });
			//}			

		},

		//Image Compare
		widgetImageCompare: function( $scope ) {

			var $imageCompare         = $scope.find( '.bdt-image-compare > .twentytwenty-container' ),
				default_offset_pct    = $imageCompare.data('default_offset_pct'),
				orientation           = $imageCompare.data('orientation'),
				before_label          = $imageCompare.data('before_label'),
				after_label           = $imageCompare.data('after_label'),
				no_overlay            = $imageCompare.data('no_overlay'),
				move_slider_on_hover  = $imageCompare.data('move_slider_on_hover'),
				move_with_handle_only = $imageCompare.data('move_with_handle_only'),
				click_to_move         = $imageCompare.data('click_to_move');

			if ( ! $imageCompare.length ) {
				return;
			}

			$($imageCompare).twentytwenty({
			    default_offset_pct: default_offset_pct,
			    orientation: orientation,
			    before_label: before_label,
			    after_label: after_label,
			    no_overlay: no_overlay,
			    move_slider_on_hover: move_slider_on_hover,
			    move_with_handle_only: move_with_handle_only,
			    click_to_move: click_to_move
		  	});

		},

		// QR Code Object
		widgetQRCode: function($scope) {
			var $qrcode = $scope.find( '.bdt-qrcode' ),
				image   = $scope.find( '.bdt-qrcode-image' );

			if ( ! $qrcode.length ) {
				return;
			}
			var settings = $qrcode.data('settings');
				settings.image = image[0];

		   $($qrcode).qrcode(settings);
		},

		// Scroll Button
		widgetScrollButton: function($scope) {
			var $scrollButton = $scope.find('.bdt-scroll-button'),
				$selector = $scrollButton.data('selector'),
				$settings =  $scrollButton.data('settings');

			if ( ! $scrollButton.length ) {
				return;
			}

			//$($scrollButton).find('.bdt-scroll-button').unbind();

			$($scrollButton).on('click', function(event){
				event.preventDefault();
				bdtUIkit.scroll($scrollButton, $settings ).scrollTo($($selector));
			});

			//bdtUIkit.scroll($scrollButton).scrollTo($($settings));

		},

		// Table Code Object
		widgetTable: function($scope) {
			var $tableContainer = $scope.find( '.bdt-data-table' ),
				$settings       = $tableContainer.data('settings'),
				$table          = $tableContainer.find('> table');

			if ( ! $tableContainer.length ) {
				return;
			}

			$settings.language = window.ElementPackConfig.data_table.language;

		    $($table).DataTable($settings);
		},

		//Progress Iframe
		widgetIframe: function( $scope ) {

			var $iframe = $scope.find( '.bdt-iframe > iframe' ),
				$autoHeight = $iframe.data('auto_height');

			if ( ! $iframe.length ) {
				return;
			}

			// Auto height only works when cross origin properly set
			if ($autoHeight) {
				$($iframe).load(function() {
				    $(this).height( $(this).contents().find('html').height() );
				});
			}

			ElementPack.lazyLoader($iframe);
		},

		//Progress Iframe
		widgetInstagram: function( $scope ) {

			var $instagram = $scope.find( '.bdt-instagram' ),
				$settings  = $instagram.data('settings'),
				$loadMoreBtn = $instagram.find('.bdt-load-more');

			if ( ! $instagram.length ) {
				return;
			}
		
			var $currentPage = $settings['current_page'];
			
			callInstagram();

			$($loadMoreBtn).on('click', function(event){
				
				if ($loadMoreBtn.length) {
					$loadMoreBtn.addClass('bdt-load-more-loading');
				}

				$currentPage++;

				$settings['current_page'] = $currentPage;

				callInstagram();
			});


			function callInstagram(){
				var $itemHolder = $instagram.find('> .bdt-grid');

				jQuery.ajax({
					url: window.ElementPackConfig.ajaxurl,
					type:'post',
					data: $settings,
					success:function(response){
						if($currentPage == 1){
							$itemHolder.html(response);	
						} else {
							$itemHolder.append(response);
						}

						if ($loadMoreBtn.length) {
							$loadMoreBtn.removeClass('bdt-load-more-loading');
						}

					}
				});
			}

			
		},


		lazyLoader:function( $scope ) {
			var $lazyload = $scope;

			$($lazyload).recliner({
				throttle : $lazyload.data('throttle'),
				threshold : $lazyload.data('threshold'),
				live : $lazyload.data('live')
			});
		},

		//Iconnav
		widgetIconNav: function( $scope ) {

			var $iconnav        = $scope.find( 'div.bdt-icon-nav' ),
				$iconnavTooltip = $iconnav.find( '.bdt-icon-nav' );

			if ( ! $iconnav.length ) {
				return;
			}

			ElementPack.tippyTooltip($iconnavTooltip, $scope);
		},

		widgetMarker: function( $scope ) {

			var $marker = $scope.find( '.bdt-marker-wrapper' );

			if ( ! $marker.length ) {
				return;
			}

			ElementPack.tippyTooltip($marker, $scope);
		},

		widgetHelpDesk: function( $scope ) {

			var $helpdesk = $scope.find( '.bdt-helpdesk' ),
				$helpdeskTooltip = $helpdesk.find('.bdt-helpdesk-icons');

			if ( ! $helpdesk.length ) {
				return;
			}

			ElementPack.tippyTooltip($helpdeskTooltip, $scope);
		},

		widgetModal: function( $scope ) {

			var $modal = $scope.find( '.bdt-modal' );
			
			if ( ! $modal.length ) {
				return;
			}


			$.each($modal, function(index, val) {
				
				var $this   	= $(this),
					$settings   = $this.data('settings'),
					modalShowed = false,
					modalID     = $settings.id;
				
				if (!$settings.dev) {
					modalShowed = localStorage.getItem( modalID );
				}
				
				if(!modalShowed){
					if ('exit' === $settings.layout) {
						document.addEventListener('mouseleave', function(event){
							if(event.clientY <= 0 || event.clientX <= 0 || (event.clientX >= window.innerWidth || event.clientY >= window.innerHeight)) {
								bdtUIkit.modal($this).show();
							    localStorage.setItem( modalID , true );      
							}
							
						});
					} else if ('splash' === $settings.layout) {
						setTimeout(function(){
						  bdtUIkit.modal($this).show();      
						  localStorage.setItem( modalID , true );      
						}, $settings.delayed );
					}	
				}
				
				if ( $(modalID).length ) {
					// global custom link for a tag
					$(modalID).on('click', function(event){
						event.preventDefault();       
						bdtUIkit.modal( $this ).show();
					});
				}

			});
			

			

		},

		widgetOffcanvas: function( $scope ) {

			var $offcanvas = $scope.find( '.bdt-offcanvas' );
			
			if ( ! $offcanvas.length ) {
				return;
			}


			$.each($offcanvas, function(index, val) {
				
				var $this   	= $(this),
					$settings   = $this.data('settings'),
					offcanvasID = $settings.id;
				
				if ( $(offcanvasID).length ) {
					// global custom link for a tag
					$(offcanvasID).on('click', function(event){
						event.preventDefault();       
						bdtUIkit.offcanvas( $this ).show();
					});
				}

			});
			

			

		},

		widgetScrollNav: function( $scope ) {

			var $scrollnav = $scope.find( '.bdt-dotnav > li' );

			if ( ! $scrollnav.length ) {
				return;
			}

			ElementPack.tippyTooltip($scrollnav, $scope);
		},

		widgetPriceTable: function( $scope ) {

			var $priceTable = $scope.find( '.bdt-price-table' ),
				$featuresList = $priceTable.find( '.bdt-price-table-feature-inner' );

			if ( ! $priceTable.length ) {
				return;
			}

			ElementPack.tippyTooltip($featuresList, $scope);
		},

		tippyTooltip:function( $selector, $appendIn ) {
			var $tooltip = $selector.find('> .bdt-tippy-tooltip');
			
			$tooltip.each( function( index ) {
				tippy( this, {
					appendTo: $appendIn[0]
				});				
			});

		},

		// Circle Menu
		widgetCircleMenu: function( $scope ) {
			var $circleMenu = $scope.find('.bdt-circle-menu'),
				$settings = $circleMenu.data('settings');

			if ( ! $circleMenu.length ) {
				return;
			}

            $($circleMenu[0]).circleMenu({
				direction           : $settings.direction,
				item_diameter       : $settings.item_diameter,
				circle_radius       : $settings.circle_radius,
				speed               : $settings.speed,
				delay               : $settings.delay,
				step_out            : $settings.step_out,
				step_in             : $settings.step_in,
				trigger             : $settings.trigger,
				transition_function : $settings.transition_function
            });
		},

		// NewsTicker widget
		widgetNewsTicker: function( $scope ) {
			var $newsTicker = $scope.find('.bdt-news-ticker'),
				$settings = $newsTicker.data('settings');

			if ( ! $newsTicker.length ) {
				return;
			}

			$($newsTicker).epNewsTicker($settings);
		},

		// Contact Form
		widgetSimpleContactForm: function( $scope ) {
			var $contactForm = $scope.find('.bdt-contact-form form');
			
			if ( ! $contactForm.length ) {
				return;
			}

			$contactForm.submit(function(){
				ElementPack.sendContactForm($contactForm);
				return false;
			});

        	return false;
            
		},

		// Mailchimp newsletter
		widgetMailChimp: function( $scope ) {
			var $mailChimp = $scope.find('.bdt-mailchimp');
			
			if ( ! $mailChimp.length ) {
				return;
			}

			var langStr = window.ElementPackConfig.mailchimp;

			$mailChimp.submit(function(){
				
				var mailchimpform = $(this);
				bdtUIkit.notification({message: '<span bdt-spinner></span> ' + langStr.subscribing, timeout: false, status: 'primary'});
				$.ajax({
					url:mailchimpform.attr('action'),
					type:'POST',
					data:mailchimpform.serialize(),
					success:function(data){
						bdtUIkit.notification.closeAll();
						bdtUIkit.notification({message: data, status: 'success'});
					}
				});
				return false;

			});

        	return false;
            
		},

		// cookie consent
		widgetCookieConsent: function( $scope ) {
			var $cookieConsent = $scope.find('.bdt-cookie-consent'),
				$settings      = $cookieConsent.data('settings'),
				editMode       = Boolean( elementor.isEditMode() );;
			
			if ( ! $cookieConsent.length || editMode ) {
				return;
			}

			window.cookieconsent.initialise($settings);
		},

		// google invisible captcha
		elementPackGIC: function(token) {   
			var langStr = window.ElementPackConfig.contact_form;

			return new Promise(function(resolve, reject) {  
				if (grecaptcha === undefined) {
					bdtUIkit.notification({message: '<div bdt-spinner></div> ' + langStr.captcha_nd, timeout: false, status: 'warning'});
					reject();
				}

				var response = grecaptcha.getResponse();

				if (!response) {
					bdtUIkit.notification({message: '<div bdt-spinner></div> ' + langStr.captcha_nr, timeout: false, status: 'warning'});
					reject();
				}

				var $contactForm=$('textarea.g-recaptcha-response').filter(function () {
					return $(this).val() === response;
					}).closest('form.bdt-contact-form-form');
				var contactFormAction = $contactForm.attr('action');
				if(contactFormAction && contactFormAction !== ''){
					ElementPack.sendContactForm($contactForm);
				} else {
					console.log($contactForm);
				}
				
				grecaptcha.reset();

			}); //end promise
		},

		sendContactForm: function($contactForm) {
			var langStr = window.ElementPackConfig.contact_form;

			$.ajax({
				url:$contactForm.attr('action'),
				type:'POST',
				data:$contactForm.serialize(),
				beforeSend:function(){
					bdtUIkit.notification({message: '<div bdt-spinner></div> ' + langStr.sending_msg, timeout: false, status: 'primary'});
				},
				success:function(data){
					bdtUIkit.notification.closeAll();
					bdtUIkit.notification({message: data});
					//$contactForm[0].reset();
				}
			});
			return false;
		},

		// Event Carousel
		widgetEventCarousel: function( $scope ) {

			var $eventCarousel = $scope.find( '.bdt-event-carousel' );
				
			if ( ! $eventCarousel.length ) {
				return;
			}

			ElementPack.swiperSlider($eventCarousel);		    
		},


		//Post Grid Tab
		widgetPostGridTab: function( $scope ) {

			var $postGridTab = $scope.find( '.bdt-post-grid-tab' ),
			    gridTab      = $postGridTab.find('> .gridtab');

			if ( ! $postGridTab.length ) {
				return;
			}

			$(gridTab).gridtab($postGridTab.data('settings'));
		},

		//Progress pie
		widgetProgressPie: function( $scope ) {

			var $progressPie = $scope.find( '.bdt-progress-pie' );

			if ( ! $progressPie.length ) {
				return;
			}

			elementorFrontend.waypoint( $progressPie, function() {
				var $this = $( this );
				
					$this.asPieProgress({
					  namespace: 'pieProgress',
					  classes: {
					      svg     : 'bdt-progress-pie-svg',
					      number  : 'bdt-progress-pie-number',
					      content : 'bdt-progress-pie-content'
					  }
					});
					
					$this.asPieProgress('start');

			}, {
				offset: 'bottom-in-view'
			} );

		},

		//Image Magnifier widget
		widgetImageMagnifier: function( $scope ) {

			var $imageMagnifier = $scope.find( '.bdt-image-magnifier' ),
				settings        = $imageMagnifier.data('settings'),
				magnifier       = $imageMagnifier.find('> .bdt-image-magnifier-image');

			if ( ! $imageMagnifier.length ) {
				return;
			}

			$(magnifier).ImageZoom(settings);

		},

		//Table Of Content widget
		widgetTableOfContent: function( $scope ) {

			var $tableOfContent = $scope.find( '.bdt-table-of-content' );
				
			if ( ! $tableOfContent.length ) {
				return;
			}			

			$($tableOfContent).tocify($tableOfContent.data('settings'));			
		},

		//Tabs widget
		widgetTabs: function( $scope ) {

			var $tabs = $scope.find( '.bdt-tabs' ),
				$tab = $tabs.find('.bdt-tab');
				
			if ( ! $tabs.length ) {
				return;
			}

			var tabID = $(location.hash);

			if (tabID.length > 0 && tabID.hasClass('bdt-tabs-item-title')) {
		        $('html').animate({
		        	easing:  'slow',
	                scrollTop: tabID.offset().top,
	            }, 500, function() {
	                bdtUIkit.tab($tab).show($(tabID).data('tab-index'));
	            });  
		    }
		},

		//Accordion widget
		widgetAccordion: function( $scope ) {

			var $accordion = $scope.find( '.bdt-accordion' );
				
			if ( ! $accordion.length ) {
				return;
			}

			var acdID = $(location.hash);

			if (acdID.length > 0 && acdID.hasClass('bdt-accordion-title')) {
		        $('html').animate({
		        	easing:  'slow',
	                scrollTop: acdID.offset().top,
	            }, 500, function() {
	                bdtUIkit.accordion($accordion).toggle($(acdID).data('accordion-index'), true);
	            });  
		    }
		},

		// Video Gallery
		widgetVideoGallery: function( $scope ) {

			var $video_gallery = $scope.find( '.rvs-container' );
				
			if ( ! $video_gallery.length ) {
				return;
			}

			$($video_gallery).rvslider();			
		},

		// Timeline
		widgetTimeline: function( $scope ) {

			var $timeline = $scope.find( '.bdt-timeline-skin-olivier' );
				
			if ( ! $timeline.length ) {
				return;
			}

			$($timeline).timeline({
				visibleItems : $timeline.data('visible_items'),
			});			
		},

		// Timeline
		widgetWCProductTable: function( $scope ) {

			var $productTable = $scope.find( '.bdt-wc-products-skin-table' ),
				$settings 	  = $productTable.data('settings'),
				$table        = $productTable.find('> table');
				
			if ( ! $productTable.length ) {
				return;
			}

			$settings.language = window.ElementPackConfig.data_table.language;

			$($table).DataTable($settings);
		},

		elementorSection: function( $scope ) {
			var $section   = $scope,
				instance   = null,
				sectionID  = $section.data('id'),
				//editMode   = Boolean( elementor.isEditMode() ),
				particleID = 'bdt-particle-container-' + sectionID,
				particleSettings = {};

			//sticky fixes for inner section.
			$.each($section, function( index ) {
				var $sticky      = $(this),
					$stickyFound = $sticky.find('.elementor-inner-section.bdt-sticky');
					
				if ($stickyFound.length) {
					$($stickyFound).wrap('<div class="bdt-sticky-wrapper"></div>');
				}
			});

			instance = new bdtWidgetTooltip( $section );
			instance.init();

			if (typeof particlesJS === 'undefined') {
				return;
			}

			if ( window.ElementPackConfig && window.ElementPackConfig.elements_data.sections.hasOwnProperty( sectionID ) ) {
				particleSettings = window.ElementPackConfig.elements_data.sections[ sectionID ];
			}
			
			
			$.each($section, function( index ) {
				var $this = $(this);
				if ($this.hasClass('bdt-particles-yes')) {
					$section.prepend( '<div id="'+particleID+'" class="bdt-particle-container"></div>' );
					particlesJS( particleID, JSON.parse( particleSettings.particles_js ));
				}
			});
		}
	};

	$( window ).on( 'elementor/frontend/init', ElementPack.init );
	
	//Contact form recaptcha callback, if needed
	window.elementPackGICCB = ElementPack.elementPackGIC;

	window.bdtWidgetTooltip = function ( $selector ) {

		var $tooltip = $selector.find('.elementor-widget.bdt-tippy-tooltip');

		this.init = function() {
			if ( ! $tooltip.length ) {
				return;
			}
			$tooltip.each( function( index ) {

				tippy( this, {
					appendTo: this
				});				
			});
		};
		
	};

}( jQuery, window.elementorFrontend ) );

FADUS Healthcare – Affy Pharma Pvt Ltd

SEFOX

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefpodoxime 50mg/5ml

Indications & Uses

UTIs, LRTs

SYREGO – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefpodoxime 50mg + Potassium Clavulanate 31.25mg/ 5ml

Indications & Uses

Upper & lower respiratory infections, Uncomplicated skin infections, Urinary Tract Infections

PEMOX-CLAV

POWDER FOR ORAL SUSPENSION
30ML (GLASS +HDPE BOTTLE)

Composition

Amoxycillin 200mg + Potassium clavulanate 28.50 mg/ 5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis, Upper Respiratory Tract Infections, Urinary Tract Infections

CEFIDUS CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefixime 50mg + Potassium clavulanate 31.25mg/5ml

Indications & Uses

Urinary Tract Inefctions, AECB, Otitis Media, Typhoid/p>

CEFIDUS

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefixime 50mg/5ml

Indications & Uses

Urinary Tract Inefctions, Gastroenteritis

SAMTHRO

ORAL SUSPENSION
15 ml

Composition

Azithromycin 200mg/5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis,

PARADUS-DS

ORAL SUSPENSION
60 ml

Composition

Paracetamol 250mg/5ml

Indications & Uses

Fever, Pain

FADSPAS-M

ORAL SUSPENSION
60 ml

Composition

Paracetamol 125mg + Mefenamic Acid 50mg/5ml

Indications & Uses

Pain, Fever

FADOFLOX

ORAL SUSPENSION
30 ml

Composition

Ofloxacin 50mg/5ml

Indications & Uses

Acute exacerbations of chronic Bronchitis, Diarrhoea

CUFFAD

SYRUP
60 ml

Composition

Paracetamol 125mg + PPH 5mg + Cetirizine HCI 2mg/5ml

Indications & Uses

Fever, common cold & Flu

FAD-HUNGRY

ORAL SUSPENSION
200ml

Composition

Cyproheptadine HCI 2mg + Tricholine citrate 0.275mg/5ml

Indications & Uses

Stimulate Apetite, Induces Weight Gain, Cure Allergies

APRAZ-DSR

CAPSULES ( HARD GELATIN)
10X10 (Alu-Alu)

Composition

Pantoprazole 40mg (EC) + Domperidone 30mg (SR)

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

TAPEN-DSR

CAPSULES ( HARD GELATIN)
11X10 (Alu-Alu)

Composition

Rabeprazole 20mg (EC) + Domperidone SR

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

APRAZ-40

INJECTION
40ml

Composition

Pantoprazole Sodium 40mg + NaCL

Indications & Uses

Acid-peptic disorders in hospitalized patients, Zollinger – Ellison Syndrome, Treatment of GERD Associated with Erasive Esophagitis, GL Bleed

NTICID

SUSPENSION
170ml

Composition

Activated Dimethicone 25mg + Magnesium Hydroxide 200mg+ Aluminium Hydroxide Gel 200mg/10ml

Indications & Uses

Heartburn, Acid Indigestion

FAD-ZYME

SYRUP
200ml

Composition

Alpha Amylase (1:2000) 50mg, Pepsin(1:3000) 10mg/5ml

Indications & Uses

Dyspepsia, Flatulence, Anorexia, Pancreatic Insufficiency

CAROFE

CAPSULES (HARD GELATIN)
10X3X10

Composition

Vitamin C 75mg + Vitamin B12 5mcg + Carbonyl Iron 100mg + Folic Acid 1.5mg + Zinc Sulphate 61.8mg

Indications & Uses

Hyphocromic Anemia in Pregnancy, Chronic and / or Acute Blood Loss, Post-gynaesurgery, Iron Deficiency Anemia

FA-D3 60K

CAPSULES (SOFT GELATIN)
10X1X4

Composition

Cholecalciferol 60000 UI

Indications & Uses

Osteoporosis, Osteoarthritis, Musculoskeletal Pain, Type- 2 Diabetes, Menstrual Irregularities, Pre-eclampsia, IUGR

CALERA

CAPSULES (SOFT GELATIN)
5X2X15

Composition

Calcitriol 0.25mcg + Calcium Carbonate 500mg + Zinc Sulphate 7.5mg

Indications & Uses

Osteoporosis, Hypoparathyroidism, Pregnancy & Lactation, Premenstrual Syndrome

IROFAD

SYRUP (IRON TONIC)
300 ml

Composition

Iron (III) Hydroxide Polymaltose 50mg, Folic Acid 0.5mg/15ml

Indications & Uses

Pregnancy and lactation, Iron Deficiency Anaemia, Anaemia due to Excessive Haemorrhage, Anaemia Associated with Infections and Malignant Disease

FAD-CCD

ORAL SUSPENSION
200ml

Composition

Calcium Carbonate 625mg, Vitamin D3 125 IU/5ml

Indications & Uses

Osteomalacia, Osteoporosis, Fractures, Premenstrual Syndrome

FADSPAS-M

TABLETS
20X10

Composition

Mefenamic Acid 250mg + Dicyclomine HCI 10mg

Indications & Uses

Dysmenorrhea, Irritable Bowel Syndrome, Colic and Bladder Spasm, Abdominal Pain

FADACIT

TABLETS (BLISTERS)
20X10

Composition

Nimeulide 100mg + Paracetamo; 325mg

Indications & Uses

Arthritis Pain, Soft Tissue Trauma Including Sprains, Musculoskeletal Pain, Pain Following Dental Extraction

PARA – T – FORTE

TABLETS

20X10

Composition

Tramadol 37.5mg + Paracetamol 325mg

Indications & Uses

Chronic Back Pain, Osteoarthritis, Postoperative Pain

FASFO

GEL
30g

Composition

Diclofenac Diethylamine 1.16% w/w + Oleum Linseed Oil 3 % w/w + Menthol 5% w/w +Methyl Salicylate 10% w/w

Indications & Uses

Sprains & Strains, Lower Back Pain, Joint Pain, Knee Pain

FAD-SOFT

CREAM
20g

Composition

Urea 10% +Lactic Acid 10% + Propylene Glycol 10% + Liquid Paraffin 10%

Indications & Uses

Foot Cracks, Keratolytic

CLOTIREL

OINTMENT
15g

Composition

Clotrimazole 1% w/w + Beclomethasone Dipropionate 0.025% w/w + Neomycin 0.5% w/w

Indications & Uses

Eczema, Psoriasis, Corticosteroid Responsive Dermatoses

KETOFAD

LOTION
100 ml

Composition

Ketoconazole 2% w/v

Indications & Uses

Pityriasis, Dandruff

KETOFAD-Z

LOTION
100 ml

Composition

Ketoconazole Shampoo 2% w/v + ZPTO 1% w/v

Indications & Uses

Pityriasis, Dandruff

DANDNIL

SOAP
75g

Composition

Ketoconazole 1% w/w

Indications & Uses

Tinea Versicolor, Prophylaxis of Pityriasis Versicolor

FADFLU

TABLETS
20X1X1

Composition

Fluconazole 200mg

Indications & Uses

Vaginal Candidiasis, Brochopulmonary Infections, Candiduria, Tinea Pedis, Corposis, Cruris, Versicolor

FADVIT

SYRUP
200ml

Composition

L-Iysine HCI 25mg + Vitamin B1 2.5mg + Vitamin B2 2.5mg + Vitamin B6 0.75mg + D-panthenol 3mg +Niacinamide 25mg + Mecobalamin 2mcg/10ml

Indications & Uses

Sub-optimal Growth, Poor Weight Gain, Malnutrition, Prolonged Illness

LYCODUS GOLD

SYRUP
225ml

Composition

Each 10ml Contains: Lycopene 6% 1000mcg + Vitamin A Palmitate 2500 IU + Vitamin E 10 IU + Ascorbic Acid 50mg + Selenium (as Sodium Selenate) 35mcg + Zinc (As Zinc Gluconate) 3mg + Manganese (as Manganese Gluconate) 2mg + Iodine ( As Potassium Iodine) 100mcg + Copper (As Copper Sulphate0 500mcg + Thiamine HCI 2mg + Riboflavine 3mg + Pyridoxine HCI 1.5mg

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

VITERA

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Antioxidant, Multivitamin & Multiminerals

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

EWHEA

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Vitamin E (Natural) 400 IU + Wheat Germ Oil 100mg + Omega 3 Fatty Acids 30mg

Indications & Uses

Ulcerative colitis, Metabolic Syndrome, Rheumatoid Arthritis, Type-2 Diabetes, Cardiovascular Diseases

VITERA-4G

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Omega 3 Fatty Acid + Ginseng Extract + Ginkgo Bilaba Extract + Grape Seed Extract + Ginseng Extract + Multimineral + Multivitamin + Antioxidants + Trace Elements

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

VITERA-G

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

LYCODUS

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Each SG Contains Lycopene 6% 2000 IU + Vitamin A 2500 IU + Vitamin E Acetate 10 IU + Vitamin C 50 mg + Zinc sulphate Monohydrate 27.45mg + Selenium Dioxide 70mcg

Indications & Uses

Idiopathic Male Infertility, Pre-eclampsia, Prostate Cancer, Cardiovascular Diseases, Diabetes Mellitus

CEFIDUS-200-LB

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Lactic Acid Bacilus 2.5 billion spores

Indications & Uses

Otitis Media, Pharyngitis & Tonsillitis, Uncomplicated Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis, Enteric Fever

CEFIDUS-CV 325

TABLETS (Alu-Alu)
10X1X6

Composition

Cefixime 200mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Urinary Tract Infections, Skin & Skin Structure Infections

PEMOX-CLAV 625

TABLETS (Alu-Alu)
10X1X7

Composition

Amoxycillin 500mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Community Acquired Pneumonia, Gynaecological Infections, Acute Exacerbations of Chronic Bronchitis, Skin and Soft Tissue Infections

FADFLOX-O

TABLETS (Blister)
20X10

Composition

Ofloxacin 200mg + Ornidazole 500mg

Indications & Uses

Surgical ions, Diarrheas of Mixed Etiology, Gynaecological Infections, Orofacial and Dental Infections

LEVOXA-500

TABLETS
10X10

Composition

Levofloxacin 500mg

Indications & Uses

Acute Bacterial Sinusitis, Acute Bacterial Exacerbations of Chronic Bronchitis, Skin & Skin Structure Infections, Chronic Bacterial Prostatitis, Urinary Tract Infections

CEFIDUS-O

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

FADFLOX

TABLETS (Alu-Alu)
10X1X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

RTIs, Otitis Media, Sinustis, UTIs, Typhoid

PEMOX-CLAV 1.2

INJECTIONS
1.2g

Composition

Amoxycillin 1000mg + Potassium Clavulanate 200mg + WFI

Indications & Uses

Community Acquired Pneumonia, Gynaecological Infections, Upper Respiratory Tract Infections, Skin and Soft Tissue Infections, Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis

EFTRI-S 1.5

INJECTIONS
1.5g

Composition

Ceftriaxone 1000mg + Sulbactam 500mg + WFI

Indications & Uses

Gynaecological Infections, Lower Respiratory Tract Infections, Intra-abdominal Infections with Aerobic Organisms, Surgical Prophylaxis

CEFOPER-S 1.5

INJECTIONS
1.5gm

Composition

Cefaperazone 1000mg + Sulbactam 500mg +WFI

Indications & Uses

Peritonitis, Bacterial Simusitis, Cholecystitis, Meningitis

BEMRO

INJECTIONS
1gm

Composition

Meropenem 1gm + WFI

Indications & Uses

Complicated Intra-abdominal Infection (cIAI), Complicated Skin & Skin Structure Infections (cSSSI), Bacterial Meningitis, Noscocomial Pneumonia

PIPDUS-T-4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

EFTRI-T 1.125

INJECTIONS
1.125gm

Composition

Ceftriaxone 1000mg + Tazobactam 500 mg + WFI

Indications & Uses

Bone & Joint Infections, Intra-abdominal Infections, Bacterial Meningitis, Pre-operative Surgical Prophylaxis

SEFOX-200

TABLETS (Alu-Alu)
10X1X6

Composition

Cefpodoxime Proxetil 200mg

Indications & Uses

Pharyngitis, CAP, Tonsilitis

BRONKUFF

SYRUP
100ml

Composition

Ambroxol HCI 15mg + Guaiphensin 50mg + Terbutaline Sulphate 1.5mg + Mentholated Base/5ml

Indications & Uses

Bronchitis, Productive Cough, Emphysema, Bronchial Asthma

BRONKUFF-BR

SYRUP
100ml

Composition

Terbutaline Sulphate 2.5mg + Bromhexine HCI 8mg + Guaiphenesin 100mg + Methalated Base/5ml

Indications & Uses

Acute Cough, Abnormal Mucus Secretion, Productive Cough

CUFEX-CP

SYRUP
100ml

Composition

Dextromethorphan Hydrobromide 10mg + Phenylpherine 5 mg + Cetrizine 5mg + Mentholated Base/5ml

Indications & Uses

Commom Cold and Flu, Nasal Congestion, Sore Throat

MONLEV

TABLETS (Alu-Alu)
20X10

Composition

Levocetirizine 5mg + Montelukast 10mg

Indications & Uses

Allergic Rhinitis, Nasal Congestion, Asthma

LOVOFAD

TABLETS (Alu-Alu)
20X11

Composition

Levocetirizine 5mg

Indications & Uses

Chronic Idiopathic Urticaria (CIU), Seasonal Allergic Rhinitis (SAR), Perennial Allergic Rhinitis (PAR)

Arrange A Callback
[]
1 Step 1
Full Name
Telephone
Departmentyour full name
Postal Address
Message
0 /
Previous
Next
Shopping Basket