(function(URL, TYPE, ISMOBILE, LANG, WLLOGO, LOGOBKG, HOMEPAGEURL, FREQUENCY, PHRASES, IS_PREVIEW, AUTOCLOSE, POSTITIAL_NAME, OLDPOSTITIAL, PREVIEW_TYPE, WRAPPER_MODIFIERS){ URL = URL || '#'; HOMEPAGEURL = HOMEPAGEURL || '#'; TYPE = TYPE || 'full'; WLLOGO = WLLOGO || false; LOGOBKG = LOGOBKG || false; FREQUENCY = FREQUENCY || 24*60*60*1000; PHRASES = PHRASES || { 'continue': 'Continue to %_site_%', 'close': 'Close ad' }; ISMOBILE = ISMOBILE || PREVIEW_TYPE === 'mobile' || PREVIEW_TYPE === 'tablet' || false; IS_PREVIEW = IS_PREVIEW || false; PREVIEW_TYPE = PREVIEW_TYPE || false; AUTOCLOSE = parseInt(AUTOCLOSE, 10) > 30 ? 30 : parseInt(AUTOCLOSE, 10) || 0; POSTITIAL_NAME = POSTITIAL_NAME || ''; OLDPOSTITIAL = false; WRAPPER_MODIFIERS = WRAPPER_MODIFIERS || '' ; var HIDE_INNER_WRP_CLASS = '__bcpsttl_hide'; var cn = 'bcpsttl_' + TYPE; var el; var frameEl; var wlLogoStyle = ''; var wlLogoBlockStyle = ''; var wlLogoImg = ''; var wlBkgStyle = ''; var userDevice = ISMOBILE ? 'mobile' : 'desktop'; var mobileInterval; var autocloseTimeout = 0; var detectTabletBlock = null; let mainClasses = 'bcpsttl_name_' + POSTITIAL_NAME; var customHeightClass = false; let timerLeftBlock = ''; let burgerMenu = ''; let timerSecondsLeft; var popunderShow = false; var loadedIframe = false; // flag for loaded iframe var waitingFirstShow = false; // flag for first show loaded var touchableDevice = ''; var changeVisibleShowPopup = false; /* need for hide popup close/open */ var innerPopupWrpBlock = null; let route = null; if (WLLOGO) { wlLogoImg = 'background-image: url(' + WLLOGO + ');'; } if (LOGOBKG) { wlBkgStyle = 'background-color: ' + LOGOBKG + ';'; } if (WLLOGO || LOGOBKG) { wlLogoBlockStyle = 'style="' + wlBkgStyle + '"'; wlLogoStyle = 'style="' + wlLogoImg + '"'; } if (PREVIEW_TYPE) { mainClasses += ' bcpsttl_preview_type_' + PREVIEW_TYPE } if (!IS_PREVIEW) { document.addEventListener('DOMContentLoaded', init); } else { init(); } function init() { if (!IS_PREVIEW && getC(cn)) { return; } if (AUTOCLOSE > 0) { const circleColor = TYPE !== 'full' ? '#ffffff' : '#cdcdcd'; timerLeftBlock = '
' + '' + '' + '' + '' + ''; } const closeFooter = ''; if (POSTITIAL_NAME === 'listing') { if (ISMOBILE) { burgerMenu = '
'; WRAPPER_MODIFIERS += ' __bcpsttl_header_primary'; } else { changeVisibleShowPopup = true; WRAPPER_MODIFIERS += ' ' + HIDE_INNER_WRP_CLASS; } } const detectTablet = ISMOBILE ? '
' : ''; el = document.createElement('div'); el.id = 'bcpsttl_main'; el.className = mainClasses; el.style.display = 'none'; el.innerHTML = '' + '
' + '
' + '
' + '' + '' + '
' + timerLeftBlock + '' + '' + '' + PHRASES['close'] + '' + '' + '
' + '
' + closeFooter + detectTablet + '
'; document.body.appendChild(el); if (ISMOBILE) { detectTabletBlock = document.querySelector('.bcpsttl_detect_tablet'); } frameEl = document.getElementById('bcpsttl_iframe'); if (!IS_PREVIEW) { document.addEventListener('click', onClick, false); } else { show(); } window.addEventListener('message', onReceiveMessage); // css variable, for mobile chrome var vh = window.innerHeight * 0.01; document.body.style.setProperty('--vh', vh+'px'); window.addEventListener('resize', resizeHandler, false); innerPopupWrpBlock = document.querySelector('.bcpsttl_wrp'); frameEl.onload = function () { loadedIframe = true; if (waitingFirstShow) { frameEl.contentWindow.postMessage({show: true}, '*'); } } } function onContinueClick(e) { if (e) { e.preventDefault(); if (!IS_PREVIEW && !PREVIEW_TYPE) { // need for preview mobile version e.stopImmediatePropagation(); } } const closeBtn = document.getElementById(cn + '_close'); if (closeBtn) { closeBtn.click(e); } } function onClick(e) { var link = isLink(e.target); if (!getC(cn) && link && !popunderShow) { e.preventDefault(); e.stopImmediatePropagation(); show(); popunderShow = true; var href = link.getAttribute('href'); if (href) { route = href; } } } function onCloseClick(e) { clearTimeout(timerSecondsLeft); clearTimeout(autocloseTimeout); if (!el) { return; } if (e) { e.preventDefault(); if (!IS_PREVIEW && !PREVIEW_TYPE) { // need for preview mobile version e.stopImmediatePropagation(); } } el.style.display = 'none'; if (route) { return window.location.assign(route); } detachHandlers(); const svgCircleInner = document.getElementsByClassName('svg_circle_inner')[0]; // svgCircleInner.classList not in IE if (Boolean(svgCircleInner) && svgCircleInner.classList) { svgCircleInner.classList.remove('svg_circle_active'); } else { document.querySelector('.bcpsttl_top_block').classList.remove('bcpsttl_simple_active'); } frameEl.contentWindow.postMessage({show: false}, '*'); if (changeVisibleShowPopup && innerPopupWrpBlock) { innerPopupWrpBlock.classList.add(HIDE_INNER_WRP_CLASS); } setTimeout(function() { el.remove(); }, 100); } function attachHandlers() { document.getElementById(cn + '_continue').addEventListener('click', onContinueClick, false); document.getElementById(cn + '_close').addEventListener('click', onCloseClick, false); resizeHandler(); if (ISMOBILE) { mobileInterval = setInterval(function () { onResize(); }, 500); } document.addEventListener('touchmove', blockTouchMove, { passive: false }); } function detachHandlers() { document.getElementById(cn + '_continue').removeEventListener('click', onContinueClick, false); document.getElementById(cn + '_close').removeEventListener('click', onCloseClick, false); clearInterval(mobileInterval); document.removeEventListener('touchmove', blockTouchMove); popunderShow = false; route = null; } function blockTouchMove(e) { // IOS bg scroll fix e.preventDefault(); return false; } function resizeHandler () { onResize(); } function onResize () { var vh = window.innerHeight * 0.01; document.body.style.setProperty('--vh', vh + 'px'); fitTextFontSize('.bcpsttl_footer_holder', document.getElementById('bcpsttl_main'), {recheckInterval: 1000}); var width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; var height = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; var isLandscape = width > height; if (ISMOBILE) { var isTablet = Boolean(detectTabletBlock) ? detectTabletBlock.offsetParent !== null : false; const classNameDevice = isTablet ? 'tablet' : 'mobile'; setClass(isLandscape ? `bcpsttl_${classNameDevice} bcpsttl_land` : `bcpsttl_${classNameDevice} bcpsttl_port`); } else { // special ipad firefox if (Boolean('ontouchstart' in window)) { touchableDevice = ' touchable_device'; } if (height <= 600 || width <= 800) { setClass(width <= 500 ? 'desktop_small __min' : 'desktop_small' + touchableDevice); } else { setClass('empty' + touchableDevice); } } const wrpPrototyp = document.getElementById('bcpsttl_wrp_prototype'); if (Boolean(wrpPrototyp) && Boolean(frameEl.contentWindow)) { const maxHeight = wrpPrototyp.offsetHeight; frameEl.contentWindow.postMessage({outerHeight: maxHeight}, '*'); } } function setClass(className) { className = (className || '') + ' ' + userDevice; if (!frameEl || !frameEl.contentWindow) { return; } if (LANG === 'ar' || LANG === 'il') { className = className + ' ' + 'bcpsttl_rtl' } if (customHeightClass) { className = className + ' ' + 'custom_height_wrapper' } el.className = className + ' ' + mainClasses; frameEl.contentWindow.postMessage({className: className}, '*'); } function show() { if (!el) { return; } if (!IS_PREVIEW) { setC(cn, 1, FREQUENCY); } el.style.display = ''; attachHandlers(); if (AUTOCLOSE > 0) { const svgCircleInner = document.getElementsByClassName('svg_circle_inner')[0]; autocloseTimeout = window.setTimeout(onCloseClick, AUTOCLOSE * 1000); //condition for ie, without svg animation if (svgCircleInner.classList) { svgCircleInner.classList.add('svg_circle_active'); } else { document.querySelector('.bcpsttl_top_block').classList.add('bcpsttl_simple_active'); document.getElementById('svg_circle').style.display = "none"; } svgCircleInner.setAttribute('style', 'transition-duration:' + AUTOCLOSE + 's;'); closeTimer(AUTOCLOSE+1); } if (loadedIframe) { frameEl.contentWindow.postMessage({show: true}, '*'); } else { waitingFirstShow = true; } } function isLink(el) { var p = null; if (!!el && el !== document.body) { try { p = el.tagName.toLowerCase() === 'a' && el.hasAttribute('href') ? el : isLink(el.parentNode); } catch (e) { } } return p; } function setC(n, v, t) { var e = new Date(); e.setTime(e.getTime() + t); document.cookie = n + '=' + v + '; path=/; expires=' + e.toGMTString(); } function getC(n) { var cs = ('' + document.cookie).split('; '); for (var i = 0; i < cs.length; i++) { var cookie = cs[i].split('='); if (cookie[0] === n) return cookie[1]; } return null; } function onReceiveMessage(e) { if (!e || !e.data) { return; } if (e.data.getClass) { onResize(); return; } if (e.data.visiblePopup && innerPopupWrpBlock) { innerPopupWrpBlock.classList.remove(HIDE_INNER_WRP_CLASS); return; } var height = e.data.wrapperHeight; var jsIframeWrp = document.getElementById('js-iframe-wrp'); var mainWrapper = document.getElementById('bcpsttl_main'); if (jsIframeWrp && Boolean(height) && mainWrapper && mainWrapper.classList.contains('bcpsttl_name_base')) { var outsideWrpHeight = mainWrapper.offsetHeight; var footerHeight = document.querySelector('.bcpsttl_footer').offsetHeight; var currentHeight = Math.max(height, outsideWrpHeight - footerHeight); jsIframeWrp.style.height = currentHeight ? currentHeight + 1 + 'px' : ''; } else if (jsIframeWrp) { jsIframeWrp.style.height = height ? height + 1 + 'px' : ''; } if (Boolean(e.data.customHeight) !== customHeightClass) { customHeightClass = !!e.data.customHeight; onResize(); } } function isFit(el, options = {}) { const freeHeight = el.dataset['freeHeight']; return ((options && options.ignoreWidth) || el.scrollWidth <= el.offsetWidth) && (freeHeight || (options && options.ignoreHeight) || el.scrollHeight <= el.offsetHeight); } function fitTextFontSize (selector, parent, options) { const parentElement = parent || document.body; const priority = options && options.important ? 'important' : ''; function dichotomy (min, max, el) { if (max - min < 1) { el.style.setProperty('font-size', min + 'px', priority); return min; } else { const mid = (max + min) / 2; el.style.setProperty('font-size', mid + 'px', priority); if (isFit(el, options)) { return dichotomy(mid, max, el); } else { return dichotomy(min, mid, el); } } } function worker() { let commonMinFS = Infinity; const elements = typeof selector === 'string' ? parentElement.querySelectorAll(selector) : [selector]; Array.prototype.map.call(elements, (el) => { el.style.fontSize = ''; const fsize = parseInt(window.getComputedStyle(el)['font-size'], 10); commonMinFS = Math.min(commonMinFS, isFit(el, options) ? fsize : dichotomy(1, fsize, el)); }); if (options && options.syncSize) { Array.prototype.map.call(elements, (el) => { el.style.setProperty('font-size', commonMinFS + 'px', priority); }); } } if (options && options.recheckInterval) { const recheckTimer = setInterval(worker, 100); setTimeout(() => clearInterval(recheckTimer), options.recheckInterval); } worker(); } function closeTimer(defaultTimer) { const timersHolder = document.getElementsByClassName('js_timer'); const mainTimer = document.getElementById('js_main_timer'); let i = defaultTimer; let timerNum = document.createTextNode(i); if (mainTimer.childNodes.length) { mainTimer.replaceChild(timerNum, mainTimer.childNodes[0]); } else { mainTimer.appendChild(timerNum); } setTimeout(function run() { if (i <= 1) { timerNum.textContent = 1; return } i--; timerNum.textContent = i; for (n = 0; n < timersHolder.length; n++) { timersHolder[n].innerHTML = timerNum.textContent; } timerSecondsLeft = setTimeout(run, 1000); }, 0); } var outerStyles = "/** Postitial wrapper common styles** Modifiers* .bcpsttl_wrp.__bcpsttl_hide - mode for hide inner wrapper popup*/#bcpsttl_main { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9999999; -webkit-box-sizing: unset; -moz-box-sizing: unset; box-sizing: unset; text-align: center; background: rgba(0,0,0,0.75)}#bcpsttl_main .bcpsttl_wrp.__bcpsttl_hide .bcpsttl_iframe { opacity: 0; visibility: hidden;}#bcpsttl_main.bcpsttl_name_base { background: #fff;}#bcpsttl_main.bcpsttl_name_live_stream.bcpsttl_mobile { background-color: #404040;}#bcpsttl_main.bcpsttl_name_live_stream .bcpsttl_logo { background-color: #404040;}#bcpsttl_main.bcpsttl_name_live_stream {/*bcpsttl_wrp prototype, should be hide*/}#bcpsttl_main.bcpsttl_name_live_stream #bcpsttl_wrp_prototype { height: 100% !important;}#bcpsttl_main.bcpsttl_name_live_stream #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_name_live_stream .bcpsttl_wrp:before { padding-top: 56.25%;}#bcpsttl_main.bcpsttl_name_online_sex_redhead {/*bcpsttl_wrp prototype, should be hide*/}#bcpsttl_main.bcpsttl_name_online_sex_redhead #bcpsttl_wrp_prototype { height: 100% !important;}#bcpsttl_main.bcpsttl_name_online_sex_redhead #bcpsttl_wrp_prototype, #bcpsttl_main.bcpsttl_name_online_sex_redhead .bcpsttl_wrp { max-height: none}#bcpsttl_main.bcpsttl_name_online_sex_redhead #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_name_online_sex_redhead .bcpsttl_wrp:before { padding-top: 65%;}#bcpsttl_main.bcpsttl_name_map #bcpsttl_wrp_prototype { height: 100% !important;}#bcpsttl_main.bcpsttl_name_map.bcpsttl_tablet #bcpsttl_wrp_prototype { height: auto !important;}#bcpsttl_main.bcpsttl_name_map.empty.desktop .bcpsttl_footer { bottom: -30px; margin-top: auto;}#bcpsttl_main.bcpsttl_name_map #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_name_map .bcpsttl_wrp:before { padding-top: 100%;}#bcpsttl_main.bcpsttl_name_listing.bcpsttl_tablet #bcpsttl_wrp_prototype { height: auto !important;}#bcpsttl_main.bcpsttl_name_listing.bcpsttl_tablet #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_name_listing.bcpsttl_tablet .bcpsttl_wrp:before { padding-top: 100%;}#bcpsttl_main.bcpsttl_name_listing #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_name_listing .bcpsttl_wrp:before { padding-top: 40%;}#bcpsttl_main.bcpsttl_name_listing.empty.desktop .bcpsttl_footer { bottom: -30px; margin-top: auto;}#bcpsttl_main.bcpsttl_name_red_cucumber_chat #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_name_red_cucumber_chat .bcpsttl_wrp:before { padding-top: 52%;}#bcpsttl_main.bcpsttl_name_red_cucumber_no_chat #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_name_red_cucumber_no_chat .bcpsttl_wrp:before, #bcpsttl_main.bcpsttl_name_red_cucumber_no_chat_na1 #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_name_red_cucumber_no_chat_na1 .bcpsttl_wrp:before, #bcpsttl_main.bcpsttl_name_red_cucumber_no_chat_na2 #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_name_red_cucumber_no_chat_na2 .bcpsttl_wrp:before { padding-top: 63%;}#bcpsttl_main.bcpsttl_name_base .bcpsttl_detect_tablet, #bcpsttl_main.bcpsttl_name_call1 .bcpsttl_detect_tablet, #bcpsttl_main.bcpsttl_name_call2 .bcpsttl_detect_tablet, #bcpsttl_main.bcpsttl_name_slider .bcpsttl_detect_tablet, #bcpsttl_main.bcpsttl_name_slider2 .bcpsttl_detect_tablet { display: none;}#bcpsttl_main.bcpsttl_preview_type_mobile .bcpsttl_detect_tablet { display: none;}#bcpsttl_main.custom_height_wrapper #bcpsttl_wrp_prototype:before, #bcpsttl_main.custom_height_wrapper .bcpsttl_wrp:before { display: none;}#bcpsttl_main:before { display: inline-block; height: 100%; vertical-align: middle; content: '';}#bcpsttl_main * { -webkit-box-sizing: unset; -moz-box-sizing: unset; box-sizing: unset; margin: 0; padding: 0; font-size: 14px; line-height: 14px; background: none; border: 0; outline: none;}#bcpsttl_main *:before, #bcpsttl_main *:after { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box;}#bcpsttl_main #bcpsttl_wrp_prototype, #bcpsttl_main .bcpsttl_wrp { position: relative; display: inline-block; width: 133.1024vh; max-width: 74.063vw; max-height: 82vh; white-space: normal; vertical-align: middle}#bcpsttl_main #bcpsttl_wrp_prototype:before, #bcpsttl_main .bcpsttl_wrp:before { display: block; padding-top: 61.604%; content: '';}#bcpsttl_main {/*bcpsttl_wrp prototype, should be hide*/}#bcpsttl_main #bcpsttl_wrp_prototype { position: absolute !important; z-index: -1 !important; height: 0 !important;}#bcpsttl_main .bcpsttl_iframe { position: absolute; top: 0; left: 0; z-index: 2; width: 100%; height: 100%;}#bcpsttl_main .bcpsttl_logo { position: absolute; background-color: #8d0028;}#bcpsttl_main .bcpsttl_logo_icon { width: 100%; top: 0; left: 0; bottom: 0; position: absolute; background-image: url('https://i.bngpst.com/postitial/assets/images/outer_logo.svg'); background-repeat: no-repeat; background-position: center;}#bcpsttl_main #js_main_timer { display: none;}#bcpsttl_main .bcpsttl_detect_tablet { position: absolute; left: -999px; display: block; width: 0; height: 0;}/** Mobile wrapper common styles*//* iPad mobile footer size fix */@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { #bcpsttl_main.bcpsttl_mobile .bcpsttl_wrp_inner { max-height: 100%; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_footer { height: 10vh } #bcpsttl_main.bcpsttl_mobile .bcpsttl_footer .bcpsttl_footer_holder { line-height: -webkit-calc(10vh - 10px); line-height: calc(10vh - 10px); }}#bcpsttl_main.bcpsttl_tablet.bcpsttl_land #bcpsttl_wrp_prototype, #bcpsttl_main.bcpsttl_tablet.bcpsttl_land .bcpsttl_wrp { max-height: 71vh;}#bcpsttl_main.bcpsttl_tablet.bcpsttl_land .bcpsttl_footer { bottom: -4.5vh;}#bcpsttl_main.bcpsttl_tablet.bcpsttl_name_online_sex_redhead.bcpsttl_port .bcpsttl_wrp:before { padding-top: 100%;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_slider .bcpsttl_wrp_inner { max-height: -webkit-calc(100% - 10vh); max-height: calc(100% - 10vh); max-height: -webkit-calc(100% - var(--vh)*10); max-height: calc(100% - var(--vh)*10);}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_slider2 .bcpsttl_wrp_inner { max-height: -webkit-calc(100% - 10vh); max-height: calc(100% - 10vh); max-height: -webkit-calc(100% - var(--vh)*10); max-height: calc(100% - var(--vh)*10);}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_slider2 .bcpsttl_footer { background: #000;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_base.bcpsttl_rtl .bcpsttl_footer_text .icon_arrow { background-image: url('https://i.bngpst.com/postitial/assets/images/outer_arrow_000_ar.svg');}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_base .bcpsttl_full .bcpsttl_wrp_inner { max-height: -webkit-calc(100% - 10vh); max-height: calc(100% - 10vh); max-height: -webkit-calc(100% - var(--vh)*10); max-height: calc(100% - var(--vh)*10);}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_base .bcpsttl_full .bcpsttl_iframe { background: #fff; margin-top: 10vh; margin-top: 10vh; padding-top: 0;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_base .bcpsttl_footer_text .icon_arrow { background-image: url('https://i.bngpst.com/postitial/assets/images/outer_arrow_000.svg');}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_live_stream .bcpsttl_full .bcpsttl_footer { background: transparent;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_live_stream .bcpsttl_wrp_inner { max-height: -webkit-calc(100% - 10vh); max-height: calc(100% - 10vh); max-height: -webkit-calc(100% - var(--vh)*10); max-height: calc(100% - var(--vh)*10);}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_red_cucumber_chat .bcpsttl_wrp_inner { max-height: -webkit-calc(100% - 10vh); max-height: calc(100% - 10vh); max-height: -webkit-calc(100% - var(--vh)*10); max-height: calc(100% - var(--vh)*10);}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_online_sex_redhead .bcpsttl_full .bcpsttl_wrp_inner { max-height: -webkit-calc(100% - 10vh); max-height: calc(100% - 10vh); max-height: -webkit-calc(100% - var(--vh)*10); max-height: calc(100% - var(--vh)*10);}#bcpsttl_main.bcpsttl_mobile #bcpsttl_wrp_prototype, #bcpsttl_main.bcpsttl_mobile .bcpsttl_wrp { position: static; display: block; width: auto; max-width: none; max-height: none}#bcpsttl_main.bcpsttl_mobile #bcpsttl_wrp_prototype:before, #bcpsttl_main.bcpsttl_mobile .bcpsttl_wrp:before { display: none;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_wrp_inner { position: absolute; top: 0; left: 0; width: 100%; max-width: 100%; height: 100%; max-height: 100%; -webkit-overflow-scrolling: touch; overflow-y: scroll}#bcpsttl_main.bcpsttl_mobile .bcpsttl_wrp_inner:before { display: none;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_iframe { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: inherit; padding-top: 10vh; padding-top: 10vh;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_logo { z-index: 3;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_iframe { padding-top: 7vh; padding-top: 7vh;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_preview_type_mobile .bcpsttl_wrp_inner { overflow: hidden;}@media all and (orientation: landscape) { #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_iframe { padding-top: 11vh; padding-top: 11vh; }}@media only screen and (max-device-width: 767px), only screen and (max-device-height: 767px) { #bcpsttl_main .bcpsttl_detect_tablet { display: none; }}/** Desktop wrapper common styles*//*@media (max-height: 750px) and (min-aspect-ratio: 4/3) {*/#bcpsttl_main.desktop.desktop_small.__min #bcpsttl_wrp_prototype, #bcpsttl_main.desktop.desktop_small.__min .bcpsttl_wrp { max-width: 94vw; height: auto; max-height: -webkit-calc(100vh - 98px); max-height: calc(100vh - 98px);/*30px close btn + 48px top\bottom space + 20 bottom text*/}#bcpsttl_main.desktop.desktop_small.bcpsttl_name_live_stream.touchable_device #bcpsttl_wrp_prototype:before, #bcpsttl_main.desktop.desktop_small.bcpsttl_name_live_stream.touchable_device .bcpsttl_wrp:before { display: block;}#bcpsttl_main.desktop.desktop_small #bcpsttl_wrp_prototype, #bcpsttl_main.desktop.desktop_small .bcpsttl_wrp { width: 100%; max-width: -webkit-calc(100% - 74px); max-width: calc(100% - 74px);/*45px each side*/ height: auto; max-height: -webkit-calc(100% - 90px); max-height: calc(100% - 90px)/*45px each side*/}#bcpsttl_main.desktop.desktop_small #bcpsttl_wrp_prototype:before, #bcpsttl_main.desktop.desktop_small .bcpsttl_wrp:before { display: none;}/** Footer common styles*/#bcpsttl_main.bcpsttl_name_red_cucumber_no_chat .bcpsttl_footer, #bcpsttl_main.bcpsttl_name_red_cucumber_no_chat_na1 .bcpsttl_footer, #bcpsttl_main.bcpsttl_name_red_cucumber_no_chat_na2 .bcpsttl_footer { margin-top: 2.5vh;}#bcpsttl_main.bcpsttl_name_online_sex_redhead .bcpsttl_footer { margin-top: 2.5vh;}#bcpsttl_main .bcpsttl_footer { position: absolute; left: 0; width: 100%; margin-top: 4.5vh; text-align: center;}#bcpsttl_main .bcpsttl_footer_text { color: #fff; font-weight: 700; font-family: 'Open Sans', Arial, sans-serif; text-transform: uppercase; text-decoration: none}#bcpsttl_main .bcpsttl_footer_text .bcpsttl_footer_text_inner { font-size: 18px; vertical-align: middle;}#bcpsttl_main .bcpsttl_footer_text .icon_arrow { display: inline-block; width: 5px; height: 8px; margin-left: 7px; vertical-align: middle; background-image: url('https://i.bngpst.com/postitial/assets/images/outer_arrow.svg'); background-repeat: no-repeat;}#bcpsttl_main.bcpsttl_rtl .bcpsttl_footer { direction: rtl;}#bcpsttl_main.bcpsttl_rtl .bcpsttl_footer_text .icon_arrow { margin-right: 7px; margin-left: 0; background-image: url('https://i.bngpst.com/postitial/assets/images/outer_arrow_ar.svg');}/** Footer styles for desktop*/#bcpsttl_main.desktop.desktop_small.__min .bcpsttl_footer_holder { position: absolute; right: 5%; left: 5%; width: 90%; height: 20px;}#bcpsttl_main.desktop.desktop_small.__min .bcpsttl_full .bcpsttl_footer { bottom: -10px;}#bcpsttl_main.desktop.desktop_small.__min .bcpsttl_full .bcpsttl_footer .bcpsttl_footer_text_inner, #bcpsttl_main.desktop.desktop_small.__min .bcpsttl_full .bcpsttl_footer_text .icon_arrow { font-size: inherit; line-height: inherit;}#bcpsttl_main.desktop.desktop_small .bcpsttl_footer { bottom: -30px; margin-top: auto;}/** Footer styles for mobile** Modifiers* .bcpsttl_full.__dark - mod for map version dark*/#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_base .bcpsttl_full .bcpsttl_footer {/*gap between footer and content*/ height: -webkit-calc(10vh + 1%); height: calc(10vh + 1%); height: calc(10vh + 1%); background: #fff}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_base .bcpsttl_full .bcpsttl_footer .bcpsttl_footer_text_inner { color: #000;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_map .bcpsttl_full .bcpsttl_footer { background: #8d0028;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_map .bcpsttl_full.__dark .bcpsttl_footer { background: url('https://i.bngpst.com/postitial/assets/images/bg_dark.jpg') center center no-repeat; background-size: cover;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_slider .bcpsttl_full .bcpsttl_footer { height: -webkit-calc(10vh + 1%); height: calc(10vh + 1%); height: calc(10vh + 1%); background: #a02239;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_listing .bcpsttl_full .bcpsttl_footer { background: rgba(0, 0, 0, .8);}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_footer { background: #000;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_footer { position: fixed; bottom: -1px;/*iPad fix*/ z-index: 1000; display: block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 10vh; height: 10vh; margin-top: 0; padding: 5px 0}#bcpsttl_main.bcpsttl_mobile .bcpsttl_footer .bcpsttl_footer_holder { position: absolute; right: 5%; left: 5%; display: block; width: 70%; height: -webkit-calc(100% - 10px); height: calc(100% - 10px); margin: 0 auto; font-size: 30px; line-height: -webkit-calc(10vh - 10px); line-height: calc(10vh - 10px); line-height: calc(10vh - 10px);}#bcpsttl_main.bcpsttl_mobile .bcpsttl_footer .bcpsttl_footer_text_inner { font-size: inherit; line-height: inherit;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_footer .bcpsttl_footer_text .icon_arrow { width: 0.6em; max-width: 14px; height: 0.6em; font-size: inherit; background-position: left center; background-size: contain;}@media all and (orientation: landscape) { #bcpsttl_main.bcpsttl_mobile.bcpsttl_name_call1 .bcpsttl_footer .bcpsttl_footer_holder { width: 40%; }}/** Header common styles*/#bcpsttl_main.bcpsttl_rtl .bcpsttl_cls_holder { direction: rtl;}#bcpsttl_main.bcpsttl_rtl .bcpsttl_full .bcpsttl_cls_cross { margin-right: 0; margin-left: 5px;}#bcpsttl_main #svg_circle { display: inline-block; width: 26px; height: 30px;/*4px for outer block*/ margin: 0 13px; vertical-align: top;}#bcpsttl_main .svg_circle_text { font-weight: 600; font-size: 12px; font-family: 'Open Sans', Arial, sans-serif; fill: #cdcdcd;}#bcpsttl_main .svg_circle_inner { stroke-dasharray: 76; stroke-dashoffset: 0; -webkit-transition-timing-function: linear; transition-timing-function: linear; -webkit-transition-property: stroke-dashoffset; transition-property: stroke-dashoffset}#bcpsttl_main .svg_circle_inner.svg_circle_active { stroke-dashoffset: 76;}#bcpsttl_main .bcpsttl_top_block { position: absolute; top: -6vh; right: -4vw; height: 30px;}#bcpsttl_main .bcpsttl_cls_holder { position: relative; display: inline-block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; min-width: 100px; height: 30px; padding: 0 15px; text-decoration: none; background-color: rgba(0, 0, 0, 0.2); -webkit-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);}#bcpsttl_main .bcpsttl_cls_cross { position: relative; display: inline-block; width: 9px; height: 9px; margin-right: 5px; background-image: url('https://i.bngpst.com/postitial/assets/images/outer_close.svg'); background-repeat: no-repeat; opacity: 0.63;}#bcpsttl_main .bcpsttl_cls_txt { color: #fff; font-weight: 700; font-size: 14px; font-family: 'Open Sans', Arial, sans-serif; line-height: 30px; opacity: 0.63;}#bcpsttl_main {/*styles for simple timer for not work default animate timer*/}#bcpsttl_main .bcpsttl_light .bcps_timer, #bcpsttl_main .bcpsttl_full .bcps_timer { display: none;}#bcpsttl_main .bcpsttl_light .bcpsttl_top_block.bcpsttl_simple_active .bcps_timer, #bcpsttl_main .bcpsttl_full .bcpsttl_top_block.bcpsttl_simple_active .bcps_timer { vertical-align: top; height: 30px; display: inline-block;}#bcpsttl_main .bcpsttl_light .bcpsttl_top_block.bcpsttl_simple_active .bcps_timer_num, #bcpsttl_main .bcpsttl_full .bcpsttl_top_block.bcpsttl_simple_active .bcps_timer_num { color: #fff; font-size: 14px; font-family: 'Open Sans', Arial, sans-serif; line-height: 30px;}#bcpsttl_main .bcpsttl_light .bcpsttl_top_block.bcpsttl_simple_active .bcps_timer_icon, #bcpsttl_main .bcpsttl_full .bcpsttl_top_block.bcpsttl_simple_active .bcps_timer_icon { display: inline-block; width: 18px; height: 30px; margin: 0 6px; vertical-align: top; background: no-repeat url('https://i.bngpst.com/postitial/assets/images/icon_timer_w.svg') center center; background-size: contain;}/** Header styles for desktop*//*@media (max-height: 750px) and (min-aspect-ratio: 4/3) {*/#bcpsttl_main.desktop.desktop_small .bcpsttl_top_block { top: -38px; right: 8px;}#bcpsttl_main.desktop.desktop_small .bcpsttl_logo { display: none;}/** Header styles for mobile** Modifiers* .bcpsttl_full.__bcpsttl_header_primary - mod for header burger*/#bcpsttl_main.bcpsttl_mobile.bcpsttl_rtl .bcpsttl_light .bcpsttl_cls_cross { margin-right: 0; margin-left: 0.8vh; margin-left: 0.8vh;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_rtl .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_top_block { direction: rtl; right: auto; left: 0;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_rtl .bcpsttl_full.__bcpsttl_header_primary .bcps_timer_num { margin-right: 0; margin-left: 5px;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_rtl .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_mob_menu { left: auto; right: 0;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_rtl .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_logo_icon { background-position: -webkit-calc(100% - 13vw) -webkit-calc(50% + 2px); background-position: calc(100% - 13vw) calc(50% + 2px);}#bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcpsttl_top_block { top: 1.2vh; top: 1.2vh; right: 1.2vh; right: 1.2vh;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcpsttl_cls_holder { min-width: 0; height: 4.5vh; height: 4.5vh; padding: 0 2.2vh; padding: 0 2.2vh; -webkit-box-shadow: none; box-shadow: none;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcpsttl_cls_txt { font-size: 2.2vh; line-height: 4.5vh; line-height: 4.5vh; vertical-align: middle; opacity: 1;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcpsttl_cls_cross { width: 1.3vh; width: 1.3vh; height: 1.3vh; height: 1.3vh; margin-right: 0.8vh; margin-right: 0.8vh; vertical-align: middle; opacity: 1;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcps_timer { display: none;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_cls_holder { background: rgba(0, 0, 0, .3) url('https://i.bngpst.com/postitial/assets/images/icon_outer_close.svg') center center no-repeat; background-size: 3vh; background-size: 3vh; width: 7vh; width: 7vh; height: 100%;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_logo_icon { background-position: 13vw -webkit-calc(50% + 2px); background-position: 13vw calc(50% + 2px);}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_top_block { right: 0; min-width: 7vh; min-width: 7vh;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcps_timer { margin: 0 4vw; top: 0;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcps_timer_icon { height: 100%;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcps_timer_num { line-height: 7vh;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcps_timer, #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_top_block, #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_mob_menu, #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_logo { height: 7vh; height: 7vh;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_top_block { top: 0; right: 2.5vw;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_logo { top: 0; left: 0; width: 100%; height: 10vh; height: 10vh;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_logo_icon { background-position: 5vw center; background-size: 20vh; background-size: 20vh;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_cls_holder { width: 8vh; width: 8vh; min-width: 6vh; min-width: 6vh; height: 10vh; height: 10vh; padding: 0; background: url('https://i.bngpst.com/postitial/assets/images/full_mobile_style2_close.svg') center center no-repeat; background-size: 6vh; background-size: 6vh; -webkit-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; box-shadow: none;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_cls_txt, #bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_cls_cross { display: none;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcps_timer { position: relative; top: 2vh; top: 2vh; display: inline-block; height: 6vh; height: 6vh; margin: 0; color: #fff; font-size: 2vh; font-family: 'Open Sans', Arial, sans-serif; line-height: 6vh; line-height: 6vh; vertical-align: top;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcps_timer_icon { display: inline-block; width: 3vh; width: 3vh; height: 6vh; height: 6vh; vertical-align: top; background: no-repeat url('https://i.bngpst.com/postitial/assets/images/icon_timer_w.svg') center center; background-size: contain;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcps_timer_num { display: inline-block; margin-top: 0.3vh; margin-top: 0.3vh; margin-right: 5px; font-weight: 600; font-size: 2.2vh; font-size: 2.2vh; line-height: 6vh; line-height: 6vh; vertical-align: top;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_full #svg_circle { display: none;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_call1 .bcpsttl_top_block { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between;}#bcpsttl_main.bcpsttl_mobile.bcpsttl_name_map .bcpsttl_full.__dark .bcpsttl_logo { background: url('https://i.bngpst.com/postitial/assets/images/bg_dark.jpg') center center no-repeat; background-size: cover;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_top_block { z-index: 4; height: initial;}#bcpsttl_main.bcpsttl_mobile .bcpsttl_mob_menu { position: absolute; top: 0; left: 0; margin: 0 3vw; width: 6vw; max-width: 5vh; max-width: 5vh; height: 10vh; height: 10vh; background: url('https://i.bngpst.com/postitial/assets/images/mob_mainbar.svg') center center no-repeat; background-size: contain;}#bcpsttl_main.bcpsttl_mobile #svg_circle { width: 4vh; width: 4vh; height: 4.5vh; height: 4.5vh; margin: 0 2vh; margin: 0 2vh;}#bcpsttl_main.bcpsttl_mobile .svg_circle_text { fill: #fff;}@media all and (orientation: landscape) { #bcpsttl_main.bcpsttl_mobile.bcpsttl_rtl .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_logo_icon { background-position: -webkit-calc(100% - 6vw) -webkit-calc(50% + 2px); background-position: calc(100% - 6vw) calc(50% + 2px); } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_logo_icon { background-position: 6vw -webkit-calc(50% + 2px); background-position: 6vw calc(50% + 2px); background-size: 30vh; background-size: 30vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcps_timer_num { font-size: 4vh; font-size: 4vh; line-height: 11vh; line-height: 11vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcps_timer_icon { width: 5.5vh; width: 5.5vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_mob_menu { max-width: 4vh; max-width: 4vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_cls_holder { background-size: 4.5vh; background-size: 4.5vh; width: 9vh; width: 9vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcps_timer, #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_top_block, #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_mob_menu, #bcpsttl_main.bcpsttl_mobile .bcpsttl_full.__bcpsttl_header_primary .bcpsttl_logo { height: 11vh; height: 11vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_mob_menu { margin: 0 1vw; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcpsttl_top_block { right: 5vw; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcps_timer { top: 1vh; top: 1vh; height: 8vh; height: 8vh; margin-right: 1vw; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcps_timer_icon { width: 5.5vh; width: 5.5vh; height: 8vh; height: 8vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_full .bcps_timer_num { margin-top: 1px; font-size: 4vh; line-height: 8vh; line-height: 8vh; font-size: 4vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_light #svg_circle { width: 8vh; width: 8vh; height: 9vh; height: 9vh; margin: 0 4vh; margin: 0 4vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcpsttl_cls_holder { height: 9vh; height: 9vh; padding: 0 4.4vh; padding: 0 4.4vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcpsttl_cls_txt { font-size: 4.4vh; line-height: 9vh; line-height: 9vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcpsttl_cls_cross { width: 2.6vh; width: 2.6vh; height: 2.6vh; height: 2.6vh; margin-right: 1.6vh; margin-right: 1.6vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcps_timer { height: 9.614vh; padding: 0 5px; background: rgba(0,0,0, 0.4); -webkit-border-radius: 6px; border-radius: 6px; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcps_timer_num { font-size: 4vh; line-height: 9.614vh; } #bcpsttl_main.bcpsttl_mobile .bcpsttl_light .bcps_timer_icon { width: 3vh; height: 9.614vh; background-size: 3vh; }}" var headStyle = document.createElement('style'); headStyle.setAttribute("type", "text/css"); headStyle.innerHTML = outerStyles; document.getElementsByTagName("head")[0].appendChild(headStyle); })( '//bngpst.com/promo.php?c=363284&type=postitial&p%5Bname%5D=live_stream&p%5Btop_model%5D=1&p%5Bhd%5D=1&p%5Bfrequency%5D=86400&p%5Bautoclose%5D=0&p%5Bframe%5D=1', 'full', '', 'en', 'https://i.bngprm.com/wl/000/005/1da/a79c55c300d6fe5634a8aaa983c5636f.png', '#A02239', 'https://bongacams.com/track?c=363284&ps=postitial&csurl=https://camsprivat.com/', 86400 * 1000, { 'continue': 'Continue to %_site_%', 'close': 'Close ad' }, '', '0', 'live_stream', '', '', '' );