var goToClinicAgenda = function() {
location = 'https://paciente.docturno.com/agenda/cimyn-centro-integral-de-la-mujer-y-el-nino' + '?originType=clinic-external-site&originUri=' + encodeURIComponent(window.location.href);
}
var initClinicAgendaButton = function(d) {
var startButtonId = window.DocturnoAgendaPlugin['startButtonId'];
if (startButtonId === undefined) {
startButtonId = '';
}
var hideStartButton = window.DocturnoAgendaPlugin['hideStartButton'];
if (hideStartButton === undefined) {
hideStartButton = false;
}
if (startButtonId.length > 0) {
var customStartButtonElem = d.getElementById(startButtonId);
if (customStartButtonElem) {
customStartButtonElem.onclick = function() {
goToClinicAgenda();
}
}
}
if (!hideStartButton) {
var zIndex = window.DocturnoAgendaPlugin['zIndex'];
var divTextElem = d.createElement('div');
divTextElem.className = 'docturno-show-clinic-agenda-button-text';
divTextElem.style.cssText = 'margin-top: 5px; font-size: 18px; text-align: center;';
divTextElem.appendChild(d.createTextNode('Agendar turno'));
var divLogoElem = d.createElement('div');
divLogoElem.className = 'docturno-show-clinic-agenda-button-logo';
divLogoElem.style.cssText = 'background-image: url(//d3p9n3g3b38fn5.cloudfront.net/public/images/docturno-logo.png); background-repeat: no-repeat; background-size: 100% 100%; width: 50px; height: 50px; margin-left: auto; margin-right: auto; margin-top: 10px;';
var defaultCss = 'z-index: 99999; font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif; color: #fff; background-color: #2196F3; width: 70px; height: 120px; position: fixed; bottom: 50%; right: 0; margin-bottom: 20px; border-bottom-left-radius: 30px; border-top-left-radius: 30px; cursor: pointer; transition: box-shadow .25s; box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);';
var onHoverCss = 'z-index: 99999; font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif; color: #fff; background-color: #2196F3; width: 70px; height: 120px; position: fixed; bottom: 50%; right: 0; margin-bottom: 20px; border-bottom-left-radius: 30px; border-top-left-radius: 30px; cursor: pointer; transition: box-shadow .25s; box-shadow: 0 4px 7px 0 rgba(0,0,0,0.20), 0 4px 12px 0 rgba(0,0,0,0.20);';
var divElem = d.createElement('div');
divElem.id = 'docturno-show-clinic-agenda';
divElem.className = 'docturno-show-clinic-agenda-button';
divElem.style.cssText = defaultCss;
if (zIndex) {
divElem.style['z-index'] = zIndex;
}
divElem.appendChild(divLogoElem);
divElem.appendChild(divTextElem);
divElem.onclick = function() {
goToClinicAgenda();
}
divElem.addEventListener('mouseover', function(eventObject) {
divElem.style.cssText = onHoverCss;
});
divElem.addEventListener('mouseleave', function(eventObject) {
divElem.style.cssText = defaultCss;
});
d.getElementsByTagName('body')[0].appendChild(divElem);
}
}
initClinicAgendaButton(document);