Product

.fusionredux-main { .divide { height: 20px; line-height: 20px; float: none; border-color: #E7E7E7; display: block; width: 100%; height: 35px !important; line-height: 35px !important; position: relative; margin: 15px 0 10px 0;.inner { width: 42% !important; left: 40% !important; margin-left: -6%; background-color: #FCFCFC; border-color: #E7E7E7; position: absolute; height: 1px; top: 50%; width: 100%; margin-top: -1px; border-top-width: 1px; border-top-style: solid; span { background-color: #FCFCFC; border-color: #E7E7E7; height: 5px; width: 5px; border-width: 2px; border-style: solid; display: block; position: absolute; left: 50%; margin-left: -5px; margin-top: -5px; } } } }.wp-customizer .fusionredux-container-divide { .divide .inner { width: 82% !important; left: 18% !important; margin-left: -8%; } }
Eminabadi

Almond Dry Cake

1,500

Availability: In of stock
Category:
/** * This function will work cross-browser for loading scripts asynchronously */ function loadAsync(src, callback) { var scriptTag, ready = false;scriptTag = document.createElement('script'); scriptTag.type = 'text/javascript'; scriptTag.src = src; scriptTag.onreadystatechange = function() { // console.log( this.readyState ); //uncomment this line to see which ready states are called. if (!ready && (!this.readyState || this.readyState == 'complete') ) { ready = true; typeof callback === 'function' && callback(); } }; scriptTag.onload = scriptTag.onreadystatechange document.getElementsByTagName("head")[0].appendChild(scriptTag) }