//console.log('Starting creating widget.'); create_widget(null, null, '@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;1,800;1,900&display=swap"); @media (prefers-reduced-motion: no-preference) { :root { scroll-behavior: smooth; } }.ctaWidget_item{font-family: "Montserrat", sans-serif;font-size: 1rem;font-weight: 400;line-height: 1.5;}.ctaWidget_item *,.ctaWidget_item *::before,.ctaWidget_item *::after {box-sizing: border-box;font-family: inherit;color:inherit;line-height:inherit; position:static;}.ctaWidget_item img{ padding:0; margin:0;}.antibot_check label { display: flex !important; justify-content: center; align-items: center; margin: 0 0 15px !important; font-weight: 400 !important; font-size: 16px !important; border-radius:5px !important;}.antibot_check input[type=checkbox] { width: 25px !important; display: inline-block !important; margin: 0 7px 0 0 !important; color: #fff !important; -webkit-appearance:checkbox;}.ctaWerror{border:1px solid #f00 !important;}.grecaptcha-badge{display:none !important;}'); var client_details = window.navigator.userAgent; if (!sessionStorage.getItem('startTime')) { sessionStorage.setItem('startTime', Date.now()); } if (!sessionStorage.getItem('referrer')) { sessionStorage.setItem('referrer', document.referrer); } function show_site_time(){ var enterTime = sessionStorage.getItem('startTime'); var currentTime = Date.now(); var spentTime = (currentTime - enterTime) / 1000; var minutes = Math.floor(spentTime / 60); var seconds = Math.floor(spentTime % 60); if(seconds<10) seconds = '0'+seconds; return minutes+':'+seconds; } function sendData( data ) { const XHR = new XMLHttpRequest(); let urlEncodedData = "", urlEncodedDataPairs = [], name; // Turn the data object into an array of URL-encoded key/value pairs. for( name in data ) { urlEncodedDataPairs.push( encodeURIComponent( name ) + '=' + encodeURIComponent( data[name] ) ); } // Combine the pairs into a single string and replace all %-encoded spaces to // the '+' character; matches the behaviour of browser form submissions. urlEncodedData = urlEncodedDataPairs.join( '&' ).replace( /%20/g, '+' ); // Define what happens on successful data submission let fraud; fraud = 0; if(data.action == 1 && !document.getElementById('ctaCallback').classList.contains('act')) fraud = 1; if(fraud == 0){ XHR.addEventListener( 'load', function(event) { if(data.action == 1){ document.getElementById('ctaFormResponse').classList.add('act'); document.getElementById('ctawCB_loader').style.display = 'none'; console.log( event.target.responseText); setTimeout(function(){ document.getElementById('ctaCallback').classList.remove('act'); },3000); sessionStorage.setItem('seenCB','1'); document.getElementById('Ctacb_phone').value = ""; ym(metrikaID,'reachGoal','ctawidget_callback_lead'); if(gtag()) gtag('event_name','ctawidget_callback_lead'); }; if(data.action == 8){ document.getElementById('ctaLeadGeneratorFormResponse').classList.add('act'); console.log( event.target.responseText ); setTimeout(function(){ document.getElementById('ctawLeadGeneratorWindow').classList.remove('act'); document.getElementById('ctawLeadGeneratorBD').classList.remove('ctaBdShow');},3000); sessionStorage.setItem('seenLeadGenerator','1'); document.querySelectorAll('#leadGeneratorFormFields input').forEach( el => { el.value = ""; }); ym(metrikaID,'reachGoal','ctawidget_leadgenerator_lead'); }; if(data.action == 10){ document.getElementById('quiz_contacts_value').value = ''; document.getElementById('quiz_final_cta').style.display = 'none'; document.getElementById('quiz_success_send').style.display = 'block'; console.log( event.target.responseText ); setTimeout(function(){ document.getElementById('ctawQuizWindow').classList.remove('act'); document.getElementById('ctawQuizWindowBD').classList.remove('ctaBdShow');},3000); sessionStorage.setItem('seenQuiz','1'); ym(metrikaID,'reachGoal','ctawidget_quiz_lead'); }; return '1'; } ); // Define what happens in case of error XHR.addEventListener( 'error', function(event) { console.log( 'Oops! Something went wrong.' ); return '0'; } ); // Set up our request XHR.open( 'POST', 'https://app.ctawidget.ru/sendcallback' ); // Add the required HTTP header for form data POST requests //XHR.setRequestHeader( 'Access-Control-Allow-Origin', '*' ); XHR.setRequestHeader( 'Content-Type', 'application/x-www-form-urlencoded' ); // Finally, send our data. XHR.send( urlEncodedData ); } } function create_widget(widget_id, widget_html, widget_css){ document.addEventListener("DOMContentLoaded", function(event) { var styleNode = document.createElement('style'); styleNode.type = "text/css"; // browser detection (based on prototype.js) if(!!(window.attachEvent && !window.opera)) { styleNode.styleSheet.cssText = widget_css; } else { var styleText = document.createTextNode(widget_css); styleNode.appendChild(styleText); } document.getElementsByTagName('head')[0].appendChild(styleNode); if(widget_id != null){ var ctawNode = document.createElement('div'); ctawNode.id = widget_id; ctawNode.classList.add("ctaWidget_item"); ctawNode.innerHTML = widget_html; document.getElementsByTagName('body')[0].appendChild(ctawNode); //console.log('Created widget:'+widget_id); } }); } function get_visible_widget(){ var visible = ''; const widgetsIDs = [ 'ctawChat', 'ctaCallback', 'ctawMB', 'ctawLeadGeneratorWindow', 'ctawQuizWindow', 'ctaWhatsAppChat_window' //'ctawCBbutt_cta' ]; widgetsIDs.forEach( (element) => { if(document.getElementById(element) && document.getElementById(element).classList.contains('act')){ visible = element; } }); return visible; } function get_fullwin_visible_widget(){ var visible = ''; if(window.innerWidth < 769){ const widgetsIDs = [ 'ctawChat', 'ctaCallback', 'ctawLeadGeneratorWindow', 'ctawQuizWindow', 'ctaWhatsAppChat_window' //'ctawCBbutt_cta' ]; widgetsIDs.forEach( (element) => { if(document.getElementById(element) && document.getElementById(element).classList.contains('act')){ visible = element; } }); } return visible; } function get_visible_cta(){ var visible = ''; const ctasIDs = [ 'ctawCBbutt_cta', 'ctawLeadGenerator_cta' ]; widgetsIDs.forEach( (element) => { if(document.getElementById(element) && document.getElementById(element).classList.contains('act')){ visible = element; } }); return visible; } function ValidEmail(myMail) { var re = /^[\w-\.]+@[\w-]+\.[a-z]{2,4}$/i; var valid = re.test(myMail); return valid; } function ValidPhone(myPhone) { var re = /^[\d\+][\d\(\)\ -]{6,21}\d$/; var valid = re.test(myPhone); return valid; } var pathUrls = new Array(); function set_urls(){ sessionStorage.setItem('pathUrls', JSON.stringify(pathUrls)); } function get_urls(){ if(sessionStorage.getItem('pathUrls')) { pathUrls = sessionStorage.getItem('pathUrls'); pathUrls = JSON.parse(pathUrls); } else { pathUrls.push(window.location.href); set_urls(); } } get_urls(); pathUrls.push(window.location.href); set_urls(); var metrikaID = ''; var bot = 0; document.addEventListener("DOMContentLoaded", function(event) { get_urls(); for(let i=0; i 50){ let antibot = ''; if(document.querySelector('.antibot_check').innerHTML == '') document.querySelector('.antibot_check').innerHTML = antibot; } } else bot = 0; } }); var PhoneMask = function(elements, settings) { var that = this; settings = settings || {}; this.elements = elements; this.patternChar = settings.patternChar || '_'; this.prefix = settings.prefix || ''; this.pattern = settings.pattern || '(___) ___-__-__'; this.pattern = this.prefix + this.pattern; this.backspaceCode = settings.backspaceCode || 8; this.deleteCode = settings.deleteCode || 46; this.allowedRegExp = settings.allowedRegExp || /^\d$/; this.igrogeKeyCodes = settings.igrogeKeyCodes || [9, 16, 17, 18, 36, 37, 38, 39, 40, 91, 92, 93]; var inputKeyEventPress = function(e) { e = e || window.event; var elem = e.target || e.srcElement; var result = true; console.log(e.keyCode); if (!that.isIgnoredKey(e.keyCode)) { if (e.keyCode != that.backspaceCode && e.keyCode != that.deleteCode) { var char = String.fromCharCode(e.keyCode); if (that.allowedRegExp == false || char.match(that.allowedRegExp) != null) { elem.value = that.replaceToChar(elem, char); } } result = false; } // select first pattern symbol that.selectFirstPatterntChar(elem); if (result == false) { if (e.preventDefault) { e.preventDefault(); } return result; } }; var inputKeyEventDown = function(e) { e = e || window.event; var elem = e.target || e.srcElement; var result = true; if (!that.isIgnoredKey(e.keyCode)) { if (e.keyCode == that.backspaceCode) { elem.value = that.replaceToPatternChar(elem); result = false; } if (e.keyCode == that.deleteCode) { elem.value = that.replaceToPatternChar(elem); result = false; } } // select first pattern symbol that.selectFirstPatterntChar(elem); if (result === false) { return false; } }; var inputFocusEvent = function(e) { e = e || window.event; var elem = e.target || e.srcElement; var start = elem.value.indexOf(that.patternChar); var end = start + 1; if (start < 0) { start = elem.value.length - 1; end = start + 1; } that.selectCharInInput(elem, start, end); } if (Object.prototype.toString.call(this.elements) === "[object NodeList]") { for (var i = 0; i < this.elements.length; i++) { if (this.elements[i].value.length > 0) { that.applyPatternToValue(this.elements[i]); } else { this.elements[i].value = that.pattern; } this.elements[i].onkeydown = inputKeyEventDown; this.elements[i].onkeypress = inputKeyEventPress; this.elements[i].onfocus = inputFocusEvent; } } else if (this.elements != null) { if (this.elements.value.length > 0) { that.applyPatternToValue(this.elements); } else { this.elements.value = that.pattern; } this.elements.onkeydown = inputKeyEventDown; this.elements.onkeypress = inputKeyEventPress; this.elements.onfocus = inputFocusEvent; } } PhoneMask.prototype.applyPatternToValue = function(elem) { var valueArr = elem.value.split(""); var patternValue = this.pattern; var len = valueArr.length; for (var i = 0; i < len; i++) { patternValue = patternValue.replace(this.patternChar, valueArr[i]); } elem.value = patternValue; } PhoneMask.prototype.selectFirstPatterntChar = function(elem) { var start = elem.value.indexOf(this.patternChar); if (start > -1) { var end = start + 1; this.selectCharInInput(elem, start, end); } } PhoneMask.prototype.isIgnoredKey = function(code) { if (this.igrogeKeyCodes.indexOf(code) < 0) { return false; } return true; }; PhoneMask.prototype.selectCharInInput = function(elem, start, end) { if (elem.setSelectionRange) { elem.focus(); elem.setSelectionRange(start, end); } else { if (elem.createTextRange) { range = elem.createTextRange(); range.collapse(true); range.moveEnd('character', end); range.moveStart('character', start); range.select(); } } }; PhoneMask.prototype.replaceAt = function(str, index, character) { var tempArr = str.split(""); tempArr[index] = character; return tempArr.join(""); }; PhoneMask.prototype.replaceToChar = function(elem, char) { var value = elem.value; var firstCharToReplace = value.indexOf(this.patternChar); if (firstCharToReplace > -1) { return this.replaceAt(value, firstCharToReplace, char); } return value; }; PhoneMask.prototype.replaceToPatternChar = function(elem) { var value = elem.value; var firstPatternCharPos = value.indexOf(this.patternChar); var replaceCharPos; var isFindPos = false; if (firstPatternCharPos == -1) { replaceCharPos = value.length - 1; isFindPos = true; } else { replaceCharPos = firstPatternCharPos - 1; while (!isFindPos) { if (this.pattern[replaceCharPos] != value[replaceCharPos]) { isFindPos = true; } else { replaceCharPos--; if (replaceCharPos < 0) { break; } } } } if (isFindPos && replaceCharPos >= this.prefix.length) { return this.replaceAt(value, replaceCharPos, this.patternChar); } return value; }; PhoneMask.prototype.destroy = function() { if (Object.prototype.toString.call(this.elements) === "[object NodeList]") { for (var i = 0; i < this.elements.length; i++) { this.elements[i].value = null; this.elements[i].onkeydown = null; this.elements[i].onkeypress = null; this.elements[i].onfocus = null; } } else if (this.elements != null) { this.elements.value = null; this.elements.onkeydown = null; this.elements.onkeypress = null; this.elements.onfocus = null; } };//console.log('Vis: '+get_visible_widget()); create_widget('ctawCallback', '
O consultație?
Solicitați un apel și managerul nostru Vă va contacta în câteva minute:
Sunați-mă
Vă mulțumim!!! Vom lua legătura cu dumneavoastră în scurt timp!!!
Работает на
', ".ctawForm{ background: linear-gradient(45deg, #000000 0%, #455a64c9 100%); border-radius:10px; width:100vw; max-width:300px; box-sizing:border-box; position:fixed !important; box-shadow: 0px 6px 20px 0px rgb(0 0 0 / 40%); bottom:100px; right:-400px; -webkit-transition: all 0.7s ease 0s; -moz-transition: all 0.7s ease 0s; -ms-transition: all 0.7s ease 0s; -o-transition: all 0.7s ease 0s; transition: all 0.7s ease 0s; padding:30px 0; z-index:9999999; overflow:hidden;}.ctawForm.act{ right:20px; -webkit-transition: all 0.7s ease 0s; -moz-transition: all 0.7s ease 0s; -ms-transition: all 0.7s ease 0s; -o-transition: all 0.7s ease 0s; transition: all 0.7s ease 0s;}div#ctawCallback .close-container{ position: absolute; margin: auto; width:30px; height:30px; top:5px; right:5px; cursor: pointer; z-index:999;}div#ctawCallback .close-container .leftright{ height: 1.999px; width:30px; position: absolute; margin-top:15px; background-color:#bfbfbf; border-radius: 2px; transform: rotate(45deg); transition: all .3s ease-in;}div#ctawCallback .close-container .rightleft{ height: 1.999px; width:30px; position: absolute; margin-top:15px; background-color:#bfbfbf; border-radius: 2px; transform: rotate(-45deg); transition: all .3s ease-in;}div#ctawCallback .close-container label{ color: white; font-family: Helvetica, Arial, sans-serif; font-size: .6em; text-transform: uppercase; letter-spacing: 2px; transition: all .3s ease-in; opacity:1;}div#ctawCallback .close-container .closes{ margin:48px 0 0 0px; position: absolute; font-size:8px; color:#fff;}div#ctawCallback .close-container:hover .leftright{ transform: rotate(-45deg); background-color:#f00;}div#ctawCallback .close-container:hover .rightleft{ transform: rotate(45deg); background-color:#f00;}div#ctawCallback .close-container:hover label{ opacity: 1;}.ctaw_lines { transform: rotate(45deg); position: absolute; top: 242px; left: -220px; width:200%; z-index:0;}.ctaw_line { margin-bottom: 15px; border-bottom: 1px solid #ffe7b033; position:relative;}.ctaw_line:after { content: ''; display: block; background-color:#ffe7b033; width: 9px; height: 9px; position: absolute; left:0; top: -4px; border-radius:100%;}.ctaw_lines .ctaw_line:nth-child(3):after { animation-name: ltr; animation-duration:2100ms; animation-iteration-count: infinite; animation-timing-function: linear; animation-delay:0.33s;}.ctaw_lines .ctaw_line:nth-child(2):after { animation-name: ltr; animation-duration:2100ms; animation-iteration-count: infinite; animation-timing-function: linear; animation-delay:0.66s;}.ctaw_lines .ctaw_line:nth-child(1):after { animation-name: ltr; animation-duration:2100ms; animation-iteration-count: infinite; animation-timing-function: linear; animation-delay:0.99s;}.ctaw_content{ position:relative; z-index:1;}.ctawImg { width: 50px; height: 50px; padding: 15px; border-radius: 100%; border: 1px solid #ffe7b0; fill: #ffe7b0; position: relative; margin:0 auto 30px; box-sizing: content-box;}.ctawImg span { display: block; position: absolute; width: 64px; height: 64px; top: 8px; left: 8px; transform: rotate(45deg); -webkit-animation-name: spin; -webkit-animation-duration: 4000ms; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-name: spin; -moz-animation-duration: 4000ms; -moz-animation-iteration-count: infinite; -moz-animation-timing-function: linear; -ms-animation-name: spin; -ms-animation-duration: 4000ms; -ms-animation-iteration-count: infinite; -ms-animation-timing-function: linear; animation-name: spin; animation-duration: 4000ms; animation-iteration-count: infinite; animation-timing-function: linear;}.ctawImg span:before,.ctawImg span:after{ content:''; display:block; position:absolute; width:7px; height:7px; left:0; top:0; background-color:#ffe7b0; border-radius:100%;}.ctawImg span:after{ left:auto; top:auto; right:0; bottom:0;}.ctawFormContent{ padding:0 30px; margin:0;}.ctawZag { font-size:26px; line-height:1.21; font-weight: 700; color:#ffe7b0; margin-bottom:15px;}.ctawSzag { font-size:16px; color:#ffffff; margin-bottom:15px; line-height:1.21em;}.ctawText{ font-size:15px; color:#9f9f9f; margin-bottom:15px;}.ctawForm input:not([type=checkbox]){ padding:10px !important; font-size:16px !important; border: 1px solid #38393e; background-color: #1c1c1c; color:#dfdfdf !important; width:100%; margin:0 0 15px 0 !important; box-shadow:none !important; border-radius:5px !important; box-sizing:border-box; outline: none !important;}input#Ctacb_phone::placeholder { color: #dfdfdf77 !important;}.ctawForm input[type=tel]{}.ctawForm input::placeholder{ color:#dfdfdfae !important;}#action_Ctacb{ padding:10px !important; font-size:16px !important; text-align:center; background-color: #000; box-shadow:0 0 0 30px #ffe7b0 inset !important; color:#1c1c1c !important; cursor:pointer; border-radius:5px !important; margin:0 0 15px 0 !important; transform: none; width:100%; outline: none; -webkit-transition: all 0.21s ease 0s; -moz-transition: all 0.21s ease 0s; -ms-transition: all 0.21s ease 0s; -o-transition: all 0.21s ease 0s; transition: all 0.21s ease 0s;}#action_Ctacb:hover{ background-color:#1c1c1c; box-shadow:0 0 0 1px #ffe7b0 inset !important; color:#ffffff !important; -webkit-transition: all 0.21s ease 0s; -moz-transition: all 0.21s ease 0s; -ms-transition: all 0.21s ease 0s; -o-transition: all 0.21s ease 0s; transition: all 0.21s ease 0s; outline: none;}.antibot_check label{ color:#ffe7b0;}@-ms-keyframes spin { from { -ms-transform: rotate(0deg); } to { -ms-transform: rotate(360deg); }}@-moz-keyframes spin { from { -moz-transform: rotate(0deg); } to { -moz-transform: rotate(360deg); }}@-webkit-keyframes spin { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); }}@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); }}@keyframes ltr{ from { left:0; } to { left:100%; }}div#ctaFormResponse { opacity: 0; color: #ffe7b0; text-align: center; font-size: 17px; height: 0; overflow: hidden; max-width:100%; line-height: 1.21;}div#ctaFormResponse.act{ opacity: 1; -webkit-transition: opacity 0.7s ease 0s; -moz-transition: opacity 0.7s ease 0s; -ms-transition: opacity 0.7s ease 0s; -o-transition: opacity 0.7s ease 0s; transition: opacity 0.7s ease 0s; height: auto; margin: 0 0 10px; min-height:44px;}.ctawCBbutt_container{ position: fixed; cursor:pointer; z-index:9999; bottom:100px; right:20px;}.ctawCBbutt_cta{ background-color:#fff; color:#000; position:absolute !important; top:0; right:calc(100% + 21px); -webkit-filter: drop-shadow(0 0 3px #777); filter: drop-shadow(0 0 3px #777); padding:10px; z-index:999; width:200px !important; font-size:12px; line-height:1.21; border-radius:5px; display:block; right:-1000px; -webkit-transition: all 0.7s ease 0s; -moz-transition: all 0.7s ease 0s; -ms-transition: all 0.7s ease 0s; -o-transition: all 0.7s ease 0s; transition: all 0.7s ease 0s;}.ctawCBbutt_cta:after{ content:''; display:block; width: 0; height: 0; border-top: 15px solid transparent; border-left: 15px solid #fff; border-bottom: 15px solid transparent; position:absolute; top:15px; left:99%;}.ctawCBbutt_cta.act{ right:calc(100% + 21px); -webkit-transition: all 0.7s ease 0s; -moz-transition: all 0.7s ease 0s; -ms-transition: all 0.7s ease 0s; -o-transition: all 0.7s ease 0s; transition: all 0.7s ease 0s;}.ctawCBbutt { display: inline-block; background: linear-gradient(45deg, #000000 0%, #455a64c9 100%); border-radius: 100%; padding: 7px; width: 71px; height: 71px; box-sizing: border-box;}@media screen and (min-width: 782px){.ctawCBbutt:hover{ animation: radial-pulse 1s infinite alternate;}}.ctawCBbutt .ctawImg { margin: 0; width: 35px; height: 35px; padding: 10px;}.ctawCBbutt .ctawImg svg{ /*animation: rotate3d 15s infinite linear;*/}.ctawCBbutt .ctawImg span { display: block; position: absolute; width: 47px; height: 47px; top: 4px; left: 4px; transform: rotate(45deg); -webkit-animation-name: spin; -webkit-animation-duration:6000ms; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-name: spin; -moz-animation-duration:6000ms; -moz-animation-iteration-count: infinite; -moz-animation-timing-function: linear; -ms-animation-name: spin; -ms-animation-duration:6000ms; -ms-animation-iteration-count: infinite; -ms-animation-timing-function: linear; animation-name: spin; animation-duration:6000ms; animation-iteration-count: infinite; animation-timing-function: linear;} .ctawCB_loader { /*position: absolute; top: calc(50% - 25px); left: calc(50% - 25px);*/ display:none; margin: 0 auto 15px; width: 44px; height: 44px; border-radius: 50%; perspective: 800px;}.ctawCB_inner { position: absolute; box-sizing: border-box; width: 100%; height: 100%; border-radius: 50%; }.ctawCB_inner.one { left: 0%; top: 0%; animation: rotate-one 1s linear infinite; border-bottom: 1px solid #ffe7b0;}.ctawCB_inner.two { right: 0%; top: 0%; animation: rotate-two 1s linear infinite; border-right: 1px solid #ffe7b0;}.ctawCB_inner.three { right: 0%; bottom: 0%; animation: rotate-three 1s linear infinite; border-top: 1px solid #ffe7b0;}@keyframes rotate-one { 0% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg); } 100% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg); }}@keyframes rotate-two { 0% { transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg); } 100% { transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg); }}@keyframes rotate-three { 0% { transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg); } 100% { transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg); }}@-ms-keyframes rotate3d { 0%{ -ms-transform: rotateY(0deg); } 3%{ -ms-transform: rotateY(360deg); } 100%{-ms-transform: rotateY(360deg);}}@-moz-keyframes rotate3d { 0%{ -moz-transform: rotateY(0deg); } 3%{ -moz-transform: rotateY(360deg); } 100%{-moz-transform: rotateY(360deg);}}@-webkit-keyframes rotate3d { 0%{ -webkit-transform: rotateY(0deg); } 3%{ -webkit-transform: rotateY(360deg); } 100%{-webkit-transform: rotateY(360deg);}}@keyframes rotate3d { 0%{ transform: rotateY(0deg); } 3%{ transform: rotateY(360deg); } 100%{transform: rotateY(360deg);}}.pulse-button__rings { border: 3px solid #ff0000; position: absolute; top: 0; left: 0; bottom: 0; right: 0; height: auto; width: auto; border-radius: 50%; animation-duration: 2.0s; animation-name: pulse_1; animation-iteration-count: infinite; z-index: -1;} .pulse-button__rings:nth-child(2) { animation-name: pulse_2;} .pulse-button__rings:nth-child(3) { animation-name: pulse_3;}@keyframes pulse_1 { from { opacity: 1; transform: scale(0.9, 0.9); } to { opacity: 0; transform: scale(1.3, 1.3); }} @keyframes pulse_2 { from { opacity: 1; transform: scale(0.8, 0.8); } to { opacity: 0; transform: scale(1.5, 1.5); }} @keyframes pulse_3 { from { opacity: 1; transform: scale(0.8, 0.8); } to { opacity: 0; transform: scale(1.7, 1.7); }}" ); document.addEventListener("DOMContentLoaded", function(event) { var userLang = navigator.language || navigator.userLanguage; //console.log(userLang); if(userLang!='ru' && document.getElementById("ctawidget_partner_label")) document.getElementById('ctawidget_partner_label').innerHTML = 'Widget by'; document.getElementById('Ctacb_phone').addEventListener("click", function(){ document.getElementById('Ctacb_phone').removeAttribute('readonly'); }); document.getElementById('Ctacb_phone').addEventListener("touchstart", function(){ document.getElementById('Ctacb_phone').removeAttribute('readonly'); }); var pattern = { 'ru': '+7 (___) ___-__-__', 'md_long': '+373 (___) _-__-__', 'md_short': '0 (___) _-__-__', }; document.getElementById('cl_Ctacb').onclick =function(){ document.getElementById('ctaCallback').classList.remove('act'); sessionStorage.setItem('seenCB','1'); }; function show_ctawCBbutt_cta(){ } if(window.screen.width > 768){ if(sessionStorage.getItem('seenCB')!=1) setTimeout(function(){ if(sessionStorage.getItem('seenCB')!=1 && !get_visible_widget()) document.getElementById('ctaCallback').classList.add('act'); }, 15000); else if(sessionStorage.getItem('seenCB')==1) { setTimeout(function(){ if(!get_visible_widget()) document.getElementById('ctaCallback').classList.add('act'); }, 120000); } } else { show_ctawCBbutt_cta(); } if(sessionStorage.getItem('seenCB')!=1) setTimeout(function(){ if(sessionStorage.getItem('seenCB')!=1 && !get_visible_widget()){ document.getElementById('ctaCallback').classList.add('act'); } }, 15000); else if(sessionStorage.getItem('seenCB')==1) { setTimeout(function(){ if(!get_visible_widget()) document.getElementById('ctaCallback').classList.add('act'); }, 120000); } document.getElementById('cl_Ctacb').onclick =function(){ document.getElementById('ctaCallback').classList.remove('act'); sessionStorage.setItem('seenCB','1'); }; /*document.getElementById('ctawCBbutt').onclick =function(){ document.getElementById('ctawCBbutt_cta').classList.remove('act'); document.getElementById('ctaCallback').classList.add('act'); //sendData({project: '', action:4, url: window.location.href}); }; функция обратного звонка */ const btn = document.getElementById('action_Ctacb'); btn.addEventListener( 'click', function() { if(document.querySelector('#ctaFormcb .antibot_check input[type=checkbox]') == null || (document.querySelector('#ctaFormcb .antibot_check input[type=checkbox]') && document.querySelector('#ctaFormcb .antibot_check input[type=checkbox]').checked)){ if(document.querySelector('#ctaFormcb .antibot_check input[type=checkbox]') != null) document.querySelector('#ctaFormcb .antibot_check label').classList.remove('ctaWerror'); if(document.getElementById('Ctacb_phone').value){ if(ValidPhone(document.getElementById('Ctacb_phone').value)){ document.getElementById('Ctacb_phone').classList.remove('ctaWerror'); btn.style.display = 'none'; document.getElementById('ctawCB_loader').style.display = 'block'; sendData( { phone:document.getElementById('Ctacb_phone').value, project: 'hcWQAz1s', widget: 315, action:1, url:encodeURI(window.location.href), startUrl:encodeURI(JSON.parse(sessionStorage.getItem('pathUrls'))[0]), clientDetails: client_details, timeSpent: show_site_time(), referrer: encodeURI(sessionStorage.getItem('referrer')) } ); } else{ document.getElementById('Ctacb_phone').classList.add('ctaWerror'); } } else{ document.getElementById('Ctacb_phone').classList.add('ctaWerror'); } } else{ document.querySelector('#ctaFormcb .antibot_check label').classList.add('ctaWerror'); } } ); });create_widget('ctaWhatsApp', '
Suntem online
0
', "div#ctaWhatsApp { position: fixed; right:20px; bottom: 20px; z-index:10001;}#whatsapp_widget316.ctaWhatsAppClassicStyle_container { display: inline-flex; justify-content: center; align-items: center; z-index: 9999; position: fixed; width: 60px; height: 60px; background-color: #e8505b; border-radius: 50px; box-shadow: 0 -100px 70px -120px #442e3f inset; width: unset; padding: 0 0 0 15px; animation: background 4s infinite alternate; text-decoration:none; bottom:20px; right:20px;}#whatsapp_widget316.ctaWhatsAppClassicStyle_container svg { margin: 2px 1px 0 0; transition: height 0.4s; height: 90%; fill: #27D246; -webkit-animation: swing 0.6s infinite alternate; animation: swing 0.6s infinite alternate; width: auto;}#whatsapp_widget316.ctaWhatsAppClassicStyle_container:hover svg { height: 95%;}#whatsapp_widget316.ctaWhatsAppClassicStyle_container>span { color: #ffffff; margin-right: 10px; font-size:20px;}#whatsapp_widget316.ctaWhatsAppClassicStyle_container:after { content: ''; display: block; position: absolute; height: 100%; width: 100%; top: 0; left: 0; border-radius: 300px; animation: radial-pulse 2s infinite alternate;}@keyframes radial-pulse {0% {box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);}50% {box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);}100% {box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);}}@keyframes background { 50% { background:#110c10; box-shadow: 0 -140px 70px -120px #1c1c1c inset, 0 -210px 70px -120px #0037ff inset, 0 -280px 70px -120px #184afb inset;}}.ctaWhatsAppChat_window{ border-radius: 10px; overflow: hidden; box-shadow: 0 0 10px 0 #7f7f7f; background: url(https://app.ctawidget.ru/admin/dist/img/whatsapp-bg21.jpg) center center/100% auto repeat; margin: 0 0 84px; width:100vw; max-width:320px; display:none;}.ctaWhatsAppChat_window.act,.ctaWhatsAppChat_window.current_messaging{ display:block;}.ctaWhatsAppChat_window.act{ -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;}@-webkit-keyframes scale-up-center { 0% { -webkit-transform: scale(0.05); transform: scale(0.05); } 100% { -webkit-transform: scale(1); transform: scale(1); } } @keyframes scale-up-center { 0% { -webkit-transform: scale(0.05); transform: scale(0.05); } 100% { -webkit-transform: scale(1); transform: scale(1); } }.ctaWhatsApp_header{ color: #fff; background-color: #128C7E; padding:5px 10px; position: relative;}.ctaWhatsApp_account_info { display: flex; align-items: center;}.ctaWhatsApp_account_photo{ width: 50px; height: 50px; background:#fff url(data:image/jpeg;base64,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) center center/cover no-repeat; border-radius: 100%; margin: 0 10px 0 0;}.ctaWhatsApp_account_name { font-size: 16px; line-height: 1; font-weight: 500;}.ctaWhatsApp_account_status_online,.ctaWhatsApp_account_status_typing { font-size: 12px; line-height: 1; color: #eee;}.ctaWhatsApp_account_status_typing{ display:none;}.ctaWhatsApp_message_container{ padding: 21px; position:relative;}.ctaWhatsApp_messageItem { background-color: #fff; max-width: 70%; border-radius: 0 5px 5px 5px; padding: 10px; margin: 0 0 5px; position: relative; -webkit-filter: drop-shadow(0 0 3px #ddd); filter: drop-shadow(0 0 3px #ddd); font-size: 14px; padding-right: 40px; color: #000; line-height: 1.21; display: inline-block;}.ctaWhatsApp_messageItem:before{ content: ''; position: absolute; top: 0; left: -10px; border: 12px solid transparent; border-top: 12px solid #fff;}.ctaWhatsApp_messageItem_after{ content: ''; display: block; clear: both; width: 100%;}.ctaWhatsApp_messageItem p,.ctaWhatsApp_messageItem span{ margin: 0 !important;}.ctaWhatsApp_messageItem span.time{ position: absolute; font-size: 10px; bottom: 1px; right: 3px; line-height: 1; color: #bbb;}.ctaWhatsApp_message_input{ background-color: #fff; display: flex; align-items: center; border-top: 1px solid #cfcccc;}.ctaWhatsApp_message_input input{ border:0 !important; padding: 10px; outline: none !important; font-size: 14px; width:100%;}.ctaWhatsApp_message_input input::placeholder{ color: #cfcccc;}#ctaWhatsApp_message_button { display: flex; justify-content: center; align-items: center; padding: 0 10px; cursor:pointer;}.ctaWhatsApp_message_input img{ margin: 5px;}#ctaWhatsAppModernStyle{ position: fixed; bottom: 20px; right: 20px;}.ctaWhatsAppModernStyle_container{ text-decoration: none !important; display: flex; align-items: center; justify-content: space-between; position: fixed; bottom: 20px; right: 20px;}.ctaWhatsAppModernStyle_container .ctaWhatsAppModernStyle_text{ background-color: #e8505b; color: #ffffff; padding:10px 16px; border-radius:10px; margin: 0 15px 0 0; font-size: 20px; position: relative; display: flex; align-items: center; text-decoration:none !important;}.ctaWhatsAppModernStyle_container .ctaWhatsAppModernStyle_text:after { content: ''; position: absolute; right: -25px; border: 15px solid transparent; border-left: 15px solid #e8505b;}.ctaWhatsAppModernStyle_image_container{ position: relative;}.ctaWhatsAppModernStyle_image{ fill: #fff; background-color: #25D366; padding: 9px; border-radius: 100%; width: 70px; height: 70px; display: flex; justify-content: center; align-items: center;}.ctaWhatsApp_message_count{ display: inline-block; font-size: 0 !important; position: absolute; width: 10px; height: 10px; top: 5px; right: 5px; background-color: #ff0000; color: #fff; border-radius: 100%; line-height: 30px; text-align: center; z-index: 999; -webkit-transition: all 0.21s ease 0s; -moz-transition: all 0.21s ease 0s; -ms-transition: all 0.21s ease 0s; -o-transition: all 0.21s ease 0s; transition: all 0.21s ease 0s;}.ctaWhatsApp_message_count.act{ font-size: 14px !important; top: -5px; right: -5px; width: 30px; height: 30px; -webkit-transition: all 0.21s ease 0s; -moz-transition: all 0.21s ease 0s; -ms-transition: all 0.21s ease 0s; -o-transition: all 0.21s ease 0s; transition: all 0.21s ease 0s;}.scale-up-center { -webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;}@-webkit-keyframes scale-up-center { 0% { -webkit-transform: scale(0.05); transform: scale(0.05); } 100% { -webkit-transform: scale(1); transform: scale(1); }}@keyframes scale-up-center { 0% { -webkit-transform: scale(0.05); transform: scale(0.05); } 100% { -webkit-transform: scale(1); transform: scale(1); }}.ctaWhatsAppChat_window .close-container { position: absolute; margin: auto; width: 20px; height: 20px; top: 50%; transform: translateY(-50%); right: 5px; cursor: pointer; z-index: 999;}.ctaWhatsAppChat_window .close-container .leftright { height: 1.999px; width: 20px; position: absolute; margin-top: 10px; background-color: #bfbfbf; border-radius: 2px; transform: rotate(45deg); transition: all .3s ease-in;}.ctaWhatsAppChat_window .close-container .rightleft { height: 1.999px; width: 20px; position: absolute; margin-top: 10px; background-color: #bfbfbf; border-radius: 2px; transform: rotate(-45deg); transition: all .3s ease-in;}.ctaWhatsAppChat_window .close-container:hover .leftright { transform: rotate(-45deg); background-color: #f00;}.ctaWhatsAppChat_window .close-container:hover .rightleft { transform: rotate(45deg); background-color: #f00;}.ctaWhatsAppModernStyle-button__rings { border: 3px solid #ff0000; position: absolute; top: 0; left: 0; bottom: 0; right: 0; height: auto; width: auto; border-radius: 50%; animation-duration: 2.0s; animation-name: ctaWhatsAppModernStyle_1; animation-iteration-count: infinite; z-index: -1;}.ctaWhatsAppModernStyle-button__rings:nth-child(2) { animation-name: ctaWhatsAppModernStyle_2;}.ctaWhatsAppModernStyle-button__rings:nth-child(3) { animation-name: ctaWhatsAppModernStyle_3;}@keyframes ctaWhatsAppModernStyle_1 { from { opacity: 1; transform: scale(0.9, 0.9); } to { opacity: 0; transform: scale(1.3, 1.3); }}@keyframes ctaWhatsAppModernStyle_2 { from { opacity: 1; transform: scale(0.8, 0.8); } to { opacity: 0; transform: scale(1.5, 1.5); }}@keyframes ctaWhatsAppModernStyle_3 { from { opacity: 1; transform: scale(0.8, 0.8); } to { opacity: 0; transform: scale(1.7, 1.7); }}.typing { position: relative; display:inline-block; vertical-align:middle; span { content: ''; animation: blink 1.5s infinite; animation-fill-mode: both; height: 3px; width: 3px; background: #eee; position: absolute; left:0; top:0; border-radius: 50%; &:nth-child(2) { animation-delay: .2s; margin-left: 7px; } &:nth-child(3) { animation-delay: .4s; margin-left: 14px; } }}@keyframes blink { 0% { opacity: .1; } 20% { opacity: 1; } 100% { opacity: .1; }}@keyframes swing { 0%, 50%, 100% { transform: rotate(0deg);} 10%, 30% { transform: rotate(-10deg);} 20%, 40% { transform: rotate(10deg);}}@media screen and (max-width: 782px) { #whatsapp_widget316>span, #whatsapp_widget316.ctaWhatsAppClassicStyle_container>span, #whatsapp_widget316.ctaWhatsAppModernStyle_container .ctaWhatsAppModernStyle_text{ font-size:17px ; }}" ); document.addEventListener("DOMContentLoaded", function(event) { var whatsAppSeenGroup = new Array(), whatsAppSeenGroupExcl = Array(); var ctawChat = document.getElementById('ctawChat'); var time, z; function set_whatsAppSeen(){ sessionStorage.setItem('whatsAppSeenGroup', JSON.stringify(whatsAppSeenGroup)); } function get_whatsAppSeen(){ if(sessionStorage.getItem('whatsAppSeenGroup')) { whatsAppSeenGroup = sessionStorage.getItem('whatsAppSeenGroup'); whatsAppSeenGroup = JSON.parse(whatsAppSeenGroup); } else whatsAppSeenGroup.push(333); } get_whatsAppSeen(); function set_whatsAppSeen_excl(){ sessionStorage.setItem('whatsAppSeenGroupExcl', JSON.stringify(whatsAppSeenGroupExcl)); } function get_whatsAppSeen_excl(){ if(sessionStorage.getItem('whatsAppSeenGroupExcl')) { whatsAppSeenGroupExcl = sessionStorage.getItem('whatsAppSeenGroupExcl'); whatsAppSeenGroupExcl = JSON.parse(whatsAppSeenGroupExcl); } else whatsAppSeenGroupExcl.push(333); } get_whatsAppSeen_excl(); var excl = 0; var whatsapp_phone = '37379231132'; var excl_group; document.getElementById('ctaWhatsApp_message_inputbox').oninput = function(){ document.getElementById('ctaWhatsAppChat_window').classList.add('current_messaging'); change_whatsapp_link(whatsapp_phone, document.getElementById('ctaWhatsApp_message_inputbox').value); }; //console.log(location.pathname.substring(0)+location.search); var whatsappMessagesGroup = { group0 : { time : 10, condition: '', whatsappnumber: '', messages: [ { text : 'Salut', pauza : '', time : '1' }, { text : '

Doriți un site web care să vă aducă clienți?

', pauza : '1', time : '3' }, { text : '

Creăm site-uri web folosind diferite instrumente de marketing, astfel încât să nu rămâneți fără clienți.

', pauza : '3', time : '3' }, { text : '

Acesta este un astfel de instrument. Contactați-ne pe WhatsApp și vă vom spune cum puteți reuși.

', pauza : '6', time : '3' }, ] }, }; function check_whatsapp_exclusive(){ whatsAppExclusiveLoop: for(z=0; z <= Object.keys(whatsappMessagesGroup).length-1; z++){ var len = pathUrls.length - 1; var gro = "group"+z.toString(); if(whatsappMessagesGroup[gro].condition != ''){ eval(whatsappMessagesGroup[gro].condition); if(excl == 1) break; } } } function change_whatsapp_link(whatsapp_number, whatsapp_message = 'Bună ziua, mă puteți ajuta?21'){ whatsapp_phone = whatsapp_number; document.getElementById('whatsapp_widget316').setAttribute('href', 'whatsapp://send?phone='+whatsapp_phone+'&text='+encodeURIComponent(whatsapp_message)); } document.getElementById('ctaWhatsApp_message_button').onclick = function(){ document.location.href = document.getElementById('whatsapp_widget316').getAttribute('href'); } document.getElementById('close_ctaWhatsAppWindow').onclick = function(){ document.getElementById('ctaWhatsAppChat_window').classList.remove('act'); document.getElementById('ctaWhatsAppChat_window').classList.remove('current_messaging'); if(excl==1){ if(!whatsAppSeenGroupExcl.includes(z)){ whatsAppSeenGroupExcl.push(z); set_whatsAppSeen_excl(); } } else{ if(!whatsAppSeenGroup.includes(z)){ whatsAppSeenGroup.push(z); set_whatsAppSeen(); } } } var totalTime = 0; function create_whatsAppMessage(obj, text, pauza, time, last){ document.getElementById('ctaWhatsApp_account_status_online').style.display = 'none'; document.getElementById('ctaWhatsApp_account_status_typing').style.display = 'block'; totalTime = parseInt(totalTime) + parseInt(time); var date = new Date(); var ctawWAChat_mc = document.getElementById('ctaWhatsApp_message_count'); setTimeout(function(){ ctawWAChat_mc.classList.remove('act'); ctawWAChat_mc.innerText = parseInt(ctawWAChat_mc.innerText) + 1; setTimeout(function(){ ctawWAChat_mc.classList.add('act'); },300); if(text) obj.innerHTML += '
'+text+''+date.getHours()+':'+(date.getMinutes() < 10 ? '0'+date.getMinutes() : date.getMinutes())+'
'; if(last){ document.getElementById('ctaWhatsApp_account_status_online').style.display = 'block'; document.getElementById('ctaWhatsApp_account_status_typing').style.display = 'none'; } else if(pauza){ document.getElementById('ctaWhatsApp_account_status_online').style.display = 'block'; document.getElementById('ctaWhatsApp_account_status_typing').style.display = 'none'; setTimeout(function(){ document.getElementById('ctaWhatsApp_account_status_typing').style.display = 'block'; },pauza+'000'); }; },totalTime+'000'); if(pauza) totalTime = parseInt(totalTime) + parseInt(pauza); } function create_whatsAppChat(z){ var ctawWAChat = document.getElementById('ctaWhatsAppChat_window'); var ctawCM = document.getElementById('ctaWhatsApp_message_container'); if(!whatsAppSeenGroupExcl.includes(z)) ctawWAChat.classList.add('act'); for(var y=0; y < whatsappMessagesGroup["group"+z.toString()].messages.length; y++){ var last = 0; if(y == whatsappMessagesGroup["group"+z.toString()].messages.length-1) last = 1; var message = whatsappMessagesGroup["group"+z.toString()].messages[y]; create_whatsAppMessage( ctawCM, message.text, message.pauza, message.time, last ); time = parseInt(totalTime) + parseInt(whatsappMessagesGroup["group"+z.toString()].messages[y].time); } if(time) setTimeout(function(){ ctawWAChat.classList.remove('act'); if(excl==1){ if(!whatsAppSeenGroupExcl.includes(z)){ whatsAppSeenGroupExcl.push(z); set_whatsAppSeen_excl(); } } else{ if(!whatsAppSeenGroup.includes(z)){ whatsAppSeenGroup.push(z); set_whatsAppSeen(); } } },parseInt(time)*1000+parseInt('10000')); } check_whatsapp_exclusive(); if(excl == 1){ var gro = "group"+excl_group.toString(); setTimeout(function(){ if(!get_visible_widget()) create_whatsAppChat(excl_group); }, whatsappMessagesGroup[gro].time+'000'); if(whatsappMessagesGroup[gro].whatsappnumber) change_whatsapp_link(whatsappMessagesGroup[gro].whatsappnumber); } if(excl == 0) for(z=0; z <= Object.keys(whatsappMessagesGroup).length-1; z++){ if(!whatsAppSeenGroup.includes(z) && whatsappMessagesGroup["group"+z.toString()].condition == ''){ setTimeout(function(){ if(!get_visible_widget() || get_visible_widget() == 'ctawCBbutt_cta') create_whatsAppChat(z); }, whatsappMessagesGroup["group"+z.toString()].time+'000'); break; } } });create_widget('ctawmultiButton', '
Работает на
Contactați-ne într-un mod convenabil pentru dvs.
', 'div#ctawmultiButton { position: fixed; z-index: 10000;bottom:110px;right:20px;}.ctawMB{position:absolute;bottom:60px;right:5px;z-index:0;}.ctawMB .ctawMB_button{position:relative;width:59px;height:59px;display:block;margin:0 0 -59px;cursor:pointer;-webkit-transition: all 0.421s ease-out 0s;-moz-transition: all 0.421s ease-out 0s;-ms-transition: all 0.421s ease-out 0s;-o-transition: all 0.421s ease-out 0s;transition: all 0.421s ease-out 0s;text-decoration: none !important;}.ctawMB.act{right:0px;bottom:80px;}.ctawMB.act .ctawMB_button{margin:0 0 15px;-webkit-transition: all 0.421s ease-out 0s;-moz-transition: all 0.421s ease-out 0s;-ms-transition: all 0.421s ease-out 0s;-o-transition: all 0.421s ease-out 0s;transition: all 0.421s ease-out 0s;}.ctawMB .ctawMB_button span.img{display:block;width:59px;height:59px;background-color:#fff;border-radius:50%;text-align:center;line-height:59px;box-shadow: 0 0 10px 0px #000;z-index:1;position:relative;font-size:39px;}.ctawMB .ctawMB_button img{width:30px;}.ctawMB span:not(.img){visibility:hidden;background-color:#16163f;color:#fff;border-radius:10px 0 0 10px;font-size:12px;height:25px;line-height:25px;padding:0 15px 1px 15px;position:absolute;right:90%;white-space:nowrap;top:50%;transform:translateY(-50%);z-index:0;}.ctawMB .ctawMB_button:hover span:not(.img){visibility:visible;}.ctawMB .ctawMB_button:hover{transform: scale(1.15);}.ctawMB.demonstration .ctawMB_button span:not(.img){ -webkit-animation-name: demonstrate_hint; -webkit-animation-duration: 50ms; -webkit-animation-iteration-count: 1; -moz-animation-name: demonstrate_hint; -moz-animation-duration: 50ms; -moz-animation-iteration-count: 1; -ms-animation-name: demonstrate_hint; -ms-animation-duration: 50ms; -ms-animation-iteration-count: 1; animation-name: demonstrate_hint; animation-duration: 50ms; animation-iteration-count: 1;animation-fill-mode: forwards;}.ctawMB_button1 span:not(.img){ -webkit-animation-delay: 121ms; -moz-animation-delay: 121ms; -ms-animation-delay: 121ms; animation-delay: 121ms;}.ctawMB_button2 span:not(.img){ -webkit-animation-delay: 242ms; -moz-animation-delay: 242ms; -ms-animation-delay: 242ms; animation-delay: 242ms;}.ctawMB_button3 span:not(.img){ -webkit-animation-delay: 363ms; -moz-animation-delay: 363ms; -ms-animation-delay: 363ms; animation-delay: 363ms;}@-ms-keyframes demonstrate_hint{100%{ visibility:visible;}}@-moz-keyframes demonstrate_hint{100%{ visibility:visible;}}@-webkit-keyframes demonstrate_hint{100%{ visibility:visible;}}@keyframes demonstrate_hint{100%{ visibility:visible;}}.ctawMB .ctawMB_button.demonstration{transform: scale(1.15);}.ctawMB .ctawMB_button.demonstration span:not(.img){display:block;}.ctawMB_cta_container{ position: absolute; bottom: 0; right: 0;}.ctawMB_cta_container #partner_label{display: none; text-align: center; color: #eee; font-size: 10px; position: absolute; width: 133px; text-decoration: none; white-space: nowrap; right: 74px; background-color: #16163f; border-radius: 11px; top: 50%; transform: translateY(-50%);}.ctawMB_cta_container #partner_label.act{display:block;}.ctawMB_cta_text{background-color: #fff; color: #000; position: absolute !important; top: 0; right: calc(100% + 21px); -webkit-filter: drop-shadow(0 0 3px #777); filter: drop-shadow(0 0 3px #777); padding: 10px; z-index: 0; width: 200px !important; font-size: 12px; line-height: 1.21; border-radius: 5px; display: block; right: -1000px; -webkit-transition: all 0.7s ease 0s; -moz-transition: all 0.7s ease 0s; -ms-transition: all 0.7s ease 0s; -o-transition: all 0.7s ease 0s; transition: all 0.7s ease 0s;}.ctawMB_cta_text:after { content: ""; display: block; width: 0; height: 0; border-top: 15px solid transparent; border-left: 15px solid #fff; border-bottom: 15px solid transparent; position: absolute; top: 50%; transform: translateY(-50%); left: 99%;}.ctawMB_cta_text.act { right: calc(100% + 21px); -webkit-transition: all 0.7s ease 0s; -moz-transition: all 0.7s ease 0s; -ms-transition: all 0.7s ease 0s; -o-transition: all 0.7s ease 0s; transition: all 0.7s ease 0s;}.ctawMB_cta_button { width: 70px; height: 70px; border-radius: 100%; background-color: #263238; line-height: 70px;color:#ffe7b0;overflow: hidden;z-index:9;}.ctawMB_cta_button_items { display: block; position: relative;font-size:33px;cursor:pointer;}.ctawMB_cta_button_items.cta_animate{ -webkit-animation-name: ctawMB_cta_button_items_animation; -webkit-animation-duration:3s; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: step-start; -moz-animation-name: ctawMB_cta_button_items_animation; -moz-animation-duration:3s; -moz-animation-iteration-count: infinite; -moz-animation-timing-function: step-start; -ms-animation-name: ctawMB_cta_button_items_animation; -ms-animation-duration:3s; -ms-animation-iteration-count: infinite; -ms-animation-timing-function: step-start; animation-name: ctawMB_cta_button_items_animation; animation-duration:3s; animation-iteration-count: infinite; animation-timing-function: step-start;}.ctawMB_cta_button_items span { display: inline-block; width: 70px; height: 70px; line-height: 70px; text-align: center; vertical-align: top;}@-ms-keyframes ctawMB_cta_button_items_animation {0%{top: 0;}33.333333333333%{ top: -70px;}66.666666666667%{ top: -140px;}100%{top: 0;}}@-moz-keyframes ctawMB_cta_button_items_animation {0%{top: 0;}33.333333333333%{ top: -70px;}66.666666666667%{ top: -140px;}100%{top: 0;}}@-webkit-keyframes ctawMB_cta_button_items_animation {0%{top: 0;}33.333333333333%{ top: -70px;}66.666666666667%{ top: -140px;}100%{top: 0;}}@keyframes ctawMB_cta_button_items_animation {0%{top: 0;}33.333333333333%{ top: -70px;}66.666666666667%{ top: -140px;}100%{top: 0;}}.close_button {display:none; width: 100%; height: 100%; position: absolute; top: 0;left: 0; z-index: 999;background-color:#263238;border-radius:100%;cursor:pointer;}.close_button.act{display:block;}.close_button .leftright{height: 1.999px;width: 40px;position: absolute;margin-top: 34px; margin-left: 15px;background-color: #ffe7b0;border-radius: 2px;transform: rotate(45deg);transition: all .3s ease-in;}.close_button .rightleft{height: 1.999px;width: 40px;position: absolute;margin-top: 34px; margin-left: 15px;background-color: #ffe7b0;border-radius: 2px;transform: rotate(-45deg);transition: all .3s ease-in;}.close_button:hover .leftright{transform: rotate(-45deg);background-color:#f00;}.close_button:hover .rightleft{transform: rotate(45deg);background-color:#f00;}.rotate_circle{ display: block; position: absolute; width: 58px; height: 58px; top: 6px; left: 6px;border:1px solid; border-radius: 100%; transform: rotate(45deg); -webkit-animation-name: spin; -webkit-animation-duration: 6000ms; -webkit-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-name: spin; -moz-animation-duration: 6000ms; -moz-animation-iteration-count: infinite; -moz-animation-timing-function: linear; -ms-animation-name: spin; -ms-animation-duration: 6000ms; -ms-animation-iteration-count: infinite; -ms-animation-timing-function: linear; animation-name: spin; animation-duration: 6000ms; animation-iteration-count: infinite; animation-timing-function: linear;box-sizing: border-box;}.rotate_circle:before,.rotate_circle:after{content: ""; display: block; position: absolute; width: 7px; height: 7px; left: 9px; top: 0; background-color: #ffe7b0; border-radius: 100%;}.rotate_circle:after{left: auto; top: auto; right: 9px; bottom: 0;}@-ms-keyframes spin { from { -ms-transform: rotate(0deg); } to { -ms-transform: rotate(360deg); }}@-moz-keyframes spin { from { -moz-transform: rotate(0deg); } to { -moz-transform: rotate(360deg); }}@-webkit-keyframes spin { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); }}@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); }}@keyframes ltr{ from { left:0;} to { left:100%;}}'); document.addEventListener("DOMContentLoaded", function(event) { setTimeout(function(){ if(!get_visible_widget()) document.getElementById('ctawMB_cta_text').classList.add('act'); }, 10000); setTimeout(function(){ document.getElementById('ctawMB_cta_text').classList.remove('act'); }, 20000); function demonstration(changedelay = 500){ /*setTimeout(function(){ document.querySelectorAll('div#ctawMB .ctawMB_button').forEach((button, key)=>{ setTimeout(function(){ if(document.getElementById('ctawMB').classList.contains('act')) button.classList.add('demonstration'); },key*changedelay); }) },500); setTimeout(function(){ undemonstration() }, 5000);*/ } var demonstration_timeout; function undemonstration(){ demonstration_timeout = setTimeout(function(){ if(document.getElementById('ctawMB').classList.contains('demonstration')) document.getElementById('ctawMB').classList.remove('demonstration'); }, 4500); } var show_cta; document.getElementById('ctawMB_cta_button').onclick = function(){ document.getElementById('ctawMB').classList.toggle('act'); document.getElementById('close_button').classList.toggle('act'); document.getElementById('partner_label').classList.toggle('act'); document.getElementById('ctawMB').classList.add('demonstration'); setTimeout(function(){ document.getElementById('ctawMB_cta_text').classList.remove('act'); }, 1000); if(!document.getElementById('ctawMB').classList.contains('act')){ document.getElementById('ctawMB').classList.remove('demonstration'); clearTimeout(demonstration_timeout); } else undemonstration(); }; document.getElementById('ctawMB_cta_container').onmouseenter = function(){ if(!get_visible_widget()) document.getElementById('ctawMB_cta_text').classList.add('act'); show_cta = setTimeout(function(){ document.getElementById('ctawMB_cta_text').classList.remove('act'); }, 5000); }; document.getElementById('ctawMB_cta_container').onmouseleave = function(){ clearTimeout(show_cta); document.getElementById('ctawMB_cta_text').classList.remove('act'); }; /*document.getElementById('ctawMB_cta_button').onmouseenter = function(){ console.log(document.getElementById('ctawMB').classList.contains('act')); if(!document.getElementById('ctawMB').classList.contains('act')){ document.getElementById('ctawMB').classList.toggle('act'); document.getElementById('close_button').classList.toggle('act'); document.getElementById('partner_label').classList.toggle('act'); document.getElementById('ctawMB').classList.add('demonstration'); undemonstration(); } };*/ setInterval(function(){ document.getElementById('ctawMB_cta_button_items').classList.toggle('cta_animate'); },11000); document.getElementById("showCtaCallbackButton").onclick =function(){ document.getElementById("ctawMB_cta_button").click(); document.getElementById("ctaCallback").classList.add("act"); }; });create_widget('ctawGoUp', ' ', "#ctawGoUp{ opacity:0; position: fixed; bottom: 20px; left:20px; width: 77px; height: 77px; padding: 15px; border-radius:12px; background-color:#e8505bee; -webkit-transition: all 0.42s ease 0s; -moz-transition: all 0.42s ease 0s; -ms-transition: all 0.42s ease 0s; -o-transition: all 0.42s ease 0s; transition: all 0.42s ease 0s; cursor:pointer; box-sizing: border-box; z-index:99999;}#ctawGoUp svg{ max-width:100%; fill:#ffffff; display:block;}#ctawGoUp.act{ opacity:1; -webkit-transition: all 0.42s ease 0s; -moz-transition: all 0.42s ease 0s; -ms-transition: all 0.42s ease 0s; -o-transition: all 0.42s ease 0s; transition: all 0.42s ease 0s;}@media screen and (min-width: 783px) {#ctawGoUp:hover{ transform:scale(1.05); -webkit-transition: all 0.42s ease 0s; -moz-transition: all 0.42s ease 0s; -ms-transition: all 0.42s ease 0s; -o-transition: all 0.42s ease 0s; transition: all 0.42s ease 0s;}}@media screen and (max-width: 782px) {#ctawGoUp{ bottom: 20px;}}" ); document.addEventListener("DOMContentLoaded", function(event) { document.getElementById('ctawGoUp').addEventListener( 'click',function(){ window.scrollTo({ top:0, behavior: "smooth" }); }); document.getElementById('ctawGoUp').addEventListener( 'ontouchstart',function(){ window.scrollTo({ top:0, behavior: "smooth" }); }); window.addEventListener('scroll',function(){ if (window.scrollY > window.innerHeight) { document.getElementById('ctawGoUp').classList.add('act'); } else { document.getElementById('ctawGoUp').classList.remove('act'); } }); /* функция кнопка наверх */ });