From dd6936f3a8102ffb0a594b9f02bf055175d73cbc Mon Sep 17 00:00:00 2001 From: gerMdz <59092100+gerMdz@users.noreply.github.com> Date: Wed, 21 Apr 2021 20:21:18 -0300 Subject: [PATCH 001/197] Docs --- docs/index.md | 88 +++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 67 insertions(+), 21 deletions(-) diff --git a/docs/index.md b/docs/index.md index 03090f9c..694d1f02 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,37 +1,83 @@ -## Welcome to GitHub Pages +## Bienvenido a AlamedaCMS -You can use the [editor on GitHub](https://github.com/gerMdz/AlamedaCMS/edit/docss/docs/index.md) to maintain and preview the content for your website in Markdown files. +Cms básico, basado en Symfony para entornos con acceso ssh y pleno control del server (ej. VPS ), incluye reservas ([payunpile][6]) y enlaces ([incalinks][7]) -Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files. -### Markdown +### ¿Que resuelve? +Tener CMS basado en estandares modernos, donde pueda tener pleno control del código, y con un [framework][1] lider en PHP como lo es [Symfony][1] +Fácil de actualizar, fácil de mantener, con un aŕbol de directorios claro. -Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for +### ¿Qué más tiene? -```markdown -Syntax highlighted code block +Tiene un manejo básico de usuarios para la administración de los contenidos. +Permite la creación de reservas para eventos, basado en (PayunPILE)[6]. +Permite la creación de sus propios enlaces cortos, cuando dependa de vínculos de terceros. [IncaLINKS][7] -# Header 1 -## Header 2 -### Header 3 +### ¿Cómo lo obtengo? -- Bulleted -- List +Para usar AlamedaCMS debes bajarlo de [github][8], y luego bajar sus dependencias de paquetes. -1. Numbered -2. List +``` +git clone https://github.com/gerMdz/AlamedaCMS.git +cd project +composer install +yarn install +``` + + +Requerimientos +------------ + +* PHP 7.2.9 o superior; +* PDO-SQLite PHP extension enabled (o el PDO para tu base de datos); +* y los [usuales requerimientos de una aplicación Symfony][2]. + +Uso +----- + +Las configuraciones básicas son: + la URL de su base de datos ej.: + DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7 + el DSN de su servidor smtp de correos + MAILER_DSN=smtp://localhost + +luego con el binario de [Symfony][4], ejecute los siguientes comandos que crearan los datos básicos de usurio y un conetindo de inicio: + +```bash +$ php bin/console doctrine:fixtures:load +$ symfony serve -d +``` + +Luego acceda a la aplicación en su navegador con la URL dada ( generalmente). + +Si no tiene instalado el binario de Symfony, ejecute `php -S localhost:8000 -t public/` +para utilizar el servidor web PHP incorporado o [configure un servidor web][3] como Nginx o +Apache para ejecutar la aplicación. + +Tests +----- -**Bold** and _Italic_ and `Code` text +Ejecute este comando para correr los tests: -[Link](url) and ![Image](src) +```bash +$ ./bin/phpunit ``` -For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/). -### Jekyll Themes +#### AlamedaCMS se base en +- [Symfony][1] framework PHP. +- [Bootstrap](https://getbootstrap.com/) plantillas. +- [FontAwesome](https://fortawesome.github.io/Font-Awesome/) icons. -Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/gerMdz/AlamedaCMS/settings/pages). The name of this theme is saved in the Jekyll `_config.yml` configuration file. +Con licencia [MIT](https://github.com/gerMdz/AlamedaCMS/blob/AlamedaCMS/LICENSE) +Uso [PhpStorm][5] -### Support or Contact -Having trouble with Pages? Check out our [documentation](https://docs.github.com/categories/github-pages-basics/) or [contact support](https://support.github.com/contact) and we’ll help you sort it out. +[1]: https://symfony.com +[2]: https://symfony.com/doc/current/reference/requirements.html +[3]: https://symfony.com/doc/current/cookbook/configuration/web_server_configuration.html +[4]: https://symfony.com/download +[5]: https://jb.gg/OpenSource. +[6]: https://github.com/gerMdz/payunpile +[7]: https://germdz.github.io/incalinks/ +[8]: https://github.com/gerMdz/AlamedaCMS.git From 1acd894f7ece03a9da0a9cee1de42902cf1bb464 Mon Sep 17 00:00:00 2001 From: gerMdz <59092100+gerMdz@users.noreply.github.com> Date: Wed, 21 Apr 2021 20:23:56 -0300 Subject: [PATCH 002/197] Update index.md --- docs/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/index.md b/docs/index.md index 694d1f02..e4307bc4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -36,10 +36,10 @@ Uso ----- Las configuraciones básicas son: - la URL de su base de datos ej.: - DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7 - el DSN de su servidor smtp de correos - MAILER_DSN=smtp://localhost + * la URL de su base de datos ej.: + * DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7 + * el DSN de su servidor smtp de correos + * MAILER_DSN=smtp://localhost luego con el binario de [Symfony][4], ejecute los siguientes comandos que crearan los datos básicos de usurio y un conetindo de inicio: From 340cac384f68eb3011ffebcdebbf7a79bc61e875 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Wed, 21 Apr 2021 20:31:36 -0300 Subject: [PATCH 003/197] docs --- docs/index.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/index.md b/docs/index.md index e4307bc4..3f5aa5c7 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,11 +1,11 @@ ## Bienvenido a AlamedaCMS -Cms básico, basado en Symfony para entornos con acceso ssh y pleno control del server (ej. VPS ), incluye reservas ([payunpile][6]) y enlaces ([incalinks][7]) +Cms básico, basado en Symfony para entornos con acceso ssh y pleno control del server (ej. VPS), incluye reservas ([payunpile][6]) y enlaces ([incalinks][7]) ### ¿Que resuelve? -Tener CMS basado en estandares modernos, donde pueda tener pleno control del código, y con un [framework][1] lider en PHP como lo es [Symfony][1] -Fácil de actualizar, fácil de mantener, con un aŕbol de directorios claro. +Tener CMS basado en estándares modernos, donde pueda tener pleno control del código, y con un [framework][1] líder en PHP como lo es [Symfony][1] +Fácil de actualizar, fácil de mantener, con un árbol de directorios claro. ### ¿Qué más tiene? @@ -35,13 +35,13 @@ Requerimientos Uso ----- -Las configuraciones básicas son: - * la URL de su base de datos ej.: - * DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7 - * el DSN de su servidor smtp de correos - * MAILER_DSN=smtp://localhost +Las configuraciones básicas son +* la URL de su base de datos ej.: + * DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7 +* el DSN de su servidor smtp de correos + * MAILER_DSN=smtp://localhost -luego con el binario de [Symfony][4], ejecute los siguientes comandos que crearan los datos básicos de usurio y un conetindo de inicio: +Luego con el binario de [Symfony][4], ejecute los siguientes comandos que crearan los datos básicos de usuarios y un contenido de inicio: ```bash $ php bin/console doctrine:fixtures:load From a210e099fd1cdee8f5833767f54f74b3d85dcd4b Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Wed, 21 Apr 2021 20:34:56 -0300 Subject: [PATCH 004/197] docs --- README.md | 144 ++++++++++++++++++++------------------------------ docs/index.md | 23 ++++++++ 2 files changed, 81 insertions(+), 86 deletions(-) diff --git a/README.md b/README.md index 07e059ec..7ef6ebc1 100755 --- a/README.md +++ b/README.md @@ -1,111 +1,83 @@ -# [Alameda - AlamedaCMS] +## Bienvenido a AlamedaCMS -EL inicio de un CMS personalizado +Cms básico, basado en Symfony para entornos con acceso ssh y pleno control del server (ej. VPS), incluye reservas ([payunpile][6]) y enlaces ([incalinks][7]) -## NO hay pre -[![Iglesia Alameda Preview](http://iglesialameda.com/)](http://iglesialameda.com/) +### ¿Que resuelve? +Tener CMS basado en estándares modernos, donde pueda tener pleno control del código, y con un [framework][1] líder en PHP como lo es [Symfony][1] +Fácil de actualizar, fácil de mantener, con un árbol de directorios claro. -**[View Live Preview](http://iglesialameda.com/)** +### ¿Qué más tiene? -## Status -totalmente DEV +Tiene un manejo básico de usuarios para la administración de los contenidos. +Permite la creación de reservas para eventos, basado en (PayunPILE)[6]. +Permite la creación de sus propios enlaces cortos, cuando dependa de vínculos de terceros. [IncaLINKS][7] -## Download and Installation +### ¿Cómo lo obtengo? +Para usar AlamedaCMS debes bajarlo de [github][8], y luego bajar sus dependencias de paquetes. -* Clone the repo: `git clone https://github.com/gerMdz/alameda.git` -* [Fork, Clone, or Download on GitHub](https://github.com/gerMdz/alameda) +``` +git clone https://github.com/gerMdz/AlamedaCMS.git +cd project +composer install +yarn install +``` -## Teclado -#### Admin > Menú -> Windows - Linux +Requerimientos +------------ +* PHP 7.2.9 o superior; +* PDO-SQLite PHP extension enabled (o el PDO para tu base de datos); +* y los [usuales requerimientos de una aplicación Symfony][2]. ->Firefox Alt + Shift + m -Google Chrome Alt + m -Safari Alt + m +Uso +----- - -> Mac +Las configuraciones básicas son +* la URL de su base de datos ej.: + * DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7 +* el DSN de su servidor smtp de correos + * MAILER_DSN=smtp://localhost ->En Firefox 14 o posteriores, Control + Alt + m -En Firefox 13 o anteriores, Control + m -Control + Alt + m -Control + Alt + m +Luego con el binario de [Symfony][4], ejecute los siguientes comandos que crearan los datos básicos de usuarios y un contenido de inicio: -> Cualquier S.O. +```bash +$ php bin/console doctrine:fixtures:load +$ symfony serve -d +``` ->Opera Shift + Esc abre una lista de contenidos , los cuales son accesibles a través de accesskey , después se puede elegir un item presionando m +Luego acceda a la aplicación en su navegador con la URL dada ( generalmente). +Si no tiene instalado el binario de Symfony, ejecute `php -S localhost:8000 -t public/` +para utilizar el servidor web PHP incorporado o [configure un servidor web][3] como Nginx o +Apache para ejecutar la aplicación. +Tests +----- -### Basic Usage +Ejecute este comando para correr los tests: -Hasta ahora, la idea es templates modulares por sections, donde a cada template se le agregan sections +```bash +$ ./bin/phpunit +``` -### Advanced Usage +#### AlamedaCMS se base en +- [Symfony][1] framework PHP. +- [Bootstrap](https://getbootstrap.com/) plantillas. +- [FontAwesome](https://fortawesome.github.io/Font-Awesome/) icons. +Con licencia [MIT](https://github.com/gerMdz/AlamedaCMS/blob/AlamedaCMS/LICENSE) +Uso [PhpStorm][5] -## Bugs and Issues - -Have a bug or an issue with this template? [Open a new issue](https://gitlab.com/gerardo.montivero/alameda/issues) here on GitLab or leave a comment on the [template overview page at AlamedaCMS](https://gitlab.com/gerardo.montivero/alameda/). - -## Custom Builds - - - -## Bundle de Terceros - -Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects. - -* https://startbootstrap.com -* https://twitter.com/SBootstrap - -Start Bootstrap was created by and is maintained by **[David Miller](http://davidmiller.io/)**, Owner of [Blackrock Digital](http://blackrockdigital.io/). - -* http://davidmiller.io -* https://twitter.com/davidmillerskt -* https://github.com/davidtmiller - -Start Bootstrap is based on the [Bootstrap](http://getbootstrap.com/) framework created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thorton](https://twitter.com/fat). - -Foundation Icon Font Sets - -Custom icon sets that are stored in a handy web font. A couple lines of CSS and the right markup will get you going in no time. These icons use the Private Use Area Unicode slots to ensure full accessibility. - -We designed the glyphs to be refined enough to stand alone as a simple icon, but left room for the imagination. Since you’ll be dealing with a font, the opportunities are nearly limitless. Now your icons can be any size, any color and any style available in CSS. -Usage - - Download the icon font that you're interested in. - Merge the fonts and stylesheets, or sass if you are using it, folders into your Foundation project. - The default code is , feel free to customize that to your needs. - Style the icons using any CSS style that could apply to text! - -Repo Contents - - README - MIT-LICENSE - Foundation Icons - General - Foundation Icons - General(Enclosed) - Foundation Icons - Social - Foundation Icons - Accessibility - -ZURB - -Foundation was made by ZURB, an interaction design and design strategy firm in Campbell, CA. - -If Foundation knocks your socks off the way we hope it does and you want more, why not check out our jobs? - -## Copyright and License - -MIT Open Source License - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +[1]: https://symfony.com +[2]: https://symfony.com/doc/current/reference/requirements.html +[3]: https://symfony.com/doc/current/cookbook/configuration/web_server_configuration.html +[4]: https://symfony.com/download +[5]: https://jb.gg/OpenSource. +[6]: https://github.com/gerMdz/payunpile +[7]: https://germdz.github.io/incalinks/ +[8]: https://github.com/gerMdz/AlamedaCMS.git diff --git a/docs/index.md b/docs/index.md index 3f5aa5c7..7e2ce8ed 100644 --- a/docs/index.md +++ b/docs/index.md @@ -64,6 +64,29 @@ $ ./bin/phpunit ``` +## Atajos de teclado + +#### Admin > Menú +> Windows - Linux + + +>Firefox Alt + Shift + m +Google Chrome Alt + m +Safari Alt + m + + +> Mac + +>En Firefox 14 o posteriores, Control + Alt + m +En Firefox 13 o anteriores, Control + m +Control + Alt + m +Control + Alt + m + +> Cualquier S.O. + +>Opera Shift + Esc abre una lista de contenidos, los cuales son accesibles a través de accesskey, después se puede elegir un item presionando m + + #### AlamedaCMS se base en - [Symfony][1] framework PHP. - [Bootstrap](https://getbootstrap.com/) plantillas. From 0505ef92c4b9413b7157c3210a536e771a1f0e3e Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sat, 24 Apr 2021 16:44:43 -0300 Subject: [PATCH 005/197] Deetv --- assets/js/nota_mensaje.js | 80 +++++++------- templates/comentario/nota.html.twig | 164 ++++++++++++++++------------ 2 files changed, 134 insertions(+), 110 deletions(-) diff --git a/assets/js/nota_mensaje.js b/assets/js/nota_mensaje.js index fa371b73..bb2f2ccc 100644 --- a/assets/js/nota_mensaje.js +++ b/assets/js/nota_mensaje.js @@ -1,18 +1,18 @@ import $ from 'jquery'; $(function () { - const puno = localStorage.getItem("Desp6Puno"); - const pdos = localStorage.getItem("Desp6Pdos"); - const ptres = localStorage.getItem("Desp6Ptres"); - const pcuatro = localStorage.getItem("Desp6Pcuatro"); - const pcinco = localStorage.getItem("Desp6Pcinco"); - const pseis = localStorage.getItem("Desp6Pseis"); - const psiete = localStorage.getItem("Desp6Psiete"); - const pocho = localStorage.getItem("Desp6Pocho"); - const pnueve = localStorage.getItem("Desp6Pnueve"); - const pdiez = localStorage.getItem("Desp6Pdiez"); + const puno = localStorage.getItem("DEETV1Puno"); + const pdos = localStorage.getItem("DEETV1Pdos"); + const ptres = localStorage.getItem("DEETV1Ptres"); + const pcuatro = localStorage.getItem("DEETV1Pcuatro"); + const pcinco = localStorage.getItem("DEETV1Pcinco"); + const pseis = localStorage.getItem("DEETV1Pseis"); + const psiete = localStorage.getItem("DEETV1Psiete"); + const pocho = localStorage.getItem("DEETV1Pocho"); + const pnueve = localStorage.getItem("DEETV1Pnueve"); + const pdiez = localStorage.getItem("DEETV1Pdiez"); if (pcinco != null) { - $('#pcinco').val(JSON.parse(localStorage.Desp6Pcinco)) + $('#pcinco').val(JSON.parse(localStorage.DEETV1Pcinco)) muestra1('#lpcinco', '#sinpcinco') aceptado('cinco'); } else { @@ -20,7 +20,7 @@ $(function () { } if (puno != null) { - $('#puno').val(JSON.parse(localStorage.Desp6Puno)) + $('#puno').val(JSON.parse(localStorage.DEETV1Puno)) muestra1('#lpuno', '#sinpuno') aceptado('uno'); console.log('19') @@ -30,7 +30,7 @@ $(function () { } if (pdos != null) { - $('#pdos').val(JSON.parse(localStorage.Desp6Pdos)) + $('#pdos').val(JSON.parse(localStorage.DEETV1Pdos)) muestra1('#lpdos', '#sinpdos') aceptado('dos'); } else { @@ -38,7 +38,7 @@ $(function () { } if (ptres != null) { - $('#ptres').val(JSON.parse(localStorage.Desp6Ptres)) + $('#ptres').val(JSON.parse(localStorage.DEETV1Ptres)) muestra1('#lptres', '#sinptres') aceptado('tres'); } else { @@ -46,7 +46,7 @@ $(function () { } if (pcuatro != null) { - $('#pcuatro').val(JSON.parse(localStorage.Desp6Pcuatro)) + $('#pcuatro').val(JSON.parse(localStorage.DEETV1Pcuatro)) muestra1('#lpcuatro', '#sinpcuatro') aceptado('cuatro'); } else { @@ -54,14 +54,14 @@ $(function () { } if (pseis != null) { - $('#pseis').val(JSON.parse(localStorage.Desp6Pseis)) + $('#pseis').val(JSON.parse(localStorage.DEETV1Pseis)) muestra1('#lpseis', '#sinpseis') aceptado('seis'); } else { oculta1('#lpseis', '#sinpseis') } if (psiete != null) { - $('#psiete').val(JSON.parse(localStorage.Desp6Psiete)) + $('#psiete').val(JSON.parse(localStorage.DEETV1Psiete)) muestra1('#lpsiete', '#sinpsiete') aceptado('siete'); } else { @@ -69,7 +69,7 @@ $(function () { } if (pocho != null) { - $('#pocho').val(JSON.parse(localStorage.Desp6Pocho)) + $('#pocho').val(JSON.parse(localStorage.DEETV1Pocho)) muestra1('#lpocho', '#sinpocho') aceptado('ocho'); } else { @@ -77,7 +77,7 @@ $(function () { } if (pnueve != null) { - $('#pnueve').val(JSON.parse(localStorage.Desp6Pnueve)) + $('#pnueve').val(JSON.parse(localStorage.DEETV1Pnueve)) muestra1('#lpnueve', '#sinpnueve') aceptado('nueve'); } else { @@ -85,7 +85,7 @@ $(function () { } if (pdiez != null) { - $('#pdiez').val(JSON.parse(localStorage.Desp6Pdiez)) + $('#pdiez').val(JSON.parse(localStorage.DEETV1Pdiez)) muestra1('#lpdiez', '#sinpdiez') aceptado('diez'); } else { @@ -276,52 +276,52 @@ function procesa(p) { console.log('p = ' + p) if (p === 'diez') { const pdiez = $('#pdiez').val(); - localStorage.Desp6Pdiez = JSON.stringify(pdiez); + localStorage.DEETV1Pdiez = JSON.stringify(pdiez); } if (p === 'nueve') { const pnueve = $('#pnueve').val(); - localStorage.Desp6Pnueve = JSON.stringify(pnueve); + localStorage.DEETV1Pnueve = JSON.stringify(pnueve); } if (p === 'ocho') { const pocho = $('#pocho').val(); - localStorage.Desp6Pocho = JSON.stringify(pocho); + localStorage.DEETV1Pocho = JSON.stringify(pocho); } if (p === 'siete') { const psiete = $('#psiete').val(); - localStorage.Desp6Psiete = JSON.stringify(psiete); + localStorage.DEETV1Psiete = JSON.stringify(psiete); } if (p === 'seis') { const pseis = $('#pseis').val(); - localStorage.Desp6Pseis = JSON.stringify(pseis); + localStorage.DEETV1Pseis = JSON.stringify(pseis); } if (p === 'cinco') { const pcinco = $('#pcinco').val(); - localStorage.Desp6Pcinco = JSON.stringify(pcinco); + localStorage.DEETV1Pcinco = JSON.stringify(pcinco); } if (p === 'uno') { const puno = $('#puno').val(); - localStorage.Desp6Puno = JSON.stringify(puno); + localStorage.DEETV1Puno = JSON.stringify(puno); } if (p === 'dos') { const pdos = $('#pdos').val(); - localStorage.Desp6Pdos = JSON.stringify(pdos); + localStorage.DEETV1Pdos = JSON.stringify(pdos); } if (p === 'tres') { const ptres = $('#ptres').val(); - localStorage.Desp6Ptres = JSON.stringify(ptres); + localStorage.DEETV1Ptres = JSON.stringify(ptres); } if (p === 'cuatro') { const pcuatro = $('#pcuatro').val(); - localStorage.Desp6Pcuatro = JSON.stringify(pcuatro); + localStorage.DEETV1Pcuatro = JSON.stringify(pcuatro); } } @@ -331,7 +331,7 @@ function aceptado(p) { console.log('aceptado' + p); if (p === 'diez') { - const pdiez = JSON.parse(localStorage.Desp6Pdiez); + const pdiez = JSON.parse(localStorage.DEETV1Pdiez); $('#lpdiez').addClass('fontTahu fa-2x text-info'); $('#lpdiez').html(pdiez); @@ -339,7 +339,7 @@ function aceptado(p) { } if (p === 'nueve') { - const pnueve = JSON.parse(localStorage.Desp6Pnueve); + const pnueve = JSON.parse(localStorage.DEETV1Pnueve); $('#lpnueve').addClass('fontTahu fa-2x text-info'); $('#lpnueve').html(pnueve); @@ -347,7 +347,7 @@ function aceptado(p) { } if (p === 'ocho') { - const pocho = JSON.parse(localStorage.Desp6Pocho); + const pocho = JSON.parse(localStorage.DEETV1Pocho); $('#lpocho').addClass('fontTahu fa-2x text-info'); $('#lpocho').html(pocho); @@ -355,7 +355,7 @@ function aceptado(p) { } if (p === 'seis') { - const pseis = JSON.parse(localStorage.Desp6Pseis); + const pseis = JSON.parse(localStorage.DEETV1Pseis); $('#lpseis').addClass('fontTahu fa-2x text-info'); $('#lpseis').html(pseis); @@ -363,7 +363,7 @@ function aceptado(p) { } if (p === 'siete') { - const psiete = JSON.parse(localStorage.Desp6Psiete); + const psiete = JSON.parse(localStorage.DEETV1Psiete); $('#lpsiete').addClass('fontTahu fa-2x text-info'); $('#lpsiete').html(psiete); @@ -371,7 +371,7 @@ function aceptado(p) { } if (p === 'uno') { - const puno = JSON.parse(localStorage.Desp6Puno); + const puno = JSON.parse(localStorage.DEETV1Puno); $('#lpuno').addClass('fontTahu fa-2x text-info'); $('#lpuno').html(puno); @@ -379,28 +379,28 @@ function aceptado(p) { } if (p === 'cinco') { console.log('aceptado = ' + p) - const pcinco = JSON.parse(localStorage.Desp6Pcinco); + const pcinco = JSON.parse(localStorage.DEETV1Pcinco); $('#lpcinco').addClass('fontTahu fa-2x text-info'); $('#lpcinco').html(pcinco); $('#lpcinco').show(); $('#sinpcinco').hide(); } if (p === 'dos') { - const pdos = JSON.parse(localStorage.Desp6Pdos); + const pdos = JSON.parse(localStorage.DEETV1Pdos); $('#lpdos').addClass('fontTahu fa-2x text-info'); $('#lpdos').html(pdos); $('#sinpdos').hide(); } if (p === 'tres') { - const ptres = JSON.parse(localStorage.Desp6Ptres); + const ptres = JSON.parse(localStorage.DEETV1Ptres); $('#lptres').addClass('fontTahu fa-2x text-info'); $('#lptres').html(ptres); $('#sinptres').hide(); } if (p === 'cuatro') { - const pcuatro = JSON.parse(localStorage.Desp6Pcuatro); + const pcuatro = JSON.parse(localStorage.DEETV1Pcuatro); $('#lpcuatro').addClass('fontTahu fa-2x text-info'); $('#lpcuatro').html(pcuatro); diff --git a/templates/comentario/nota.html.twig b/templates/comentario/nota.html.twig index d25044c3..1680b225 100644 --- a/templates/comentario/nota.html.twig +++ b/templates/comentario/nota.html.twig @@ -1,92 +1,116 @@

- NO TE ABANDONES! + CONFIANZA DEFINITIVA
- Serie: Despierta con Esperanza – Parte 6 + Serie: Cuando Dios está en tu vida – Parte 1


-

- Son las {{ completa_lugar('uno') | raw }} cosas que nadie {{ completa_lugar('dos') | raw }} las que conducen a - los grandes - {{ completa_lugar('tres') | raw }} que todos quieren. -

- "No se dejen engañar: nadie puede burlarse de la justicia de Dios. Siempre se cosecha lo que se siembra.” + "El Señor es mi pastor, Nada me faltará.”
- Gálatas 6:7 (NTV) + Salmos 23:1 (NBLH)

- -

- “Los que viven sólo para satisfacer los deseos de su propia naturaleza pecaminosa cosecharán, de esa naturaleza, - destrucción y muerte; pero los que viven para agradar al Espíritu, del Espíritu, cosecharán vida eterna.” -
- - Gálatas 6:8 (NTV) - -

- -

- “Así que no nos cansemos de hacer el bien. A su debido tiempo, cosecharemos numerosas bendiciones si no nos - damos por vencidos." -
- - Gálatas 6:8 (NTV) - -

-
-

- Las tres leyes de la cosecha y la siembra. -

-

- 1. Cosechas {{ completa_lugar('cuatro') | raw }} que sembrás. + CUANDO DIOS ESTA EN TU VIDA TENÉS UNA {{ completa_lugar('uno') | raw }}

+
+
+
+
-

- "Han sembrado maldad; por eso ahora cosechan violencia y comen el fruto de sus mentiras." -
- - Oseas 10:13 (TLA) - -

+
Lo que los pastores hacen.
+
    +
  1. Un pastor {{ completa_lugar('dos') | raw }}.
  2. +
  3. Un pastor {{ completa_lugar('tres') | raw }}.
  4. +
  5. Un pastor {{ completa_lugar('cuatro') | raw }}.
  6. +
  7. Un pastor {{ completa_lugar('cinco')| raw }}.
  8. +
-
- Reto: Elegí solo un área de tu vida en la que querés ser consistente para el cambio. -
+

+ "Como un pastor que cuida su rebaño" +
+ + Isaías 40:11 (NVI) + +

-
-

- 2. Cosechas {{ completa_lugar('cinco') | raw }} de lo que sembrás. -

-

- "Las semillas que cayeron en la buena tierra representan a los que oyen y aceptan la palabra de Dios, ¡y - producen una cosecha treinta, sesenta y hasta cien veces más numerosa de lo que se había sembrado!»." -
- - Marcos 4:20 (NTV) - -

-
- Acciones (o cambios) pequeñas e inteligentes + consistencia + tiempo = diferencia radical -
-
-

- 3. Cosechas {{ completa_lugar('seis') | raw }} de sembrar. -

+

+ "Mi Dios suplirá todo lo que les falte, conforme a sus riquezas en gloria en Cristo Jesús." +
+ + Filipenses 4:19 (RVC) + +

+
+
+ ¿Cómo puedo dejar que Dios sea mi Pastor? +
+ + Acepto a Jesús como {{ completa_lugar('seis') | raw }} + -

- “No nos cansemos de hacer el bien. A su debido tiempo, cosecharemos numerosas bendiciones si no nos damos por - vencidos." -
- - Gálatas 6:8 (NTV) - -

+

+ "Yo soy el buen pastor… mis ovejas… me conocen a mí….. oyen mi voz…, y me siguen." +
+ + Juan 10:14, 27 (NVI) + +

+ + + Comienzo a {{ completa_lugar('siete') | raw}} por todo + + +

+ "No se preocupen por nada; en cambio, oren por todo. Díganle a Dios lo que necesitan y denle gracias por + todo lo que él ha hecho." +
+ + Filipenses 4:6 (NTV) + +

+

+ "Depositen en él toda ansiedad, porque él cuida de ustedes." +
+ + 1 Pedro 5:7 (NVI) + +

+ + + Vivo un {{ completa_lugar('ocho') | raw}} a la vez + + +

+ "No se preocupen por el mañana, porque el día de mañana traerá sus propias preocupaciones. + Los problemas del día de hoy son suficientes por hoy." +
+ + Mateo 6:34 (NTV). + +

+ +

+ "El pan nuestro de cada día, dánoslo hoy." +
+ + Mateo 6:11 (RVC) + +

+

+ "Recuerda que tu Padre celestial sabe lo que necesitas, y te lo proporcionará si le das el primer + lugar en tu vida." +
+ + Mateo 6:32-33 (BAD) + +

+

{#
#} From 17fa9c984566b142565244ea526318f0945f967d Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Mon, 26 Apr 2021 21:01:04 -0300 Subject: [PATCH 006/197] Wizard, css and js --- composer.json | 3 +- composer.lock | 763 ++++----- public/asistente/css/bootstrap.min.css | 5 + public/asistente/css/demo.css | 656 ++++++++ .../css/material-bootstrap-wizard.css | 1397 +++++++++++++++++ public/asistente/js/bootstrap.min.js | 7 + public/asistente/js/jquery-2.2.4.min.js | 4 + public/asistente/js/jquery.bootstrap.js | 290 ++++ public/asistente/js/jquery.validate.min.js | 4 + .../asistente/js/material-bootstrap-wizard.js | 257 +++ src/Controller/PrincipalController.php | 52 + src/Entity/Traits/ImageTrait.php | 2 +- symfony.lock | 3 + templates/admin/list_principal.html.twig | 4 + templates/principal/index.html.twig | 3 + templates/principal/newAssistant.html.twig | 36 + 16 files changed, 3124 insertions(+), 362 deletions(-) create mode 100644 public/asistente/css/bootstrap.min.css create mode 100644 public/asistente/css/demo.css create mode 100644 public/asistente/css/material-bootstrap-wizard.css create mode 100644 public/asistente/js/bootstrap.min.js create mode 100644 public/asistente/js/jquery-2.2.4.min.js create mode 100644 public/asistente/js/jquery.bootstrap.js create mode 100644 public/asistente/js/jquery.validate.min.js create mode 100644 public/asistente/js/material-bootstrap-wizard.js create mode 100644 templates/principal/newAssistant.html.twig diff --git a/composer.json b/composer.json index ea20f4fc..5fefedf7 100755 --- a/composer.json +++ b/composer.json @@ -1,6 +1,8 @@ { "type": "project", "license": "MIT", + "name": "germdz/alamedacms", + "description": "CMS Sencillo con reservas por email, y manejo de usuarios", "require": { "php": "^7.1.3", "ext-ctype": "*", @@ -30,7 +32,6 @@ "symfony/intl": "4.4.*", "symfony/mailer": "4.4.*", "symfony/orm-pack": "^1.0", - "symfony/polyfill-iconv": "^1.22", "symfony/polyfill-php72": "^1.15", "symfony/security-bundle": "4.4.*", "symfony/serializer-pack": "^1.0", diff --git a/composer.lock b/composer.lock index d5fae775..186df8f9 100755 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "38dade91db60b04873fc2a87b35c3794", + "content-hash": "6f150dc6d5c92734ec33dd800c45b92c", "packages": [ { "name": "antishov/doctrine-extensions-bundle", @@ -434,40 +434,39 @@ }, { "name": "doctrine/cache", - "version": "1.10.2", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "13e3381b25847283a91948d04640543941309727" + "reference": "a9c1b59eba5a08ca2770a76eddb88922f504e8e0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727", - "reference": "13e3381b25847283a91948d04640543941309727", + "url": "https://api.github.com/repos/doctrine/cache/zipball/a9c1b59eba5a08ca2770a76eddb88922f504e8e0", + "reference": "a9c1b59eba5a08ca2770a76eddb88922f504e8e0", "shasum": "" }, "require": { "php": "~7.1 || ^8.0" }, "conflict": { - "doctrine/common": ">2.2,<2.4" + "doctrine/common": ">2.2,<2.4", + "psr/cache": ">=3" }, "require-dev": { "alcaeus/mongo-php-adapter": "^1.1", - "doctrine/coding-standard": "^6.0", + "cache/integration-tests": "dev-master", + "doctrine/coding-standard": "^8.0", "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^7.0", - "predis/predis": "~1.0" + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0", + "predis/predis": "~1.0", + "psr/cache": "^1.0 || ^2.0", + "symfony/cache": "^4.4 || ^5.2" }, "suggest": { "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" @@ -514,7 +513,7 @@ ], "support": { "issues": "https://github.com/doctrine/cache/issues", - "source": "https://github.com/doctrine/cache/tree/1.10.x" + "source": "https://github.com/doctrine/cache/tree/1.11.0" }, "funding": [ { @@ -530,7 +529,7 @@ "type": "tidelift" } ], - "time": "2020-07-07T18:54:01+00:00" + "time": "2021-04-13T14:46:17+00:00" }, { "name": "doctrine/collections", @@ -704,32 +703,33 @@ }, { "name": "doctrine/dbal", - "version": "2.12.1", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "adce7a954a1c2f14f85e94aed90c8489af204086" + "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/adce7a954a1c2f14f85e94aed90c8489af204086", - "reference": "adce7a954a1c2f14f85e94aed90c8489af204086", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9", + "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9", "shasum": "" }, "require": { "doctrine/cache": "^1.0", + "doctrine/deprecations": "^0.5.3", "doctrine/event-manager": "^1.0", "ext-pdo": "*", - "php": "^7.3 || ^8" + "php": "^7.1 || ^8" }, "require-dev": { - "doctrine/coding-standard": "^8.1", - "jetbrains/phpstorm-stubs": "^2019.1", - "phpstan/phpstan": "^0.12.40", - "phpunit/phpunit": "^9.4", - "psalm/plugin-phpunit": "^0.10.0", + "doctrine/coding-standard": "8.2.0", + "jetbrains/phpstorm-stubs": "2020.2", + "phpstan/phpstan": "0.12.81", + "phpunit/phpunit": "^7.5.20|^8.5|9.5.0", + "squizlabs/php_codesniffer": "3.6.0", "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", - "vimeo/psalm": "^3.17.2" + "vimeo/psalm": "4.6.4" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -738,11 +738,6 @@ "bin/doctrine-dbal" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.0.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\DBAL\\": "lib/Doctrine/DBAL" @@ -795,7 +790,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/2.12.1" + "source": "https://github.com/doctrine/dbal/tree/2.13.1" }, "funding": [ { @@ -811,20 +806,63 @@ "type": "tidelift" } ], - "time": "2020-11-14T20:26:58+00:00" + "time": "2021-04-17T17:30:19+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "v0.5.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "9504165960a1f83cc1480e2be1dd0a0478561314" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314", + "reference": "9504165960a1f83cc1480e2be1dd0a0478561314", + "shasum": "" + }, + "require": { + "php": "^7.1|^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0|^7.0|^8.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0", + "psr/log": "^1.0" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/v0.5.3" + }, + "time": "2021-03-21T12:59:47+00:00" }, { "name": "doctrine/doctrine-bundle", - "version": "2.2.3", + "version": "2.3.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "015fdd490074d4daa891e2d1df998dc35ba54924" + "reference": "a08bc3b4d8567cdff05e89b272ba1e06e9d71c21" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/015fdd490074d4daa891e2d1df998dc35ba54924", - "reference": "015fdd490074d4daa891e2d1df998dc35ba54924", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/a08bc3b4d8567cdff05e89b272ba1e06e9d71c21", + "reference": "a08bc3b4d8567cdff05e89b272ba1e06e9d71c21", "shasum": "" }, "require": { @@ -836,7 +874,7 @@ "symfony/config": "^4.3.3|^5.0", "symfony/console": "^3.4.30|^4.3.3|^5.0", "symfony/dependency-injection": "^4.3.3|^5.0", - "symfony/doctrine-bridge": "^4.3.7|^5.0", + "symfony/doctrine-bridge": "^4.4.7|^5.0", "symfony/framework-bundle": "^3.4.30|^4.3.3|^5.0", "symfony/service-contracts": "^1.1.1|^2.0" }, @@ -849,25 +887,25 @@ "doctrine/orm": "^2.6", "friendsofphp/proxy-manager-lts": "^1.0", "phpunit/phpunit": "^7.5 || ^8.0 || ^9.3", - "symfony/phpunit-bridge": "^4.2", + "psalm/plugin-phpunit": "^0.15.1", + "psalm/plugin-symfony": "^2.2.4", + "symfony/phpunit-bridge": "^5.2", "symfony/property-info": "^4.3.3|^5.0", "symfony/proxy-manager-bridge": "^3.4|^4.3.3|^5.0", + "symfony/security-bundle": "^4.4|5.0", "symfony/twig-bridge": "^3.4.30|^4.3.3|^5.0", "symfony/validator": "^3.4.30|^4.3.3|^5.0", "symfony/web-profiler-bundle": "^3.4.30|^4.3.3|^5.0", "symfony/yaml": "^3.4.30|^4.3.3|^5.0", - "twig/twig": "^1.34|^2.12|^3.0" + "twig/twig": "^1.34|^2.12|^3.0", + "vimeo/psalm": "^4.7" }, "suggest": { "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.", + "ext-pdo": "*", "symfony/web-profiler-bundle": "To use the data collector." }, "type": "symfony-bundle", - "extra": { - "branch-alias": { - "dev-master": "2.3.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Bundle\\DoctrineBundle\\": "" @@ -905,7 +943,7 @@ ], "support": { "issues": "https://github.com/doctrine/DoctrineBundle/issues", - "source": "https://github.com/doctrine/DoctrineBundle/tree/2.2.3" + "source": "https://github.com/doctrine/DoctrineBundle/tree/2.3.1" }, "funding": [ { @@ -921,7 +959,7 @@ "type": "tidelift" } ], - "time": "2021-01-19T20:29:53+00:00" + "time": "2021-04-05T14:21:02+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -1105,26 +1143,26 @@ }, { "name": "doctrine/inflector", - "version": "1.4.3", + "version": "1.4.4", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c" + "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c", - "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9", + "reference": "4bd5c1cdfcd00e9e2d8c484f79150f67e5d355d9", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0" + "php": "^7.1 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "^7.0", - "phpstan/phpstan": "^0.11", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-strict-rules": "^0.11", + "doctrine/coding-standard": "^8.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpstan/phpstan-strict-rules": "^0.12", "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "type": "library", @@ -1181,7 +1219,7 @@ ], "support": { "issues": "https://github.com/doctrine/inflector/issues", - "source": "https://github.com/doctrine/inflector/tree/1.4.x" + "source": "https://github.com/doctrine/inflector/tree/1.4.4" }, "funding": [ { @@ -1197,7 +1235,7 @@ "type": "tidelift" } ], - "time": "2020-05-29T07:19:59+00:00" + "time": "2021-04-16T17:34:40+00:00" }, { "name": "doctrine/instantiator", @@ -1350,16 +1388,16 @@ }, { "name": "doctrine/migrations", - "version": "2.3.2", + "version": "2.3.3", "source": { "type": "git", "url": "https://github.com/doctrine/migrations.git", - "reference": "39520699043d9bfaaebeb81fa026bf2b02a8f735" + "reference": "c4c46f7064f6e7795bd7f26549579918b46790fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/migrations/zipball/39520699043d9bfaaebeb81fa026bf2b02a8f735", - "reference": "39520699043d9bfaaebeb81fa026bf2b02a8f735", + "url": "https://api.github.com/repos/doctrine/migrations/zipball/c4c46f7064f6e7795bd7f26549579918b46790fa", + "reference": "c4c46f7064f6e7795bd7f26549579918b46790fa", "shasum": "" }, "require": { @@ -1430,7 +1468,7 @@ ], "support": { "issues": "https://github.com/doctrine/migrations/issues", - "source": "https://github.com/doctrine/migrations/tree/2.3.2" + "source": "https://github.com/doctrine/migrations/tree/2.3.3" }, "funding": [ { @@ -1446,7 +1484,7 @@ "type": "tidelift" } ], - "time": "2020-12-23T14:06:04+00:00" + "time": "2021-03-14T10:22:48+00:00" }, { "name": "doctrine/orm", @@ -1784,27 +1822,27 @@ }, { "name": "egulias/email-validator", - "version": "2.1.25", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4" + "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4", - "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/c81f18a3efb941d8c4d2e025f6183b5c6d697307", + "reference": "c81f18a3efb941d8c4d2e025f6183b5c6d697307", "shasum": "" }, "require": { - "doctrine/lexer": "^1.0.1", - "php": ">=5.5", - "symfony/polyfill-intl-idn": "^1.10" + "doctrine/lexer": "^1.2", + "php": ">=7.2", + "symfony/polyfill-intl-idn": "^1.15" }, "require-dev": { - "dominicsayers/isemail": "^3.0.7", - "phpunit/phpunit": "^4.8.36|^7.5.15", - "satooshi/php-coveralls": "^1.0.1" + "php-coveralls/php-coveralls": "^2.2", + "phpunit/phpunit": "^8.5.8|^9.3.3", + "vimeo/psalm": "^4" }, "suggest": { "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" @@ -1812,7 +1850,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.1.x-dev" + "dev-master": "3.0.x-dev" } }, "autoload": { @@ -1840,7 +1878,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/2.1.25" + "source": "https://github.com/egulias/EmailValidator/tree/3.1.1" }, "funding": [ { @@ -1848,20 +1886,20 @@ "type": "github" } ], - "time": "2020-12-29T14:50:06+00:00" + "time": "2021-04-01T18:37:14+00:00" }, { "name": "endroid/installer", - "version": "1.3.2", + "version": "1.3.3", "source": { "type": "git", "url": "https://github.com/endroid/installer.git", - "reference": "e98dedd5bcf7532ba6f9fcc95cc480fa9baa51d4" + "reference": "04f900858442215b799af81866719922cce3d04a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/endroid/installer/zipball/e98dedd5bcf7532ba6f9fcc95cc480fa9baa51d4", - "reference": "e98dedd5bcf7532ba6f9fcc95cc480fa9baa51d4", + "url": "https://api.github.com/repos/endroid/installer/zipball/04f900858442215b799af81866719922cce3d04a", + "reference": "04f900858442215b799af81866719922cce3d04a", "shasum": "" }, "require": { @@ -1897,7 +1935,7 @@ "description": "Composer plugin for installing configuration files", "support": { "issues": "https://github.com/endroid/installer/issues", - "source": "https://github.com/endroid/installer/tree/1.3.2" + "source": "https://github.com/endroid/installer/tree/1.3.3" }, "funding": [ { @@ -1905,32 +1943,32 @@ "type": "github" } ], - "time": "2020-12-05T12:15:35+00:00" + "time": "2021-03-21T11:42:34+00:00" }, { "name": "endroid/qr-code", - "version": "3.9.6", + "version": "3.9.7", "source": { "type": "git", "url": "https://github.com/endroid/qr-code.git", - "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f" + "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/endroid/qr-code/zipball/9cdd4f5d609bfc8811ca4a62b4d23eb16976242f", - "reference": "9cdd4f5d609bfc8811ca4a62b4d23eb16976242f", + "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6", + "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6", "shasum": "" }, "require": { "bacon/bacon-qr-code": "^2.0", - "khanamiryan/qrcode-detector-decoder": "^1.0.2", + "khanamiryan/qrcode-detector-decoder": "^1.0.5", "myclabs/php-enum": "^1.5", - "php": ">=7.2", + "php": "^7.3||^8.0", "symfony/options-resolver": "^3.4||^4.4||^5.0", "symfony/property-access": "^3.4||^4.4||^5.0" }, "require-dev": { - "endroid/quality": "^1.3.7", + "endroid/quality": "^1.5.2", "setasign/fpdf": "^1.8" }, "suggest": { @@ -1972,7 +2010,7 @@ ], "support": { "issues": "https://github.com/endroid/qr-code/issues", - "source": "https://github.com/endroid/qr-code/tree/3.9.6" + "source": "https://github.com/endroid/qr-code/tree/3.9.7" }, "funding": [ { @@ -1980,7 +2018,7 @@ "type": "github" } ], - "time": "2020-11-27T14:30:38+00:00" + "time": "2021-04-20T19:10:54+00:00" }, { "name": "endroid/qr-code-bundle", @@ -2423,23 +2461,23 @@ }, { "name": "khanamiryan/qrcode-detector-decoder", - "version": "1.0.4", + "version": "1.0.5", "source": { "type": "git", "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git", - "reference": "07fceefb79d895e858e52921afb9c1433d2f3d5e" + "reference": "6c8c23003a87ecd7458807cd49372b1fb590d1f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/07fceefb79d895e858e52921afb9c1433d2f3d5e", - "reference": "07fceefb79d895e858e52921afb9c1433d2f3d5e", + "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/6c8c23003a87ecd7458807cd49372b1fb590d1f5", + "reference": "6c8c23003a87ecd7458807cd49372b1fb590d1f5", "shasum": "" }, "require": { "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0" }, "type": "library", "autoload": { @@ -2471,22 +2509,22 @@ ], "support": { "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues", - "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.4" + "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/1.0.5" }, - "time": "2020-11-29T18:50:26+00:00" + "time": "2021-04-20T18:34:35+00:00" }, { "name": "knplabs/knp-components", - "version": "v3.0.1", + "version": "v3.0.2", "source": { "type": "git", "url": "https://github.com/KnpLabs/knp-components.git", - "reference": "b235cf756c6a72d1d378453c58ebd7fc2e8d911d" + "reference": "7db2eb032591ded5809455af8a4dfdfda079041c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/KnpLabs/knp-components/zipball/b235cf756c6a72d1d378453c58ebd7fc2e8d911d", - "reference": "b235cf756c6a72d1d378453c58ebd7fc2e8d911d", + "url": "https://api.github.com/repos/KnpLabs/knp-components/zipball/7db2eb032591ded5809455af8a4dfdfda079041c", + "reference": "7db2eb032591ded5809455af8a4dfdfda079041c", "shasum": "" }, "require": { @@ -2551,9 +2589,9 @@ ], "support": { "issues": "https://github.com/KnpLabs/knp-components/issues", - "source": "https://github.com/KnpLabs/knp-components/tree/v3.0.1" + "source": "https://github.com/KnpLabs/knp-components/tree/v3.0.2" }, - "time": "2021-03-05T08:30:55+00:00" + "time": "2021-03-16T13:52:01+00:00" }, { "name": "knplabs/knp-markdown-bundle", @@ -3117,16 +3155,16 @@ }, { "name": "liip/imagine-bundle", - "version": "2.5.0", + "version": "2.6.0", "source": { "type": "git", "url": "https://github.com/liip/LiipImagineBundle.git", - "reference": "a04aa405272a9aff3c9e25dd015a1073f9f291a6" + "reference": "afa4193c7fde027426ebb19e73878cd026438bbd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/liip/LiipImagineBundle/zipball/a04aa405272a9aff3c9e25dd015a1073f9f291a6", - "reference": "a04aa405272a9aff3c9e25dd015a1073f9f291a6", + "url": "https://api.github.com/repos/liip/LiipImagineBundle/zipball/afa4193c7fde027426ebb19e73878cd026438bbd", + "reference": "afa4193c7fde027426ebb19e73878cd026438bbd", "shasum": "" }, "require": { @@ -3147,7 +3185,7 @@ "doctrine/persistence": "^1.3|^2.0", "enqueue/enqueue-bundle": "^0.9|^0.10", "ext-gd": "*", - "league/flysystem": "^1.0", + "league/flysystem": "^1.0|^2.0", "psr/log": "^1.0", "symfony/browser-kit": "^3.4|^4.3|^5.0", "symfony/console": "^3.4|^4.3|^5.0", @@ -3207,9 +3245,9 @@ ], "support": { "issues": "https://github.com/liip/LiipImagineBundle/issues", - "source": "https://github.com/liip/LiipImagineBundle/tree/2.5.0" + "source": "https://github.com/liip/LiipImagineBundle/tree/2.6.0" }, - "time": "2021-02-08T15:10:40+00:00" + "time": "2021-03-31T06:42:04+00:00" }, { "name": "maennchen/zipstream-php", @@ -4691,16 +4729,16 @@ }, { "name": "symfony/cache", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "8fa248b0105d962ac279ae973dee2a32ae009dee" + "reference": "b7ff54be3f3eb1ce09643692f0c309b1b27bc992" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/8fa248b0105d962ac279ae973dee2a32ae009dee", - "reference": "8fa248b0105d962ac279ae973dee2a32ae009dee", + "url": "https://api.github.com/repos/symfony/cache/zipball/b7ff54be3f3eb1ce09643692f0c309b1b27bc992", + "reference": "b7ff54be3f3eb1ce09643692f0c309b1b27bc992", "shasum": "" }, "require": { @@ -4764,7 +4802,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v4.4.20" + "source": "https://github.com/symfony/cache/tree/v4.4.21" }, "funding": [ { @@ -4780,25 +4818,25 @@ "type": "tidelift" } ], - "time": "2021-02-25T23:52:11+00:00" + "time": "2021-03-14T19:28:18+00:00" }, { "name": "symfony/cache-contracts", - "version": "v2.2.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/cache-contracts.git", - "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb" + "reference": "c0446463729b89dd4fa62e9aeecc80287323615d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/8034ca0b61d4dd967f3698aaa1da2507b631d0cb", - "reference": "8034ca0b61d4dd967f3698aaa1da2507b631d0cb", + "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/c0446463729b89dd4fa62e9aeecc80287323615d", + "reference": "c0446463729b89dd4fa62e9aeecc80287323615d", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/cache": "^1.0" + "psr/cache": "^1.0|^2.0|^3.0" }, "suggest": { "symfony/cache-implementation": "" @@ -4806,7 +4844,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -4843,7 +4881,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/cache-contracts/tree/v2.2.0" + "source": "https://github.com/symfony/cache-contracts/tree/v2.4.0" }, "funding": [ { @@ -4859,7 +4897,7 @@ "type": "tidelift" } ], - "time": "2020-09-07T11:33:47+00:00" + "time": "2021-03-23T23:28:01+00:00" }, { "name": "symfony/config", @@ -4939,16 +4977,16 @@ }, { "name": "symfony/console", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "c98349bda966c70d6c08b4cd8658377c94166492" + "reference": "1ba4560dbbb9fcf5ae28b61f71f49c678086cf23" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/c98349bda966c70d6c08b4cd8658377c94166492", - "reference": "c98349bda966c70d6c08b4cd8658377c94166492", + "url": "https://api.github.com/repos/symfony/console/zipball/1ba4560dbbb9fcf5ae28b61f71f49c678086cf23", + "reference": "1ba4560dbbb9fcf5ae28b61f71f49c678086cf23", "shasum": "" }, "require": { @@ -5008,7 +5046,7 @@ "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/console/tree/v4.4.20" + "source": "https://github.com/symfony/console/tree/v4.4.21" }, "funding": [ { @@ -5024,7 +5062,7 @@ "type": "tidelift" } ], - "time": "2021-02-22T18:44:15+00:00" + "time": "2021-03-26T09:23:24+00:00" }, { "name": "symfony/css-selector", @@ -5162,16 +5200,16 @@ }, { "name": "symfony/dependency-injection", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "4b3e341ce4436df9a9abc2914cb120b4d41796d7" + "reference": "b5f97557faa48ead4671bc311cfca423d476e93e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/4b3e341ce4436df9a9abc2914cb120b4d41796d7", - "reference": "4b3e341ce4436df9a9abc2914cb120b4d41796d7", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/b5f97557faa48ead4671bc311cfca423d476e93e", + "reference": "b5f97557faa48ead4671bc311cfca423d476e93e", "shasum": "" }, "require": { @@ -5227,7 +5265,7 @@ "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v4.4.20" + "source": "https://github.com/symfony/dependency-injection/tree/v4.4.21" }, "funding": [ { @@ -5243,20 +5281,20 @@ "type": "tidelift" } ], - "time": "2021-03-03T12:11:09+00:00" + "time": "2021-03-05T18:16:26+00:00" }, { "name": "symfony/doctrine-bridge", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/doctrine-bridge.git", - "reference": "4ac8549aa5edb33f650a7c0cc293f233b6fe9f1f" + "reference": "e643bddb38277b4a1c2973d1489768c6e6c0db80" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/4ac8549aa5edb33f650a7c0cc293f233b6fe9f1f", - "reference": "4ac8549aa5edb33f650a7c0cc293f233b6fe9f1f", + "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/e643bddb38277b4a1c2973d1489768c6e6c0db80", + "reference": "e643bddb38277b4a1c2973d1489768c6e6c0db80", "shasum": "" }, "require": { @@ -5333,7 +5371,7 @@ "description": "Provides integration for Doctrine with various Symfony components", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/doctrine-bridge/tree/v4.4.20" + "source": "https://github.com/symfony/doctrine-bridge/tree/v4.4.21" }, "funding": [ { @@ -5349,7 +5387,7 @@ "type": "tidelift" } ], - "time": "2021-02-18T22:27:55+00:00" + "time": "2021-03-09T16:20:30+00:00" }, { "name": "symfony/dotenv", @@ -5422,16 +5460,16 @@ }, { "name": "symfony/error-handler", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "a191550d46b73a527b9d244f185fef439d41cf15" + "reference": "48e81a375525872e788c2418430f54150d935810" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/a191550d46b73a527b9d244f185fef439d41cf15", - "reference": "a191550d46b73a527b9d244f185fef439d41cf15", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/48e81a375525872e788c2418430f54150d935810", + "reference": "48e81a375525872e788c2418430f54150d935810", "shasum": "" }, "require": { @@ -5471,7 +5509,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v4.4.20" + "source": "https://github.com/symfony/error-handler/tree/v4.4.21" }, "funding": [ { @@ -5487,7 +5525,7 @@ "type": "tidelift" } ], - "time": "2021-02-11T08:19:35+00:00" + "time": "2021-03-08T10:28:40+00:00" }, { "name": "symfony/event-dispatcher", @@ -5716,16 +5754,16 @@ }, { "name": "symfony/filesystem", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "715e7a531bdae109a828f9e91629e5b3b2926beb" + "reference": "940826c465be2690c9fae91b2793481e5cbd6834" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/715e7a531bdae109a828f9e91629e5b3b2926beb", - "reference": "715e7a531bdae109a828f9e91629e5b3b2926beb", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/940826c465be2690c9fae91b2793481e5cbd6834", + "reference": "940826c465be2690c9fae91b2793481e5cbd6834", "shasum": "" }, "require": { @@ -5758,7 +5796,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.20" + "source": "https://github.com/symfony/filesystem/tree/v4.4.21" }, "funding": [ { @@ -5774,7 +5812,7 @@ "type": "tidelift" } ], - "time": "2021-02-11T19:34:41+00:00" + "time": "2021-03-28T09:59:32+00:00" }, { "name": "symfony/finder", @@ -5907,16 +5945,16 @@ }, { "name": "symfony/form", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/form.git", - "reference": "25a65942f1245f0e85510ddeb62ad84dacadc338" + "reference": "9ced5b787916fb8a64819d63a4bcf7ddda46791c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/form/zipball/25a65942f1245f0e85510ddeb62ad84dacadc338", - "reference": "25a65942f1245f0e85510ddeb62ad84dacadc338", + "url": "https://api.github.com/repos/symfony/form/zipball/9ced5b787916fb8a64819d63a4bcf7ddda46791c", + "reference": "9ced5b787916fb8a64819d63a4bcf7ddda46791c", "shasum": "" }, "require": { @@ -5984,7 +6022,7 @@ "description": "Allows to easily create, process and reuse HTML forms", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/form/tree/v4.4.20" + "source": "https://github.com/symfony/form/tree/v4.4.21" }, "funding": [ { @@ -6000,20 +6038,20 @@ "type": "tidelift" } ], - "time": "2021-03-03T17:05:48+00:00" + "time": "2021-03-28T08:05:52+00:00" }, { "name": "symfony/framework-bundle", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/framework-bundle.git", - "reference": "5b5aefc0542e2b42f6f3b9b90d6ef2ff75fee19a" + "reference": "fc72fbb0f9a69d2eb5d94cc8c231176265db680a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/5b5aefc0542e2b42f6f3b9b90d6ef2ff75fee19a", - "reference": "5b5aefc0542e2b42f6f3b9b90d6ef2ff75fee19a", + "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/fc72fbb0f9a69d2eb5d94cc8c231176265db680a", + "reference": "fc72fbb0f9a69d2eb5d94cc8c231176265db680a", "shasum": "" }, "require": { @@ -6037,7 +6075,7 @@ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", "symfony/asset": "<3.4", "symfony/browser-kit": "<4.3", - "symfony/console": "<4.3", + "symfony/console": "<4.4.21", "symfony/dom-crawler": "<4.3", "symfony/dotenv": "<4.3.6", "symfony/form": "<4.3.5", @@ -6065,7 +6103,7 @@ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/asset": "^3.4|^4.0|^5.0", "symfony/browser-kit": "^4.3|^5.0", - "symfony/console": "^4.3.4|^5.0", + "symfony/console": "^4.4.21|^5.0", "symfony/css-selector": "^3.4|^4.0|^5.0", "symfony/dom-crawler": "^4.3|^5.0", "symfony/dotenv": "^4.3.6|^5.0", @@ -6129,7 +6167,7 @@ "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/framework-bundle/tree/v4.4.20" + "source": "https://github.com/symfony/framework-bundle/tree/v4.4.21" }, "funding": [ { @@ -6145,20 +6183,20 @@ "type": "tidelift" } ], - "time": "2021-02-22T15:36:50+00:00" + "time": "2021-03-18T09:22:03+00:00" }, { "name": "symfony/http-client-contracts", - "version": "v2.3.1", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/http-client-contracts.git", - "reference": "41db680a15018f9c1d4b23516059633ce280ca33" + "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/41db680a15018f9c1d4b23516059633ce280ca33", - "reference": "41db680a15018f9c1d4b23516059633ce280ca33", + "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4", + "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4", "shasum": "" }, "require": { @@ -6169,9 +6207,8 @@ }, "type": "library", "extra": { - "branch-version": "2.3", "branch-alias": { - "dev-main": "2.3-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -6208,7 +6245,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/http-client-contracts/tree/v2.3.1" + "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0" }, "funding": [ { @@ -6224,7 +6261,7 @@ "type": "tidelift" } ], - "time": "2020-10-14T17:08:19+00:00" + "time": "2021-04-11T23:07:08+00:00" }, { "name": "symfony/http-foundation", @@ -6296,16 +6333,16 @@ }, { "name": "symfony/http-kernel", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "4f36548465489f293b05406f1770492f6efb8adb" + "reference": "0248214120d00c5f44f1cd5d9ad65f0b38459333" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/4f36548465489f293b05406f1770492f6efb8adb", - "reference": "4f36548465489f293b05406f1770492f6efb8adb", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/0248214120d00c5f44f1cd5d9ad65f0b38459333", + "reference": "0248214120d00c5f44f1cd5d9ad65f0b38459333", "shasum": "" }, "require": { @@ -6380,7 +6417,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v4.4.20" + "source": "https://github.com/symfony/http-kernel/tree/v4.4.21" }, "funding": [ { @@ -6396,20 +6433,20 @@ "type": "tidelift" } ], - "time": "2021-03-04T18:00:27+00:00" + "time": "2021-03-29T05:11:04+00:00" }, { "name": "symfony/inflector", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/inflector.git", - "reference": "a8691d012fb449ba49363a3b3e3e743f354f7d56" + "reference": "9455097d23776a4a10c817d903271bc1ce7596ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/inflector/zipball/a8691d012fb449ba49363a3b3e3e743f354f7d56", - "reference": "a8691d012fb449ba49363a3b3e3e743f354f7d56", + "url": "https://api.github.com/repos/symfony/inflector/zipball/9455097d23776a4a10c817d903271bc1ce7596ff", + "reference": "9455097d23776a4a10c817d903271bc1ce7596ff", "shasum": "" }, "require": { @@ -6450,7 +6487,7 @@ "words" ], "support": { - "source": "https://github.com/symfony/inflector/tree/v4.4.20" + "source": "https://github.com/symfony/inflector/tree/v4.4.21" }, "funding": [ { @@ -6466,7 +6503,7 @@ "type": "tidelift" } ], - "time": "2021-01-24T23:44:26+00:00" + "time": "2021-03-17T16:19:54+00:00" }, { "name": "symfony/intl", @@ -6557,24 +6594,24 @@ }, { "name": "symfony/mailer", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "df3209aaa4008b9bb851410ab31be12d9b744773" + "reference": "76b64a4105634d89e1f7ee7f75851740fe8fe66b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/df3209aaa4008b9bb851410ab31be12d9b744773", - "reference": "df3209aaa4008b9bb851410ab31be12d9b744773", + "url": "https://api.github.com/repos/symfony/mailer/zipball/76b64a4105634d89e1f7ee7f75851740fe8fe66b", + "reference": "76b64a4105634d89e1f7ee7f75851740fe8fe66b", "shasum": "" }, "require": { - "egulias/email-validator": "^2.1.10", + "egulias/email-validator": "^2.1.10|^3", "php": ">=7.1.3", "psr/log": "~1.0", "symfony/event-dispatcher": "^4.3", - "symfony/mime": "^4.4|^5.0", + "symfony/mime": "^4.4.21|^5.2.6", "symfony/service-contracts": "^1.1|^2" }, "conflict": { @@ -6617,7 +6654,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v4.4.20" + "source": "https://github.com/symfony/mailer/tree/v4.4.21" }, "funding": [ { @@ -6633,20 +6670,20 @@ "type": "tidelift" } ], - "time": "2021-02-22T15:36:50+00:00" + "time": "2021-03-12T11:23:44+00:00" }, { "name": "symfony/mime", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "6db092f97cd6eee8d4b2026e3a8fa3f576b396d4" + "reference": "50d7a1d569edad1f1321c59123c4c322c8daff7c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/6db092f97cd6eee8d4b2026e3a8fa3f576b396d4", - "reference": "6db092f97cd6eee8d4b2026e3a8fa3f576b396d4", + "url": "https://api.github.com/repos/symfony/mime/zipball/50d7a1d569edad1f1321c59123c4c322c8daff7c", + "reference": "50d7a1d569edad1f1321c59123c4c322c8daff7c", "shasum": "" }, "require": { @@ -6655,10 +6692,11 @@ "symfony/polyfill-mbstring": "^1.0" }, "conflict": { + "egulias/email-validator": "~3.0.0", "symfony/mailer": "<4.4" }, "require-dev": { - "egulias/email-validator": "^2.1.10", + "egulias/email-validator": "^2.1.10|^3.1", "symfony/dependency-injection": "^3.4|^4.1|^5.0" }, "type": "library", @@ -6691,7 +6729,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v4.4.20" + "source": "https://github.com/symfony/mime/tree/v4.4.21" }, "funding": [ { @@ -6707,7 +6745,7 @@ "type": "tidelift" } ], - "time": "2021-02-14T12:29:41+00:00" + "time": "2021-03-12T08:47:38+00:00" }, { "name": "symfony/options-resolver", @@ -7797,16 +7835,16 @@ }, { "name": "symfony/security-bundle", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/security-bundle.git", - "reference": "55a84ceb5f68e2dc836708e51f1ce1e5f7cecb7b" + "reference": "607dcdb60ef74d63fbeb86549c52075f040ae4cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/security-bundle/zipball/55a84ceb5f68e2dc836708e51f1ce1e5f7cecb7b", - "reference": "55a84ceb5f68e2dc836708e51f1ce1e5f7cecb7b", + "url": "https://api.github.com/repos/symfony/security-bundle/zipball/607dcdb60ef74d63fbeb86549c52075f040ae4cc", + "reference": "607dcdb60ef74d63fbeb86549c52075f040ae4cc", "shasum": "" }, "require": { @@ -7872,7 +7910,7 @@ "description": "Provides a tight integration of the Security component into the Symfony full-stack framework", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/security-bundle/tree/v4.4.20" + "source": "https://github.com/symfony/security-bundle/tree/v4.4.21" }, "funding": [ { @@ -7888,20 +7926,20 @@ "type": "tidelift" } ], - "time": "2021-02-04T11:13:36+00:00" + "time": "2021-03-22T08:54:48+00:00" }, { "name": "symfony/security-core", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/security-core.git", - "reference": "e185d3918539a9a7c794c20baa18f5e0333a826d" + "reference": "19a7caa988be4f013669a057861a1d2a3eacbbf3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/security-core/zipball/e185d3918539a9a7c794c20baa18f5e0333a826d", - "reference": "e185d3918539a9a7c794c20baa18f5e0333a826d", + "url": "https://api.github.com/repos/symfony/security-core/zipball/19a7caa988be4f013669a057861a1d2a3eacbbf3", + "reference": "19a7caa988be4f013669a057861a1d2a3eacbbf3", "shasum": "" }, "require": { @@ -7915,7 +7953,7 @@ "symfony/security-guard": "<4.3" }, "require-dev": { - "psr/container": "^1.0", + "psr/container": "^1.0|^2.0", "psr/log": "~1.0", "symfony/event-dispatcher": "^4.3", "symfony/expression-language": "^3.4|^4.0|^5.0", @@ -7958,7 +7996,7 @@ "description": "Symfony Security Component - Core Library", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/security-core/tree/v4.4.20" + "source": "https://github.com/symfony/security-core/tree/v4.4.21" }, "funding": [ { @@ -7974,7 +8012,7 @@ "type": "tidelift" } ], - "time": "2021-03-03T16:55:00+00:00" + "time": "2021-03-10T13:26:08+00:00" }, { "name": "symfony/security-csrf", @@ -8115,16 +8153,16 @@ }, { "name": "symfony/security-http", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/security-http.git", - "reference": "1a69306ec4185de37df2350cf3d6a529b14b21f0" + "reference": "c5546b762376e4d9a806b08bf4495b2633573ff8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/security-http/zipball/1a69306ec4185de37df2350cf3d6a529b14b21f0", - "reference": "1a69306ec4185de37df2350cf3d6a529b14b21f0", + "url": "https://api.github.com/repos/symfony/security-http/zipball/c5546b762376e4d9a806b08bf4495b2633573ff8", + "reference": "c5546b762376e4d9a806b08bf4495b2633573ff8", "shasum": "" }, "require": { @@ -8173,7 +8211,7 @@ "description": "Symfony Security Component - HTTP Integration", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/security-http/tree/v4.4.20" + "source": "https://github.com/symfony/security-http/tree/v4.4.21" }, "funding": [ { @@ -8189,7 +8227,7 @@ "type": "tidelift" } ], - "time": "2021-02-14T12:29:41+00:00" + "time": "2021-03-12T01:21:32+00:00" }, { "name": "symfony/serializer", @@ -8335,21 +8373,21 @@ }, { "name": "symfony/service-contracts", - "version": "v2.2.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1" + "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d15da7ba4957ffb8f1747218be9e1a121fd298a1", - "reference": "d15da7ba4957ffb8f1747218be9e1a121fd298a1", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", + "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/container": "^1.0" + "psr/container": "^1.1" }, "suggest": { "symfony/service-implementation": "" @@ -8357,7 +8395,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -8394,7 +8432,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/master" + "source": "https://github.com/symfony/service-contracts/tree/v2.4.0" }, "funding": [ { @@ -8410,7 +8448,7 @@ "type": "tidelift" } ], - "time": "2020-09-07T11:33:47+00:00" + "time": "2021-04-01T10:43:52+00:00" }, { "name": "symfony/stopwatch", @@ -8476,16 +8514,16 @@ }, { "name": "symfony/string", - "version": "v5.2.4", + "version": "v5.2.6", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "4e78d7d47061fa183639927ec40d607973699609" + "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/4e78d7d47061fa183639927ec40d607973699609", - "reference": "4e78d7d47061fa183639927ec40d607973699609", + "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572", + "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572", "shasum": "" }, "require": { @@ -8539,7 +8577,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.2.4" + "source": "https://github.com/symfony/string/tree/v5.2.6" }, "funding": [ { @@ -8555,20 +8593,20 @@ "type": "tidelift" } ], - "time": "2021-02-16T10:20:28+00:00" + "time": "2021-03-17T17:12:15+00:00" }, { "name": "symfony/translation", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "2271b6d577018a7dea75a9162a08ac84f8234deb" + "reference": "eb8f5428cc3b40d6dffe303b195b084f1c5fbd14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/2271b6d577018a7dea75a9162a08ac84f8234deb", - "reference": "2271b6d577018a7dea75a9162a08ac84f8234deb", + "url": "https://api.github.com/repos/symfony/translation/zipball/eb8f5428cc3b40d6dffe303b195b084f1c5fbd14", + "reference": "eb8f5428cc3b40d6dffe303b195b084f1c5fbd14", "shasum": "" }, "require": { @@ -8627,7 +8665,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v4.4.20" + "source": "https://github.com/symfony/translation/tree/v4.4.21" }, "funding": [ { @@ -8643,20 +8681,20 @@ "type": "tidelift" } ], - "time": "2021-02-26T13:53:48+00:00" + "time": "2021-03-23T16:25:01+00:00" }, { "name": "symfony/translation-contracts", - "version": "v2.3.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105" + "reference": "95c812666f3e91db75385749fe219c5e494c7f95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/e2eaa60b558f26a4b0354e1bbb25636efaaad105", - "reference": "e2eaa60b558f26a4b0354e1bbb25636efaaad105", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95", + "reference": "95c812666f3e91db75385749fe219c5e494c7f95", "shasum": "" }, "require": { @@ -8668,7 +8706,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -8705,7 +8743,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v2.3.0" + "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0" }, "funding": [ { @@ -8721,20 +8759,20 @@ "type": "tidelift" } ], - "time": "2020-09-28T13:05:58+00:00" + "time": "2021-03-23T23:28:01+00:00" }, { "name": "symfony/twig-bridge", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/twig-bridge.git", - "reference": "e18a7f7b7062ef9ff92b9286955c5c8f9ce1f4e9" + "reference": "f5d0492a38c5325d9c322d406dbe95bc26fc530d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/e18a7f7b7062ef9ff92b9286955c5c8f9ce1f4e9", - "reference": "e18a7f7b7062ef9ff92b9286955c5c8f9ce1f4e9", + "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/f5d0492a38c5325d9c322d406dbe95bc26fc530d", + "reference": "f5d0492a38c5325d9c322d406dbe95bc26fc530d", "shasum": "" }, "require": { @@ -8750,7 +8788,7 @@ "symfony/workflow": "<4.3" }, "require-dev": { - "egulias/email-validator": "^2.1.10", + "egulias/email-validator": "^2.1.10|^3", "symfony/asset": "^3.4|^4.0|^5.0", "symfony/console": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", @@ -8774,9 +8812,9 @@ "symfony/web-link": "^4.4|^5.0", "symfony/workflow": "^4.3|^5.0", "symfony/yaml": "^3.4|^4.0|^5.0", - "twig/cssinliner-extra": "^2.12", - "twig/inky-extra": "^2.12", - "twig/markdown-extra": "^2.12" + "twig/cssinliner-extra": "^2.12|^3", + "twig/inky-extra": "^2.12|^3", + "twig/markdown-extra": "^2.12|^3" }, "suggest": { "symfony/asset": "For using the AssetExtension", @@ -8821,7 +8859,7 @@ "description": "Provides integration for Twig with various Symfony components", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/twig-bridge/tree/v4.4.20" + "source": "https://github.com/symfony/twig-bridge/tree/v4.4.21" }, "funding": [ { @@ -8837,7 +8875,7 @@ "type": "tidelift" } ], - "time": "2021-02-25T11:27:58+00:00" + "time": "2021-03-16T08:08:39+00:00" }, { "name": "symfony/twig-bundle", @@ -8973,16 +9011,16 @@ }, { "name": "symfony/validator", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "08c3add0462f22f00b856c0d0361cf51897d51aa" + "reference": "c00da06b82b8591548f52b4d6aad0faa0985843e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/08c3add0462f22f00b856c0d0361cf51897d51aa", - "reference": "08c3add0462f22f00b856c0d0361cf51897d51aa", + "url": "https://api.github.com/repos/symfony/validator/zipball/c00da06b82b8591548f52b4d6aad0faa0985843e", + "reference": "c00da06b82b8591548f52b4d6aad0faa0985843e", "shasum": "" }, "require": { @@ -9003,7 +9041,7 @@ "require-dev": { "doctrine/annotations": "^1.10.4", "doctrine/cache": "~1.0", - "egulias/email-validator": "^2.1.10", + "egulias/email-validator": "^2.1.10|^3", "symfony/cache": "^3.4|^4.0|^5.0", "symfony/config": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0", @@ -9058,7 +9096,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v4.4.20" + "source": "https://github.com/symfony/validator/tree/v4.4.21" }, "funding": [ { @@ -9074,20 +9112,20 @@ "type": "tidelift" } ], - "time": "2021-03-03T22:57:07+00:00" + "time": "2021-03-23T11:25:54+00:00" }, { "name": "symfony/var-dumper", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "a1eab2f69906dc83c5ddba4632180260d0ab4f7f" + "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a1eab2f69906dc83c5ddba4632180260d0ab4f7f", - "reference": "a1eab2f69906dc83c5ddba4632180260d0ab4f7f", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0da0e174f728996f5d5072d6a9f0a42259dbc806", + "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806", "shasum": "" }, "require": { @@ -9147,7 +9185,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v4.4.20" + "source": "https://github.com/symfony/var-dumper/tree/v4.4.21" }, "funding": [ { @@ -9163,7 +9201,7 @@ "type": "tidelift" } ], - "time": "2021-01-27T09:09:26+00:00" + "time": "2021-03-27T19:49:03+00:00" }, { "name": "symfony/var-exporter", @@ -9239,16 +9277,16 @@ }, { "name": "symfony/webpack-encore-bundle", - "version": "v1.11.1", + "version": "v1.11.2", "source": { "type": "git", "url": "https://github.com/symfony/webpack-encore-bundle.git", - "reference": "395b60a549ded8e7f77f0d551815d7555e2d9eb0" + "reference": "f282fb17ffa4839ba491eb7e3f5ffdd40c86f969" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/395b60a549ded8e7f77f0d551815d7555e2d9eb0", - "reference": "395b60a549ded8e7f77f0d551815d7555e2d9eb0", + "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/f282fb17ffa4839ba491eb7e3f5ffdd40c86f969", + "reference": "f282fb17ffa4839ba491eb7e3f5ffdd40c86f969", "shasum": "" }, "require": { @@ -9290,7 +9328,7 @@ "description": "Integration with your Symfony app & Webpack Encore!", "support": { "issues": "https://github.com/symfony/webpack-encore-bundle/issues", - "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.11.1" + "source": "https://github.com/symfony/webpack-encore-bundle/tree/v1.11.2" }, "funding": [ { @@ -9306,20 +9344,20 @@ "type": "tidelift" } ], - "time": "2021-02-17T13:45:51+00:00" + "time": "2021-04-26T12:48:17+00:00" }, { "name": "symfony/yaml", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "29e61305e1c79d25f71060903982ead8f533e267" + "reference": "3871c720871029f008928244e56cf43497da7e9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/29e61305e1c79d25f71060903982ead8f533e267", - "reference": "29e61305e1c79d25f71060903982ead8f533e267", + "url": "https://api.github.com/repos/symfony/yaml/zipball/3871c720871029f008928244e56cf43497da7e9d", + "reference": "3871c720871029f008928244e56cf43497da7e9d", "shasum": "" }, "require": { @@ -9361,7 +9399,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v4.4.20" + "source": "https://github.com/symfony/yaml/tree/v4.4.21" }, "funding": [ { @@ -9377,7 +9415,7 @@ "type": "tidelift" } ], - "time": "2021-02-22T15:36:50+00:00" + "time": "2021-03-05T17:58:50+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -9783,16 +9821,16 @@ }, { "name": "twig/twig", - "version": "v2.14.3", + "version": "v2.14.4", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "8bc568d460d88b25c00c046256ec14a787ea60d9" + "reference": "0b4ba691fb99ec7952d25deb36c0a83061b93bbf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/8bc568d460d88b25c00c046256ec14a787ea60d9", - "reference": "8bc568d460d88b25c00c046256ec14a787ea60d9", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b4ba691fb99ec7952d25deb36c0a83061b93bbf", + "reference": "0b4ba691fb99ec7952d25deb36c0a83061b93bbf", "shasum": "" }, "require": { @@ -9846,7 +9884,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v2.14.3" + "source": "https://github.com/twigphp/Twig/tree/v2.14.4" }, "funding": [ { @@ -9858,34 +9896,39 @@ "type": "tidelift" } ], - "time": "2021-01-05T15:34:33+00:00" + "time": "2021-03-10T10:05:55+00:00" }, { "name": "webmozart/assert", - "version": "1.9.1", + "version": "1.10.0", "source": { "type": "git", "url": "https://github.com/webmozarts/assert.git", - "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", - "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25", + "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0 || ^8.0", + "php": "^7.2 || ^8.0", "symfony/polyfill-ctype": "^1.8" }, "conflict": { "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<3.9.1" + "vimeo/psalm": "<4.6.1 || 4.6.2" }, "require-dev": { - "phpunit/phpunit": "^4.8.36 || ^7.5.13" + "phpunit/phpunit": "^8.5.13" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -9909,9 +9952,9 @@ ], "support": { "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.9.1" + "source": "https://github.com/webmozarts/assert/tree/1.10.0" }, - "time": "2020-07-08T17:02:28+00:00" + "time": "2021-03-09T10:59:23+00:00" } ], "packages-dev": [ @@ -10403,16 +10446,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v2.2.0", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665" + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665", - "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627", + "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627", "shasum": "" }, "require": { @@ -10421,7 +10464,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-main": "2.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -10450,7 +10493,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/master" + "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0" }, "funding": [ { @@ -10466,20 +10509,20 @@ "type": "tidelift" } ], - "time": "2020-09-07T11:33:47+00:00" + "time": "2021-03-23T23:28:01+00:00" }, { "name": "symfony/http-client", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "67c5af7489b3c2eea771abd973243f5c58f5fb40" + "reference": "911177e186b82e5b9a9f41c13af53699b6745657" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/67c5af7489b3c2eea771abd973243f5c58f5fb40", - "reference": "67c5af7489b3c2eea771abd973243f5c58f5fb40", + "url": "https://api.github.com/repos/symfony/http-client/zipball/911177e186b82e5b9a9f41c13af53699b6745657", + "reference": "911177e186b82e5b9a9f41c13af53699b6745657", "shasum": "" }, "require": { @@ -10530,7 +10573,7 @@ "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-client/tree/v4.4.20" + "source": "https://github.com/symfony/http-client/tree/v4.4.21" }, "funding": [ { @@ -10546,46 +10589,46 @@ "type": "tidelift" } ], - "time": "2021-02-25T18:06:45+00:00" + "time": "2021-03-25T17:52:07+00:00" }, { "name": "symfony/maker-bundle", - "version": "v1.29.1", + "version": "v1.30.2", "source": { "type": "git", "url": "https://github.com/symfony/maker-bundle.git", - "reference": "313b5669a5370bf36cd34fa8f5b5bbbfa5fb8aa8" + "reference": "a395a85aa4ded6c1fa3da118d60329b64b6c2acd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/313b5669a5370bf36cd34fa8f5b5bbbfa5fb8aa8", - "reference": "313b5669a5370bf36cd34fa8f5b5bbbfa5fb8aa8", + "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a395a85aa4ded6c1fa3da118d60329b64b6c2acd", + "reference": "a395a85aa4ded6c1fa3da118d60329b64b6c2acd", "shasum": "" }, "require": { "doctrine/inflector": "^1.2|^2.0", "nikic/php-parser": "^4.0", "php": ">=7.1.3", - "symfony/config": "^3.4|^4.0|^5.0", - "symfony/console": "^3.4|^4.0|^5.0", - "symfony/dependency-injection": "^3.4|^4.0|^5.0", + "symfony/config": "^4.0|^5.0", + "symfony/console": "^4.0|^5.0", + "symfony/dependency-injection": "^4.0|^5.0", "symfony/deprecation-contracts": "^2.2", - "symfony/filesystem": "^3.4|^4.0|^5.0", - "symfony/finder": "^3.4|^4.0|^5.0", - "symfony/framework-bundle": "^3.4|^4.0|^5.0", - "symfony/http-kernel": "^3.4|^4.0|^5.0" + "symfony/filesystem": "^4.0|^5.0", + "symfony/finder": "^4.0|^5.0", + "symfony/framework-bundle": "^4.0|^5.0", + "symfony/http-kernel": "^4.0|^5.0" }, "require-dev": { "composer/semver": "^3.0@dev", "doctrine/doctrine-bundle": "^1.8|^2.0", "doctrine/orm": "^2.3", "friendsofphp/php-cs-fixer": "^2.8", - "friendsoftwig/twigcs": "^3.1.2", + "friendsoftwig/twigcs": "^4.1.0|^5.0.0", "symfony/http-client": "^4.3|^5.0", "symfony/phpunit-bridge": "^4.3|^5.0", - "symfony/process": "^3.4|^4.0|^5.0", - "symfony/security-core": "^3.4|^4.0|^5.0", - "symfony/yaml": "^3.4|^4.0|^5.0" + "symfony/process": "^4.0|^5.0", + "symfony/security-core": "^4.0|^5.0", + "symfony/yaml": "^4.0|^5.0" }, "type": "symfony-bundle", "extra": { @@ -10618,7 +10661,7 @@ ], "support": { "issues": "https://github.com/symfony/maker-bundle/issues", - "source": "https://github.com/symfony/maker-bundle/tree/v1.29.1" + "source": "https://github.com/symfony/maker-bundle/tree/v1.30.2" }, "funding": [ { @@ -10634,20 +10677,20 @@ "type": "tidelift" } ], - "time": "2021-02-10T19:21:31+00:00" + "time": "2021-03-23T13:53:38+00:00" }, { "name": "symfony/monolog-bridge", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/monolog-bridge.git", - "reference": "47343492b1841db765de8d55b4b5ccaa1c96edd3" + "reference": "3741314b95e8d0c11a485dce562898f5f67f455c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/47343492b1841db765de8d55b4b5ccaa1c96edd3", - "reference": "47343492b1841db765de8d55b4b5ccaa1c96edd3", + "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/3741314b95e8d0c11a485dce562898f5f67f455c", + "reference": "3741314b95e8d0c11a485dce562898f5f67f455c", "shasum": "" }, "require": { @@ -10697,7 +10740,7 @@ "description": "Provides integration for Monolog with various Symfony components", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/monolog-bridge/tree/v4.4.20" + "source": "https://github.com/symfony/monolog-bridge/tree/v4.4.21" }, "funding": [ { @@ -10713,34 +10756,34 @@ "type": "tidelift" } ], - "time": "2021-01-27T09:09:26+00:00" + "time": "2021-03-05T17:58:50+00:00" }, { "name": "symfony/monolog-bundle", - "version": "v3.6.0", + "version": "v3.7.0", "source": { "type": "git", "url": "https://github.com/symfony/monolog-bundle.git", - "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940" + "reference": "4054b2e940a25195ae15f0a49ab0c51718922eb4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/e495f5c7e4e672ffef4357d4a4d85f010802f940", - "reference": "e495f5c7e4e672ffef4357d4a4d85f010802f940", + "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/4054b2e940a25195ae15f0a49ab0c51718922eb4", + "reference": "4054b2e940a25195ae15f0a49ab0c51718922eb4", "shasum": "" }, "require": { "monolog/monolog": "~1.22 || ~2.0", - "php": ">=5.6", - "symfony/config": "~3.4 || ~4.0 || ^5.0", - "symfony/dependency-injection": "~3.4.10 || ^4.0.10 || ^5.0", - "symfony/http-kernel": "~3.4 || ~4.0 || ^5.0", - "symfony/monolog-bridge": "~3.4 || ~4.0 || ^5.0" + "php": ">=7.1.3", + "symfony/config": "~4.4 || ^5.0", + "symfony/dependency-injection": "^4.4 || ^5.0", + "symfony/http-kernel": "~4.4 || ^5.0", + "symfony/monolog-bridge": "~4.4 || ^5.0" }, "require-dev": { - "symfony/console": "~3.4 || ~4.0 || ^5.0", - "symfony/phpunit-bridge": "^4.4 || ^5.0", - "symfony/yaml": "~3.4 || ~4.0 || ^5.0" + "symfony/console": "~4.4 || ^5.0", + "symfony/phpunit-bridge": "^5.1", + "symfony/yaml": "~4.4 || ^5.0" }, "type": "symfony-bundle", "extra": { @@ -10767,18 +10810,18 @@ }, { "name": "Symfony Community", - "homepage": "http://symfony.com/contributors" + "homepage": "https://symfony.com/contributors" } ], "description": "Symfony MonologBundle", - "homepage": "http://symfony.com", + "homepage": "https://symfony.com", "keywords": [ "log", "logging" ], "support": { "issues": "https://github.com/symfony/monolog-bundle/issues", - "source": "https://github.com/symfony/monolog-bundle/tree/v3.6.0" + "source": "https://github.com/symfony/monolog-bundle/tree/v3.7.0" }, "funding": [ { @@ -10794,7 +10837,7 @@ "type": "tidelift" } ], - "time": "2020-10-06T15:12:11+00:00" + "time": "2021-03-31T07:20:47+00:00" }, { "name": "symfony/profiler-pack", @@ -10843,16 +10886,16 @@ }, { "name": "symfony/web-profiler-bundle", - "version": "v4.4.20", + "version": "v4.4.21", "source": { "type": "git", "url": "https://github.com/symfony/web-profiler-bundle.git", - "reference": "2a5eeaa950e5702738437c6c8f442eca46ffc0c5" + "reference": "bd848a0c0f3e7229e329adeea10e8945f70cb4c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/2a5eeaa950e5702738437c6c8f442eca46ffc0c5", - "reference": "2a5eeaa950e5702738437c6c8f442eca46ffc0c5", + "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/bd848a0c0f3e7229e329adeea10e8945f70cb4c9", + "reference": "bd848a0c0f3e7229e329adeea10e8945f70cb4c9", "shasum": "" }, "require": { @@ -10901,7 +10944,7 @@ "description": "Provides a development tool that gives detailed information about the execution of any request", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/web-profiler-bundle/tree/v4.4.20" + "source": "https://github.com/symfony/web-profiler-bundle/tree/v4.4.21" }, "funding": [ { @@ -10917,7 +10960,7 @@ "type": "tidelift" } ], - "time": "2021-01-28T19:07:50+00:00" + "time": "2021-03-15T15:12:10+00:00" } ], "aliases": [], diff --git a/public/asistente/css/bootstrap.min.css b/public/asistente/css/bootstrap.min.css new file mode 100644 index 00000000..cd4928aa --- /dev/null +++ b/public/asistente/css/bootstrap.min.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.3.5 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.33px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:3;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} diff --git a/public/asistente/css/demo.css b/public/asistente/css/demo.css new file mode 100644 index 00000000..b412d96d --- /dev/null +++ b/public/asistente/css/demo.css @@ -0,0 +1,656 @@ +.logo-container{ + left: 50px; + position: absolute; + top: 20px; + z-index: 3; +} +.logo-container .logo{ + overflow: hidden; + border-radius: 50%; + border: 1px solid #333333; + width: 60px; + float: left; +} +.logo-container .brand{ + font-size: 18px; + color: #FFF; + line-height: 20px; + float: left; + margin-left: 10px; + margin-top: 10px; + width: 60px +} + +body{ + background-color: #CCCCCC; +} + +.section .wizard-card{ + min-height: inherit; +} + +.tim-row{ + margin-bottom: 20px; +} + +.tim-white-buttons { + background-color: #777777; +} +.title{ + margin-top: 30px; + margin-bottom: 25px; + min-height: 32px; + font-weight: 500; +} + + + +.title.text-center{ + margin-bottom: 50px; +} +.tim-typo{ + padding-left: 25%; + margin-bottom: 40px; + position: relative; +} +.tim-typo .tim-note{ + bottom: 10px; + color: #c0c1c2; + display: block; + font-weight: 400; + font-size: 13px; + line-height: 13px; + left: 0; + margin-left: 20px; + position: absolute; + width: 260px; +} +.tim-row{ + padding-top: 50px; +} +.tim-row h3{ + margin-top: 0; +} +.switch{ + margin-right: 20px; +} +#navbar-full .navbar{ + border-radius: 0 !important; + margin-bottom: 15px; + z-index: 2; +} +.space{ + height: 130px; + display: block; +} +.space-110{ + height: 110px; + display: block; +} +.space-50{ + height: 50px; + display: block; +} +.space-70{ + height: 70px; + display: block; +} +.navigation-example .img-src{ + background-attachment: scroll; +} + +.navigation-example{ + background-image: url('../img/bg.jpg'); + background-position: center center; + background-size: cover; + margin-top:0; + min-height: 740px; +} +#notifications{ + background-color: #FFFFFF; + display: block; + width: 100%; + position: relative; +} +#notifications .alert-danger{ + margin-bottom: 0px; +} +.tim-note{ + text-transform: capitalize; +} + +#buttons .btn{ + margin: 0 0px 15px; +} +.space-100{ + height: 100px; + display: block; + width: 100%; +} + +.be-social{ + padding-bottom: 20px; +/* border-bottom: 1px solid #aaa; */ + margin: 0 auto 40px; +} +.txt-white{ + color: #FFFFFF; +} +.txt-gray{ + color: #ddd !important; +} + + +.parallax{ + width:100%; + height:570px; + + display: block; + background-attachment: fixed; + background-repeat:no-repeat; + background-size:cover; + background-position: center center; + +} + +.logo-container.logo-documentation{ + position: relative; + top: 0; + left: 0; +} + +.logo-container .logo{ + overflow: hidden; + border-radius: 50%; + border: 1px solid #333333; + width: 50px; + float: left; +} + +.logo-container .brand{ + font-size: 16px; + line-height: 18px; + float: left; + margin-left: 10px; + margin-top: 7px; + width: 70px; + height: 40px; + text-align: left; +} + + +.navbar-default .logo-container .brand{ + color: #999999; +} +.navbar-transparent .logo-container .brand{ + color: #FFFFFF; +} + +.logo-container .brand-material{ + font-size: 18px; + margin-top: 15px; + height: 25px; + width: auto; +} + +.logo-container .logo img{ + width: 100%; +} +.navbar-small .logo-container .brand{ + color: #333333; +} + +.fixed-section{ + top: 90px; + max-height: 80vh; + overflow: scroll; +} +.fixed-section ul li{ + list-style: none; +} +.fixed-section li a{ + font-size: 14px; + padding: 2px; + display: block; + color: #666666; +} +.fixed-section li a.active{ + color: #00bbff; +} +.fixed-section.float{ + position: fixed; + top: 100px; + width: 200px; + margin-top: 0; +} + + +.parallax .parallax-image{ + width: 100%; + overflow: hidden; + position: absolute; +} +.parallax .parallax-image img{ + width: 100%; +} + +@media (max-width: 768px){ + .parallax .parallax-image{ + width: 100%; + height: 640px; + overflow: hidden; + } + .parallax .parallax-image img{ + height: 100%; + width: auto; + } +} + +.separator{ + content: "Separator"; + color: #FFFFFF; + display: block; + width: 100%; + padding: 20px; +} +.separator-line{ + background-color: #EEE; + height: 1px; + width: 100%; + display: block; +} +.separator.separator-gray{ + background-color: #EEEEEE; +} +.social-buttons-demo .btn{ + margin-right: 5px; + margin-bottom: 7px; +} + +.img-container{ + width: 100%; + overflow: hidden; +} +.img-container img{ + width: 100%; +} + +.lightbox img{ + width: 100%; +} +.lightbox .modal-content{ + overflow: hidden; +} +.lightbox .modal-body{ + padding: 0; +} +@media screen and (min-width: 991px){ + .lightbox .modal-dialog{ + width: 960px; + } +} + +@media (max-width: 768px){ + .btn, .btn-morphing{ + margin-bottom: 10px; + } + .parallax .motto{ + top: 170px; + margin-top: 0; + font-size: 60px; + width: 270px; + } +} + +/* Loading dots */ + +/* transitions */ +.presentation .front, .presentation .front:after, .presentation .front .btn, .logo-container .logo, .logo-container .brand{ + -webkit-transition: all .2s; + -moz-transition: all .2s; + -o-transition: all .2s; + transition: all .2s; +} + + +#images h4{ + margin-bottom: 30px; +} +#javascriptComponents{ + padding-bottom: 0; +} +#javascriptComponents .btn-raised{ + margin: 10px 5px; +} + + +/* layer animation */ + +.layers-container{ + display: block; + margin-top: 50px; + position: relative; +} +.layers-container img { + position: absolute; + width: 100%; + height: auto; + top: 0; + left: 0; + text-align: center; +} + +.section-black { + background-color: #333; +} + +.animate { + transition: 1.5s ease-in-out; + -moz-transition: 1.5s ease-in-out; + -webkit-transition: 1.5s ease-in-out; +} + +.navbar-default.navbar-small .logo-container .brand{ + color: #333333; +} +.navbar-transparent.navbar-small .logo-container .brand{ + color: #FFFFFF; +} +.navbar-default.navbar-small .logo-container .brand{ + color: #333333; +} + +.sharing-area{ + margin-top: 80px; +} +.sharing-area .btn{ + margin: 15px 4px 0; + color: #FFFFFF; +} +.sharing-area .btn i{ + font-size: 18px; + position: relative; + top: 2px; + margin-right: 5px; +} +.sharing-area .btn-twitter{ + background-color: #55acee; +} +.sharing-area .btn-facebook{ + background-color: #3b5998; +} +.sharing-area .btn-google-plus{ + background-color: #dd4b39; +} +.sharing-area .btn-github{ + background-color: #333333; +} +.section-thin, +.section-notifications{ + padding: 0; +} +.section-navbars{ + padding-top: 0; +} +#navbar .navbar{ + border-radius: 0; +} +.section-tabs{ + background: #EEEEEE; +} +.section-pagination{ + padding-bottom: 0; +} +.section-download h4{ + margin-bottom: 50px; +} +.section-examples a{ + text-decoration: none; +} +.section-examples h5{ + margin-top: 30px; +} +.components-page .wrapper > .header, +.tutorial-page .wrapper > .header{ + height: 400px; + padding-top: 100px; + background-size: cover; + background-position: center center; +} +.components-page .title, +.tutorial-page .title{ + color: #FFFFFF; +} + +.main { + background: #FFFFFF; + position: relative; + z-index: 3; +} + +.main-raised { + margin: -60px 30px 0px; + border-radius: 6px; + box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); +} + +.header-filter { + position: relative; +} +.header-filter:before, .header-filter:after { + position: absolute; + z-index: 1; + width: 100%; + height: 100%; + display: block; + left: 0; + top: 0; + content: ""; +} +.header-filter::before { + background-color: rgba(0, 0, 0, 0.4); +} +.header-filter .container { + z-index: 2; + position: relative; +} + +.section { + padding: 70px 0; + background-position: center center; + background-size: cover; +} + + + +.navbar { + border: 0; + border-radius: 3px; + box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + padding: 10px 0; + + -webkit-transition: all 150ms ease 0s; + -moz-transition: all 150ms ease 0s; + -o-transition: all 150ms ease 0s; + -ms-transition: all 150ms ease 0s; + transition: all 150ms ease 0s; +} +.navbar .navbar-brand { + position: relative; + height: 50px; + line-height: 30px; + color: inherit; + padding: 10px 15px; +} +.navbar .navbar-brand:hover, .navbar .navbar-brand:focus { + color: inherit; + background-color: transparent; +} + +.navbar.navbar-transparent { + background-color: transparent; + box-shadow: none; + color: #fff; + padding-top: 25px; +} + +.navbar-fixed-top { + border-radius: 0; +} + +.navbar .navbar-nav > li > a .material-icons, +.navbar .navbar-nav > li > a .fa { + font-size: 20px; + max-width: 20px; +} +.navbar .navbar-nav > li > a:hover, +.navbar .navbar-nav > li > a:focus { + color: inherit; + background-color: transparent; +} + +.navbar .navbar-nav > li > a:not(.btn) .material-icons { + margin-top: -3px; + top: 0px; + position: relative; + margin-right: 3px; +} + +.navbar, .navbar.navbar-default { + background-color: #9c27b0; + color: #FFFFFF; +} + +.navbar .navbar-nav > li > a { + color: inherit; + padding-top: 15px; + padding-bottom: 15px; + font-weight: 400; + font-size: 12px; + text-transform: uppercase; + border-radius: 3px; +} +@media (max-width: 1199px) { + + .navbar .navbar-brand { + height: 50px; + padding: 10px 15px; + } + .navbar .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} + +footer { + padding: 15px 0; + text-align: center; + +} +.footer a{ + font-weight: bold; +} + +footer.footer-documentation{ + margin-top: 0; + bottom: 0; + text-shadow: none; + color: inherit; +} + +footer.footer-documentation li a{ + color: inherit; +} + +footer.footer-documentation li a:hover, +footer.footer-documentation li a:focus{ + color: #89229b; +} + +footer ul { + margin-bottom: 0; + padding: 0; + list-style: none; +} +footer ul li { + display: inline-block; +} +footer ul li a { + color: inherit; + padding: 15px; + font-weight: 500; + font-size: 12px; + text-transform: uppercase; + border-radius: 3px; + text-decoration: none; + position: relative; + display: block; +} +footer ul li a:hover { + text-decoration: none; +} +footer ul li .btn { + margin: 0; +} +footer ul.links-horizontal:first-child a { + padding-left: 0; +} +footer ul.links-horizontal:last-child a { + padding-right: 0; +} +footer ul.links-vertical li { + display: block; +} +footer ul.links-vertical li a { + padding: 5px 0; +} +footer .social-buttons a, +footer .social-buttons .btn { + margin-top: 5px; + margin-bottom: 5px; +} +footer .footer-brand { + float: left; + height: 50px; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; + margin-left: -15px; +} +footer .footer-brand:hover, footer .footer-brand:focus { + color: #3C4858; +} +footer .copyright { + padding: 15px 0; + text-align: center; +} +footer .copyright .material-icons { + font-size: 18px; + position: relative; + top: 3px; +} +footer .pull-center { + display: inline-block; + float: none; +} + +@media (max-width: 768px) { + .footer .copyright { + display: inline-block; + text-align: center; + padding: 10px 0; + float: none !important; + width: 100%; + } + + .navbar.navbar-transparent { + background-color: rgba(0, 0, 0, 0.4); + padding-top: 10px; + border-radius: 0; + } + + .main-raised { + margin-left: 10px; + margin-right: 10px; + } +} diff --git a/public/asistente/css/material-bootstrap-wizard.css b/public/asistente/css/material-bootstrap-wizard.css new file mode 100644 index 00000000..84efd7f0 --- /dev/null +++ b/public/asistente/css/material-bootstrap-wizard.css @@ -0,0 +1,1397 @@ +/*! + + ========================================================= + * Material Bootstrap Wizard - v1.0.2 + ========================================================= + + * Product Page: https://www.creative-tim.com/product/material-bootstrap-wizard + * Copyright 2017 Creative Tim (http://www.creative-tim.com) + * Licensed under MIT (https://github.com/creativetimofficial/material-bootstrap-wizard/blob/master/LICENSE.md) + + ========================================================= + + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + */ +body { + background-color: #E5E5E5; + color: #3C4858; } + body.inverse { + background: #333333; } + body.inverse, body.inverse .form-control { + color: #ffffff; } + body.inverse .modal, + body.inverse .modal .form-control, + body.inverse .panel-default, + body.inverse .panel-default .form-control, + body.inverse .card, + body.inverse .card .form-control { + background-color: initial; + color: initial; } + +blockquote p { + font-style: italic; } + +.life-of-material-kit { + background: #FFFFFF; } + +body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 300; + line-height: 1.5em; } + +.serif-font { + font-family: "Roboto Slab", "Times New Roman", serif; } + +a { + color: #9c27b0; } + a:hover, a:focus { + color: #89229b; + text-decoration: none; } + a.text-info:hover, a.text-info:focus { + color: #00a5bb; } + a .material-icons { + vertical-align: middle; } + +legend { + border-bottom: 0; } + +* { + -webkit-tap-highlight-color: rgba(255, 255, 255, 0); + -webkit-tap-highlight-color: transparent; } + *:focus { + outline: 0; } + +a:focus, a:active, +button:active, button:focus, button:hover, +button::-moz-focus-inner, +input[type="reset"]::-moz-focus-inner, +input[type="button"]::-moz-focus-inner, +input[type="submit"]::-moz-focus-inner, +select::-moz-focus-inner, +input[type="file"] > input[type="button"]::-moz-focus-inner { + outline: 0 !important; } + +.image-container { + min-height: 100vh; + background-position: center center; + background-size: cover; + position: relative; } + .image-container:before { + content: ""; + display: block; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background: #000000; + opacity: .3; } + +.made-with-mk { + width: 50px; + height: 50px; + display: block; + position: fixed; + z-index: 555; + bottom: 40px; + right: 40px; + border-radius: 30px; + background-color: rgba(16, 16, 16, 0.35); + border: 1px solid rgba(255, 255, 255, 0.15); + color: #FFFFFF; + cursor: pointer; + padding: 10px 12px; + white-space: nowrap; + overflow: hidden; + -webkit-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1); + -moz-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1); + -o-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1); + transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1); } + .made-with-mk:hover, .made-with-mk:active, .made-with-mk:focus { + width: 218px; + color: #FFFFFF; + transition-duration: .55s; + padding: 10px 19px; } + .made-with-mk:hover .made-with, .made-with-mk:active .made-with, .made-with-mk:focus .made-with { + opacity: 1; } + .made-with-mk:hover .brand, .made-with-mk:active .brand, .made-with-mk:focus .brand { + left: 0; } + .made-with-mk .brand, + .made-with-mk .made-with { + float: left; } + .made-with-mk .brand { + position: relative; + top: 4px; + left: -1px; + letter-spacing: 1px; + vertical-align: middle; + font-size: 16px; + font-weight: 600; } + .made-with-mk .made-with { + color: rgba(255, 255, 255, 0.6); + position: absolute; + left: 58px; + top: 14px; + opacity: 0; + margin: 0; + -webkit-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1); + -moz-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1); + -o-transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1); + transition: 0.55s cubic-bezier(0.6, 0, 0.4, 1); } + .made-with-mk .made-with strong { + font-weight: 400; + color: rgba(255, 255, 255, 0.9); } + +.wizard-container { + padding-top: 100px; + z-index: 3; } + .wizard-container .wizard-navigation { + position: relative; } + +h1, .h1 { + font-size: 3.8em; + line-height: 1.15em; } + +h2, .h2 { + font-size: 2.6em; } + +h3, .h3 { + font-size: 1.825em; + line-height: 1.4em; + margin: 20px 0 10px; } + +h4, .h4 { + font-size: 1.3em; + line-height: 1.4em; } + +h5, .h5 { + font-size: 1.25em; + line-height: 1.4em; + margin-bottom: 15px; } + +h6, .h6 { + font-size: 0.9em; + text-transform: uppercase; } + +.title, +.card-title, +.wizard-title { + font-weight: 700; } + .title, + .title a, + .card-title, + .card-title a, + .wizard-title, + .wizard-title a { + color: #3C4858; + text-decoration: none; } + +h2.title { + margin-bottom: 30px; } + +.description, +.card-description, +.footer-big p { + color: #999999; } + +.text-warning { + color: #ff9800; } + +.text-primary { + color: #9c27b0; } + +.text-danger { + color: #f44336; } + +.text-success { + color: #4caf50; } + +.text-info { + color: #00bcd4; } + +.card { + background-color: #FFFFFF; + padding: 10px 0; + width: 100%; + border-radius: 6px; + color: rgba(0,0,0, 0.87); + background: #fff; } + +.wizard-card { + min-height: 410px; + box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); } + .wizard-card .picture-container { + position: relative; + cursor: pointer; + text-align: center; } + .wizard-card .picture { + width: 106px; + height: 106px; + background-color: #999999; + border: 4px solid #CCCCCC; + color: #FFFFFF; + border-radius: 50%; + margin: 5px auto; + overflow: hidden; + transition: all 0.2s; + -webkit-transition: all 0.2s; } + .wizard-card .picture:hover { + border-color: #2ca8ff; } + .wizard-card .moving-tab { + position: absolute; + text-align: center; + padding: 12px; + font-size: 12px; + text-transform: uppercase; + -webkit-font-smoothing: subpixel-antialiased; + top: -4px; + left: 0px; + border-radius: 4px; + color: #FFFFFF; + cursor: pointer; + font-weight: 500; } + .wizard-card[data-color="purple"] .moving-tab { + background-color: #9c27b0; + box-shadow: 0 16px 26px -10px rgba(156, 39, 176, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); } + .wizard-card[data-color="purple"] .picture:hover { + border-color: #9c27b0; } + .wizard-card[data-color="purple"] .choice:hover .icon, .wizard-card[data-color="purple"] .choice.active .icon { + border-color: #9c27b0; + color: #9c27b0; } + .wizard-card[data-color="purple"] .form-group .form-control { + background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#D2D2D2, #D2D2D2); } + .wizard-card[data-color="purple"] .checkbox input[type=checkbox]:checked + .checkbox-material .check { + background-color: #9c27b0; } + .wizard-card[data-color="purple"] .radio input[type=radio]:checked ~ .check { + background-color: #9c27b0; } + .wizard-card[data-color="purple"] .radio input[type=radio]:checked ~ .circle { + border-color: #9c27b0; } + .wizard-card[data-color="green"] .moving-tab { + background-color: #4caf50; + box-shadow: 0 16px 26px -10px rgba(76, 175, 80, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(76, 175, 80, 0.2); } + .wizard-card[data-color="green"] .picture:hover { + border-color: #4caf50; } + .wizard-card[data-color="green"] .choice:hover .icon, .wizard-card[data-color="green"] .choice.active .icon { + border-color: #4caf50; + color: #4caf50; } + .wizard-card[data-color="green"] .form-group .form-control { + background-image: linear-gradient(#4caf50, #4caf50), linear-gradient(#D2D2D2, #D2D2D2); } + .wizard-card[data-color="green"] .checkbox input[type=checkbox]:checked + .checkbox-material .check { + background-color: #4caf50; } + .wizard-card[data-color="green"] .radio input[type=radio]:checked ~ .check { + background-color: #4caf50; } + .wizard-card[data-color="green"] .radio input[type=radio]:checked ~ .circle { + border-color: #4caf50; } + .wizard-card[data-color="blue"] .moving-tab { + background-color: #00bcd4; + box-shadow: 0 16px 26px -10px rgba(0, 188, 212, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 188, 212, 0.2); } + .wizard-card[data-color="blue"] .picture:hover { + border-color: #00bcd4; } + .wizard-card[data-color="blue"] .choice:hover .icon, .wizard-card[data-color="blue"] .choice.active .icon { + border-color: #00bcd4; + color: #00bcd4; } + .wizard-card[data-color="blue"] .form-group .form-control { + background-image: linear-gradient(#00bcd4, #00bcd4), linear-gradient(#D2D2D2, #D2D2D2); } + .wizard-card[data-color="blue"] .checkbox input[type=checkbox]:checked + .checkbox-material .check { + background-color: #00bcd4; } + .wizard-card[data-color="blue"] .radio input[type=radio]:checked ~ .check { + background-color: #00bcd4; } + .wizard-card[data-color="blue"] .radio input[type=radio]:checked ~ .circle { + border-color: #00bcd4; } + .wizard-card[data-color="orange"] .moving-tab { + background-color: #ff9800; + box-shadow: 0 16px 26px -10px rgba(255, 152, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 152, 0, 0.2); } + .wizard-card[data-color="orange"] .picture:hover { + border-color: #ff9800; } + .wizard-card[data-color="orange"] .choice:hover .icon, .wizard-card[data-color="orange"] .choice.active .icon { + border-color: #ff9800; + color: #ff9800; } + .wizard-card[data-color="orange"] .form-group .form-control { + background-image: linear-gradient(#ff9800, #ff9800), linear-gradient(#D2D2D2, #D2D2D2); } + .wizard-card[data-color="orange"] .checkbox input[type=checkbox]:checked + .checkbox-material .check { + background-color: #ff9800; } + .wizard-card[data-color="orange"] .radio input[type=radio]:checked ~ .check { + background-color: #ff9800; } + .wizard-card[data-color="orange"] .radio input[type=radio]:checked ~ .circle { + border-color: #ff9800; } + .wizard-card[data-color="red"] .moving-tab { + background-color: #f44336; + box-shadow: 0 16px 26px -10px rgba(244, 67, 54, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2); } + .wizard-card[data-color="red"] .picture:hover { + border-color: #f44336; } + .wizard-card[data-color="red"] .choice:hover .icon, .wizard-card[data-color="red"] .choice.active .icon { + border-color: #f44336; + color: #f44336; } + .wizard-card[data-color="red"] .form-group .form-control { + background-image: linear-gradient(#f44336, #f44336), linear-gradient(#D2D2D2, #D2D2D2); } + .wizard-card[data-color="red"] .checkbox input[type=checkbox]:checked + .checkbox-material .check { + background-color: #f44336; } + .wizard-card[data-color="red"] .radio input[type=radio]:checked ~ .check { + background-color: #f44336; } + .wizard-card[data-color="red"] .radio input[type=radio]:checked ~ .circle { + border-color: #f44336; } + .wizard-card .picture input[type="file"] { + cursor: pointer; + display: block; + height: 100%; + left: 0; + opacity: 0 !important; + position: absolute; + top: 0; + width: 100%; } + .wizard-card .picture-src { + width: 100%; } + .wizard-card .tab-content { + min-height: 340px; + padding: 20px 15px; } + .wizard-card .wizard-footer { + padding: 0 15px; } + .wizard-card .wizard-footer .checkbox { + margin-top: 16px; } + .wizard-card .disabled { + display: none; } + .wizard-card .wizard-header { + text-align: center; + padding: 25px 0 35px; } + .wizard-card .wizard-header h5 { + margin: 5px 0 0; } + .wizard-card .nav-pills > li { + text-align: center; } + .wizard-card .btn { + text-transform: uppercase; } + .wizard-card .info-text { + text-align: center; + font-weight: 300; + margin: 10px 0 30px; } + .wizard-card .choice { + text-align: center; + cursor: pointer; + margin-top: 20px; } + .wizard-card .choice .icon { + text-align: center; + vertical-align: middle; + height: 116px; + width: 116px; + border-radius: 50%; + color: #999999; + margin: 0 auto 20px; + border: 4px solid #CCCCCC; + transition: all 0.2s; + -webkit-transition: all 0.2s; } + .wizard-card .choice i { + font-size: 40px; + line-height: 111px; } + .wizard-card .choice:hover .icon, .wizard-card .choice.active .icon { + border-color: #2ca8ff; } + .wizard-card .choice input[type="radio"], + .wizard-card .choice input[type="checkbox"] { + position: absolute; + left: -10000px; + z-index: -1; } + .wizard-card .btn-finish { + display: none; } + .wizard-card .description { + color: #999999; + font-size: 14px; } + .wizard-card .wizard-title { + margin: 0; } + +legend { + margin-bottom: 20px; + font-size: 21px; } + +output { + padding-top: 8px; + font-size: 14px; + line-height: 1.42857; } + +.form-control { + height: 36px; + padding: 7px 0; + font-size: 14px; + line-height: 1.42857; } + +@media screen and (-webkit-min-device-pixel-ratio: 0) { + input[type="date"].form-control, + input[type="time"].form-control, + input[type="datetime-local"].form-control, + input[type="month"].form-control { + line-height: 36px; } + input[type="date"].input-sm, .input-group-sm input[type="date"], + input[type="time"].input-sm, .input-group-sm + input[type="time"], + input[type="datetime-local"].input-sm, .input-group-sm + input[type="datetime-local"], + input[type="month"].input-sm, .input-group-sm + input[type="month"] { + line-height: 24px; } + input[type="date"].input-lg, .input-group-lg input[type="date"], + input[type="time"].input-lg, .input-group-lg + input[type="time"], + input[type="datetime-local"].input-lg, .input-group-lg + input[type="datetime-local"], + input[type="month"].input-lg, .input-group-lg + input[type="month"] { + line-height: 44px; } } +.radio label, +.checkbox label { + min-height: 20px; } + +.form-control-static { + padding-top: 8px; + padding-bottom: 8px; + min-height: 34px; } + +.input-sm .input-sm { + height: 24px; + padding: 3px 0; + font-size: 11px; + line-height: 1.5; + border-radius: 0; } +.input-sm select.input-sm { + height: 24px; + line-height: 24px; } +.input-sm textarea.input-sm, +.input-sm select[multiple].input-sm { + height: auto; } + +.form-group-sm .form-control { + height: 24px; + padding: 3px 0; + font-size: 11px; + line-height: 1.5; } +.form-group-sm select.form-control { + height: 24px; + line-height: 24px; } +.form-group-sm textarea.form-control, +.form-group-sm select[multiple].form-control { + height: auto; } +.form-group-sm .form-control-static { + height: 24px; + min-height: 31px; + padding: 4px 0; + font-size: 11px; + line-height: 1.5; } + +.input-lg .input-lg { + height: 44px; + padding: 9px 0; + font-size: 18px; + line-height: 1.33333; + border-radius: 0; } +.input-lg select.input-lg { + height: 44px; + line-height: 44px; } +.input-lg textarea.input-lg, +.input-lg select[multiple].input-lg { + height: auto; } + +.form-group-lg .form-control { + height: 44px; + padding: 9px 0; + font-size: 18px; + line-height: 1.33333; } +.form-group-lg select.form-control { + height: 44px; + line-height: 44px; } +.form-group-lg textarea.form-control, +.form-group-lg select[multiple].form-control { + height: auto; } +.form-group-lg .form-control-static { + height: 44px; + min-height: 38px; + padding: 10px 0; + font-size: 18px; + line-height: 1.33333; } + +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + padding-top: 8px; } +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 28px; } +@media (min-width: 768px) { + .form-horizontal .control-label { + padding-top: 8px; } } +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 13.0px; + font-size: 18px; } } +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 4px; + font-size: 11px; } } + +.label { + border-radius: 3px; } + .label, .label.label-default { + background-color: #FFFFFF; } + .label.label-inverse { + background-color: #212121; } + .label.label-primary { + background-color: #9c27b0; } + .label.label-success { + background-color: #4caf50; } + .label.label-info { + background-color: #00bcd4; } + .label.label-warning { + background-color: #ff9800; } + .label.label-danger { + background-color: #f44336; } + .label.label-rose { + background-color: #e91e63; } + +.form-control, +.form-group .form-control { + border: 0; + background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#D2D2D2, #D2D2D2); + background-size: 0 2px, 100% 1px; + background-repeat: no-repeat; + background-position: center bottom, center calc(100% - 1px); + background-color: transparent; + transition: background 0s ease-out; + float: none; + box-shadow: none; + border-radius: 0; + font-weight: 400; } + .form-control::-moz-placeholder, + .form-group .form-control::-moz-placeholder { + color: #AAAAAA; + font-weight: 400; } + .form-control:-ms-input-placeholder, + .form-group .form-control:-ms-input-placeholder { + color: #AAAAAA; + font-weight: 400; } + .form-control::-webkit-input-placeholder, + .form-group .form-control::-webkit-input-placeholder { + color: #AAAAAA; + font-weight: 400; } + .form-control[readonly], .form-control[disabled], fieldset[disabled] .form-control, + .form-group .form-control[readonly], + .form-group .form-control[disabled], fieldset[disabled] + .form-group .form-control { + background-color: transparent; } + .form-control[disabled], fieldset[disabled] .form-control, + .form-group .form-control[disabled], fieldset[disabled] + .form-group .form-control { + background-image: none; + border-bottom: 1px dotted #D2D2D2; } + +.form-group { + position: relative; } + .form-group.label-static label.control-label, .form-group.label-placeholder label.control-label, .form-group.label-floating label.control-label { + position: absolute; + pointer-events: none; + transition: 0.3s ease all; } + .form-group.label-floating label.control-label { + will-change: left, top, contents; } + .form-group.label-placeholder:not(.is-empty) label.control-label { + display: none; } + .form-group .help-block { + position: absolute; + display: none; } + .form-group.is-focused .form-control { + outline: none; + background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#D2D2D2, #D2D2D2); + background-size: 100% 2px, 100% 1px; + box-shadow: none; + transition-duration: 0.3s; } + .form-group.is-focused .form-control .material-input:after { + background-color: #9c27b0; } + .form-group.is-focused.form-info .form-control { + background-image: linear-gradient(#00bcd4, #00bcd4), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.is-focused.form-success .form-control { + background-image: linear-gradient(#4caf50, #4caf50), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.is-focused.form-warning .form-control { + background-image: linear-gradient(#ff9800, #ff9800), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.is-focused.form-danger .form-control { + background-image: linear-gradient(#f44336, #f44336), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.is-focused.form-rose .form-control { + background-image: linear-gradient(#e91e63, #e91e63), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.is-focused.form-white .form-control { + background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.is-focused.label-placeholder label, + .form-group.is-focused.label-placeholder label.control-label { + color: #AAAAAA; } + .form-group.is-focused .help-block { + display: block; } + .form-group.has-warning .form-control { + box-shadow: none; } + .form-group.has-warning.is-focused .form-control { + background-image: linear-gradient(#ff9800, #ff9800), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.has-warning label.control-label, + .form-group.has-warning .help-block { + color: #ff9800; } + .form-group.has-error .form-control { + box-shadow: none; } + .form-group.has-error.is-focused .form-control { + background-image: linear-gradient(#f44336, #f44336), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.has-error label.control-label, + .form-group.has-error .help-block { + color: #f44336; } + .form-group.has-success .form-control { + box-shadow: none; } + .form-group.has-success.is-focused .form-control { + background-image: linear-gradient(#4caf50, #4caf50), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.has-success label.control-label, + .form-group.has-success .help-block { + color: #4caf50; } + .form-group.has-info .form-control { + box-shadow: none; } + .form-group.has-info.is-focused .form-control { + background-image: linear-gradient(#00bcd4, #00bcd4), linear-gradient(#D2D2D2, #D2D2D2); } + .form-group.has-info label.control-label, + .form-group.has-info .help-block { + color: #00bcd4; } + .form-group textarea { + resize: none; } + .form-group textarea ~ .form-control-highlight { + margin-top: -11px; } + .form-group select { + appearance: none; } + .form-group select ~ .material-input:after { + display: none; } + +.form-control { + margin-bottom: 7px; } + .form-control::-moz-placeholder { + font-size: 14px; + line-height: 1.42857; + color: #AAAAAA; + font-weight: 400; } + .form-control:-ms-input-placeholder { + font-size: 14px; + line-height: 1.42857; + color: #AAAAAA; + font-weight: 400; } + .form-control::-webkit-input-placeholder { + font-size: 14px; + line-height: 1.42857; + color: #AAAAAA; + font-weight: 400; } + +.checkbox label, +.radio label, +label { + font-size: 14px; + line-height: 1.42857; + color: #AAAAAA; + font-weight: 400; } + +label.control-label { + font-size: 11px; + line-height: 1.07143; + color: #AAAAAA; + font-weight: 400; + margin: 16px 0 0 0; } + +.help-block { + margin-top: 0; + font-size: 11px; } + +.form-group { + padding-bottom: 7px; + margin: 27px 0 0 0; } + .form-group .form-control { + margin-bottom: 7px; } + .form-group .form-control::-moz-placeholder { + font-size: 14px; + line-height: 1.42857; + color: #AAAAAA; + font-weight: 400; } + .form-group .form-control:-ms-input-placeholder { + font-size: 14px; + line-height: 1.42857; + color: #AAAAAA; + font-weight: 400; } + .form-group .form-control::-webkit-input-placeholder { + font-size: 14px; + line-height: 1.42857; + color: #AAAAAA; + font-weight: 400; } + .form-group .checkbox label, + .form-group .radio label, + .form-group label { + font-size: 14px; + line-height: 1.42857; + color: #AAAAAA; + font-weight: 400; } + .form-group label.control-label { + font-size: 11px; + line-height: 1.07143; + color: #AAAAAA; + font-weight: 400; + margin: 16px 0 0 0; } + .form-group .help-block { + margin-top: 0; + font-size: 11px; } + .form-group.label-floating label.control-label, .form-group.label-placeholder label.control-label { + top: -7px; + font-size: 14px; + line-height: 1.42857; } + .form-group.label-static label.control-label, .form-group.label-floating.is-focused label.control-label, .form-group.label-floating:not(.is-empty) label.control-label { + top: -28px; + left: 0; + font-size: 11px; + line-height: 1.07143; } + .form-group.label-floating input.form-control:-webkit-autofill ~ label.control-label label.control-label { + top: -28px; + left: 0; + font-size: 11px; + line-height: 1.07143; } + +.form-group.form-group-sm { + padding-bottom: 3px; + margin: 21px 0 0 0; } + .form-group.form-group-sm .form-control { + margin-bottom: 3px; } + .form-group.form-group-sm .form-control::-moz-placeholder { + font-size: 11px; + line-height: 1.5; + color: #AAAAAA; + font-weight: 400; } + .form-group.form-group-sm .form-control:-ms-input-placeholder { + font-size: 11px; + line-height: 1.5; + color: #AAAAAA; + font-weight: 400; } + .form-group.form-group-sm .form-control::-webkit-input-placeholder { + font-size: 11px; + line-height: 1.5; + color: #AAAAAA; + font-weight: 400; } + .form-group.form-group-sm .checkbox label, + .form-group.form-group-sm .radio label, + .form-group.form-group-sm label { + font-size: 11px; + line-height: 1.5; + color: #AAAAAA; + font-weight: 400; } + .form-group.form-group-sm label.control-label { + font-size: 9px; + line-height: 1.125; + color: #AAAAAA; + font-weight: 400; + margin: 16px 0 0 0; } + .form-group.form-group-sm .help-block { + margin-top: 0; + font-size: 9px; } + .form-group.form-group-sm.label-floating label.control-label, .form-group.form-group-sm.label-placeholder label.control-label { + top: -11px; + font-size: 11px; + line-height: 1.5; } + .form-group.form-group-sm.label-static label.control-label, .form-group.form-group-sm.label-floating.is-focused label.control-label, .form-group.form-group-sm.label-floating:not(.is-empty) label.control-label { + top: -25px; + left: 0; + font-size: 9px; + line-height: 1.125; } + .form-group.form-group-sm.label-floating input.form-control:-webkit-autofill ~ label.control-label label.control-label { + top: -25px; + left: 0; + font-size: 9px; + line-height: 1.125; } + +.form-group.form-group-lg { + padding-bottom: 9px; + margin: 30px 0 0 0; } + .form-group.form-group-lg .form-control { + margin-bottom: 9px; } + .form-group.form-group-lg .form-control::-moz-placeholder { + font-size: 18px; + line-height: 1.33333; + color: #AAAAAA; + font-weight: 400; } + .form-group.form-group-lg .form-control:-ms-input-placeholder { + font-size: 18px; + line-height: 1.33333; + color: #AAAAAA; + font-weight: 400; } + .form-group.form-group-lg .form-control::-webkit-input-placeholder { + font-size: 18px; + line-height: 1.33333; + color: #AAAAAA; + font-weight: 400; } + .form-group.form-group-lg .checkbox label, + .form-group.form-group-lg .radio label, + .form-group.form-group-lg label { + font-size: 18px; + line-height: 1.33333; + color: #AAAAAA; + font-weight: 400; } + .form-group.form-group-lg label.control-label { + font-size: 14px; + line-height: 1.0; + color: #AAAAAA; + font-weight: 400; + margin: 16px 0 0 0; } + .form-group.form-group-lg .help-block { + margin-top: 0; + font-size: 14px; } + .form-group.form-group-lg.label-floating label.control-label, .form-group.form-group-lg.label-placeholder label.control-label { + top: -5px; + font-size: 18px; + line-height: 1.33333; } + .form-group.form-group-lg.label-static label.control-label, .form-group.form-group-lg.label-floating.is-focused label.control-label, .form-group.form-group-lg.label-floating:not(.is-empty) label.control-label { + top: -32px; + left: 0; + font-size: 14px; + line-height: 1.0; } + .form-group.form-group-lg.label-floating input.form-control:-webkit-autofill ~ label.control-label label.control-label { + top: -32px; + left: 0; + font-size: 14px; + line-height: 1.0; } + +select.form-control { + border: 0; + box-shadow: none; + border-radius: 0; } + .form-group.is-focused select.form-control { + box-shadow: none; + border-color: #D2D2D2; } + select.form-control[multiple], .form-group.is-focused select.form-control[multiple] { + height: 85px; } + +.input-group-btn .btn { + margin: 0 0 7px 0; } + +.form-group.form-group-sm .input-group-btn .btn { + margin: 0 0 3px 0; } +.form-group.form-group-lg .input-group-btn .btn { + margin: 0 0 9px 0; } + +.input-group .input-group-btn { + padding: 0 12px; } +.input-group .input-group-addon { + border: 0; + background: transparent; + padding: 6px 15px 0px; } + +.form-group input[type=file] { + opacity: 0; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 100; } + +.form-control-feedback { + opacity: 0; } + .has-success .form-control-feedback { + color: #4caf50; + opacity: 1; } + .has-error .form-control-feedback { + color: #f44336; + opacity: 1; } + +.btn { + border: none; + border-radius: 3px; + position: relative; + padding: 12px 30px; + margin: 10px 1px; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; + letter-spacing: 0; + will-change: box-shadow, transform; + transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1); } + .btn::-moz-focus-inner { + border: 0; } + .btn, .btn.btn-default { + box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12); } + .btn, .btn:hover, .btn:focus, .btn:active, .btn.active, .btn:active:focus, .btn:active:hover, .btn.active:focus, .btn.active:hover, .open > .btn.dropdown-toggle, .open > .btn.dropdown-toggle:focus, .open > .btn.dropdown-toggle:hover, .btn.btn-default, .btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active, .btn.btn-default.active, .btn.btn-default:active:focus, .btn.btn-default:active:hover, .btn.btn-default.active:focus, .btn.btn-default.active:hover, .open > .btn.btn-default.dropdown-toggle, .open > .btn.btn-default.dropdown-toggle:focus, .open > .btn.btn-default.dropdown-toggle:hover { + background-color: #999999; + color: #FFFFFF; } + .btn:focus, .btn:active, .btn:hover, .btn.btn-default:focus, .btn.btn-default:active, .btn.btn-default:hover { + box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2); } + .btn.disabled, .btn.disabled:hover, .btn.disabled:focus, .btn.disabled.focus, .btn.disabled:active, .btn.disabled.active, .btn:disabled, .btn:disabled:hover, .btn:disabled:focus, .btn:disabled.focus, .btn:disabled:active, .btn:disabled.active, .btn[disabled], .btn[disabled]:hover, .btn[disabled]:focus, .btn[disabled].focus, .btn[disabled]:active, .btn[disabled].active, fieldset[disabled] .btn, fieldset[disabled] .btn:hover, fieldset[disabled] .btn:focus, fieldset[disabled] .btn.focus, fieldset[disabled] .btn:active, fieldset[disabled] .btn.active, .btn.btn-default.disabled, .btn.btn-default.disabled:hover, .btn.btn-default.disabled:focus, .btn.btn-default.disabled.focus, .btn.btn-default.disabled:active, .btn.btn-default.disabled.active, .btn.btn-default:disabled, .btn.btn-default:disabled:hover, .btn.btn-default:disabled:focus, .btn.btn-default:disabled.focus, .btn.btn-default:disabled:active, .btn.btn-default:disabled.active, .btn.btn-default[disabled], .btn.btn-default[disabled]:hover, .btn.btn-default[disabled]:focus, .btn.btn-default[disabled].focus, .btn.btn-default[disabled]:active, .btn.btn-default[disabled].active, fieldset[disabled] .btn.btn-default, fieldset[disabled] .btn.btn-default:hover, fieldset[disabled] .btn.btn-default:focus, fieldset[disabled] .btn.btn-default.focus, fieldset[disabled] .btn.btn-default:active, fieldset[disabled] .btn.btn-default.active { + box-shadow: none; } + .btn.btn-simple, .btn.btn-default.btn-simple { + background-color: transparent; + color: #999999; + box-shadow: none; } + .btn.btn-simple:hover, .btn.btn-simple:focus, .btn.btn-simple:active, .btn.btn-default.btn-simple:hover, .btn.btn-default.btn-simple:focus, .btn.btn-default.btn-simple:active { + background-color: transparent; + color: #999999; } + .btn.btn-primary { + box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); } + .btn.btn-primary, .btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active, .btn.btn-primary.active, .btn.btn-primary:active:focus, .btn.btn-primary:active:hover, .btn.btn-primary.active:focus, .btn.btn-primary.active:hover, .open > .btn.btn-primary.dropdown-toggle, .open > .btn.btn-primary.dropdown-toggle:focus, .open > .btn.btn-primary.dropdown-toggle:hover { + background-color: #9c27b0; + color: #FFFFFF; } + .btn.btn-primary:focus, .btn.btn-primary:active, .btn.btn-primary:hover { + box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); } + .btn.btn-primary.disabled, .btn.btn-primary.disabled:hover, .btn.btn-primary.disabled:focus, .btn.btn-primary.disabled.focus, .btn.btn-primary.disabled:active, .btn.btn-primary.disabled.active, .btn.btn-primary:disabled, .btn.btn-primary:disabled:hover, .btn.btn-primary:disabled:focus, .btn.btn-primary:disabled.focus, .btn.btn-primary:disabled:active, .btn.btn-primary:disabled.active, .btn.btn-primary[disabled], .btn.btn-primary[disabled]:hover, .btn.btn-primary[disabled]:focus, .btn.btn-primary[disabled].focus, .btn.btn-primary[disabled]:active, .btn.btn-primary[disabled].active, fieldset[disabled] .btn.btn-primary, fieldset[disabled] .btn.btn-primary:hover, fieldset[disabled] .btn.btn-primary:focus, fieldset[disabled] .btn.btn-primary.focus, fieldset[disabled] .btn.btn-primary:active, fieldset[disabled] .btn.btn-primary.active { + box-shadow: none; } + .btn.btn-primary.btn-simple { + background-color: transparent; + color: #9c27b0; + box-shadow: none; } + .btn.btn-primary.btn-simple:hover, .btn.btn-primary.btn-simple:focus, .btn.btn-primary.btn-simple:active { + background-color: transparent; + color: #9c27b0; } + .btn.btn-info { + box-shadow: 0 2px 2px 0 rgba(0, 188, 212, 0.14), 0 3px 1px -2px rgba(0, 188, 212, 0.2), 0 1px 5px 0 rgba(0, 188, 212, 0.12); } + .btn.btn-info, .btn.btn-info:hover, .btn.btn-info:focus, .btn.btn-info:active, .btn.btn-info.active, .btn.btn-info:active:focus, .btn.btn-info:active:hover, .btn.btn-info.active:focus, .btn.btn-info.active:hover, .open > .btn.btn-info.dropdown-toggle, .open > .btn.btn-info.dropdown-toggle:focus, .open > .btn.btn-info.dropdown-toggle:hover { + background-color: #00bcd4; + color: #FFFFFF; } + .btn.btn-info:focus, .btn.btn-info:active, .btn.btn-info:hover { + box-shadow: 0 14px 26px -12px rgba(0, 188, 212, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 188, 212, 0.2); } + .btn.btn-info.disabled, .btn.btn-info.disabled:hover, .btn.btn-info.disabled:focus, .btn.btn-info.disabled.focus, .btn.btn-info.disabled:active, .btn.btn-info.disabled.active, .btn.btn-info:disabled, .btn.btn-info:disabled:hover, .btn.btn-info:disabled:focus, .btn.btn-info:disabled.focus, .btn.btn-info:disabled:active, .btn.btn-info:disabled.active, .btn.btn-info[disabled], .btn.btn-info[disabled]:hover, .btn.btn-info[disabled]:focus, .btn.btn-info[disabled].focus, .btn.btn-info[disabled]:active, .btn.btn-info[disabled].active, fieldset[disabled] .btn.btn-info, fieldset[disabled] .btn.btn-info:hover, fieldset[disabled] .btn.btn-info:focus, fieldset[disabled] .btn.btn-info.focus, fieldset[disabled] .btn.btn-info:active, fieldset[disabled] .btn.btn-info.active { + box-shadow: none; } + .btn.btn-info.btn-simple { + background-color: transparent; + color: #00bcd4; + box-shadow: none; } + .btn.btn-info.btn-simple:hover, .btn.btn-info.btn-simple:focus, .btn.btn-info.btn-simple:active { + background-color: transparent; + color: #00bcd4; } + .btn.btn-success { + box-shadow: 0 2px 2px 0 rgba(76, 175, 80, 0.14), 0 3px 1px -2px rgba(76, 175, 80, 0.2), 0 1px 5px 0 rgba(76, 175, 80, 0.12); } + .btn.btn-success, .btn.btn-success:hover, .btn.btn-success:focus, .btn.btn-success:active, .btn.btn-success.active, .btn.btn-success:active:focus, .btn.btn-success:active:hover, .btn.btn-success.active:focus, .btn.btn-success.active:hover, .open > .btn.btn-success.dropdown-toggle, .open > .btn.btn-success.dropdown-toggle:focus, .open > .btn.btn-success.dropdown-toggle:hover { + background-color: #4caf50; + color: #FFFFFF; } + .btn.btn-success:focus, .btn.btn-success:active, .btn.btn-success:hover { + box-shadow: 0 14px 26px -12px rgba(76, 175, 80, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(76, 175, 80, 0.2); } + .btn.btn-success.disabled, .btn.btn-success.disabled:hover, .btn.btn-success.disabled:focus, .btn.btn-success.disabled.focus, .btn.btn-success.disabled:active, .btn.btn-success.disabled.active, .btn.btn-success:disabled, .btn.btn-success:disabled:hover, .btn.btn-success:disabled:focus, .btn.btn-success:disabled.focus, .btn.btn-success:disabled:active, .btn.btn-success:disabled.active, .btn.btn-success[disabled], .btn.btn-success[disabled]:hover, .btn.btn-success[disabled]:focus, .btn.btn-success[disabled].focus, .btn.btn-success[disabled]:active, .btn.btn-success[disabled].active, fieldset[disabled] .btn.btn-success, fieldset[disabled] .btn.btn-success:hover, fieldset[disabled] .btn.btn-success:focus, fieldset[disabled] .btn.btn-success.focus, fieldset[disabled] .btn.btn-success:active, fieldset[disabled] .btn.btn-success.active { + box-shadow: none; } + .btn.btn-success.btn-simple { + background-color: transparent; + color: #4caf50; + box-shadow: none; } + .btn.btn-success.btn-simple:hover, .btn.btn-success.btn-simple:focus, .btn.btn-success.btn-simple:active { + background-color: transparent; + color: #4caf50; } + .btn.btn-warning { + box-shadow: 0 2px 2px 0 rgba(255, 152, 0, 0.14), 0 3px 1px -2px rgba(255, 152, 0, 0.2), 0 1px 5px 0 rgba(255, 152, 0, 0.12); } + .btn.btn-warning, .btn.btn-warning:hover, .btn.btn-warning:focus, .btn.btn-warning:active, .btn.btn-warning.active, .btn.btn-warning:active:focus, .btn.btn-warning:active:hover, .btn.btn-warning.active:focus, .btn.btn-warning.active:hover, .open > .btn.btn-warning.dropdown-toggle, .open > .btn.btn-warning.dropdown-toggle:focus, .open > .btn.btn-warning.dropdown-toggle:hover { + background-color: #ff9800; + color: #FFFFFF; } + .btn.btn-warning:focus, .btn.btn-warning:active, .btn.btn-warning:hover { + box-shadow: 0 14px 26px -12px rgba(255, 152, 0, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 152, 0, 0.2); } + .btn.btn-warning.disabled, .btn.btn-warning.disabled:hover, .btn.btn-warning.disabled:focus, .btn.btn-warning.disabled.focus, .btn.btn-warning.disabled:active, .btn.btn-warning.disabled.active, .btn.btn-warning:disabled, .btn.btn-warning:disabled:hover, .btn.btn-warning:disabled:focus, .btn.btn-warning:disabled.focus, .btn.btn-warning:disabled:active, .btn.btn-warning:disabled.active, .btn.btn-warning[disabled], .btn.btn-warning[disabled]:hover, .btn.btn-warning[disabled]:focus, .btn.btn-warning[disabled].focus, .btn.btn-warning[disabled]:active, .btn.btn-warning[disabled].active, fieldset[disabled] .btn.btn-warning, fieldset[disabled] .btn.btn-warning:hover, fieldset[disabled] .btn.btn-warning:focus, fieldset[disabled] .btn.btn-warning.focus, fieldset[disabled] .btn.btn-warning:active, fieldset[disabled] .btn.btn-warning.active { + box-shadow: none; } + .btn.btn-warning.btn-simple { + background-color: transparent; + color: #ff9800; + box-shadow: none; } + .btn.btn-warning.btn-simple:hover, .btn.btn-warning.btn-simple:focus, .btn.btn-warning.btn-simple:active { + background-color: transparent; + color: #ff9800; } + .btn.btn-danger { + box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12); } + .btn.btn-danger, .btn.btn-danger:hover, .btn.btn-danger:focus, .btn.btn-danger:active, .btn.btn-danger.active, .btn.btn-danger:active:focus, .btn.btn-danger:active:hover, .btn.btn-danger.active:focus, .btn.btn-danger.active:hover, .open > .btn.btn-danger.dropdown-toggle, .open > .btn.btn-danger.dropdown-toggle:focus, .open > .btn.btn-danger.dropdown-toggle:hover { + background-color: #f44336; + color: #FFFFFF; } + .btn.btn-danger:focus, .btn.btn-danger:active, .btn.btn-danger:hover { + box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2); } + .btn.btn-danger.disabled, .btn.btn-danger.disabled:hover, .btn.btn-danger.disabled:focus, .btn.btn-danger.disabled.focus, .btn.btn-danger.disabled:active, .btn.btn-danger.disabled.active, .btn.btn-danger:disabled, .btn.btn-danger:disabled:hover, .btn.btn-danger:disabled:focus, .btn.btn-danger:disabled.focus, .btn.btn-danger:disabled:active, .btn.btn-danger:disabled.active, .btn.btn-danger[disabled], .btn.btn-danger[disabled]:hover, .btn.btn-danger[disabled]:focus, .btn.btn-danger[disabled].focus, .btn.btn-danger[disabled]:active, .btn.btn-danger[disabled].active, fieldset[disabled] .btn.btn-danger, fieldset[disabled] .btn.btn-danger:hover, fieldset[disabled] .btn.btn-danger:focus, fieldset[disabled] .btn.btn-danger.focus, fieldset[disabled] .btn.btn-danger:active, fieldset[disabled] .btn.btn-danger.active { + box-shadow: none; } + .btn.btn-danger.btn-simple { + background-color: transparent; + color: #f44336; + box-shadow: none; } + .btn.btn-danger.btn-simple:hover, .btn.btn-danger.btn-simple:focus, .btn.btn-danger.btn-simple:active { + background-color: transparent; + color: #f44336; } + .btn:focus, .btn:active, .btn:active:focus { + outline: 0; } + .btn.btn-round { + border-radius: 30px; } + .btn:not(.btn-just-icon):not(.btn-fab) .fa { + font-size: 18px; + margin-top: -2px; + position: relative; + top: 2px; } + .btn.btn-fab { + border-radius: 50%; + font-size: 24px; + height: 56px; + margin: auto; + min-width: 56px; + width: 56px; + padding: 0; + overflow: hidden; + position: relative; + line-height: normal; } + .btn.btn-fab .ripple-container { + border-radius: 50%; } + .btn.btn-fab.btn-fab-mini, .btn-group-sm .btn.btn-fab { + height: 40px; + min-width: 40px; + width: 40px; } + .btn.btn-fab.btn-fab-mini.material-icons, .btn-group-sm .btn.btn-fab.material-icons { + top: -3.5px; + left: -3.5px; } + .btn.btn-fab.btn-fab-mini .material-icons, .btn-group-sm .btn.btn-fab .material-icons { + font-size: 17px; } + .btn.btn-fab i.material-icons { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-12px, -12px); + line-height: 24px; + width: 24px; + font-size: 24px; } + .btn.btn-lg, .btn-group-lg .btn { + font-size: 14px; + padding: 18px 36px; } + .btn.btn-sm, .btn-group-sm .btn { + padding: 5px 20px; + font-size: 11px; } + .btn.btn-xs, .btn-group-xs .btn { + padding: 4px 15px; + font-size: 10px; } + .btn.btn-just-icon { + font-size: 18px; + padding: 10px 10px; + line-height: 1em; } + .btn.btn-just-icon i { + width: 20px; } + .btn.btn-just-icon.btn-lg { + font-size: 22px; + padding: 13px 18px; } + +.btn .material-icons { + vertical-align: middle; + font-size: 17px; + top: -1px; + position: relative; } + +/* Navigation menu */ +.nav-pills { + background-color: rgba(200, 200, 200, 0.2); } + .nav-pills > li + li { + margin-left: 0; } + .nav-pills > li > a { + outline: none; + border: 0 !important; + border-radius: 0; + line-height: 18px; + text-transform: uppercase; + font-size: 12px; + font-weight: 500; + min-width: 100px; + text-align: center; + color: #555555 !important; } + .nav-pills > li.active > a, + .nav-pills > li.active > a:hover, + .nav-pills > li.active > a:focus, + .nav-pills > li > a:hover, + .nav-pills > li > a:focus { + background-color: inherit; } + .nav-pills > li i { + display: block; + font-size: 30px; + padding: 15px 0; } + +.popover, .tooltip-inner { + color: #555555; + line-height: 1.5em; + background: #FFFFFF; + border: none; + border-radius: 3px; + box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); } + +.popover { + padding: 0; + box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); } + .popover.left > .arrow, .popover.right > .arrow, .popover.top > .arrow, .popover.bottom > .arrow { + border: none; } + +.popover-title { + background-color: #FFFFFF; + border: none; + padding: 15px 15px 5px; + font-size: 1.3em; } + +.popover-content { + padding: 10px 15px 15px; + line-height: 1.4; } + +.tooltip.in { + opacity: 1; + -webkit-transform: translate3d(0, 0px, 0); + -moz-transform: translate3d(0, 0px, 0); + -o-transform: translate3d(0, 0px, 0); + -ms-transform: translate3d(0, 0px, 0); + transform: translate3d(0, 0px, 0); } + +.tooltip { + opacity: 0; + transition: opacity, transform .2s ease; + -webkit-transform: translate3d(0, 5px, 0); + -moz-transform: translate3d(0, 5px, 0); + -o-transform: translate3d(0, 5px, 0); + -ms-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); } + .tooltip.left .tooltip-arrow { + border-left-color: #FFFFFF; } + .tooltip.right .tooltip-arrow { + border-right-color: #FFFFFF; } + .tooltip.top .tooltip-arrow { + border-top-color: #FFFFFF; } + .tooltip.bottom .tooltip-arrow { + border-bottom-color: #FFFFFF; } + +.tooltip-inner { + padding: 10px 15px; + min-width: 130px; } + +.footer { + position: relative; + bottom: 20px; + right: 0px; + width: 100%; + color: #FFFFFF; + z-index: 4; + text-align: right; + margin-top: 60px; + text-shadow: 0 0px 1px black; } + .footer a { + color: #FFFFFF; } + .footer .heart { + color: #FF3B30; } + +.withripple { + position: relative; } + +.ripple-container { + position: absolute; + top: 0; + left: 0; + z-index: 1; + width: 100%; + height: 100%; + overflow: hidden; + border-radius: inherit; + pointer-events: none; } + .disabled .ripple-container { + display: none; } + +.ripple { + position: absolute; + width: 20px; + height: 20px; + margin-left: -10px; + margin-top: -10px; + border-radius: 100%; + background-color: #000; + background-color: rgba(0, 0, 0, 0.05); + transform: scale(1); + transform-origin: 50%; + opacity: 0; + pointer-events: none; } + +.ripple.ripple-on { + transition: opacity 0.15s ease-in 0s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s; + opacity: 0.1; } + +.ripple.ripple-out { + transition: opacity 0.1s linear 0s !important; + opacity: 0; } + +.radio label { + cursor: pointer; + padding-left: 35px; + position: relative; + color: rgba(0,0,0, 0.26); } + .form-group.is-focused .radio label { + color: rgba(0,0,0, 0.26); } + .form-group.is-focused .radio label:hover, .form-group.is-focused .radio label:focus { + color: rgba(0,0,0, .54); } + fieldset[disabled] .form-group.is-focused .radio label { + color: rgba(0,0,0, 0.26); } + .radio label span { + display: block; + position: absolute; + left: 10px; + top: 2px; + transition-duration: 0.2s; } + .radio label .circle { + border: 1px solid rgba(0,0,0, .54); + height: 15px; + width: 15px; + border-radius: 100%; } + .radio label .check { + height: 15px; + width: 15px; + border-radius: 100%; + background-color: #9c27b0; + transform: scale3d(0, 0, 0); } + .radio label .check:after { + display: block; + position: absolute; + content: ""; + background-color: rgba(0,0,0, 0.87); + left: -18px; + top: -18px; + height: 50px; + width: 50px; + border-radius: 100%; + z-index: 1; + opacity: 0; + margin: 0; + transform: scale3d(1.5, 1.5, 1); } + .radio label input[type=radio]:not(:checked) ~ .check:after { + animation: rippleOff 500ms; } + .radio label input[type=radio]:checked ~ .check:after { + animation: rippleOn 500ms; } +.radio input[type=radio] { + opacity: 0; + height: 0; + width: 0; + overflow: hidden; } + .radio input[type=radio]:checked ~ .check, .radio input[type=radio]:checked ~ .circle { + opacity: 1; } + .radio input[type=radio]:checked ~ .check { + background-color: #9c27b0; } + .radio input[type=radio]:checked ~ .circle { + border-color: #9c27b0; } + .radio input[type=radio]:checked ~ .check { + transform: scale3d(0.65, 0.65, 1); } +.radio input[type=radio][disabled] ~ .check, .radio input[type=radio][disabled] ~ .circle { + opacity: 0.26; } +.radio input[type=radio][disabled] ~ .check { + background-color: #000000; } +.radio input[type=radio][disabled] ~ .circle { + border-color: #000000; } + +@keyframes rippleOn { + 0% { + opacity: 0; } + 50% { + opacity: 0.2; } + 100% { + opacity: 0; } } +@keyframes rippleOff { + 0% { + opacity: 0; } + 50% { + opacity: 0.2; } + 100% { + opacity: 0; } } +.checkbox label { + cursor: pointer; + padding-left: 0; + color: rgba(0,0,0, 0.26); } + .form-group.is-focused .checkbox label { + color: rgba(0,0,0, 0.26); } + .form-group.is-focused .checkbox label:hover, .form-group.is-focused .checkbox label:focus { + color: rgba(0,0,0, .54); } + fieldset[disabled] .form-group.is-focused .checkbox label { + color: rgba(0,0,0, 0.26); } +.checkbox input[type=checkbox] { + opacity: 0; + position: absolute; + margin: 0; + z-index: -1; + width: 0; + height: 0; + overflow: hidden; + left: 0; + pointer-events: none; } +.checkbox .checkbox-material { + vertical-align: middle; + position: relative; + top: 3px; + padding-right: 5px; } + .checkbox .checkbox-material:before { + display: block; + position: absolute; + left: 0; + content: ""; + background-color: rgba(0, 0, 0, 0.84); + height: 20px; + width: 20px; + border-radius: 100%; + z-index: 1; + opacity: 0; + margin: 0; + transform: scale3d(2.3, 2.3, 1); } + .checkbox .checkbox-material .check { + position: relative; + display: inline-block; + width: 20px; + height: 20px; + border: 1px solid rgba(0,0,0, .54); + overflow: hidden; + z-index: 1; + border-radius: 3px; } + .checkbox .checkbox-material .check:before { + position: absolute; + content: ""; + transform: rotate(45deg); + display: block; + margin-top: -3px; + margin-left: 7px; + width: 0; + height: 0; + background: red; + box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0 inset; + animation: checkbox-off 0.3s forwards; } +.checkbox input[type=checkbox]:focus + .checkbox-material .check:after { + opacity: 0.2; } +.checkbox input[type=checkbox]:checked + .checkbox-material .check { + background: #9c27b0; } +.checkbox input[type=checkbox]:checked + .checkbox-material .check:before { + color: #FFFFFF; + box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px; + animation: checkbox-on 0.3s forwards; } +.checkbox input[type=checkbox]:checked + .checkbox-material:before { + animation: rippleOn 500ms; } +.checkbox input[type=checkbox]:checked + .checkbox-material .check:after { + animation: rippleOn 500ms forwards; } +.checkbox input[type=checkbox]:not(:checked) + .checkbox-material:before { + animation: rippleOff 500ms; } +.checkbox input[type=checkbox]:not(:checked) + .checkbox-material .check:after { + animation: rippleOff 500ms; } +fieldset[disabled] .checkbox, fieldset[disabled] .checkbox input[type=checkbox], +.checkbox input[type=checkbox][disabled] ~ .checkbox-material .check, +.checkbox input[type=checkbox][disabled] + .circle { + opacity: 0.5; } +.checkbox input[type=checkbox][disabled] ~ .checkbox-material .check { + border-color: #000000; + opacity: .26; } +.checkbox input[type=checkbox][disabled] + .checkbox-material .check:after { + background-color: rgba(0,0,0, 0.87); + transform: rotate(-45deg); } + +@keyframes checkbox-on { + 0% { + box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px; } + 50% { + box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px; } + 100% { + box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px; } } +@keyframes rippleOn { + 0% { + opacity: 0; } + 50% { + opacity: 0.2; } + 100% { + opacity: 0; } } +@keyframes rippleOff { + 0% { + opacity: 0; } + 50% { + opacity: 0.2; } + 100% { + opacity: 0; } } +@media (max-width: 768px) { + .main .container { + margin-bottom: 50px; } } +@media (min-width: 768px) { + .navbar-form { + margin-top: 21px; + margin-bottom: 21px; + padding-left: 5px; + padding-right: 5px; } + + .btn-wd { + min-width: 140px; } } diff --git a/public/asistente/js/bootstrap.min.js b/public/asistente/js/bootstrap.min.js new file mode 100644 index 00000000..133aeecb --- /dev/null +++ b/public/asistente/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.3.5 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under the MIT license + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.5",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.5",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.5",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.5",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.5",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger("shown.bs.dropdown",h)}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.5",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.5",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.5",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file diff --git a/public/asistente/js/jquery-2.2.4.min.js b/public/asistente/js/jquery-2.2.4.min.js new file mode 100644 index 00000000..4024b662 --- /dev/null +++ b/public/asistente/js/jquery-2.2.4.min.js @@ -0,0 +1,4 @@ +/*! jQuery v2.2.4 | (c) jQuery Foundation | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="2.2.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isPlainObject:function(a){var b;if("object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype||{},"isPrototypeOf"))return!1;for(b in a);return void 0===b||k.call(a,b)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=d.createElement("script"),b.text=a,d.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:h.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(d=e.call(arguments,2),f=function(){return a.apply(b||this,d.concat(e.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return h.call(b,a)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&f.parentNode&&(this.length=1,this[0]=f),this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?void 0!==c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?h.call(n(a),this[0]):h.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||n.uniqueSort(e),D.test(a)&&e.reverse()),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.removeEventListener("DOMContentLoaded",J),a.removeEventListener("load",J),n.ready()}n.ready.promise=function(b){return I||(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(n.ready):(d.addEventListener("DOMContentLoaded",J),a.addEventListener("load",J))),I.promise(b)},n.ready.promise();var K=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)K(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},L=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function M(){this.expando=n.expando+M.uid++}M.uid=1,M.prototype={register:function(a,b){var c=b||{};return a.nodeType?a[this.expando]=c:Object.defineProperty(a,this.expando,{value:c,writable:!0,configurable:!0}),a[this.expando]},cache:function(a){if(!L(a))return{};var b=a[this.expando];return b||(b={},L(a)&&(a.nodeType?a[this.expando]=b:Object.defineProperty(a,this.expando,{value:b,configurable:!0}))),b},set:function(a,b,c){var d,e=this.cache(a);if("string"==typeof b)e[b]=c;else for(d in b)e[d]=b[d];return e},get:function(a,b){return void 0===b?this.cache(a):a[this.expando]&&a[this.expando][b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=a[this.expando];if(void 0!==f){if(void 0===b)this.register(a);else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in f?d=[b,e]:(d=e,d=d in f?[d]:d.match(G)||[])),c=d.length;while(c--)delete f[d[c]]}(void 0===b||n.isEmptyObject(f))&&(a.nodeType?a[this.expando]=void 0:delete a[this.expando])}},hasData:function(a){var b=a[this.expando];return void 0!==b&&!n.isEmptyObject(b)}};var N=new M,O=new M,P=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Q=/[A-Z]/g;function R(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(Q,"-$&").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:P.test(c)?n.parseJSON(c):c; +}catch(e){}O.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return O.hasData(a)||N.hasData(a)},data:function(a,b,c){return O.access(a,b,c)},removeData:function(a,b){O.remove(a,b)},_data:function(a,b,c){return N.access(a,b,c)},_removeData:function(a,b){N.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=O.get(f),1===f.nodeType&&!N.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),R(f,d,e[d])));N.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){O.set(this,a)}):K(this,function(b){var c,d;if(f&&void 0===b){if(c=O.get(f,a)||O.get(f,a.replace(Q,"-$&").toLowerCase()),void 0!==c)return c;if(d=n.camelCase(a),c=O.get(f,d),void 0!==c)return c;if(c=R(f,d,void 0),void 0!==c)return c}else d=n.camelCase(a),this.each(function(){var c=O.get(this,d);O.set(this,d,b),a.indexOf("-")>-1&&void 0!==c&&O.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){O.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=N.get(a,b),c&&(!d||n.isArray(c)?d=N.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return N.get(a,c)||N.access(a,c,{empty:n.Callbacks("once memory").add(function(){N.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length",""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};$.optgroup=$.option,$.tbody=$.tfoot=$.colgroup=$.caption=$.thead,$.th=$.td;function _(a,b){var c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function aa(a,b){for(var c=0,d=a.length;d>c;c++)N.set(a[c],"globalEval",!b||N.get(b[c],"globalEval"))}var ba=/<|&#?\w+;/;function ca(a,b,c,d,e){for(var f,g,h,i,j,k,l=b.createDocumentFragment(),m=[],o=0,p=a.length;p>o;o++)if(f=a[o],f||0===f)if("object"===n.type(f))n.merge(m,f.nodeType?[f]:f);else if(ba.test(f)){g=g||l.appendChild(b.createElement("div")),h=(Y.exec(f)||["",""])[1].toLowerCase(),i=$[h]||$._default,g.innerHTML=i[1]+n.htmlPrefilter(f)+i[2],k=i[0];while(k--)g=g.lastChild;n.merge(m,g.childNodes),g=l.firstChild,g.textContent=""}else m.push(b.createTextNode(f));l.textContent="",o=0;while(f=m[o++])if(d&&n.inArray(f,d)>-1)e&&e.push(f);else if(j=n.contains(f.ownerDocument,f),g=_(l.appendChild(f),"script"),j&&aa(g),c){k=0;while(f=g[k++])Z.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var da=/^key/,ea=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,fa=/^([^.]*)(?:\.(.+)|)/;function ga(){return!0}function ha(){return!1}function ia(){try{return d.activeElement}catch(a){}}function ja(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ja(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=ha;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return"undefined"!=typeof n&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(G)||[""],j=b.length;while(j--)h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=N.hasData(a)&&N.get(a);if(r&&(i=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=fa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&N.remove(a,"handle events")}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(N.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!==this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,la=/\s*$/g;function pa(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function qa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function ra(a){var b=na.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function sa(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(N.hasData(a)&&(f=N.access(a),g=N.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}O.hasData(a)&&(h=O.access(a),i=n.extend({},h),O.set(b,i))}}function ta(a,b){var c=b.nodeName.toLowerCase();"input"===c&&X.test(a.type)?b.checked=a.checked:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}function ua(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&ma.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),ua(f,b,c,d)});if(o&&(e=ca(b,a[0].ownerDocument,!1,a,d),g=e.firstChild,1===e.childNodes.length&&(e=g),g||d)){for(h=n.map(_(e,"script"),qa),i=h.length;o>m;m++)j=e,m!==p&&(j=n.clone(j,!0,!0),i&&n.merge(h,_(j,"script"))),c.call(a[m],j,m);if(i)for(k=h[h.length-1].ownerDocument,n.map(h,ra),m=0;i>m;m++)j=h[m],Z.test(j.type||"")&&!N.access(j,"globalEval")&&n.contains(k,j)&&(j.src?n._evalUrl&&n._evalUrl(j.src):n.globalEval(j.textContent.replace(oa,"")))}return a}function va(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(_(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&aa(_(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(ka,"<$1>")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=_(h),f=_(a),d=0,e=f.length;e>d;d++)ta(f[d],g[d]);if(b)if(c)for(f=f||_(a),g=g||_(h),d=0,e=f.length;e>d;d++)sa(f[d],g[d]);else sa(a,h);return g=_(h,"script"),g.length>0&&aa(g,!i&&_(a,"script")),h},cleanData:function(a){for(var b,c,d,e=n.event.special,f=0;void 0!==(c=a[f]);f++)if(L(c)){if(b=c[N.expando]){if(b.events)for(d in b.events)e[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);c[N.expando]=void 0}c[O.expando]&&(c[O.expando]=void 0)}}}),n.fn.extend({domManip:ua,detach:function(a){return va(this,a,!0)},remove:function(a){return va(this,a)},text:function(a){return K(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.appendChild(a)}})},prepend:function(){return ua(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=pa(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return ua(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(_(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return K(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!la.test(a)&&!$[(Y.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(_(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return ua(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(_(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),f=e.length-1,h=0;f>=h;h++)c=h===f?this:this.clone(!0),n(e[h])[b](c),g.apply(d,c.get());return this.pushStack(d)}});var wa,xa={HTML:"block",BODY:"block"};function ya(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function za(a){var b=d,c=xa[a];return c||(c=ya(a,b),"none"!==c&&c||(wa=(wa||n(" + + {% endif %} + + {% else %} +
+ +
+ + + + + + + + + + +
+ + + {% if (entrada.imageFilename) %} + {{ entrada.linkRoute }} + {% endif %} + + {% if (entrada.linkPosting) %} + + + + {% endif %} +
+ +
+

+ {{ entrada.titulo | replace({'

':'', '

':''}) | raw}} +

+
+ {{ entrada.contenido | replace({'

':'', '

':''}) | raw}} +
+ + +
+ {% endif %} + + +
+ {% endfor %} + + diff --git a/templates/models/sections/franjagris.html.twig b/templates/models/sections/franjagris.html.twig new file mode 100644 index 00000000..5372631e --- /dev/null +++ b/templates/models/sections/franjagris.html.twig @@ -0,0 +1,28 @@ +
+ +
diff --git a/templates/models/sections/invitacion-vacia.html.twig b/templates/models/sections/invitacion-vacia.html.twig new file mode 100644 index 00000000..f81bc40e --- /dev/null +++ b/templates/models/sections/invitacion-vacia.html.twig @@ -0,0 +1,82 @@ +
+
+
+ {% for entrada in section.entrada %} + {% if (entrada.orden == 1) %} +
+
+ + {% if (entrada.isSinTitulo != 1) %} +

+ + {{ entrada.titulo | replace({'

':'', '

':''}) | raw }} +

+ {% endif %} + + {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} +
+
+
+ {% else %} +
+
+

+ + {% if (entrada.isSinTitulo != 1) %} + {{ entrada.titulo | replace({'

':'', '

':''}) | raw }} + {% endif %} +

+
+

+ {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {% if (entrada.contacto) %} + {% include 'modelEntrada/_pContacto.html.twig' with { 'contactos':entrada.contacto } %} + {% endif %} +

+ {% if (entrada.footer) %} + {% if (entrada.linkPosting) %} + + {{ entrada.footer }} + + {% else %} + {% if (entrada.linkRoute) %} + + {{ entrada.footer }} + + {% else %} + {{ entrada.footer }} + {% endif %} + {% endif %} + {% endif %} + {% if (entrada.button) %} + {% for boton in entrada.button %} + + {{ boton.textButton }} + + {% endfor %} + {% endif %} +
+ +
+ {% endif %} + {% endfor %} + + + +
+
+
\ No newline at end of file diff --git a/templates/models/sections/invitacion.html.twig b/templates/models/sections/invitacion.html.twig new file mode 100644 index 00000000..918d9004 --- /dev/null +++ b/templates/models/sections/invitacion.html.twig @@ -0,0 +1,82 @@ +
+
+
+ {% for entrada in entradas %} + {% if (entrada.orden == 1) %} +
+
+ + {% if (entrada.isSinTitulo != 1) %} +

+ + {{ entrada.titulo | replace({'

':'', '

':''}) | raw }} +

+ {% endif %} + + {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} +
+
+
+ {% else %} +
+
+

+ + {% if (entrada.isSinTitulo != 1) %} + {{ entrada.titulo | replace({'

':'', '

':''}) | raw }} + {% endif %} +

+
+

+ {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {% if (entrada.contacto) %} + {% include 'modelEntrada/_pContacto.html.twig' with { 'contactos':entrada.contacto } %} + {% endif %} +

+ {% if (entrada.footer) %} + {% if (entrada.linkPosting) %} + + {{ entrada.footer }} + + {% else %} + {% if (entrada.linkRoute) %} + + {{ entrada.footer }} + + {% else %} + {{ entrada.footer }} + {% endif %} + {% endif %} + {% endif %} + {% if (entrada.button) %} + {% for boton in entrada.button %} + + {{ boton.textButton }} + + {% endfor %} + {% endif %} +
+ +
+ {% endif %} + {% endfor %} + + + +
+
+
\ No newline at end of file diff --git a/templates/models/sections/masterhead-section.html.twig b/templates/models/sections/masterhead-section.html.twig new file mode 100644 index 00000000..d691071e --- /dev/null +++ b/templates/models/sections/masterhead-section.html.twig @@ -0,0 +1,32 @@ +
+
+
+

+ {{ section.title | replace({'

':'', '

':'
'}) | raw}} +

+ + Podés hacerlo desde aquí + +
+
+ {{ base.siteName }} + +
+
+ +
+

+ {{ section.contenido | replace({'

':'', '

':'
'}) | raw}} +

+
+
+
+
diff --git a/templates/models/sections/pasos.html.twig b/templates/models/sections/pasos.html.twig new file mode 100644 index 00000000..649ad349 --- /dev/null +++ b/templates/models/sections/pasos.html.twig @@ -0,0 +1,55 @@ +
+ +
+
+
+
+
+
+
+
+
+
+

+ + {{ section.contenido | replace({'

':'', '

':''}) | raw }} +
+

+
+ +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/templates/models/sections/section-link.html.twig b/templates/models/sections/section-link.html.twig new file mode 100644 index 00000000..78321a73 --- /dev/null +++ b/templates/models/sections/section-link.html.twig @@ -0,0 +1,61 @@ +
+
+ {% for entrada in section.entrada %} +
+
+
+ {% if(entrada.comentariosNoDeleted) %} +
+ {% include('comentario/nota.html.twig') %} +
+
+ {% endif %} +
+
+
+
+
+
+

{{ entrada.titulo | replace({'

':'', '

':''}) | raw }}
+

+
+
+
+ {{ entrada.titulo | replace({'<p>':'', '</p>':''}) | raw }} +
+
+
+ {{ entrada.titulo | replace({'

':'', '

':''}) | raw }} +
+
+
+ {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + +
+
+ {% for referencia in entrada.entradaReferences %} + + + Notas
+
+ {% endfor %} +
+
+
+ {% if (is_granted("ROLE_ESCRITOR")) %} + Id : {{ entrada.id }} + {% endif %} +
+ +
+ {% endfor %} +
+
diff --git a/templates/models/sections/section-notas.html.twig b/templates/models/sections/section-notas.html.twig new file mode 100644 index 00000000..2b9216d1 --- /dev/null +++ b/templates/models/sections/section-notas.html.twig @@ -0,0 +1,64 @@ +
+
+ {% for entrada in section.entrada %} +
+
+
+
+ {% include('bases/_nota.html.twig') %} +
+
+
+
+
+
+
+
+

{{ entrada.titulo | replace({'

':'', '

':''}) | raw }}
+

+
+
+
+ {{ entrada.titulo | replace({'<p>':'', '</p>':''}) | raw }} +
+
+
+ {{ entrada.titulo | replace({'

':'', '

':''}) | raw }} +
+
+
+ {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + +
+
+ {% for referencia in entrada.entradaReferences %} + + + Notas
+
+ {% endfor %} + + + Video
+
+
+
+
+ {% if (is_granted("ROLE_ESCRITOR")) %} + Id : {{ entrada.id }} + {% endif %} +
+ +
+ {% endfor %} +
+
diff --git a/templates/models/sections/tarjetas.html.twig b/templates/models/sections/tarjetas.html.twig new file mode 100644 index 00000000..5b426832 --- /dev/null +++ b/templates/models/sections/tarjetas.html.twig @@ -0,0 +1,56 @@ +
+
+{#
#} +{#
#} +{#
#} +{#
#} +
+
+
+ {% if entradas is not defined %} + {% set entradas = section.entrada %} + {% endif %} + {% for entrada in entradas %} + + + {% endfor %} +
+
+
+{#
#} +{#
#} +{#
#} +{#
#} +
+
diff --git a/templates/models/sections/three-columns.html.twig b/templates/models/sections/three-columns.html.twig new file mode 100644 index 00000000..1c2a1723 --- /dev/null +++ b/templates/models/sections/three-columns.html.twig @@ -0,0 +1,17 @@ +
+
+

+ + {{ section.contenido | replace({'

':'', '

':''}) | raw }} +
+

+
+
+
+
+ {% for entrada in entradas %} + {% include 'modelEntrada/'~entrada.modelTemplate~'.html.twig' with { 'section':entrada } %} + {% endfor %} +
+
+
\ No newline at end of file diff --git a/templates/models/sections/tres-images.html.twig b/templates/models/sections/tres-images.html.twig new file mode 100644 index 00000000..911009d3 --- /dev/null +++ b/templates/models/sections/tres-images.html.twig @@ -0,0 +1,84 @@ +{#
#} +
+
+
+
+
+ {% for entrada in entradas %} + {% if (entrada.orden == 1) %} + + + {% endif %} + {% endfor %} +
+
+
+
+ + {% for entrada in section.entrada %} + {% if (entrada.orden != 1) %} + + {% endif %} + {% endfor %} + +
+
+
+
+
+ + \ No newline at end of file From 2183f2c69284c5899c9d41ea8a66dbf4c81d8f76 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sun, 24 Oct 2021 11:52:50 -0300 Subject: [PATCH 169/197] Integrando los models a la carpeta models --- templates/models/principal/masterhead.html.twig | 2 +- templates/models/principal/vacia.html.twig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/models/principal/masterhead.html.twig b/templates/models/principal/masterhead.html.twig index 5ca76282..5388c0da 100644 --- a/templates/models/principal/masterhead.html.twig +++ b/templates/models/principal/masterhead.html.twig @@ -18,7 +18,7 @@ {% block sections %}
{% for section in principal.secciones %} - {% include 'sections/'~section.modelTemplate~'.html.twig' with { 'section':section } %} + {% include 'models/sections/'~section.modelTemplate~'.html.twig' with { 'section':section } %}


diff --git a/templates/models/principal/vacia.html.twig b/templates/models/principal/vacia.html.twig index 288f6572..767223f6 100644 --- a/templates/models/principal/vacia.html.twig +++ b/templates/models/principal/vacia.html.twig @@ -20,7 +20,7 @@
{% for section in principal.secciones %} - {% include 'sections/'~section.modelTemplate~'.html.twig' ignore missing with { 'section':section } %} +{# {% include 'sections/'~section.modelTemplate~'.html.twig' ignore missing with { 'section':section } %}#} {% include 'models/sections/'~section.modelTemplate~'.html.twig' ignore missing with { 'section':section } %} {% endfor %}
From 75f6a152cffe7d7715807da34c160afc46cdf3cc Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sun, 24 Oct 2021 13:02:15 -0300 Subject: [PATCH 170/197] Integrando los models a la carpeta models --- templates/models/entradas/default.html.twig | 39 +++ .../models/principal/generico-cards.html.twig | 252 ++++++++++++++++++ 2 files changed, 291 insertions(+) create mode 100644 templates/models/principal/generico-cards.html.twig diff --git a/templates/models/entradas/default.html.twig b/templates/models/entradas/default.html.twig index e69de29b..5c74f343 100644 --- a/templates/models/entradas/default.html.twig +++ b/templates/models/entradas/default.html.twig @@ -0,0 +1,39 @@ +
+ +
+
+ {{ base.lema }} +
+
+
+ {{ entrada.titulo | replace({'

':'', '

':''}) | raw }} +
+
+
+ {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + +
+
+ {% for referencia in entrada.entradaReferences %} + + + Notas
+
+ {% endfor %} + + + + {{ entrada.footer | default('Video') }} +
+
+
+
+
+
\ No newline at end of file diff --git a/templates/models/principal/generico-cards.html.twig b/templates/models/principal/generico-cards.html.twig new file mode 100644 index 00000000..21fb2c5c --- /dev/null +++ b/templates/models/principal/generico-cards.html.twig @@ -0,0 +1,252 @@ +{% extends 'base_material_kit.twig' %} +{% block title %} {{ principal.titulo | striptags }} {% endblock %} +{% block sslocal %} + + + +{% endblock %} +{% block stylesheets %} + {{ parent() }} + + +{% endblock %} + +{% block header %} +
+ {% include 'inicio/_nav.html.twig' %} +
+ +
+
+
+
+
+ Iglesia de la Alameda +
+
+
+
+
+ +
+
+ +{% endblock %} +{% block sections %} +
+
+
+
+
+
+

+ {{ principal.titulo | replace({'

':'', '

':''}) | raw }} +

+

+ {{ principal.contenido | replace({'

':'', '

':''}) | raw }} +

+
+
+ Alameda +
+
+
+
+ + {% if principal.section | length > 0 %} + {% set sections = principal.section %} + {% else %} + {% set sections = principal.secciones %} + {% endif %} + {% for section in sections %} +
+
+
+ {% for entrada in section.entrada %} + +
+ +
+
+ {{ base.lema }} +
+
+
+ {{ entrada.titulo | replace({'

':'', '

':''}) | raw }} +
+
+
+ {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + +
+
+ {% for referencia in entrada.entradaReferences %} + + + Notas
+
+ {% endfor %} + + + + {{ entrada.footer | default('Video') }} +
+
+
+
+
+
+ {% endfor %} + + + + + +
+
+
+ {% endfor %} +
+ + + +{% endblock %} +{% block javascripts %} + {{ parent() }} + +{% endblock %} +{% block jslocal %} + {# {{ encore_entry_script_tags('app') }} #} + + + +{% endblock %} \ No newline at end of file From f4c8f62a792257f92756dd546aaa4274d728b5fc Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sun, 24 Oct 2021 13:26:40 -0300 Subject: [PATCH 171/197] Integrando los models a la carpeta models --- templates/models/principal/generico-cards.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/models/principal/generico-cards.html.twig b/templates/models/principal/generico-cards.html.twig index 21fb2c5c..e67f531c 100644 --- a/templates/models/principal/generico-cards.html.twig +++ b/templates/models/principal/generico-cards.html.twig @@ -177,7 +177,7 @@ {% endfor %} - + {{ entrada.footer | default('Video') }}
From 6eae14212cfbaa4b88a925e5ffad401de1832c19 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sun, 24 Oct 2021 13:39:53 -0300 Subject: [PATCH 172/197] Integrando los models a la carpeta models --- templates/models/entradas/default.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/models/entradas/default.html.twig b/templates/models/entradas/default.html.twig index 5c74f343..63c461e0 100644 --- a/templates/models/entradas/default.html.twig +++ b/templates/models/entradas/default.html.twig @@ -28,7 +28,7 @@ {% endfor %}
- + {{ entrada.footer | default('Video') }}
From b767b465be89ca39d0535427976cd31cd40f1cfe Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sun, 24 Oct 2021 13:45:28 -0300 Subject: [PATCH 173/197] Corrigiendo bug de tags html en head title --- templates/models/principal/generico-cards.html.twig | 2 +- templates/models/principal/masterhead.html.twig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/models/principal/generico-cards.html.twig b/templates/models/principal/generico-cards.html.twig index e67f531c..30b62de5 100644 --- a/templates/models/principal/generico-cards.html.twig +++ b/templates/models/principal/generico-cards.html.twig @@ -1,5 +1,5 @@ {% extends 'base_material_kit.twig' %} -{% block title %} {{ principal.titulo | striptags }} {% endblock %} +{% block title %} {{ principal.titulo | striptags | replace({'

':'', '

':''}) }} {% endblock %} {% block sslocal %} diff --git a/templates/models/principal/masterhead.html.twig b/templates/models/principal/masterhead.html.twig index 5388c0da..dc62d99e 100644 --- a/templates/models/principal/masterhead.html.twig +++ b/templates/models/principal/masterhead.html.twig @@ -1,5 +1,5 @@ {% extends 'base_material_kit.twig' %} -{% block title %} {{ principal.titulo | capitalize}} {% endblock %} +{% block title %} {{ principal.titulo | capitalize | striptags | replace({'

':'', '

':''}) }} {% endblock %} {% block stylesheets %} {{ parent() }} From 5e774f6b35c48b7622b73872f3ad2067e26c7335 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sat, 30 Oct 2021 13:32:01 -0300 Subject: [PATCH 174/197] SE6 --- assets/js/nota_mensaje.js | 160 ++++++++++++++++---------------- templates/bases/_nota.html.twig | 160 +++++++++++++++++++------------- 2 files changed, 174 insertions(+), 146 deletions(-) diff --git a/assets/js/nota_mensaje.js b/assets/js/nota_mensaje.js index 3e15821c..a118653c 100644 --- a/assets/js/nota_mensaje.js +++ b/assets/js/nota_mensaje.js @@ -1,28 +1,28 @@ import $ from 'jquery'; $(function () { - const puno = localStorage.getItem("SE5Puno"); - const pdos = localStorage.getItem("SE5Pdos"); - const ptres = localStorage.getItem("SE5Ptres"); - const pcuatro = localStorage.getItem("SE5Pcuatro"); - const pcinco = localStorage.getItem("SE5Pcinco"); - const pseis = localStorage.getItem("SE5Pseis"); - const psiete = localStorage.getItem("SE5Psiete"); - const pocho = localStorage.getItem("SE5Pocho"); - const pnueve = localStorage.getItem("SE5Pnueve"); - const pdiez = localStorage.getItem("SE5Pdiez"); - const ponce = localStorage.getItem("SE5Ponce"); - const pdoce = localStorage.getItem("SE5Pdoce"); - const ptrece = localStorage.getItem("SE5Ptrece"); - const pcatorce = localStorage.getItem("SE5Pcatorce"); - const pquince = localStorage.getItem("SE5Pquince"); - const pdieciseis = localStorage.getItem("SE5Pdieciseis"); - const pdiecisiete = localStorage.getItem("SE5Pdiecisiete"); - const pdieciocho = localStorage.getItem("SE5Pdieciocho"); - const pdiecinueve = localStorage.getItem("SE5Pdiecinueve"); - const pveinte = localStorage.getItem("SE5Pveinte"); + const puno = localStorage.getItem("SE6Puno"); + const pdos = localStorage.getItem("SE6Pdos"); + const ptres = localStorage.getItem("SE6Ptres"); + const pcuatro = localStorage.getItem("SE6Pcuatro"); + const pcinco = localStorage.getItem("SE6Pcinco"); + const pseis = localStorage.getItem("SE6Pseis"); + const psiete = localStorage.getItem("SE6Psiete"); + const pocho = localStorage.getItem("SE6Pocho"); + const pnueve = localStorage.getItem("SE6Pnueve"); + const pdiez = localStorage.getItem("SE6Pdiez"); + const ponce = localStorage.getItem("SE6Ponce"); + const pdoce = localStorage.getItem("SE6Pdoce"); + const ptrece = localStorage.getItem("SE6Ptrece"); + const pcatorce = localStorage.getItem("SE6Pcatorce"); + const pquince = localStorage.getItem("SE6Pquince"); + const pdieciseis = localStorage.getItem("SE6Pdieciseis"); + const pdiecisiete = localStorage.getItem("SE6Pdiecisiete"); + const pdieciocho = localStorage.getItem("SE6Pdieciocho"); + const pdiecinueve = localStorage.getItem("SE6Pdiecinueve"); + const pveinte = localStorage.getItem("SE6Pveinte"); if (pcinco != null) { - $('#pcinco').val(JSON.parse(localStorage.SE5Pcinco)) + $('#pcinco').val(JSON.parse(localStorage.SE6Pcinco)) muestra1('#lpcinco', '#sinpcinco') aceptado('cinco'); } else { @@ -30,7 +30,7 @@ $(function () { } if (puno != null) { - $('#puno').val(JSON.parse(localStorage.SE5Puno)) + $('#puno').val(JSON.parse(localStorage.SE6Puno)) muestra1('#lpuno', '#sinpuno') aceptado('uno'); console.log('19') @@ -40,7 +40,7 @@ $(function () { } if (pdos != null) { - $('#pdos').val(JSON.parse(localStorage.SE5Pdos)) + $('#pdos').val(JSON.parse(localStorage.SE6Pdos)) muestra1('#lpdos', '#sinpdos') aceptado('dos'); } else { @@ -48,7 +48,7 @@ $(function () { } if (ptres != null) { - $('#ptres').val(JSON.parse(localStorage.SE5Ptres)) + $('#ptres').val(JSON.parse(localStorage.SE6Ptres)) muestra1('#lptres', '#sinptres') aceptado('tres'); } else { @@ -56,7 +56,7 @@ $(function () { } if (pcuatro != null) { - $('#pcuatro').val(JSON.parse(localStorage.SE5Pcuatro)) + $('#pcuatro').val(JSON.parse(localStorage.SE6Pcuatro)) muestra1('#lpcuatro', '#sinpcuatro') aceptado('cuatro'); } else { @@ -64,14 +64,14 @@ $(function () { } if (pseis != null) { - $('#pseis').val(JSON.parse(localStorage.SE5Pseis)) + $('#pseis').val(JSON.parse(localStorage.SE6Pseis)) muestra1('#lpseis', '#sinpseis') aceptado('seis'); } else { oculta1('#lpseis', '#sinpseis') } if (psiete != null) { - $('#psiete').val(JSON.parse(localStorage.SE5Psiete)) + $('#psiete').val(JSON.parse(localStorage.SE6Psiete)) muestra1('#lpsiete', '#sinpsiete') aceptado('siete'); } else { @@ -79,7 +79,7 @@ $(function () { } if (pocho != null) { - $('#pocho').val(JSON.parse(localStorage.SE5Pocho)) + $('#pocho').val(JSON.parse(localStorage.SE6Pocho)) muestra1('#lpocho', '#sinpocho') aceptado('ocho'); } else { @@ -87,7 +87,7 @@ $(function () { } if (pnueve != null) { - $('#pnueve').val(JSON.parse(localStorage.SE5Pnueve)) + $('#pnueve').val(JSON.parse(localStorage.SE6Pnueve)) muestra1('#lpnueve', '#sinpnueve') aceptado('nueve'); } else { @@ -95,7 +95,7 @@ $(function () { } if (pdiez != null) { - $('#pdiez').val(JSON.parse(localStorage.SE5Pdiez)) + $('#pdiez').val(JSON.parse(localStorage.SE6Pdiez)) muestra1('#lpdiez', '#sinpdiez') aceptado('diez'); } else { @@ -103,70 +103,70 @@ $(function () { } if (ponce != null) { - $('#ponce').val(JSON.parse(localStorage.SE5Ponce)) + $('#ponce').val(JSON.parse(localStorage.SE6Ponce)) muestra1('#lponce', '#sinponce') aceptado('once'); } else { oculta1('#lponce', '#sinponce') } if (pdoce != null) { - $('#pdoce').val(JSON.parse(localStorage.SE5Pdoce)) + $('#pdoce').val(JSON.parse(localStorage.SE6Pdoce)) muestra1('#lpdoce', '#sinpdoce') aceptado('doce'); } else { oculta1('#lpdoce', '#sinpdoce') } if (ptrece != null) { - $('#ptrece').val(JSON.parse(localStorage.SE5Ptrece)) + $('#ptrece').val(JSON.parse(localStorage.SE6Ptrece)) muestra1('#lptrece', '#sinptrece') aceptado('trece'); } else { oculta1('#lptrece', '#sinptrece') } if (pcatorce != null) { - $('#pcatorce').val(JSON.parse(localStorage.SE5Pcatorce)) + $('#pcatorce').val(JSON.parse(localStorage.SE6Pcatorce)) muestra1('#lpcatorce', '#sinpcatorce') aceptado('catorce'); } else { oculta1('#lpcatorce', '#sinpcatorce') } if (pquince != null) { - $('#pquince').val(JSON.parse(localStorage.SE5Pquince)) + $('#pquince').val(JSON.parse(localStorage.SE6Pquince)) muestra1('#lpquince', '#sinpquince') aceptado('quince'); } else { oculta1('#lpquince', '#sinpquince') } if (pdieciseis != null) { - $('#pdieciseis').val(JSON.parse(localStorage.SE5Pdieciseis)) + $('#pdieciseis').val(JSON.parse(localStorage.SE6Pdieciseis)) muestra1('#lpdieciseis', '#sinpdieciseis') aceptado('dieciseis'); } else { oculta1('#lpdieciseis', '#sinpdieciseis') } if (pdiecisiete != null) { - $('#pdiecisiete').val(JSON.parse(localStorage.SE5Pdiecisiete)) + $('#pdiecisiete').val(JSON.parse(localStorage.SE6Pdiecisiete)) muestra1('#lpdiecisiete', '#sinpdiecisiete') aceptado('diecisiete'); } else { oculta1('#lpdiecisiete', '#sinpdiecisiete') } if (pdieciocho != null) { - $('#pdieciocho').val(JSON.parse(localStorage.SE5Pdieciocho)) + $('#pdieciocho').val(JSON.parse(localStorage.SE6Pdieciocho)) muestra1('#lpdieciocho', '#sinpdieciocho') aceptado('dieciocho'); } else { oculta1('#lpdieciocho', '#sinpdieciocho') } if (pdiecinueve != null) { - $('#pdiecinueve').val(JSON.parse(localStorage.SE5Pdiecinueve)) + $('#pdiecinueve').val(JSON.parse(localStorage.SE6Pdiecinueve)) muestra1('#lpdiecinueve', '#sinpdiecinueve') aceptado('diecinueve'); } else { oculta1('#lpdiecinueve', '#sinpdiecinueve') } if (pveinte != null) { - $('#pveinte').val(JSON.parse(localStorage.SE5Pveinte)) + $('#pveinte').val(JSON.parse(localStorage.SE6Pveinte)) muestra1('#lpveinte', '#sinpveinte') aceptado('veinte'); } else { @@ -530,94 +530,94 @@ function procesa(p) { console.log('p = ' + p) if (p === 'diez') { const pdiez = $('#pdiez').val(); - localStorage.SE5Pdiez = JSON.stringify(pdiez); + localStorage.SE6Pdiez = JSON.stringify(pdiez); } if (p === 'nueve') { const pnueve = $('#pnueve').val(); - localStorage.SE5Pnueve = JSON.stringify(pnueve); + localStorage.SE6Pnueve = JSON.stringify(pnueve); } if (p === 'ocho') { const pocho = $('#pocho').val(); - localStorage.SE5Pocho = JSON.stringify(pocho); + localStorage.SE6Pocho = JSON.stringify(pocho); } if (p === 'siete') { const psiete = $('#psiete').val(); - localStorage.SE5Psiete = JSON.stringify(psiete); + localStorage.SE6Psiete = JSON.stringify(psiete); } if (p === 'seis') { const pseis = $('#pseis').val(); - localStorage.SE5Pseis = JSON.stringify(pseis); + localStorage.SE6Pseis = JSON.stringify(pseis); } if (p === 'cinco') { const pcinco = $('#pcinco').val(); - localStorage.SE5Pcinco = JSON.stringify(pcinco); + localStorage.SE6Pcinco = JSON.stringify(pcinco); } if (p === 'uno') { const puno = $('#puno').val(); - localStorage.SE5Puno = JSON.stringify(puno); + localStorage.SE6Puno = JSON.stringify(puno); } if (p === 'dos') { const pdos = $('#pdos').val(); - localStorage.SE5Pdos = JSON.stringify(pdos); + localStorage.SE6Pdos = JSON.stringify(pdos); } if (p === 'tres') { const ptres = $('#ptres').val(); - localStorage.SE5Ptres = JSON.stringify(ptres); + localStorage.SE6Ptres = JSON.stringify(ptres); } if (p === 'cuatro') { const pcuatro = $('#pcuatro').val(); - localStorage.SE5Pcuatro = JSON.stringify(pcuatro); + localStorage.SE6Pcuatro = JSON.stringify(pcuatro); } if (p === 'once') { const ponce = $('#ponce').val(); - localStorage.SE5Ponce = JSON.stringify(ponce); + localStorage.SE6Ponce = JSON.stringify(ponce); } if (p === 'doce') { const pdoce = $('#pdoce').val(); - localStorage.SE5Pdoce = JSON.stringify(pdoce); + localStorage.SE6Pdoce = JSON.stringify(pdoce); } if (p === 'trece') { const ptrece = $('#ptrece').val(); - localStorage.SE5Ptrece = JSON.stringify(ptrece); + localStorage.SE6Ptrece = JSON.stringify(ptrece); } if (p === 'catorce') { const pcatorce = $('#pcatorce').val(); - localStorage.SE5Pcatorce = JSON.stringify(pcatorce); + localStorage.SE6Pcatorce = JSON.stringify(pcatorce); } if (p === 'quince') { const pquince = $('#pquince').val(); - localStorage.SE5Pquince = JSON.stringify(pquince); + localStorage.SE6Pquince = JSON.stringify(pquince); } if (p === 'dieciseis') { const pdieciseis = $('#pdieciseis').val(); - localStorage.SE5Pdieciseis = JSON.stringify(pdieciseis); + localStorage.SE6Pdieciseis = JSON.stringify(pdieciseis); } if (p === 'diecisiete') { const pdiecisiete = $('#pdiecisiete').val(); - localStorage.SE5Pdiecisiete = JSON.stringify(pdiecisiete); + localStorage.SE6Pdiecisiete = JSON.stringify(pdiecisiete); } if (p === 'dieciocho') { const pdieciocho = $('#pdieciocho').val(); - localStorage.SE5Pdieciocho = JSON.stringify(pdieciocho); + localStorage.SE6Pdieciocho = JSON.stringify(pdieciocho); } if (p === 'diecinueve') { const pdiecinueve = $('#pdiecinueve').val(); - localStorage.SE5Pdiecinueve = JSON.stringify(pdiecinueve); + localStorage.SE6Pdiecinueve = JSON.stringify(pdiecinueve); } if (p === 'veinte') { const pveinte = $('#pveinte').val(); - localStorage.SE5Pveinte = JSON.stringify(pveinte); + localStorage.SE6Pveinte = JSON.stringify(pveinte); } @@ -626,7 +626,7 @@ function procesa(p) { function aceptado(p) { if (p === 'diez') { - const pdiez = JSON.parse(localStorage.SE5Pdiez); + const pdiez = JSON.parse(localStorage.SE6Pdiez); $('#lpdiez').addClass('fontTahu fa-2x text-info'); $('#lpdiez').html(pdiez); @@ -634,7 +634,7 @@ function aceptado(p) { } if (p === 'nueve') { - const pnueve = JSON.parse(localStorage.SE5Pnueve); + const pnueve = JSON.parse(localStorage.SE6Pnueve); $('#lpnueve').addClass('fontTahu fa-2x text-info'); $('#lpnueve').html(pnueve); @@ -642,7 +642,7 @@ function aceptado(p) { } if (p === 'ocho') { - const pocho = JSON.parse(localStorage.SE5Pocho); + const pocho = JSON.parse(localStorage.SE6Pocho); $('#lpocho').addClass('fontTahu fa-2x text-info'); $('#lpocho').html(pocho); @@ -650,7 +650,7 @@ function aceptado(p) { } if (p === 'seis') { - const pseis = JSON.parse(localStorage.SE5Pseis); + const pseis = JSON.parse(localStorage.SE6Pseis); $('#lpseis').addClass('fontTahu fa-2x text-info'); $('#lpseis').html(pseis); @@ -658,7 +658,7 @@ function aceptado(p) { } if (p === 'siete') { - const psiete = JSON.parse(localStorage.SE5Psiete); + const psiete = JSON.parse(localStorage.SE6Psiete); $('#lpsiete').addClass('fontTahu fa-2x text-info'); $('#lpsiete').html(psiete); @@ -666,7 +666,7 @@ function aceptado(p) { } if (p === 'uno') { - const puno = JSON.parse(localStorage.SE5Puno); + const puno = JSON.parse(localStorage.SE6Puno); $('#lpuno').addClass('fontTahu fa-2x text-info'); $('#lpuno').html(puno); @@ -674,28 +674,28 @@ function aceptado(p) { } if (p === 'cinco') { console.log('aceptado = ' + p) - const pcinco = JSON.parse(localStorage.SE5Pcinco); + const pcinco = JSON.parse(localStorage.SE6Pcinco); $('#lpcinco').addClass('fontTahu fa-2x text-info'); $('#lpcinco').html(pcinco); $('#lpcinco').show(); $('#sinpcinco').hide(); } if (p === 'dos') { - const pdos = JSON.parse(localStorage.SE5Pdos); + const pdos = JSON.parse(localStorage.SE6Pdos); $('#lpdos').addClass('fontTahu fa-2x text-info'); $('#lpdos').html(pdos); $('#sinpdos').hide(); } if (p === 'tres') { - const ptres = JSON.parse(localStorage.SE5Ptres); + const ptres = JSON.parse(localStorage.SE6Ptres); $('#lptres').addClass('fontTahu fa-2x text-info'); $('#lptres').html(ptres); $('#sinptres').hide(); } if (p === 'cuatro') { - const pcuatro = JSON.parse(localStorage.SE5Pcuatro); + const pcuatro = JSON.parse(localStorage.SE6Pcuatro); $('#lpcuatro').addClass('fontTahu fa-2x text-info'); $('#lpcuatro').html(pcuatro); @@ -703,7 +703,7 @@ function aceptado(p) { } if (p === 'once') { - const ponce = JSON.parse(localStorage.SE5Ponce); + const ponce = JSON.parse(localStorage.SE6Ponce); $('#lponce').addClass('fontTahu fa-2x text-info'); $('#lponce').html(ponce); @@ -711,7 +711,7 @@ function aceptado(p) { } if (p === 'doce') { - const pdoce = JSON.parse(localStorage.SE5Pdoce); + const pdoce = JSON.parse(localStorage.SE6Pdoce); $('#lpdoce').addClass('fontTahu fa-2x text-info'); $('#lpdoce').html(pdoce); @@ -719,7 +719,7 @@ function aceptado(p) { } if (p === 'trece') { - const ptrece = JSON.parse(localStorage.SE5Ptrece); + const ptrece = JSON.parse(localStorage.SE6Ptrece); $('#lptrece').addClass('fontTahu fa-2x text-info'); $('#lptrece').html(ptrece); @@ -727,49 +727,49 @@ function aceptado(p) { } if (p === 'catorce') { - const pcatorce = JSON.parse(localStorage.SE5Pcatorce); + const pcatorce = JSON.parse(localStorage.SE6Pcatorce); $('#lpcatorce').addClass('fontTahu fa-2x text-info'); $('#lpcatorce').html(pcatorce); $('#sinpcatorce').hide(); } if (p === 'quince') { - const pquince = JSON.parse(localStorage.SE5Pquince); + const pquince = JSON.parse(localStorage.SE6Pquince); $('#lpquince').addClass('fontTahu fa-2x text-info'); $('#lpquince').html(pquince); $('#sinpquince').hide(); } if (p === 'dieciseis') { - const pdieciseis = JSON.parse(localStorage.SE5Pdieciseis); + const pdieciseis = JSON.parse(localStorage.SE6Pdieciseis); $('#lpdieciseis').addClass('fontTahu fa-2x text-info'); $('#lpdieciseis').html(pdieciseis); $('#sinpdieciseis').hide(); } if (p === 'diecisiete') { - const pdiecisiete = JSON.parse(localStorage.SE5Pdiecisiete); + const pdiecisiete = JSON.parse(localStorage.SE6Pdiecisiete); $('#lpdiecisiete').addClass('fontTahu fa-2x text-info'); $('#lpdiecisiete').html(pdiecisiete); $('#sinpdiecisiete').hide(); } if (p === 'dieciocho') { - const pdieciocho = JSON.parse(localStorage.SE5Pdieciocho); + const pdieciocho = JSON.parse(localStorage.SE6Pdieciocho); $('#lpdieciocho').addClass('fontTahu fa-2x text-info'); $('#lpdieciocho').html(pdieciocho); $('#sinpdieciocho').hide(); } if (p === 'diecinueve') { - const pdiecinueve = JSON.parse(localStorage.SE5Pdiecinueve); + const pdiecinueve = JSON.parse(localStorage.SE6Pdiecinueve); $('#lpdiecinueve').addClass('fontTahu fa-2x text-info'); $('#lpdiecinueve').html(pdiecinueve); $('#sinpdiecinueve').hide(); } if (p === 'veinte') { - const pveinte = JSON.parse(localStorage.SE5Pveinte); + const pveinte = JSON.parse(localStorage.SE6Pveinte); $('#lpveinte').addClass('fontTahu fa-2x text-info'); $('#lpveinte').html(pveinte); diff --git a/templates/bases/_nota.html.twig b/templates/bases/_nota.html.twig index 28a08c13..53eb67d6 100644 --- a/templates/bases/_nota.html.twig +++ b/templates/bases/_nota.html.twig @@ -8,165 +8,193 @@

- LA FUERZA DE LA BONDAD + EL VALOR DE LA INTEGRIDAD
- Serie: Social Ed. - Parte 5 + Serie: Social Ed. - Parte 6

-

- "El fruto del Espíritu es… bondad" + + INTEGRIDAD: Es {{ completa_lugar('uno') | raw }} integrar los valores de mi corazón con mis acciones diarias. + +

+ "Mejor es el pobre que camina en su integridad que el de caminos tortuosos, por más que sea rico."
- Gálatas 5:22 (NVI) + Proverbios 28:6 (BJ)

-
-

- EL ARTE DE LA BONDAD -

- Dar {{ completa_lugar('uno') | raw}}. -
+ La integridad es una de las cosas que hacen {{ completa_lugar('dos') | raw }}. + +

+ + En Romanos 7:18-20 (TLA) + +
+ “Yo sé que mis deseos egoístas no me permiten hacer lo bueno, pues aunque quiero hacerlo, no puedo + hacerlo. En vez de lo bueno que quiero hacer, hago lo malo que no quiero hacer.” +

- Jesús: "La bondad de Dios" + “No entiendo lo que me pasa”
- Tito 3:4 (LBLA) + Romanos 7:15

+

+ Tres beneficios de la integridad para construir confianza en las relaciones: +

- Dar {{ completa_lugar('dos') | raw}}. + (P) {{ completa_lugar('tres') | raw }}.

- "Una respuesta sincera es tan dulce como un beso." + "la integridad y la rectitud me protegen, porque yo espero en ti, Señor."
- Proverbios 24:26 (TLA) + Salmos 25:21

- Dar {{ completa_lugar('tres') | raw}}. + (S) {{ completa_lugar('cuatro') | raw }}.

- "Sean bondadosos entre ustedes, compasivos, perdonándose las faltas que unos contra otros puedan - cometer…” + "Quien se conduce con integridad, anda seguro. "
- Efesios 4:32 (BAD) + Proverbios 10:9

- Dar {{ completa_lugar('cuatro') | raw}}. + (D) {{ completa_lugar('cinco') | raw }}. -

- "Tu bondad me ha hecho prosperar." +

+ "La integridad guía a los hombres rectos."
- 2 Samuel 22:36 (DHH) + Proverbios 11:3

-

- COMO SER BONDADOSO EN TUS RELACIONES + ¿Cómo hacer esto?

+ + ¿Cuáles son algunas cosas que podemos hacer, para practicar la integridad? + - 1. ELEGÍ MIRAR CON LOS {{ completa_lugar('cinco') | raw}} DE LA BONDAD -
+ 1. HABLE {{ completa_lugar('seis') | raw }}. + +
+
Martin Luther King
+

+ “Un vaso medio vacío, es también uno medio lleno, pero una mentira a medias de ningún modo es + una media verdad.”

+ +

- "Los ojos son el reflejo de tu carácter. Así que, tu bondad o tu maldad se refleja en tu mirada." + "al hablar la verdad en amor, creceremos "
- Mateo 6:22 (TLA) + Efesios 4:15 (NBLH)

- "El amor… disculpa sin límites, confía sin límites, espera sin límites." + "¡Felices los hijos que deja quien ha vivido con rectitud y honradez!"
- 1 Corintios 13:7 (BTI) + Proverbios 20:7 (DHH)

- “Si algún cristiano cae en pecado,… tierna y humildemente deben ayudarle a volver al buen camino, - recordando que quizá la próxima vez será uno de ustedes el que cometa alguna falta." + "El que cava un hoyo, se puede caer en él; el que derriba un muro, puede ser que lo muerda la + serpiente;”
- Gálatas 6:1 (BAD) + Eclesiastés 10:8 (BLA)

- 2. ABRAZÁ EL {{ completa_lugar('seis') | raw}} DE LA BONDAD + 2. (C){{ completa_lugar('siete') | raw }} REGULARMENTE.

- "El que es bondadoso se beneficia a sí mismo." + "confiésense unos a otros sus pecados, y oren unos por otros, para que sean sanados."
- Proverbios 11:17 (NVI) + Juan 5:16 (NVI)

- "Te bendeciré… y serás una bendición para otros." + "Si confesamos nuestros pecados, Dios, que es fiel y justo, nos los perdonará y nos limpiará de toda + maldad."
- Génesis 12:2 (NTV) + 1° Juan 1:9 (NVI)

+ + EL MEJOR LUGAR: “{{ completa_lugar('ocho') | raw }}”+ + +
+ + 3. VIVA {{ completa_lugar('nueve') | raw }}. + + + La consistencia es vital en tres áreas: + + + 1. La Imagen {{ completa_lugar('diez') | raw }} frente a la imagen {{ completa_lugar('once') | raw }}. +

- "Siempre que tengamos la oportunidad, hagamos el bien a todos" -
- Gálatas 6:10 (NTV) + Jesús dijo en Mateo 6:1 +
+ "Cuídate, no hagas tus buenas obras públicamente para ser admirado".

- 3. ACEPTA EL {{ completa_lugar('siete') | raw}} DE LA BONDAD + 2. (D) {{ completa_lugar('doce') | raw }}.

- "Jesús anduvo haciendo el bien y sanando a todos los que eran oprimidos" -
- Hechos 10:38 (NTV) + Efesios 6:4 (NVI) -

-

- "Les he dado un ejemplo, para que ustedes hagan lo mismo que yo les he hecho."
- - Juan 13:15 (DHH) - + Y ustedes, padres, no hagan enojar a sus hijos, sino críenlos según la disciplina e instrucción del + Señor.

+ + 3. Coherencia entre mis {{ completa_lugar('trece') | raw }} y mis {{ completa_lugar('catorce') | raw }}. +

- "Así como sobresalen en todo… procuren también sobresalir en esta gracia de dar." -
- 2 Corintios 8:7 (NVI) + 1° Samuel 16:7 +
+ "El hombre mira la apariencia externa, pero el Señor mira el corazón".

- 4. EXPERIMENTA LA {{ completa_lugar('ocho') | raw}} DE LA BONDAD: DIOS + 4. (C) {{ completa_lugar('quince') | raw }} ABIERTAMENTE. -

- "Pero cuando la bondad y el amor de Dios nuestro Salvador se manifestó, obtuvimos la salvación; pero - no porque fuéramos tan buenos que la mereciéramos, sino porque en su bondad y en su misericordia Dios - nos lavó los pecados y nos dio una nueva vida por medio del Espíritu Santo" +

+ "Yo no hablo en secreto ni en lugares oscuros de la tierra… Yo, el Señor, hablo la verdad, digo lo que + es justo."
- Tito 3:4-5 (BAD) + Isaías 45:19 (LB)

-

- "Dios es tan rico en gracia y bondad que compró nuestra libertad con la sangre de su Hijo y perdonó - nuestros pecados." +

+ "…si confiesas con tu boca que Jesús es el Señor y crees en tu corazón que Dios lo levantó de entre los + muertos, serás salvo.”
- Efesios 1:7 (NTV) + Romanos 10:9 (NVI)

From 8398f039d47e7e06b1410dca06cf9b3bcd70b081 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sat, 30 Oct 2021 13:33:30 -0300 Subject: [PATCH 175/197] SE6 --- templates/bases/_nota.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/bases/_nota.html.twig b/templates/bases/_nota.html.twig index 53eb67d6..60b0261f 100644 --- a/templates/bases/_nota.html.twig +++ b/templates/bases/_nota.html.twig @@ -91,7 +91,7 @@ 1. HABLE {{ completa_lugar('seis') | raw }}.
-
Martin Luther King
+
Martin Luther King dijo:

“Un vaso medio vacío, es también uno medio lleno, pero una mentira a medias de ningún modo es una media verdad.”

From 1bf4d98357f6ff0c401c2e721ad3ecf684b431a2 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Mon, 1 Nov 2021 11:56:00 -0300 Subject: [PATCH 176/197] =?UTF-8?q?Consulta=20de=20=C3=BAltimas=20modifica?= =?UTF-8?q?ciones?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Controller/AdminController.php | 23 ++++++++++++++++ src/Repository/EntradaRepository.php | 39 ++++++++++++++++++++++++---- src/Repository/SectionRepository.php | 29 +++++++++++++++++++++ 3 files changed, 86 insertions(+), 5 deletions(-) diff --git a/src/Controller/AdminController.php b/src/Controller/AdminController.php index c10ce4ff..8a842a6e 100644 --- a/src/Controller/AdminController.php +++ b/src/Controller/AdminController.php @@ -2,8 +2,12 @@ namespace App\Controller; +use App\Entity\Entrada; +use App\Repository\EntradaRepository; use App\Repository\MetaBaseRepository; use App\Repository\PrincipalRepository; +use App\Repository\SectionRepository; +use Doctrine\ORM\Query\QueryException; use Knp\Component\Pager\PaginatorInterface; use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; @@ -44,4 +48,23 @@ public function index(PrincipalRepository $principalRepository, MetaBaseReposito // 'principals' => $principales, // ]); } + + /** + * @Route("/admin/consulta-entradas-nuevas", name="admin_entradas_nuevas") + * @throws QueryException + */ + public function consultaEntradasNuevas(EntradaRepository $entradaRepository, SectionRepository $sectionRepository,Request $request) + { + + $entradas = $entradaRepository->entradasByDateAndActiveAndModification(); + $notSections = []; + /** @var Entrada $e */ + foreach ($entradas as $e){ + foreach ($e->getSections() as $s){ + array_push($notSections, $s->getId()); + } + } + $sectionRepository->sectionByDateAndActiveAndModification(null, null, $notSections); + + } } diff --git a/src/Repository/EntradaRepository.php b/src/Repository/EntradaRepository.php index abe810e5..1ec70c21 100755 --- a/src/Repository/EntradaRepository.php +++ b/src/Repository/EntradaRepository.php @@ -10,7 +10,6 @@ use Doctrine\ORM\QueryBuilder; use Doctrine\Persistence\ManagerRegistry; - /** * @method Entrada|null find($id, $lockMode = null, $lockVersion = null) * @method Entrada|null findOneBy(array $criteria, array $orderBy = null) @@ -122,7 +121,7 @@ public function findOneBySomeField($value): ?Article ; } */ - private function addIsPublishedQueryBuilder(QueryBuilder $qb = null, $user = null) + private function addIsPublishedQueryBuilder(QueryBuilder $qb = null, $user = null): QueryBuilder { $qb = $this->getOrCreateQueryBuilder($qb) ->andWhere('e.publicadoAt IS NOT NULL'); @@ -134,7 +133,7 @@ private function addIsPublishedQueryBuilder(QueryBuilder $qb = null, $user = nul return $qb; } - private function addIsDisponibleForSeccion(QueryBuilder $qb = null, $seccion) + private function addIsDisponibleForSeccion(QueryBuilder $qb = null, $seccion): QueryBuilder { return $this->getOrCreateQueryBuilder($qb) ->andWhere('s.publicadoAt IS NOT NULL'); @@ -157,9 +156,39 @@ public function queryFindAllEntradas(?string $qSearch): QueryBuilder if ($qSearch) { $qb->innerJoin('e.autor', 'a') ->addSelect('a'); - $qb->andWhere('upper(e.contenido) LIKE :qsearch OR upper(a.primerNombre) LIKE :qsearch OR upper(e.titulo) LIKE :qsearch') - ->setParameter('qsearch', '%' . strtoupper($qSearch) . '%'); + $qb->andWhere( + 'upper(e.contenido) LIKE :qsearch OR upper(a.primerNombre) LIKE :qsearch OR upper(e.titulo) LIKE :qsearch' + ) + ->setParameter('qsearch', '%'.strtoupper($qSearch).'%'); + } + + return $qb; + } + + /** + * @throws QueryException + */ + public function entradasByDateAndActiveAndModification($fecha_inicial=null,$fecha_final=null): QueryBuilder + { + if(!$fecha_final){ + $fecha_final = new DateTime('now'); + } + if(!$fecha_inicial){ + $fecha_inicial = $fecha_final->modify("-7 days"); } + $qb = $this->createQueryBuilder('e') + ->addCriteria(self::createDisponibleForDisponibleAt()) + ->orderBy('e.updatedAt', 'DESC'); + $qb->andWhere( + $qb->expr()->between( + 'e.updatedAt', + ':inicio', + ':final' + ) + ) + ->setParameter('inicio', $fecha_inicial) + ->setParameter('final', $fecha_final); + return $qb; } diff --git a/src/Repository/SectionRepository.php b/src/Repository/SectionRepository.php index 0fb198f6..e7760f51 100644 --- a/src/Repository/SectionRepository.php +++ b/src/Repository/SectionRepository.php @@ -9,6 +9,7 @@ use Doctrine\ORM\Query\QueryException; use Doctrine\ORM\QueryBuilder; use Doctrine\Persistence\ManagerRegistry; +use DateTime; /** * @method Section|null find($id, $lockMode = null, $lockVersion = null) @@ -118,4 +119,32 @@ public function queryFindSectionsByPrincipal(string $id): QueryBuilder ->setParameter('id', $id) ->orderBy('s.orden', 'ASC'); } + + public function sectionByDateAndActiveAndModification($fecha_inicial=null,$fecha_final=null, ?array $notSection): QueryBuilder + { + if(!$fecha_final){ + $fecha_final = new DateTime('now'); + } + if(!$fecha_inicial){ + $fecha_inicial = $fecha_final->modify("-7 days"); + } + $qb = $this->addIsDisponibleQueryBuilder(); + $qb->andWhere( + $qb->expr()->between( + 's.updatedAt', + ':inicio', + ':final' + ) + ) + ->setParameter('inicio', $fecha_inicial) + ->setParameter('final', $fecha_final); + + $qb->andWhere($qb->expr()->notIn('s.id', $notSection)) + + ; + + return $qb; + + + } } From e0b338422f3ebeba6fbef4cec02279ee35aa1cb5 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Thu, 4 Nov 2021 12:05:53 -0300 Subject: [PATCH 177/197] Se agrega consulta de principales modificadas (entradas o secciones incluidas). Se modifica plantilla de enlaces externos --- src/Controller/AdminController.php | 88 ++++++++++++++----- src/Entity/Entrada.php | 5 ++ src/Entity/Principal.php | 40 +++++++++ src/Entity/Section.php | 5 +- src/Entity/Traits/ImageTrait.php | 2 + src/Entity/Traits/LinksTrait.php | 4 + src/Form/PrincipalType.php | 16 ++++ src/Repository/EntradaRepository.php | 17 ++-- src/Repository/PrincipalRepository.php | 87 +++++++++++++++--- src/Repository/SectionRepository.php | 39 ++++---- .../models/principal/enlace-externo.html.twig | 4 +- templates/principal/_form.html.twig | 9 ++ 12 files changed, 248 insertions(+), 68 deletions(-) diff --git a/src/Controller/AdminController.php b/src/Controller/AdminController.php index 8a842a6e..ddfb4f40 100644 --- a/src/Controller/AdminController.php +++ b/src/Controller/AdminController.php @@ -3,17 +3,20 @@ namespace App\Controller; use App\Entity\Entrada; +use App\Entity\Section; use App\Repository\EntradaRepository; use App\Repository\MetaBaseRepository; use App\Repository\PrincipalRepository; use App\Repository\SectionRepository; -use Doctrine\ORM\Query\QueryException; +use DateTime; use Knp\Component\Pager\PaginatorInterface; -use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; +use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Routing\Annotation\Route; +use Symfony\Component\Serializer\Normalizer\ObjectNormalizer; +use Symfony\Component\Serializer\Serializer; class AdminController extends AbstractController { @@ -25,8 +28,12 @@ class AdminController extends AbstractController * @param Request $request * @return Response */ - public function index(PrincipalRepository $principalRepository, MetaBaseRepository $metaBaseRepository, PaginatorInterface $paginator, Request $request): Response - { + public function index( + PrincipalRepository $principalRepository, + MetaBaseRepository $metaBaseRepository, + PaginatorInterface $paginator, + Request $request + ): Response { $bus = $request->get('busq'); $queryPrincipales = $principalRepository->queryFindAllPrincipals($bus); @@ -38,10 +45,10 @@ public function index(PrincipalRepository $principalRepository, MetaBaseReposito // if ($this->isGranted('ROLE_ADMIN')) { - return $this->render('admin/index.html.twig', [ - 'principals' => $principales, - 'meta_bases' => $metaBaseRepository->findAll(), - ]); + return $this->render('admin/index.html.twig', [ + 'principals' => $principales, + 'meta_bases' => $metaBaseRepository->findAll(), + ]); // } // return $this->render('admin/index_escritor.html.twig', [ @@ -51,20 +58,61 @@ public function index(PrincipalRepository $principalRepository, MetaBaseReposito /** * @Route("/admin/consulta-entradas-nuevas", name="admin_entradas_nuevas") - * @throws QueryException + * @param EntradaRepository $entradaRepository + * @param SectionRepository $sectionRepository + * @param PrincipalRepository $principalRepository + * @param Request $request + * @return JsonResponse */ - public function consultaEntradasNuevas(EntradaRepository $entradaRepository, SectionRepository $sectionRepository,Request $request) - { + public function consultaEntradasNuevas( + EntradaRepository $entradaRepository, + SectionRepository $sectionRepository, + PrincipalRepository $principalRepository, + Request $request + ): JsonResponse { + + $fecha_final = new DateTime('now'); + $fecha = clone $fecha_final; + $fecha_inicial = $fecha->modify("-7 days"); +// $entradas = $entradaRepository->entradasByDateAndActiveAndModification($fecha_inicial, $fecha_final)->getQuery( +// )->getResult(); +// +// $notSections = []; +// /** @var Entrada $e */ +// foreach ($entradas as $e) { +// foreach ($e->getSections() as $s) { +// array_push($notSections, $s->getId()); +// } +// } +// $secciones = $sectionRepository->sectionByDateAndActiveAndModification( +// $fecha_inicial, +// $fecha_final, +// $notSections +// )->getQuery()->getResult(); +// +// $notPrincipals = []; +// /** @var Section $s */ +// foreach ($secciones as $s) { +// foreach ($s->getPrincipales() as $p) { +// array_push($notPrincipals, $p->getId()); +// } +// } + $principales = $principalRepository->principalByDateAndActiveAndModification( + $fecha_inicial, + $fecha_final, + $notPrincipals = null + )->getQuery()->getResult(); - $entradas = $entradaRepository->entradasByDateAndActiveAndModification(); - $notSections = []; - /** @var Entrada $e */ - foreach ($entradas as $e){ - foreach ($e->getSections() as $s){ - array_push($notSections, $s->getId()); - } - } - $sectionRepository->sectionByDateAndActiveAndModification(null, null, $notSections); + return + $this->json( + [ +// 'entradas'=>$entradas, +// 'secciones' => $secciones, + 'principales'=>$principales], 200, [], [ + 'groups' => ['mail'], + ] + ) + ; } } diff --git a/src/Entity/Entrada.php b/src/Entity/Entrada.php index 7ccce77e..1fa5cbe0 100755 --- a/src/Entity/Entrada.php +++ b/src/Entity/Entrada.php @@ -12,6 +12,7 @@ use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; use Gedmo\Timestampable\Traits\TimestampableEntity; +use Symfony\Component\Serializer\Annotation\Groups; /** * @ORM\Entity(repositoryClass="App\Repository\EntradaRepository") @@ -32,11 +33,13 @@ class Entrada /** * @ORM\Column(type="string", length=255) + * @Groups("mail") */ private $titulo; /** * @ORM\Column(type="text", length=8000, nullable=true) + * @Groups("mail") */ private $contenido; @@ -48,6 +51,7 @@ class Entrada /** * @ORM\Column(type="string", length=255, nullable=true) + * @Groups("mail") */ private $imageFilename; @@ -131,6 +135,7 @@ class Entrada /** * @ORM\ManyToMany(targetEntity=Section::class, mappedBy="entrada") + * @Groups("mail") */ private $sections; diff --git a/src/Entity/Principal.php b/src/Entity/Principal.php index c3cc500d..782e12e9 100755 --- a/src/Entity/Principal.php +++ b/src/Entity/Principal.php @@ -9,6 +9,7 @@ use Doctrine\Common\Collections\Collection; use Doctrine\ORM\Mapping as ORM; use Gedmo\Timestampable\Traits\TimestampableEntity; +use Symfony\Component\Serializer\Annotation\Groups; use Symfony\Component\Validator\Constraints as Assert; /** @@ -37,16 +38,19 @@ class Principal /** * @ORM\Column(type="string", length=255) * @Assert\NotBlank(message="El título de la página, no debe estar en blanco") + * @Groups("mail") */ private $titulo; /** * @ORM\Column(type="string", length=2550) + * @Groups("mail") */ private $contenido; /** * @ORM\Column(type="string", length=150, unique=true, nullable=true) + * @Groups("mail") */ private $linkRoute; @@ -112,6 +116,18 @@ class Principal */ private $itemMenus; + /** + * @ORM\Column(type="boolean", nullable=true) + * @Groups("mail") + */ + private $isLinkExterno; + + /** + * @ORM\Column(type="string", length=255, nullable=true) + * @Groups("mail") + */ + private $linkPosting; + public function __construct() { $this->comentarios = new ArrayCollection(); @@ -425,4 +441,28 @@ public function removeItemMenu(ItemMenu $itemMenu): self } return $this; } + + public function getIsLinkExterno(): ?bool + { + return $this->isLinkExterno; + } + + public function setIsLinkExterno(?bool $isLinkExterno): self + { + $this->isLinkExterno = $isLinkExterno; + + return $this; + } + + public function getLinkPosting(): ?string + { + return $this->linkPosting; + } + + public function setLinkPosting(?string $linkPosting): self + { + $this->linkPosting = $linkPosting; + + return $this; + } } diff --git a/src/Entity/Section.php b/src/Entity/Section.php index 095667c8..7d149567 100644 --- a/src/Entity/Section.php +++ b/src/Entity/Section.php @@ -85,6 +85,7 @@ class Section /** * @ORM\Column(type="string", length=5100, nullable=true) + * @Groups("mail") */ private $contenido; @@ -96,12 +97,13 @@ class Section /** * @ORM\ManyToOne(targetEntity=Principal::class, inversedBy="section") + * @Groups("mail") */ private $principal; /** * @ORM\Column(type="string", length=255, nullable=true) - * @Groups("main") + * @Groups({"main", "mail"}) */ private $title; @@ -119,6 +121,7 @@ class Section /** * @ORM\ManyToMany(targetEntity=Principal::class, mappedBy="secciones") + * @Groups("mail") */ private $principales; diff --git a/src/Entity/Traits/ImageTrait.php b/src/Entity/Traits/ImageTrait.php index 349bece5..a60c322d 100644 --- a/src/Entity/Traits/ImageTrait.php +++ b/src/Entity/Traits/ImageTrait.php @@ -6,11 +6,13 @@ use App\Service\UploaderHelper; use Doctrine\ORM\Mapping as ORM; +use Symfony\Component\Serializer\Annotation\Groups; trait ImageTrait { /** * @ORM\Column(type="string", length=255, nullable=true) + * @Groups("mail") */ private $imageFilename; diff --git a/src/Entity/Traits/LinksTrait.php b/src/Entity/Traits/LinksTrait.php index b8882657..7c521817 100644 --- a/src/Entity/Traits/LinksTrait.php +++ b/src/Entity/Traits/LinksTrait.php @@ -5,21 +5,25 @@ use Doctrine\ORM\Mapping as ORM; +use Symfony\Component\Serializer\Annotation\Groups; trait LinksTrait { /** * @ORM\Column(type="boolean", nullable=true) + * @Groups("mail") */ private $isLinkExterno; /** * @ORM\Column(type="string", length=255, nullable=true) + * @Groups("mail") */ private $linkPosting; /** * @ORM\Column(type="string", length=150, nullable=true) + * @Groups("mail") */ private $linkRoute; diff --git a/src/Form/PrincipalType.php b/src/Form/PrincipalType.php index 46d3ab28..d131d322 100755 --- a/src/Form/PrincipalType.php +++ b/src/Form/PrincipalType.php @@ -46,6 +46,22 @@ public function buildForm(FormBuilderInterface $builder, array $options) 'label' => 'linkRoute', 'help' => 'Texto de la url ' ] ) + ->add('isLinkExterno', CheckboxType::class, [ + 'required' => false, + 'label' => false, + 'label_attr' => ['class' => 'checkbox-custom text-dark'], + 'attr' => [ + 'class' => 'form-check-input ', + ], + ]) + ->add('linkPosting', TextType::class, [ + 'required' => false, + 'label' => 'Link de redirección', + 'help' => 'Texto de la url externa ', + 'attr' => [ + 'class' => 'form-control', + ], + ]) ->add('imageFile', FileType::class, [ 'mapped' => false, diff --git a/src/Repository/EntradaRepository.php b/src/Repository/EntradaRepository.php index 1ec70c21..d226189b 100755 --- a/src/Repository/EntradaRepository.php +++ b/src/Repository/EntradaRepository.php @@ -3,6 +3,7 @@ namespace App\Repository; use App\Entity\Entrada; +use DateInterval; use DateTime; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Common\Collections\Criteria; @@ -166,19 +167,15 @@ public function queryFindAllEntradas(?string $qSearch): QueryBuilder } /** - * @throws QueryException */ - public function entradasByDateAndActiveAndModification($fecha_inicial=null,$fecha_final=null): QueryBuilder + public function entradasByDateAndActiveAndModification($fecha_inicial, $fecha_final): QueryBuilder { - if(!$fecha_final){ - $fecha_final = new DateTime('now'); - } - if(!$fecha_inicial){ - $fecha_inicial = $fecha_final->modify("-7 days"); - } + $qb = $this->createQueryBuilder('e') - ->addCriteria(self::createDisponibleForDisponibleAt()) - ->orderBy('e.updatedAt', 'DESC'); + ->select() +// ->andWhere('e.disponibleAt is not null') +// ->orderBy('e.updatedAt', 'DESC') +; $qb->andWhere( $qb->expr()->between( 'e.updatedAt', diff --git a/src/Repository/PrincipalRepository.php b/src/Repository/PrincipalRepository.php index b78d4037..38fdde27 100755 --- a/src/Repository/PrincipalRepository.php +++ b/src/Repository/PrincipalRepository.php @@ -3,6 +3,7 @@ namespace App\Repository; use App\Entity\Principal; +use DateTime; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\ORM\QueryBuilder; use Doctrine\Persistence\ManagerRegistry; @@ -32,8 +33,7 @@ public function findByPrincipalParent($principal): array ->setParameter('val', $principal) ->orderBy('m.updatedAt', 'DESC') ->getQuery() - ->getResult() - ; + ->getResult(); } @@ -49,8 +49,7 @@ public function getQueryfindByPrincipalParentActive($principal): QueryBuilder // ->andWhere('m.isActive = :boolean') ->setParameter('val', $principal) // ->setParameter('boolean', true) - ->orderBy('m.createdAt', 'DESC') - ; + ->orderBy('m.createdAt', 'DESC'); } @@ -89,15 +88,75 @@ public function queryFindAllPrincipals(?string $qSearch): QueryBuilder $qb = $this->createQueryBuilder('p') // ->andWhere('p.principal is null') ->orderBy('p.updatedAt', 'DESC'); - if ($qSearch) { - $qb->innerJoin('p.autor','a') - ->addSelect('a'); - $qb->andWhere('upper(p.contenido) LIKE :qsearch OR upper(a.primerNombre) LIKE :qsearch OR upper(p.titulo) LIKE :qsearch OR upper(p.linkRoute) LIKE :qsearch') - ->setParameter('qsearch', '%' . strtoupper($qSearch) . '%') - ; - } - ; - - return $qb; + if ($qSearch) { + $qb->innerJoin('p.autor', 'a') + ->addSelect('a'); + $qb->andWhere( + 'upper(p.contenido) LIKE :qsearch OR upper(a.primerNombre) LIKE :qsearch OR upper(p.titulo) LIKE :qsearch OR upper(p.linkRoute) LIKE :qsearch' + ) + ->setParameter('qsearch', '%'.strtoupper($qSearch).'%'); + }; + + return $qb; + } + + /** + * @param DateTime $fecha_inicial + * @param DateTime $fecha_final + * @param array|null $notPrincipals + * @return QueryBuilder + */ + public function principalByDateAndActiveAndModification( + DateTime $fecha_inicial, + DateTime $fecha_final, + ?array $notPrincipals + ): QueryBuilder { + $qb = $this->createQueryBuilder('p') + ->andWhere('p.isActive = :boolean') + ->setParameter('boolean', true) + ->orderBy('p.updatedAt', 'DESC'); + $qb->leftJoin('p.secciones', 's'); + $qb->leftJoin('s.entrada', 'e'); + $qb->andWhere( + $qb->expr()->between( + 'p.updatedAt', + ':inicio', + ':final' + ) + ) + ->setParameter('inicio', $fecha_inicial) + ->setParameter('final', $fecha_final); + + $qb->orWhere( + $qb->expr()->andX( + $qb->expr()->between( + 's.updatedAt', + ':inicio', + ':final' + ), + $qb->expr()->eq('s.disponible', true) + ) + ) + ->setParameter('inicio', $fecha_inicial) + ->setParameter('final', $fecha_final); + + $qb->orWhere( + $qb->expr()->andX( + $qb->expr()->between( + 'e.updatedAt', + ':inicio', + ':final' + ), + $qb->expr()->isNotNull('e.disponibleAt') + ) + ) + ->setParameter('inicio', $fecha_inicial) + ->setParameter('final', $fecha_final); + +// $qb->andWhere($qb->expr()->notIn('p.id', $notPrincipals)); + + return $qb; + + } } diff --git a/src/Repository/SectionRepository.php b/src/Repository/SectionRepository.php index e7760f51..d7aff1ff 100644 --- a/src/Repository/SectionRepository.php +++ b/src/Repository/SectionRepository.php @@ -3,13 +3,13 @@ namespace App\Repository; use App\Entity\Section; +use DateTime; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Common\Collections\Criteria; use Doctrine\ORM\NonUniqueResultException; use Doctrine\ORM\Query\QueryException; use Doctrine\ORM\QueryBuilder; use Doctrine\Persistence\ManagerRegistry; -use DateTime; /** * @method Section|null find($id, $lockMode = null, $lockVersion = null) @@ -24,12 +24,11 @@ public function __construct(ManagerRegistry $registry) parent::__construct($registry, Section::class); } - public static function createActivo():Criteria + public static function createActivo(): Criteria { return Criteria::create() ->andWhere(Criteria::expr()->eq('disponible', true)) - ->orderBy(['descripcion'=>'ASC']) - ; + ->orderBy(['descripcion' => 'ASC']); } /** @@ -62,17 +61,17 @@ private function getOrCreateQueryBuilder(QueryBuilder $qb = null): QueryBuilder private function getQueryBuilderOrderByUpdate(QueryBuilder $qb = null): QueryBuilder { $qb = $this->getOrCreateQueryBuilder(); - $qb->orderBy('s.updatedAt','DESC'); + $qb->orderBy('s.updatedAt', 'DESC'); + return $qb; } public function getSections(): QueryBuilder { - return $this->createQueryBuilder('s') + return $this->createQueryBuilder('s') ->orderBy('s.updatedAt', 'DESC') - ->addOrderBy('s.name', 'ASC') - ; + ->addOrderBy('s.name', 'ASC'); } @@ -120,15 +119,15 @@ public function queryFindSectionsByPrincipal(string $id): QueryBuilder ->orderBy('s.orden', 'ASC'); } - public function sectionByDateAndActiveAndModification($fecha_inicial=null,$fecha_final=null, ?array $notSection): QueryBuilder - { - if(!$fecha_final){ - $fecha_final = new DateTime('now'); - } - if(!$fecha_inicial){ - $fecha_inicial = $fecha_final->modify("-7 days"); - } - $qb = $this->addIsDisponibleQueryBuilder(); + public function sectionByDateAndActiveAndModification( + $fecha_inicial , + $fecha_final , + ?array $notSection + ): QueryBuilder { + + $qb = $this->createQueryBuilder('s') + ->select() + ->andWhere('s.disponible = true'); $qb->andWhere( $qb->expr()->between( 's.updatedAt', @@ -139,12 +138,10 @@ public function sectionByDateAndActiveAndModification($fecha_inicial=null,$fecha ->setParameter('inicio', $fecha_inicial) ->setParameter('final', $fecha_final); - $qb->andWhere($qb->expr()->notIn('s.id', $notSection)) - - ; + $qb->andWhere($qb->expr()->notIn('s.id', $notSection)); return $qb; + } - } } diff --git a/templates/models/principal/enlace-externo.html.twig b/templates/models/principal/enlace-externo.html.twig index 765f4568..e29d1287 100644 --- a/templates/models/principal/enlace-externo.html.twig +++ b/templates/models/principal/enlace-externo.html.twig @@ -28,11 +28,11 @@
- ¡{{ principal.linkRoute | replace({'-':' '}) | capitalize }}!
+ ¡{{ principal.titulo | replace({'

':'', '

':''}) | capitalize }}!
Gracias por conectarte con nosotros
Puedes hacer clic en el enlace si no eres redirigido automáticamente
-
{{ principal.contenido | replace({'

':'', '

':''})| lower | raw }}
+ {{ principal.titulo | replace({'

':'', '

':''})| capitalize | raw }}
{{ principal.titulo | replace({'<p>':'', '</p>':''})| capitalize | raw }} diff --git a/templates/principal/_form.html.twig b/templates/principal/_form.html.twig index f7a3e317..df73d060 100755 --- a/templates/principal/_form.html.twig +++ b/templates/principal/_form.html.twig @@ -31,6 +31,15 @@
{{ form_row(form.linkRoute) }}
+
+ {{ form_row(form.linkPosting) }} +
+
+ +
{{ form_row(form.cssClass) }}
From 9fa48564be47abaeb24992e65bfe261f91db976b Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Thu, 4 Nov 2021 21:42:21 -0300 Subject: [PATCH 178/197] =?UTF-8?q?Se=20mejora=20el=20salto=20de=20l=C3=AD?= =?UTF-8?q?nea,=20se=20agrega=20posibilidad=20de=20descarga=20en=20plantil?= =?UTF-8?q?la=20invitacion.html.twig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/models/entradas/default.html.twig | 2 +- .../models/principal/generico-cards.html.twig | 4 ++-- templates/models/principal/mensajes.html.twig | 4 ++-- templates/models/principal/notas.html.twig | 4 ++-- templates/models/principal/plataforma.html.twig | 2 +- .../sections/bienvenida-imagen-fondo.html.twig | 2 +- .../models/sections/bienvenida-logo.html.twig | 2 +- templates/models/sections/bienvenida.html.twig | 2 +- templates/models/sections/blockquote.html.twig | 2 +- .../models/sections/contenido-img-embed.html.twig | 4 ++-- templates/models/sections/franjagris.html.twig | 2 +- .../models/sections/invitacion-vacia.html.twig | 15 +++++++++++++-- templates/models/sections/invitacion.html.twig | 15 +++++++++++++-- templates/models/sections/pasos.html.twig | 4 ++-- templates/models/sections/section-link.html.twig | 2 +- templates/models/sections/section-notas.html.twig | 2 +- templates/models/sections/tarjetas.html.twig | 2 +- templates/models/sections/three-columns.html.twig | 2 +- 18 files changed, 47 insertions(+), 25 deletions(-) diff --git a/templates/models/entradas/default.html.twig b/templates/models/entradas/default.html.twig index 63c461e0..2dfe41f0 100644 --- a/templates/models/entradas/default.html.twig +++ b/templates/models/entradas/default.html.twig @@ -13,7 +13,7 @@

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/principal/generico-cards.html.twig b/templates/models/principal/generico-cards.html.twig index 30b62de5..103adb52 100644 --- a/templates/models/principal/generico-cards.html.twig +++ b/templates/models/principal/generico-cards.html.twig @@ -124,7 +124,7 @@ {{ principal.titulo | replace({'

':'', '

':''}) | raw }}

- {{ principal.contenido | replace({'

':'', '

':''}) | raw }} + {{ principal.contenido | replace({'

':'', '

':'
'}) | raw }}

@@ -162,7 +162,7 @@

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/principal/mensajes.html.twig b/templates/models/principal/mensajes.html.twig index b3d95ead..1ce61afa 100644 --- a/templates/models/principal/mensajes.html.twig +++ b/templates/models/principal/mensajes.html.twig @@ -124,7 +124,7 @@ {{ principal.titulo | replace({'

':'', '

':''}) | raw }}

- {{ principal.contenido | replace({'

':'', '

':''}) | raw }} + {{ principal.contenido | replace({'

':'', '

':'
'}) | raw }}

@@ -162,7 +162,7 @@

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/principal/notas.html.twig b/templates/models/principal/notas.html.twig index 5c2f075f..1981bc0a 100644 --- a/templates/models/principal/notas.html.twig +++ b/templates/models/principal/notas.html.twig @@ -125,7 +125,7 @@ {{ principal.titulo }}

- {{ principal.contenido | replace({'

':'', '

':''}) | raw }} + {{ principal.contenido | replace({'

':'', '

':'
'}) | raw }}

@@ -159,7 +159,7 @@

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/principal/plataforma.html.twig b/templates/models/principal/plataforma.html.twig index 0eb21b89..420ac03c 100644 --- a/templates/models/principal/plataforma.html.twig +++ b/templates/models/principal/plataforma.html.twig @@ -26,7 +26,7 @@

- {{ principal.contenido | replace({'

':'', '

':''}) | raw }}
+ {{ principal.contenido | replace({'

':'', '

':'
'}) | raw }}


diff --git a/templates/models/sections/bienvenida-imagen-fondo.html.twig b/templates/models/sections/bienvenida-imagen-fondo.html.twig index 5bac4a86..b8285ed4 100644 --- a/templates/models/sections/bienvenida-imagen-fondo.html.twig +++ b/templates/models/sections/bienvenida-imagen-fondo.html.twig @@ -11,7 +11,7 @@ {{ section.title | replace({'

':'', '

':''}) | raw }} - {{ section.contenido | replace({'

':'', '

':''}) | raw }} + {{ section.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/sections/bienvenida-logo.html.twig b/templates/models/sections/bienvenida-logo.html.twig index f303d85d..5e91441a 100644 --- a/templates/models/sections/bienvenida-logo.html.twig +++ b/templates/models/sections/bienvenida-logo.html.twig @@ -10,7 +10,7 @@ {{ section.title | replace({'

':'', '

':''}) | raw }} - {{ section.contenido | replace({'

':'', '

':''}) | raw }} + {{ section.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/sections/bienvenida.html.twig b/templates/models/sections/bienvenida.html.twig index d8784fb0..5e2c743a 100644 --- a/templates/models/sections/bienvenida.html.twig +++ b/templates/models/sections/bienvenida.html.twig @@ -8,7 +8,7 @@ {{ section.title | replace({'

':'', '

':''}) | raw }} - {{ section.contenido | replace({'

':'', '

':''}) | raw }} + {{ section.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/sections/blockquote.html.twig b/templates/models/sections/blockquote.html.twig index b709a874..c0508ef1 100644 --- a/templates/models/sections/blockquote.html.twig +++ b/templates/models/sections/blockquote.html.twig @@ -13,7 +13,7 @@ {% endfor %}
-

{{ section.contenido | replace({'

':'', '

':''}) | raw}}

+

{{ section.contenido | replace({'

':'', '

':'
'}) | raw}}

diff --git a/templates/models/sections/contenido-img-embed.html.twig b/templates/models/sections/contenido-img-embed.html.twig index 1a6013fa..71f57448 100644 --- a/templates/models/sections/contenido-img-embed.html.twig +++ b/templates/models/sections/contenido-img-embed.html.twig @@ -8,7 +8,7 @@ {{ entrada.titulo | replace({'

':'', '

':''}) | raw}}

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw}} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw}}

@@ -83,7 +83,7 @@ {{ entrada.titulo | replace({'

':'', '

':''}) | raw}}
- {{ entrada.contenido | replace({'

':'', '

':''}) | raw}} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw}}
diff --git a/templates/models/sections/franjagris.html.twig b/templates/models/sections/franjagris.html.twig index 5372631e..2fcae256 100644 --- a/templates/models/sections/franjagris.html.twig +++ b/templates/models/sections/franjagris.html.twig @@ -18,7 +18,7 @@ {{ section.title | replace({'

':'', '

':''}) | raw }}
- {{ section.contenido | replace({'

':'', '

':''}) | raw }} + {{ section.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/sections/invitacion-vacia.html.twig b/templates/models/sections/invitacion-vacia.html.twig index f81bc40e..4615c4fc 100644 --- a/templates/models/sections/invitacion-vacia.html.twig +++ b/templates/models/sections/invitacion-vacia.html.twig @@ -15,7 +15,7 @@ {% endif %} - {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }}
@@ -30,7 +30,7 @@

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }} {% if (entrada.contacto) %} {% include 'modelEntrada/_pContacto.html.twig' with { 'contactos':entrada.contacto } %} {% endif %} @@ -73,6 +73,17 @@ {% endif %} +
+ {% for referencia in entrada.entradaReferences %} + + + Descargas
+
+ {% endfor %} +
{% endfor %} diff --git a/templates/models/sections/invitacion.html.twig b/templates/models/sections/invitacion.html.twig index 918d9004..783af1bc 100644 --- a/templates/models/sections/invitacion.html.twig +++ b/templates/models/sections/invitacion.html.twig @@ -15,7 +15,7 @@ {% endif %} - {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }}
@@ -30,7 +30,7 @@

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }} {% if (entrada.contacto) %} {% include 'modelEntrada/_pContacto.html.twig' with { 'contactos':entrada.contacto } %} {% endif %} @@ -73,6 +73,17 @@ {% endif %} +
+ {% for referencia in entrada.entradaReferences %} + + + Descargas
+
+ {% endfor %} +
{% endfor %} diff --git a/templates/models/sections/pasos.html.twig b/templates/models/sections/pasos.html.twig index 649ad349..0a566471 100644 --- a/templates/models/sections/pasos.html.twig +++ b/templates/models/sections/pasos.html.twig @@ -13,7 +13,7 @@

- {{ section.contenido | replace({'

':'', '

':''}) | raw }} + {{ section.contenido | replace({'

':'', '

':'
'}) | raw }}

@@ -34,7 +34,7 @@

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }}

diff --git a/templates/models/sections/section-link.html.twig b/templates/models/sections/section-link.html.twig index 78321a73..f1a7628e 100644 --- a/templates/models/sections/section-link.html.twig +++ b/templates/models/sections/section-link.html.twig @@ -31,7 +31,7 @@

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/sections/section-notas.html.twig b/templates/models/sections/section-notas.html.twig index 2b9216d1..65b0b658 100644 --- a/templates/models/sections/section-notas.html.twig +++ b/templates/models/sections/section-notas.html.twig @@ -29,7 +29,7 @@

- {{ entrada.contenido | replace({'

':'', '

':''}) | raw }} + {{ entrada.contenido | replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/sections/tarjetas.html.twig b/templates/models/sections/tarjetas.html.twig index 5b426832..675e7dd1 100644 --- a/templates/models/sections/tarjetas.html.twig +++ b/templates/models/sections/tarjetas.html.twig @@ -30,7 +30,7 @@ class="card-link text-left"> {{ entrada.titulo|replace({'

':'', '

':''}) | raw }}

- {{ entrada.contenido|replace({'

':'', '

':''}) | raw }}
+ {{ entrada.contenido|replace({'

':'', '

':'
'}) | raw }}
diff --git a/templates/models/sections/three-columns.html.twig b/templates/models/sections/three-columns.html.twig index 1c2a1723..4a838c23 100644 --- a/templates/models/sections/three-columns.html.twig +++ b/templates/models/sections/three-columns.html.twig @@ -2,7 +2,7 @@

- {{ section.contenido | replace({'

':'', '

':''}) | raw }} + {{ section.contenido | replace({'

':'', '

':'
'}) | raw }}


From 81152a8d332037c8f6faade65242106b4e1091ee Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Thu, 4 Nov 2021 21:46:19 -0300 Subject: [PATCH 179/197] =?UTF-8?q?Se=20mejora=20el=20salto=20de=20l=C3=AD?= =?UTF-8?q?nea,=20se=20agrega=20posibilidad=20de=20descarga=20en=20plantil?= =?UTF-8?q?la=20invitacion.html.twig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../models/sections/invitacion.html.twig | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/templates/models/sections/invitacion.html.twig b/templates/models/sections/invitacion.html.twig index 783af1bc..4dd5bb9f 100644 --- a/templates/models/sections/invitacion.html.twig +++ b/templates/models/sections/invitacion.html.twig @@ -69,21 +69,19 @@ {% endfor %} {% endif %} + {% for referencia in entrada.entradaReferences %} + + + Descargas
+
+ {% endfor %}
{% endif %} -
- {% for referencia in entrada.entradaReferences %} - - - Descargas
-
- {% endfor %} -
{% endfor %} From db2dce86aa91d308abccb22da86a4b42821ea35a Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Thu, 4 Nov 2021 21:52:37 -0300 Subject: [PATCH 180/197] =?UTF-8?q?Se=20mejora=20el=20salto=20de=20l=C3=AD?= =?UTF-8?q?nea,=20se=20agrega=20posibilidad=20de=20descarga=20en=20plantil?= =?UTF-8?q?la=20invitacion.html.twig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/models/principal/plataforma.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/models/principal/plataforma.html.twig b/templates/models/principal/plataforma.html.twig index 420ac03c..62ae2083 100644 --- a/templates/models/principal/plataforma.html.twig +++ b/templates/models/principal/plataforma.html.twig @@ -26,7 +26,7 @@

- {{ principal.contenido | replace({'

':'', '

':'
'}) | raw }}
+ {{ principal.titulo | replace({'

':'', '

':'
'}) | raw }}


From 3537a170cc37b332264317f39eedb6d0059f181e Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Thu, 4 Nov 2021 21:56:19 -0300 Subject: [PATCH 181/197] =?UTF-8?q?Se=20mejora=20el=20salto=20de=20l=C3=AD?= =?UTF-8?q?nea,=20se=20agrega=20posibilidad=20de=20descarga=20en=20plantil?= =?UTF-8?q?la=20invitacion.html.twig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/models/principal/plataforma.html.twig | 1 + templates/models/sections/invitacion.html.twig | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/models/principal/plataforma.html.twig b/templates/models/principal/plataforma.html.twig index 62ae2083..cdd0adec 100644 --- a/templates/models/principal/plataforma.html.twig +++ b/templates/models/principal/plataforma.html.twig @@ -4,6 +4,7 @@ {{ parent() }} + diff --git a/templates/models/sections/invitacion.html.twig b/templates/models/sections/invitacion.html.twig index 4dd5bb9f..d05d3989 100644 --- a/templates/models/sections/invitacion.html.twig +++ b/templates/models/sections/invitacion.html.twig @@ -1,4 +1,4 @@ -
From 938ba70bf132f801345877f7fd73aaee37072f5f Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Thu, 4 Nov 2021 22:07:03 -0300 Subject: [PATCH 182/197] =?UTF-8?q?Se=20mejora=20el=20salto=20de=20l=C3=AD?= =?UTF-8?q?nea,=20se=20agrega=20posibilidad=20de=20descarga=20en=20plantil?= =?UTF-8?q?la=20invitacion.html.twig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/igles.css | 2 +- templates/models/principal/plataforma.html.twig | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/public/css/igles.css b/public/css/igles.css index 496f00f9..365025f4 100755 --- a/public/css/igles.css +++ b/public/css/igles.css @@ -1226,7 +1226,7 @@ h4.card-title{ font-family: ArialNova, serif !important; } .fuente-arial-nova{ - font-family: ArialNova, serif !important; + font-family: "ArialNova", sans-serif !important; } .link-alameda{ diff --git a/templates/models/principal/plataforma.html.twig b/templates/models/principal/plataforma.html.twig index cdd0adec..241e1ccc 100644 --- a/templates/models/principal/plataforma.html.twig +++ b/templates/models/principal/plataforma.html.twig @@ -4,8 +4,6 @@ {{ parent() }} - - From 575277ba3d3ef85bf2d9763251d05db669e2685f Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Thu, 4 Nov 2021 22:18:16 -0300 Subject: [PATCH 183/197] =?UTF-8?q?Se=20mejora=20el=20salto=20de=20l=C3=AD?= =?UTF-8?q?nea,=20se=20agrega=20posibilidad=20de=20descarga=20en=20plantil?= =?UTF-8?q?la=20invitacion.html.twig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/models/sections/invitacion.html.twig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/models/sections/invitacion.html.twig b/templates/models/sections/invitacion.html.twig index d05d3989..84939547 100644 --- a/templates/models/sections/invitacion.html.twig +++ b/templates/models/sections/invitacion.html.twig @@ -3,6 +3,11 @@ background-repeat: no-repeat; background-size:cover;">
+ {% if section is defined %} + {% if section.entrada is defined %} + {% set entradas = section.entrada %} + {% endif %} + {% endif %} {% for entrada in entradas %} {% if (entrada.orden == 1) %}
From 3abe4068c29c4cd4617eb2276d44de23f4b7539d Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Thu, 4 Nov 2021 22:35:12 -0300 Subject: [PATCH 184/197] =?UTF-8?q?Se=20mejora=20el=20salto=20de=20l=C3=AD?= =?UTF-8?q?nea,=20se=20agrega=20posibilidad=20de=20descarga=20en=20plantil?= =?UTF-8?q?la=20invitacion.html.twig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/models/principal/plataforma.html.twig | 3 ++- templates/models/principal/vacia.html.twig | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/templates/models/principal/plataforma.html.twig b/templates/models/principal/plataforma.html.twig index 241e1ccc..943a6f66 100644 --- a/templates/models/principal/plataforma.html.twig +++ b/templates/models/principal/plataforma.html.twig @@ -25,7 +25,8 @@

- {{ principal.titulo | replace({'

':'', '

':'
'}) | raw }}
+ {{ principal.titulo | replace({'

':'', '

':'
'}) | raw }} +


diff --git a/templates/models/principal/vacia.html.twig b/templates/models/principal/vacia.html.twig index 767223f6..1de1bc49 100644 --- a/templates/models/principal/vacia.html.twig +++ b/templates/models/principal/vacia.html.twig @@ -17,13 +17,13 @@ {% endblock %} {% block sections %} -
+
{% for section in principal.secciones %} {# {% include 'sections/'~section.modelTemplate~'.html.twig' ignore missing with { 'section':section } %}#} {% include 'models/sections/'~section.modelTemplate~'.html.twig' ignore missing with { 'section':section } %} {% endfor %} -
+ {% endblock %} {% block javascripts %} {{ parent() }} From d7b6c757b69724a2138be10aa2d29d17b44265bd Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Fri, 5 Nov 2021 18:40:31 -0300 Subject: [PATCH 185/197] =?UTF-8?q?Se=20mejora=20el=20salto=20de=20l=C3=AD?= =?UTF-8?q?nea,=20se=20agrega=20posibilidad=20de=20descarga=20en=20plantil?= =?UTF-8?q?la=20invitacion.html.twig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/igles.min.css | 2 +- templates/models/principal/vacia.html.twig | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/public/css/igles.min.css b/public/css/igles.min.css index 9e8d4cea..f663d260 100755 --- a/public/css/igles.min.css +++ b/public/css/igles.min.css @@ -1 +1 @@ -.bajomedia-content:before{border-color:transparent transparent #31708f transparent;position:absolute;display:block;border-style:solid;bottom:2.5em;content:''}.bajomedia-content:before{left:0;border-width:0 0 1em 1em}.navbar{background-color:#5a5a5a;background-repeat:repeat !important;padding:0 10px !important;margin-left:-16px;margin-right:-16px;box-shadow:0 10px 10px 5px}.fondo{background-color:rgba(0,0,0,.5)}.principal{top:-2.5rem}.text-point{color:#ca5430}.border-point{border-color:#2e2e2e !important}.bg-point{background-color:#f0e7d1}.text-tan{color:#f0e7d1}.bg-light-blue{background-color:#73aba2}.bg-point-sec{background-color:#438789}.text-point-sec{color:#438789}a.text-point-sec:hover{color:#438789;text-decoration:none}.text-light-blue{color:#73aba2}.text-blue{color:#0b51c5}.btn-alameda{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:"Proxima Nova",ArialNova,"Helvetica Neue",Helvetica,"Arial Nova",Arial,sans-serif !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:600;line-height:1.25;padding:9px 24px;color:white;background-color:#2993e5;border:1px solid transparent}.btn-alameda-reverso{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:ArialNova,"Arial Nova",Arial,sans-serif,"Proxima Nova","Helvetica Neue",Helvetica !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:900 !important;text-transform:uppercase;line-height:1.25;padding:15px 15px;color:#2993e5;background-color:white}.btn-alameda-reverso:hover{background-color:#2993e5;color:white !important;border:1px solid transparent;opacity:1}.btn-alameda:hover{color:#2993e5;background-color:white;border-color:#2993e5}.btn-alameda.focus,.btn-alameda:focus{box-shadow:0 0 0 .2rem rgba(41,147,229,.5)}.btn-outline-alameda{color:#fff;background-color:#f0e7d1;border-color:#fff}.btn-outline-alameda:hover{color:#438789;background-color:transparent;border-color:#73aba2;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-outline-alameda.focus,.btn-outline-alameda:focus{color:#438789;background-color:#fff;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}ul.punto li{list-style:none;text-indent:-3em}ul.pp li{list-style:none;text-indent:2em}.fondo-evento{background-color:#f0e7d122}.fondo-footer{background-color:rgba(67,135,137,.25)}.fondo-medio{background-color:rgba(0,132,137,0.9)}.fondo-blanco-50{background-color:rgba(256,256,256,.50)}.fondoFranja{background-repeat:repeat !important;padding:0 10px !important;box-shadow:0 10px 10px 5px}a.text-tan:hover{color:#f0e7d1;text-decoration:underline}.bg-teal{background-color:#006064EE !important}a.bg-teal:focus,a.bg-teal:hover,button.bg-teal:focus,button.bg-teal:hover{background-color:#00bcd4CC !important}.contador{font-size:1.2rem !important}.ajusteIndex{margin-top:-2rem !important}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.bienvenido{background-size:cover;animation:3s linear fadeInRightBig;margin:auto auto}@-webkit-keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}@keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}.paralelox{width:100%;height:570px;display:block;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;background-position:center center}.page-header>.container{color:#000 !important}.page-header{height:105vh !important;padding-top:10px;display:flex;align-items:flex-start}.blockquote-point{padding:.5rem 1rem;border-left:.25rem solid #ca5430}.blockquote-uvcp{padding:0 1rem;border-left:.25rem solid #0f0}.blockquote-uvcp_dark{padding:0 1rem;border-left:.25rem solid #04878e}.blockquote-uvcp_dark .rotar90{position:relative;display:table-cell;vertical-align:middle;-webkit-transform:rotate(-90deg);overflow:auto;-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-7em}.vertical-divider{position:absolute;display:table;text-align:center;height:auto;width:auto}.vertical-divider .center-element{position:relative;display:table-cell;vertical-align:top;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.finalBlock{border-right:.25rem solid #04878e}.tooltip{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#73aba2;border-radius:.25rem}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#73aba2 !important;border-radius:.25rem}h3.quote:after,h3.quote:before{display:block;font-size:1.5em;margin-top:.5em}h3.quote:before{content:'“'}h3.quote:after{content:'”'}.quote:after,.quote:before{display:block;font-size:1.5em;margin-top:.5em}.quote:before{content:'“'}.quote:after{content:'”'}.mdl-card__media{background-color:#009688 !important}.mdl-card__white{background-size:cover;background-origin:padding-box;background:#009688 repeat scroll 50% 50%;box-sizing:border-box}.section-heading .section-heading-lower{display:block;font-size:2rem !important;font-weight:100}.text-tan.card .card-body .card-text,.dark-grey-text{color:#f0e7d1 !important}@media(min-width:768px){header.masthead{padding-top:4rem;padding-bottom:4rem}header.masthead h1{font-size:3rem}}@media(max-width:640px){h1{font-size:45px !important;line-height:1.35 !important;letter-spacing:-.02em !important;margin:24px 0 !important}}.text-white-75{color:rgba(255,255,255,0.75) !important}.warnock{font-family:warnock,ArialNova Slab,Times New Roman,serif}.hoverage{font-family:Hoverage,ArialNova,sans-serif}.big_noodle_titling{font-family:big noodle titling,ArialNova,Helvetica,Arial,sans-serif}.matahati{font-family:Matahati Regular,ArialNova,sans-serif}.greatlakes{font-family:greatlakes,ArialNova,Helvetica,Arial,sans-serif}.tuesnight{font-family:"Tuesnight Regular",'ArialNova',sans-serif}.text-fine{font-size:48px;font-weight:100;line-height:1.2em;margin-bottom:20px;margin-top:20px;font-family:"Poppins",sans-serif}.fine4{font-weight:400;line-height:1.2em;margin-bottom:20px;margin-top:20px}.text-300{font-size:45px;font-weight:300;line-height:48px;margin-bottom:10px;margin-top:10px;font-family:"Poppins",sans-serif}.text-14-300{font-size:1.2em;font-weight:300;line-height:1.5em;font-family:"ArialNova",sans-serif}b,i,sup,sub,u,del{color:#2993e5}#paraque b,#paraque i,.base-marron sup,.base-marron sub,.base-marron u,.base-marron del{color:#5f4339}#section-azul b,#section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}.section-azul b,.section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}#section-rojo b,#section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}.section-rojo b,.section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}p .base-rojo{font-size:2em !important}.text-invitacion{font-size:1.5em !important}.text-realce{font-weight:600}.text-realce-verde{color:#6cbb23;font-weight:600}.text-realce-alameda{color:#2993e5;font-weight:600}a.text-realce-verde:hover{color:#3f8f1e;font-weight:600}.text-realce-sca{color:#476389;font-weight:600}.text-realce-marron{color:#8d6e63;font-weight:600}.text-realce-azul{color:#051433;font-weight:600}.text-realce-rojo{color:#8c3654;font-weight:600}.boxPorHacer{height:100vh;background-size:cover}.rgba-uvcp{background:rgba(108,187,35,0.85)}.rgba-seminario{background:rgba(61,112,141,0.85)}.text-100{width:100px;height:100px}.rotar90{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-5em}.icononos-sociales a{display:inline-block;height:3.5rem;width:3.5rem;background-color:#495057;color:white !important;border-radius:100%;text-align:center;font-size:1.5rem;line-height:3.5rem;margin-right:1rem}.icononos-sociales a:last-child{margin-right:0}.icononos-sociales a:hover{background-color:#6cbb23}.fontUnivers{font-family:'UniversLTStd-Obl','ArialNova',cursive}.fontTahu{font-family:'tahu',ArialNova,cursive}.shadow-blue{box-shadow:-3px -1px 4px #2d354f}b.text-shadow{font-weight:bold}.alameda{position:relative;width:50vw;height:150px}.alameda:hover{top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}.alameda:after{content:'';position:absolute;top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}@keyframes animate{0{right:0}100%{right:-400%}}.alameda img{position:absolute;top:0;z-index:1;box-shadow:0 0 40px rgba(0,0,0,1);padding:10px}.contenido{text-align:center;position:absolute;top:50%;transform:translate(-50% -50%);width:100%}.contenido p{color:white;font-weight:700}.compuesto{font-size:4.5em}@media(max-width:640px){.compuesto{font-size:3.5em}}body.frontal{font-family:ArialNova,sans-serif}.tono-cromo{background-repeat:no-repeat;background-size:cover;height:100vh;align-items:center}.letra_a_post{font-weight:300 !important}.shared-link{display:block;padding:.5rem}.finaliza{margin:.375rem;padding:10px 22px}.bg-alameda{background-color:#d3d9dd;color:#495359}.bg-camino{background:#032a3b linear-gradient(#032a3b,#518bb9)}.bg-alameda-reverso{background-color:#2993e5}.display-5{font-size:2rem;font-weight:300;line-height:1.2}.btn-blue{background-color:#1976d2 !important;color:#fff !important}header.masthead-oportunidades{padding-top:10rem;padding-bottom:calc(10rem - 4.5rem);background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:cover}@media(min-width:992px){header.masthead{height:100vh;min-height:40rem;padding-top:4.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(max-width:991px){header.masthead{height:100vh;min-height:40rem;padding-top:2.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(min-width:1200px){header.masthead h1{font-size:3.5rem}}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-black-75{color:rgba(0,0,0,0.75) !important}.text-black-25{color:rgba(0,0,0,0.25) !important}.sup-2{top:-2.5em !important}.h-90{height:90% !important}.left-n5{left:-5px !important}.left-n15{left:-15px !important}.bottom-n10{bottom:-10px !important}.container-img{position:relative !important;text-align:center;color:white}.bottom-left{position:absolute;bottom:8px;left:16px}.top-left{position:absolute;top:8px;left:16px}.top-right{position:absolute;top:8px;right:16px}.bottom-right{position:absolute;bottom:8px;right:16px}.btn-centered{position:absolute !important;top:75% !important;left:50% !important;transform:translate(-50%,-50%) !important}.aire-2{letter-spacing:2px}a:hover>b{color:white}.e80{font-size:.8em}.e90{font-size:.9em}.mt-n3{margin-top:-0.75rem !important}.mt-a35{margin-top:3.5rem !important}.mt-a4{margin-top:4rem !important}.text-alameda{color:#2993e5 !important}.t16{font-size:16px}.negrita7{font-weight:700 !important}.contenedor:hover .card-img:hover{transform:scale(1.3);-moz-transform:scale(1.3);-webkit-transform:scale(1.3);-o-transform:scale(1.3);-ms-transform:scale(1.3)}.card-img{transition:1.5s ease;-moz-transition:1.5s ease;-webkit-transition:1.5s ease;-o-transition:1.5s ease}.contenedor{overflow:hidden}.border-alameda{border-color:#2993e5 !important}.border-alameda-top{border-top-color:#2993e5 !important;border-top-style:solid;border-top-width:1px}.border-alameda-bottom{border-bottom-color:#2993e5 !important;border-bottom-style:solid;border-bottom-width:1px}a>span.text-alameda{font-weight:bolder !important;font-size:16px !important;text-rendering:optimizeLegibility}a>small{font-family:ArialNova,sans-serif;font-style:italic !important;transform:skewY(10deg) rotate(-10deg)}.blockquote-alameda-primary{padding:0 1rem;border-left:.25rem solid #2993e5}.blockquote-alameda-primary{padding:0 1rem !important;border-left:.25rem solid #2993e5 !important}.blockquote-alameda-secondary{padding:0 1rem !important;border-left:.25rem solid #d3d9dd !important}.btn-xl{font-size:.85rem;font-weight:700;text-transform:uppercase;border:none currentcolor;border-radius:10rem !important;background-color:#2993e5 !important}.bg-gris-medio{background-color:#f8fbfd}.bg-gris-alameda{background-color:#eee}.img-20{transform:translate3d(0,-30%,0);max-width:160px;width:100%;margin:0 auto}.sub-img{margin-top:-40px !important}.main-60{margin:-200px}h4.card-title{font-family:ArialNova,serif !important}.fuente-normal{font-size:1em !important;font-family:ArialNova,serif !important}.fuente-arial-nova{font-family:ArialNova,serif !important}.link-alameda{font-weight:900 !important;color:#2993e5 !important}.link-alameda:hover{font-weight:500 !important;color:#fafafa !important;background-color:#2993e5 !important} \ No newline at end of file +.bajomedia-content:before{border-color:transparent transparent #31708f transparent;position:absolute;display:block;border-style:solid;bottom:2.5em;content:''}.bajomedia-content:before{left:0;border-width:0 0 1em 1em}.navbar{background-color:#5a5a5a;background-repeat:repeat !important;padding:0 10px !important;margin-left:-16px;margin-right:-16px;box-shadow:0 10px 10px 5px}.fondo{background-color:rgba(0,0,0,.5)}.principal{top:-2.5rem}.text-point{color:#ca5430}.border-point{border-color:#2e2e2e !important}.bg-point{background-color:#f0e7d1}.text-tan{color:#f0e7d1}.bg-light-blue{background-color:#73aba2}.bg-point-sec{background-color:#438789}.text-point-sec{color:#438789}a.text-point-sec:hover{color:#438789;text-decoration:none}.text-light-blue{color:#73aba2}.text-blue{color:#0b51c5}.btn-alameda{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:"Proxima Nova",ArialNova,"Helvetica Neue",Helvetica,"Arial Nova",Arial,sans-serif !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:600;line-height:1.25;padding:9px 24px;color:white;background-color:#2993e5;border:1px solid transparent}.btn-alameda-reverso{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:ArialNova,"Arial Nova",Arial,sans-serif,"Proxima Nova","Helvetica Neue",Helvetica !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:900 !important;text-transform:uppercase;line-height:1.25;padding:15px 15px;color:#2993e5;background-color:white}.btn-alameda-reverso:hover{background-color:#2993e5;color:white !important;border:1px solid transparent;opacity:1}.btn-alameda:hover{color:#2993e5;background-color:white;border-color:#2993e5}.btn-alameda.focus,.btn-alameda:focus{box-shadow:0 0 0 .2rem rgba(41,147,229,.5)}.btn-outline-alameda{color:#fff;background-color:#f0e7d1;border-color:#fff}.btn-outline-alameda:hover{color:#438789;background-color:transparent;border-color:#73aba2;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-outline-alameda.focus,.btn-outline-alameda:focus{color:#438789;background-color:#fff;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}ul.punto li{list-style:none;text-indent:-3em}ul.pp li{list-style:none;text-indent:2em}.fondo-evento{background-color:#f0e7d122}.fondo-footer{background-color:rgba(67,135,137,.25)}.fondo-medio{background-color:rgba(0,132,137,0.9)}.fondo-blanco-50{background-color:rgba(256,256,256,.50)}.fondoFranja{background-repeat:repeat !important;padding:0 10px !important;box-shadow:0 10px 10px 5px}a.text-tan:hover{color:#f0e7d1;text-decoration:underline}.bg-teal{background-color:#006064EE !important}a.bg-teal:focus,a.bg-teal:hover,button.bg-teal:focus,button.bg-teal:hover{background-color:#00bcd4CC !important}.contador{font-size:1.2rem !important}.ajusteIndex{margin-top:-2rem !important}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.bienvenido{background-size:cover;animation:3s linear fadeInRightBig;margin:auto auto}@-webkit-keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}@keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}.paralelox{width:100%;height:570px;display:block;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;background-position:center center}.page-header>.container{color:#000 !important}.page-header{height:105vh !important;padding-top:10px;display:flex;align-items:flex-start}.blockquote-point{padding:.5rem 1rem;border-left:.25rem solid #ca5430}.blockquote-uvcp{padding:0 1rem;border-left:.25rem solid #0f0}.blockquote-uvcp_dark{padding:0 1rem;border-left:.25rem solid #04878e}.blockquote-uvcp_dark .rotar90{position:relative;display:table-cell;vertical-align:middle;-webkit-transform:rotate(-90deg);overflow:auto;-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-7em}.vertical-divider{position:absolute;display:table;text-align:center;height:auto;width:auto}.vertical-divider .center-element{position:relative;display:table-cell;vertical-align:top;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.finalBlock{border-right:.25rem solid #04878e}.tooltip{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#73aba2;border-radius:.25rem}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#73aba2 !important;border-radius:.25rem}h3.quote:after,h3.quote:before{display:block;font-size:1.5em;margin-top:.5em}h3.quote:before{content:'“'}h3.quote:after{content:'”'}.quote:after,.quote:before{display:block;font-size:1.5em;margin-top:.5em}.quote:before{content:'“'}.quote:after{content:'”'}.mdl-card__media{background-color:#009688 !important}.mdl-card__white{background-size:cover;background-origin:padding-box;background:#009688 repeat scroll 50% 50%;box-sizing:border-box}.section-heading .section-heading-lower{display:block;font-size:2rem !important;font-weight:100}.text-tan.card .card-body .card-text,.dark-grey-text{color:#f0e7d1 !important}@media(min-width:768px){header.masthead{padding-top:4rem;padding-bottom:4rem}header.masthead h1{font-size:3rem}}@media(max-width:640px){h1{font-size:45px !important;line-height:1.35 !important;letter-spacing:-.02em !important;margin:24px 0 !important}}.text-white-75{color:rgba(255,255,255,0.75) !important}.warnock{font-family:warnock,ArialNova Slab,Times New Roman,serif}.hoverage{font-family:Hoverage,ArialNova,sans-serif}.big_noodle_titling{font-family:big noodle titling,ArialNova,Helvetica,Arial,sans-serif}.matahati{font-family:Matahati Regular,ArialNova,sans-serif}.greatlakes{font-family:greatlakes,ArialNova,Helvetica,Arial,sans-serif}.tuesnight{font-family:"Tuesnight Regular",'ArialNova',sans-serif}.text-fine{font-size:48px;font-weight:100;line-height:1.2em;margin-bottom:20px;margin-top:20px;font-family:"Poppins",sans-serif}.fine4{font-weight:400;line-height:1.2em;margin-bottom:20px;margin-top:20px}.text-300{font-size:45px;font-weight:300;line-height:48px;margin-bottom:10px;margin-top:10px;font-family:"Poppins",sans-serif}.text-14-300{font-size:1.2em;font-weight:300;line-height:1.5em;font-family:"ArialNova",sans-serif}b,i,sup,sub,u,del{color:#2993e5}#paraque b,#paraque i,.base-marron sup,.base-marron sub,.base-marron u,.base-marron del{color:#5f4339}#section-azul b,#section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}.section-azul b,.section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}#section-rojo b,#section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}.section-rojo b,.section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}p .base-rojo{font-size:2em !important}.text-invitacion{font-size:1.5em !important}.text-realce{font-weight:600}.text-realce-verde{color:#6cbb23;font-weight:600}.text-realce-alameda{color:#2993e5;font-weight:600}a.text-realce-verde:hover{color:#3f8f1e;font-weight:600}.text-realce-sca{color:#476389;font-weight:600}.text-realce-marron{color:#8d6e63;font-weight:600}.text-realce-azul{color:#051433;font-weight:600}.text-realce-rojo{color:#8c3654;font-weight:600}.boxPorHacer{height:100vh;background-size:cover}.rgba-uvcp{background:rgba(108,187,35,0.85)}.rgba-seminario{background:rgba(61,112,141,0.85)}.text-100{width:100px;height:100px}.rotar90{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-5em}.icononos-sociales a{display:inline-block;height:3.5rem;width:3.5rem;background-color:#495057;color:white !important;border-radius:100%;text-align:center;font-size:1.5rem;line-height:3.5rem;margin-right:1rem}.icononos-sociales a:last-child{margin-right:0}.icononos-sociales a:hover{background-color:#6cbb23}.fontUnivers{font-family:'UniversLTStd-Obl','ArialNova',cursive}.fontTahu{font-family:'tahu',ArialNova,cursive}.shadow-blue{box-shadow:-3px -1px 4px #2d354f}b.text-shadow{font-weight:bold}.alameda{position:relative;width:50vw;height:150px}.alameda:hover{top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}.alameda:after{content:'';position:absolute;top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}@keyframes animate{0{right:0}100%{right:-400%}}.alameda img{position:absolute;top:0;z-index:1;box-shadow:0 0 40px rgba(0,0,0,1);padding:10px}.contenido{text-align:center;position:absolute;top:50%;transform:translate(-50% -50%);width:100%}.contenido p{color:white;font-weight:700}.compuesto{font-size:4.5em}@media(max-width:640px){.compuesto{font-size:3.5em}}body.frontal{font-family:ArialNova,sans-serif}.tono-cromo{background-repeat:no-repeat;background-size:cover;height:100vh;align-items:center}.letra_a_post{font-weight:300 !important}.shared-link{display:block;padding:.5rem}.finaliza{margin:.375rem;padding:10px 22px}.bg-alameda{background-color:#d3d9dd;color:#495359}.bg-camino{background:#032a3b linear-gradient(#032a3b,#518bb9)}.bg-alameda-reverso{background-color:#2993e5}.display-5{font-size:2rem;font-weight:300;line-height:1.2}.btn-blue{background-color:#1976d2 !important;color:#fff !important}header.masthead-oportunidades{padding-top:10rem;padding-bottom:calc(10rem - 4.5rem);background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:cover}@media(min-width:992px){header.masthead{height:100vh;min-height:40rem;padding-top:4.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(max-width:991px){header.masthead{height:100vh;min-height:40rem;padding-top:2.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(min-width:1200px){header.masthead h1{font-size:3.5rem}}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-black-75{color:rgba(0,0,0,0.75) !important}.text-black-25{color:rgba(0,0,0,0.25) !important}.sup-2{top:-2.5em !important}.h-90{height:90% !important}.left-n5{left:-5px !important}.left-n15{left:-15px !important}.bottom-n10{bottom:-10px !important}.container-img{position:relative !important;text-align:center;color:white}.bottom-left{position:absolute;bottom:8px;left:16px}.top-left{position:absolute;top:8px;left:16px}.top-right{position:absolute;top:8px;right:16px}.bottom-right{position:absolute;bottom:8px;right:16px}.btn-centered{position:absolute !important;top:75% !important;left:50% !important;transform:translate(-50%,-50%) !important}.aire-2{letter-spacing:2px}a:hover>b{color:white}.e80{font-size:.8em}.e90{font-size:.9em}.mt-n3{margin-top:-0.75rem !important}.mt-a35{margin-top:3.5rem !important}.mt-a4{margin-top:4rem !important}.text-alameda{color:#2993e5 !important}.t16{font-size:16px}.negrita7{font-weight:700 !important}.contenedor:hover .card-img:hover{transform:scale(1.3);-moz-transform:scale(1.3);-webkit-transform:scale(1.3);-o-transform:scale(1.3);-ms-transform:scale(1.3)}.card-img{transition:1.5s ease;-moz-transition:1.5s ease;-webkit-transition:1.5s ease;-o-transition:1.5s ease}.contenedor{overflow:hidden}.border-alameda{border-color:#2993e5 !important}.border-alameda-top{border-top-color:#2993e5 !important;border-top-style:solid;border-top-width:1px}.border-alameda-bottom{border-bottom-color:#2993e5 !important;border-bottom-style:solid;border-bottom-width:1px}a>span.text-alameda{font-weight:bolder !important;font-size:16px !important;text-rendering:optimizeLegibility}a>small{font-family:ArialNova,sans-serif;font-style:italic !important;transform:skewY(10deg) rotate(-10deg)}.blockquote-alameda-primary{padding:0 1rem;border-left:.25rem solid #2993e5}.blockquote-alameda-primary{padding:0 1rem !important;border-left:.25rem solid #2993e5 !important}.blockquote-alameda-secondary{padding:0 1rem !important;border-left:.25rem solid #d3d9dd !important}.btn-xl{font-size:.85rem;font-weight:700;text-transform:uppercase;border:none currentcolor;border-radius:10rem !important;background-color:#2993e5 !important}.bg-gris-medio{background-color:#f8fbfd}.bg-gris-alameda{background-color:#eee}.img-20{transform:translate3d(0,-30%,0);max-width:160px;width:100%;margin:0 auto}.sub-img{margin-top:-40px !important}.main-60{margin:-200px}h4.card-title{font-family:ArialNova,serif !important}.fuente-normal{font-size:1em !important;font-family:ArialNova,serif !important}.fuente-arial-nova{font-family:"ArialNova",sans-serif !important}.link-alameda{font-weight:900 !important;color:#2993e5 !important}.link-alameda:hover{font-weight:500 !important;color:#fafafa !important;background-color:#2993e5 !important} \ No newline at end of file diff --git a/templates/models/principal/vacia.html.twig b/templates/models/principal/vacia.html.twig index 1de1bc49..d0842ed6 100644 --- a/templates/models/principal/vacia.html.twig +++ b/templates/models/principal/vacia.html.twig @@ -21,7 +21,10 @@ {% for section in principal.secciones %} {# {% include 'sections/'~section.modelTemplate~'.html.twig' ignore missing with { 'section':section } %}#} - {% include 'models/sections/'~section.modelTemplate~'.html.twig' ignore missing with { 'section':section } %} +{# {% include 'models/sections/'~section.modelTemplate~'.html.twig' ignore missing with { 'section':section } %}#} + {{ render(controller( + 'App\\Controller\\SectionController::mostrarSection', {id: section.id} + )) }} {% endfor %} {% endblock %} From 93150ce266e74f7244560bd731f40e43e20d2a46 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Fri, 5 Nov 2021 18:50:01 -0300 Subject: [PATCH 186/197] =?UTF-8?q?Se=20mejora=20el=20salto=20de=20l=C3=AD?= =?UTF-8?q?nea,=20se=20agrega=20posibilidad=20de=20descarga=20en=20plantil?= =?UTF-8?q?la=20invitacion.html.twig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/models/sections/invitacion.html.twig | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/models/sections/invitacion.html.twig b/templates/models/sections/invitacion.html.twig index 84939547..529d1c59 100644 --- a/templates/models/sections/invitacion.html.twig +++ b/templates/models/sections/invitacion.html.twig @@ -3,11 +3,11 @@ background-repeat: no-repeat; background-size:cover;">
- {% if section is defined %} - {% if section.entrada is defined %} - {% set entradas = section.entrada %} - {% endif %} - {% endif %} +{# {% if section is defined %}#} +{# {% if section.entrada is defined %}#} +{# {% set entradas = section.entrada %}#} +{# {% endif %}#} +{# {% endif %}#} {% for entrada in entradas %} {% if (entrada.orden == 1) %}
From 2cf7d5ec51b2693d39992a6f8b4bffb5d0175961 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sat, 6 Nov 2021 16:41:06 -0300 Subject: [PATCH 187/197] social-ed 7 --- templates/bases/_nota.html.twig | 238 ++++++++++++++++++-------------- 1 file changed, 136 insertions(+), 102 deletions(-) diff --git a/templates/bases/_nota.html.twig b/templates/bases/_nota.html.twig index 60b0261f..ad90f4c1 100644 --- a/templates/bases/_nota.html.twig +++ b/templates/bases/_nota.html.twig @@ -8,20 +8,18 @@

- EL VALOR DE LA INTEGRIDAD + COMO PROTEGER TU AMOR
- Serie: Social Ed. - Parte 6 + Serie: Social Ed. - Parte 7

- - INTEGRIDAD: Es {{ completa_lugar('uno') | raw }} integrar los valores de mi corazón con mis acciones diarias. - +

- "Mejor es el pobre que camina en su integridad que el de caminos tortuosos, por más que sea rico." + “El fruto del Espíritu es amor, alegría, paz, paciencia, amabilidad, bondad, fidelidad…”
- Proverbios 28:6 (BJ) + Gálatas 5:22 (NVI)

@@ -29,174 +27,210 @@
- La integridad es una de las cosas que hacen {{ completa_lugar('dos') | raw }}. + I. EL PROBLEMA: ¿QUÉ CAUSA LA INFIDELIDAD?

- - En Romanos 7:18-20 (TLA) - -
- “Yo sé que mis deseos egoístas no me permiten hacer lo bueno, pues aunque quiero hacerlo, no puedo - hacerlo. En vez de lo bueno que quiero hacer, hago lo malo que no quiero hacer.” -

-

- “No entiendo lo que me pasa” + El adulterio… “es una trampa peligrosa"
- Romanos 7:15 + Proverbios 22:14 (NTV)

-

- Tres beneficios de la integridad para construir confianza en las relaciones: +
    +
  • + + + + Necesidades insatisfechas +
  • +
  • + + + + Expectativas incumplidas +
  • +
  • + + + + Conflicto no resuelto +
  • +
  • + + + + Autoestima no desarrollada +
  • +
+

+
+

+ II. LA PREVENCIÓN: SEIS PASOS

- - (P) {{ completa_lugar('tres') | raw }}. + + 1. MIDO MI VIDA CON LA PALABRA DE DIOS

- "la integridad y la rectitud me protegen, porque yo espero en ti, Señor." + "¿Cómo puede un joven mantenerse puro? Obedeciendo tu palabra."
- Salmos 25:21 + Salmos 119:9 (NTV)

- - (S) {{ completa_lugar('cuatro') | raw }}. -

- "Quien se conduce con integridad, anda seguro. " -
- Proverbios 10:9 + Proverbios 5:15 (NBV) -

- - (D) {{ completa_lugar('cinco') | raw }}. - -

- "La integridad guía a los hombres rectos."
- - Proverbios 11:3 - + "Disfruta del amor, pero sólo con tu esposa. Tu amor y fidelidad le corresponden sólo a ella…"

-
-
-

- ¿Cómo hacer esto? -

- - ¿Cuáles son algunas cosas que podemos hacer, para practicar la integridad? - - 1. HABLE {{ completa_lugar('seis') | raw }}. + 2. MAGNIFICO LAS CONSECUENCIAS -
-
Martin Luther King dijo:
-

- “Un vaso medio vacío, es también uno medio lleno, pero una mentira a medias de ningún modo es - una media verdad.”

- -

- "al hablar la verdad en amor, creceremos " + "El hombre que comete adulterio es un necio total, porque se destruye a sí mismo."
- Efesios 4:15 (NBLH) + Proverbios 6:32 (NTV)

- "¡Felices los hijos que deja quien ha vivido con rectitud y honradez!" + "Dormir con la mujer de otro hombre te costará la vida."
- Proverbios 20:7 (DHH) + Proverbios 6:26 (NTV)

-

- "El que cava un hoyo, se puede caer en él; el que derriba un muro, puede ser que lo muerda la - serpiente;” +

+ "Con toda seguridad, Dios juzgará a los que cometen inmoralidades sexuales y a los que cometen + adulterio."
- Eclesiastés 10:8 (BLA) + Hebreos 13:4 (NTV)

- 2. (C){{ completa_lugar('siete') | raw }} REGULARMENTE. + 3. MANTENGO VIVA LA INTIMIDAD

- "confiésense unos a otros sus pecados, y oren unos por otros, para que sean sanados." + “El hombre debe satisfacer a su mujer en todo lo que ella necesita como esposa. De la misma manera, + la mujer con su esposo."
- Juan 5:16 (NVI) + 1 Corintios 7:3 (PDT) +

- "Si confesamos nuestros pecados, Dios, que es fiel y justo, nos los perdonará y nos limpiará de toda - maldad." + "No se priven el uno al otro de tener relaciones sexuales, … a fin de que Satanás no pueda tentarlos + por la falta de control propio."
- 1° Juan 1:9 (NVI) + 1 Corintios 7:5 (NTV)

- EL MEJOR LUGAR: “{{ completa_lugar('ocho') | raw }}”+ - -
- - 3. VIVA {{ completa_lugar('nueve') | raw }}. - - - La consistencia es vital en tres áreas: - - - 1. La Imagen {{ completa_lugar('diez') | raw }} frente a la imagen {{ completa_lugar('once') | raw }}. + 4. MANEJO MIS PENSAMIENTOS +
+ Cómo se desarrollan los engaños +
+
    +
  • + + Aceptar pensamientos pecaminosos en mi mente +
  • +
  • + + Participación emocional, no física +
  • +
  • + + Participación física +
  • +
  • + + Racionalizando el asunto +
  • +

+ "La tentación viene de nuestros propios deseos, los cuales nos seducen y nos arrastran.
+ De esos deseos nacen los actos pecaminosos, y el pecado, cuando se deja crecer, da a luz la muerte." +
- Jesús dijo en Mateo 6:1 + Santiago 1:14-15 (NTV) -
- "Cuídate, no hagas tus buenas obras públicamente para ser admirado".

- - 2. (D) {{ completa_lugar('doce') | raw }}. - -

+

+ "Evita las pasiones desordenadas… Esfuérzate por alcanzar una vida recta, tener fe, amor y paz junto + con la gente que tiene corazón puro y que ha confiado en el Señor." +
- Efesios 6:4 (NVI) + 2 Timoteo 2:22 (PDT) +

+

+ "Sean sabios para hacer el bien, e inocentes en cuanto al mal."
- Y ustedes, padres, no hagan enojar a sus hijos, sino críenlos según la disciplina e instrucción del - Señor. + + Romanos 16:19 (PDT) +

- 3. Coherencia entre mis {{ completa_lugar('trece') | raw }} y mis {{ completa_lugar('catorce') | raw }}. + 5. ME ALEJO DE TODA RELACIÓN INCORRECTA -

+

+ "Ni siquiera hablen de la inmoralidad sexual." +
- 1° Samuel 16:7 + Efesios 5:3 (DHH) -
- "El hombre mira la apariencia externa, pero el Señor mira el corazón".

- 4. (C) {{ completa_lugar('quince') | raw }} ABIERTAMENTE. + 6. MINIMIZO LAS OPORTUNIDADES

- "Yo no hablo en secreto ni en lugares oscuros de la tierra… Yo, el Señor, hablo la verdad, digo lo que - es justo." + "Por eso, que nadie se sienta seguro de que no va a pecar, pues puede ser el primero en hacerlo." +
+ + 1 Corintios 10:12 (TLA) + +

+

+ "No se dejen engañar… «las malas compañías corrompen el buen carácter»."
- Isaías 45:19 (LB) + 1 Corintios 15:33 (NTV)

- "…si confiesas con tu boca que Jesús es el Señor y crees en tu corazón que Dios lo levantó de entre los - muertos, serás salvo.” + "..Guarda tu corazón y permanece fiel a la esposa de tu juventud."
- Romanos 10:9 (NVI) + Malaquías 2:15 (NTV)

+
+
+
+

+ EL CAMINO DE REGRESO A LA PUREZA +

+ +
    +
  • + 1 + Reconoce tu pecado. +
  • +
  • + 2 + Termine la relación inmediatamente. +
  • +
  • + 3 + Evite TODO el contacto con la persona a partir de ahora.
    ¡Haz lo que sea necesario para hacer esto! +
  • +
From f7bf89b758a579723e57b5c2cd3fa2988d27b638 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sat, 13 Nov 2021 10:46:08 -0300 Subject: [PATCH 188/197] social-ed 8 --- assets/js/nota_mensaje.js | 160 +++++++++---------- templates/bases/_nota.html.twig | 268 ++++++++++++++++---------------- 2 files changed, 217 insertions(+), 211 deletions(-) diff --git a/assets/js/nota_mensaje.js b/assets/js/nota_mensaje.js index a118653c..8387b3bc 100644 --- a/assets/js/nota_mensaje.js +++ b/assets/js/nota_mensaje.js @@ -1,28 +1,28 @@ import $ from 'jquery'; $(function () { - const puno = localStorage.getItem("SE6Puno"); - const pdos = localStorage.getItem("SE6Pdos"); - const ptres = localStorage.getItem("SE6Ptres"); - const pcuatro = localStorage.getItem("SE6Pcuatro"); - const pcinco = localStorage.getItem("SE6Pcinco"); - const pseis = localStorage.getItem("SE6Pseis"); - const psiete = localStorage.getItem("SE6Psiete"); - const pocho = localStorage.getItem("SE6Pocho"); - const pnueve = localStorage.getItem("SE6Pnueve"); - const pdiez = localStorage.getItem("SE6Pdiez"); - const ponce = localStorage.getItem("SE6Ponce"); - const pdoce = localStorage.getItem("SE6Pdoce"); - const ptrece = localStorage.getItem("SE6Ptrece"); - const pcatorce = localStorage.getItem("SE6Pcatorce"); - const pquince = localStorage.getItem("SE6Pquince"); - const pdieciseis = localStorage.getItem("SE6Pdieciseis"); - const pdiecisiete = localStorage.getItem("SE6Pdiecisiete"); - const pdieciocho = localStorage.getItem("SE6Pdieciocho"); - const pdiecinueve = localStorage.getItem("SE6Pdiecinueve"); - const pveinte = localStorage.getItem("SE6Pveinte"); + const puno = localStorage.getItem("SE8Puno"); + const pdos = localStorage.getItem("SE8Pdos"); + const ptres = localStorage.getItem("SE8Ptres"); + const pcuatro = localStorage.getItem("SE8Pcuatro"); + const pcinco = localStorage.getItem("SE8Pcinco"); + const pseis = localStorage.getItem("SE8Pseis"); + const psiete = localStorage.getItem("SE8Psiete"); + const pocho = localStorage.getItem("SE8Pocho"); + const pnueve = localStorage.getItem("SE8Pnueve"); + const pdiez = localStorage.getItem("SE8Pdiez"); + const ponce = localStorage.getItem("SE8Ponce"); + const pdoce = localStorage.getItem("SE8Pdoce"); + const ptrece = localStorage.getItem("SE8Ptrece"); + const pcatorce = localStorage.getItem("SE8Pcatorce"); + const pquince = localStorage.getItem("SE8Pquince"); + const pdieciseis = localStorage.getItem("SE8Pdieciseis"); + const pdiecisiete = localStorage.getItem("SE8Pdiecisiete"); + const pdieciocho = localStorage.getItem("SE8Pdieciocho"); + const pdiecinueve = localStorage.getItem("SE8Pdiecinueve"); + const pveinte = localStorage.getItem("SE8Pveinte"); if (pcinco != null) { - $('#pcinco').val(JSON.parse(localStorage.SE6Pcinco)) + $('#pcinco').val(JSON.parse(localStorage.SE8Pcinco)) muestra1('#lpcinco', '#sinpcinco') aceptado('cinco'); } else { @@ -30,7 +30,7 @@ $(function () { } if (puno != null) { - $('#puno').val(JSON.parse(localStorage.SE6Puno)) + $('#puno').val(JSON.parse(localStorage.SE8Puno)) muestra1('#lpuno', '#sinpuno') aceptado('uno'); console.log('19') @@ -40,7 +40,7 @@ $(function () { } if (pdos != null) { - $('#pdos').val(JSON.parse(localStorage.SE6Pdos)) + $('#pdos').val(JSON.parse(localStorage.SE8Pdos)) muestra1('#lpdos', '#sinpdos') aceptado('dos'); } else { @@ -48,7 +48,7 @@ $(function () { } if (ptres != null) { - $('#ptres').val(JSON.parse(localStorage.SE6Ptres)) + $('#ptres').val(JSON.parse(localStorage.SE8Ptres)) muestra1('#lptres', '#sinptres') aceptado('tres'); } else { @@ -56,7 +56,7 @@ $(function () { } if (pcuatro != null) { - $('#pcuatro').val(JSON.parse(localStorage.SE6Pcuatro)) + $('#pcuatro').val(JSON.parse(localStorage.SE8Pcuatro)) muestra1('#lpcuatro', '#sinpcuatro') aceptado('cuatro'); } else { @@ -64,14 +64,14 @@ $(function () { } if (pseis != null) { - $('#pseis').val(JSON.parse(localStorage.SE6Pseis)) + $('#pseis').val(JSON.parse(localStorage.SE8Pseis)) muestra1('#lpseis', '#sinpseis') aceptado('seis'); } else { oculta1('#lpseis', '#sinpseis') } if (psiete != null) { - $('#psiete').val(JSON.parse(localStorage.SE6Psiete)) + $('#psiete').val(JSON.parse(localStorage.SE8Psiete)) muestra1('#lpsiete', '#sinpsiete') aceptado('siete'); } else { @@ -79,7 +79,7 @@ $(function () { } if (pocho != null) { - $('#pocho').val(JSON.parse(localStorage.SE6Pocho)) + $('#pocho').val(JSON.parse(localStorage.SE8Pocho)) muestra1('#lpocho', '#sinpocho') aceptado('ocho'); } else { @@ -87,7 +87,7 @@ $(function () { } if (pnueve != null) { - $('#pnueve').val(JSON.parse(localStorage.SE6Pnueve)) + $('#pnueve').val(JSON.parse(localStorage.SE8Pnueve)) muestra1('#lpnueve', '#sinpnueve') aceptado('nueve'); } else { @@ -95,7 +95,7 @@ $(function () { } if (pdiez != null) { - $('#pdiez').val(JSON.parse(localStorage.SE6Pdiez)) + $('#pdiez').val(JSON.parse(localStorage.SE8Pdiez)) muestra1('#lpdiez', '#sinpdiez') aceptado('diez'); } else { @@ -103,70 +103,70 @@ $(function () { } if (ponce != null) { - $('#ponce').val(JSON.parse(localStorage.SE6Ponce)) + $('#ponce').val(JSON.parse(localStorage.SE8Ponce)) muestra1('#lponce', '#sinponce') aceptado('once'); } else { oculta1('#lponce', '#sinponce') } if (pdoce != null) { - $('#pdoce').val(JSON.parse(localStorage.SE6Pdoce)) + $('#pdoce').val(JSON.parse(localStorage.SE8Pdoce)) muestra1('#lpdoce', '#sinpdoce') aceptado('doce'); } else { oculta1('#lpdoce', '#sinpdoce') } if (ptrece != null) { - $('#ptrece').val(JSON.parse(localStorage.SE6Ptrece)) + $('#ptrece').val(JSON.parse(localStorage.SE8Ptrece)) muestra1('#lptrece', '#sinptrece') aceptado('trece'); } else { oculta1('#lptrece', '#sinptrece') } if (pcatorce != null) { - $('#pcatorce').val(JSON.parse(localStorage.SE6Pcatorce)) + $('#pcatorce').val(JSON.parse(localStorage.SE8Pcatorce)) muestra1('#lpcatorce', '#sinpcatorce') aceptado('catorce'); } else { oculta1('#lpcatorce', '#sinpcatorce') } if (pquince != null) { - $('#pquince').val(JSON.parse(localStorage.SE6Pquince)) + $('#pquince').val(JSON.parse(localStorage.SE8Pquince)) muestra1('#lpquince', '#sinpquince') aceptado('quince'); } else { oculta1('#lpquince', '#sinpquince') } if (pdieciseis != null) { - $('#pdieciseis').val(JSON.parse(localStorage.SE6Pdieciseis)) + $('#pdieciseis').val(JSON.parse(localStorage.SE8Pdieciseis)) muestra1('#lpdieciseis', '#sinpdieciseis') aceptado('dieciseis'); } else { oculta1('#lpdieciseis', '#sinpdieciseis') } if (pdiecisiete != null) { - $('#pdiecisiete').val(JSON.parse(localStorage.SE6Pdiecisiete)) + $('#pdiecisiete').val(JSON.parse(localStorage.SE8Pdiecisiete)) muestra1('#lpdiecisiete', '#sinpdiecisiete') aceptado('diecisiete'); } else { oculta1('#lpdiecisiete', '#sinpdiecisiete') } if (pdieciocho != null) { - $('#pdieciocho').val(JSON.parse(localStorage.SE6Pdieciocho)) + $('#pdieciocho').val(JSON.parse(localStorage.SE8Pdieciocho)) muestra1('#lpdieciocho', '#sinpdieciocho') aceptado('dieciocho'); } else { oculta1('#lpdieciocho', '#sinpdieciocho') } if (pdiecinueve != null) { - $('#pdiecinueve').val(JSON.parse(localStorage.SE6Pdiecinueve)) + $('#pdiecinueve').val(JSON.parse(localStorage.SE8Pdiecinueve)) muestra1('#lpdiecinueve', '#sinpdiecinueve') aceptado('diecinueve'); } else { oculta1('#lpdiecinueve', '#sinpdiecinueve') } if (pveinte != null) { - $('#pveinte').val(JSON.parse(localStorage.SE6Pveinte)) + $('#pveinte').val(JSON.parse(localStorage.SE8Pveinte)) muestra1('#lpveinte', '#sinpveinte') aceptado('veinte'); } else { @@ -530,94 +530,94 @@ function procesa(p) { console.log('p = ' + p) if (p === 'diez') { const pdiez = $('#pdiez').val(); - localStorage.SE6Pdiez = JSON.stringify(pdiez); + localStorage.SE8Pdiez = JSON.stringify(pdiez); } if (p === 'nueve') { const pnueve = $('#pnueve').val(); - localStorage.SE6Pnueve = JSON.stringify(pnueve); + localStorage.SE8Pnueve = JSON.stringify(pnueve); } if (p === 'ocho') { const pocho = $('#pocho').val(); - localStorage.SE6Pocho = JSON.stringify(pocho); + localStorage.SE8Pocho = JSON.stringify(pocho); } if (p === 'siete') { const psiete = $('#psiete').val(); - localStorage.SE6Psiete = JSON.stringify(psiete); + localStorage.SE8Psiete = JSON.stringify(psiete); } if (p === 'seis') { const pseis = $('#pseis').val(); - localStorage.SE6Pseis = JSON.stringify(pseis); + localStorage.SE8Pseis = JSON.stringify(pseis); } if (p === 'cinco') { const pcinco = $('#pcinco').val(); - localStorage.SE6Pcinco = JSON.stringify(pcinco); + localStorage.SE8Pcinco = JSON.stringify(pcinco); } if (p === 'uno') { const puno = $('#puno').val(); - localStorage.SE6Puno = JSON.stringify(puno); + localStorage.SE8Puno = JSON.stringify(puno); } if (p === 'dos') { const pdos = $('#pdos').val(); - localStorage.SE6Pdos = JSON.stringify(pdos); + localStorage.SE8Pdos = JSON.stringify(pdos); } if (p === 'tres') { const ptres = $('#ptres').val(); - localStorage.SE6Ptres = JSON.stringify(ptres); + localStorage.SE8Ptres = JSON.stringify(ptres); } if (p === 'cuatro') { const pcuatro = $('#pcuatro').val(); - localStorage.SE6Pcuatro = JSON.stringify(pcuatro); + localStorage.SE8Pcuatro = JSON.stringify(pcuatro); } if (p === 'once') { const ponce = $('#ponce').val(); - localStorage.SE6Ponce = JSON.stringify(ponce); + localStorage.SE8Ponce = JSON.stringify(ponce); } if (p === 'doce') { const pdoce = $('#pdoce').val(); - localStorage.SE6Pdoce = JSON.stringify(pdoce); + localStorage.SE8Pdoce = JSON.stringify(pdoce); } if (p === 'trece') { const ptrece = $('#ptrece').val(); - localStorage.SE6Ptrece = JSON.stringify(ptrece); + localStorage.SE8Ptrece = JSON.stringify(ptrece); } if (p === 'catorce') { const pcatorce = $('#pcatorce').val(); - localStorage.SE6Pcatorce = JSON.stringify(pcatorce); + localStorage.SE8Pcatorce = JSON.stringify(pcatorce); } if (p === 'quince') { const pquince = $('#pquince').val(); - localStorage.SE6Pquince = JSON.stringify(pquince); + localStorage.SE8Pquince = JSON.stringify(pquince); } if (p === 'dieciseis') { const pdieciseis = $('#pdieciseis').val(); - localStorage.SE6Pdieciseis = JSON.stringify(pdieciseis); + localStorage.SE8Pdieciseis = JSON.stringify(pdieciseis); } if (p === 'diecisiete') { const pdiecisiete = $('#pdiecisiete').val(); - localStorage.SE6Pdiecisiete = JSON.stringify(pdiecisiete); + localStorage.SE8Pdiecisiete = JSON.stringify(pdiecisiete); } if (p === 'dieciocho') { const pdieciocho = $('#pdieciocho').val(); - localStorage.SE6Pdieciocho = JSON.stringify(pdieciocho); + localStorage.SE8Pdieciocho = JSON.stringify(pdieciocho); } if (p === 'diecinueve') { const pdiecinueve = $('#pdiecinueve').val(); - localStorage.SE6Pdiecinueve = JSON.stringify(pdiecinueve); + localStorage.SE8Pdiecinueve = JSON.stringify(pdiecinueve); } if (p === 'veinte') { const pveinte = $('#pveinte').val(); - localStorage.SE6Pveinte = JSON.stringify(pveinte); + localStorage.SE8Pveinte = JSON.stringify(pveinte); } @@ -626,7 +626,7 @@ function procesa(p) { function aceptado(p) { if (p === 'diez') { - const pdiez = JSON.parse(localStorage.SE6Pdiez); + const pdiez = JSON.parse(localStorage.SE8Pdiez); $('#lpdiez').addClass('fontTahu fa-2x text-info'); $('#lpdiez').html(pdiez); @@ -634,7 +634,7 @@ function aceptado(p) { } if (p === 'nueve') { - const pnueve = JSON.parse(localStorage.SE6Pnueve); + const pnueve = JSON.parse(localStorage.SE8Pnueve); $('#lpnueve').addClass('fontTahu fa-2x text-info'); $('#lpnueve').html(pnueve); @@ -642,7 +642,7 @@ function aceptado(p) { } if (p === 'ocho') { - const pocho = JSON.parse(localStorage.SE6Pocho); + const pocho = JSON.parse(localStorage.SE8Pocho); $('#lpocho').addClass('fontTahu fa-2x text-info'); $('#lpocho').html(pocho); @@ -650,7 +650,7 @@ function aceptado(p) { } if (p === 'seis') { - const pseis = JSON.parse(localStorage.SE6Pseis); + const pseis = JSON.parse(localStorage.SE8Pseis); $('#lpseis').addClass('fontTahu fa-2x text-info'); $('#lpseis').html(pseis); @@ -658,7 +658,7 @@ function aceptado(p) { } if (p === 'siete') { - const psiete = JSON.parse(localStorage.SE6Psiete); + const psiete = JSON.parse(localStorage.SE8Psiete); $('#lpsiete').addClass('fontTahu fa-2x text-info'); $('#lpsiete').html(psiete); @@ -666,7 +666,7 @@ function aceptado(p) { } if (p === 'uno') { - const puno = JSON.parse(localStorage.SE6Puno); + const puno = JSON.parse(localStorage.SE8Puno); $('#lpuno').addClass('fontTahu fa-2x text-info'); $('#lpuno').html(puno); @@ -674,28 +674,28 @@ function aceptado(p) { } if (p === 'cinco') { console.log('aceptado = ' + p) - const pcinco = JSON.parse(localStorage.SE6Pcinco); + const pcinco = JSON.parse(localStorage.SE8Pcinco); $('#lpcinco').addClass('fontTahu fa-2x text-info'); $('#lpcinco').html(pcinco); $('#lpcinco').show(); $('#sinpcinco').hide(); } if (p === 'dos') { - const pdos = JSON.parse(localStorage.SE6Pdos); + const pdos = JSON.parse(localStorage.SE8Pdos); $('#lpdos').addClass('fontTahu fa-2x text-info'); $('#lpdos').html(pdos); $('#sinpdos').hide(); } if (p === 'tres') { - const ptres = JSON.parse(localStorage.SE6Ptres); + const ptres = JSON.parse(localStorage.SE8Ptres); $('#lptres').addClass('fontTahu fa-2x text-info'); $('#lptres').html(ptres); $('#sinptres').hide(); } if (p === 'cuatro') { - const pcuatro = JSON.parse(localStorage.SE6Pcuatro); + const pcuatro = JSON.parse(localStorage.SE8Pcuatro); $('#lpcuatro').addClass('fontTahu fa-2x text-info'); $('#lpcuatro').html(pcuatro); @@ -703,7 +703,7 @@ function aceptado(p) { } if (p === 'once') { - const ponce = JSON.parse(localStorage.SE6Ponce); + const ponce = JSON.parse(localStorage.SE8Ponce); $('#lponce').addClass('fontTahu fa-2x text-info'); $('#lponce').html(ponce); @@ -711,7 +711,7 @@ function aceptado(p) { } if (p === 'doce') { - const pdoce = JSON.parse(localStorage.SE6Pdoce); + const pdoce = JSON.parse(localStorage.SE8Pdoce); $('#lpdoce').addClass('fontTahu fa-2x text-info'); $('#lpdoce').html(pdoce); @@ -719,7 +719,7 @@ function aceptado(p) { } if (p === 'trece') { - const ptrece = JSON.parse(localStorage.SE6Ptrece); + const ptrece = JSON.parse(localStorage.SE8Ptrece); $('#lptrece').addClass('fontTahu fa-2x text-info'); $('#lptrece').html(ptrece); @@ -727,49 +727,49 @@ function aceptado(p) { } if (p === 'catorce') { - const pcatorce = JSON.parse(localStorage.SE6Pcatorce); + const pcatorce = JSON.parse(localStorage.SE8Pcatorce); $('#lpcatorce').addClass('fontTahu fa-2x text-info'); $('#lpcatorce').html(pcatorce); $('#sinpcatorce').hide(); } if (p === 'quince') { - const pquince = JSON.parse(localStorage.SE6Pquince); + const pquince = JSON.parse(localStorage.SE8Pquince); $('#lpquince').addClass('fontTahu fa-2x text-info'); $('#lpquince').html(pquince); $('#sinpquince').hide(); } if (p === 'dieciseis') { - const pdieciseis = JSON.parse(localStorage.SE6Pdieciseis); + const pdieciseis = JSON.parse(localStorage.SE8Pdieciseis); $('#lpdieciseis').addClass('fontTahu fa-2x text-info'); $('#lpdieciseis').html(pdieciseis); $('#sinpdieciseis').hide(); } if (p === 'diecisiete') { - const pdiecisiete = JSON.parse(localStorage.SE6Pdiecisiete); + const pdiecisiete = JSON.parse(localStorage.SE8Pdiecisiete); $('#lpdiecisiete').addClass('fontTahu fa-2x text-info'); $('#lpdiecisiete').html(pdiecisiete); $('#sinpdiecisiete').hide(); } if (p === 'dieciocho') { - const pdieciocho = JSON.parse(localStorage.SE6Pdieciocho); + const pdieciocho = JSON.parse(localStorage.SE8Pdieciocho); $('#lpdieciocho').addClass('fontTahu fa-2x text-info'); $('#lpdieciocho').html(pdieciocho); $('#sinpdieciocho').hide(); } if (p === 'diecinueve') { - const pdiecinueve = JSON.parse(localStorage.SE6Pdiecinueve); + const pdiecinueve = JSON.parse(localStorage.SE8Pdiecinueve); $('#lpdiecinueve').addClass('fontTahu fa-2x text-info'); $('#lpdiecinueve').html(pdiecinueve); $('#sinpdiecinueve').hide(); } if (p === 'veinte') { - const pveinte = JSON.parse(localStorage.SE6Pveinte); + const pveinte = JSON.parse(localStorage.SE8Pveinte); $('#lpveinte').addClass('fontTahu fa-2x text-info'); $('#lpveinte').html(pveinte); diff --git a/templates/bases/_nota.html.twig b/templates/bases/_nota.html.twig index ad90f4c1..0b9cde14 100644 --- a/templates/bases/_nota.html.twig +++ b/templates/bases/_nota.html.twig @@ -8,229 +8,235 @@

- COMO PROTEGER TU AMOR + MANSEDUMBRE DE CORAZÓN
- Serie: Social Ed. - Parte 7 + Serie: Social Ed. - Parte 8

- “El fruto del Espíritu es amor, alegría, paz, paciencia, amabilidad, bondad, fidelidad…” + Pero el fruto que produce el Espíritu Santo dentro de ti es ... dulzura de corazón, y fuerza de espíritu.
- Gálatas 5:22 (NVI) + Gal. 5: 22 y 23. TPT + +

+

+ Si se enojan, no pequen. No permitan que el enojo les dure hasta la puesta del sol. +
+ + Efesios 4:26 NVI

-
- - I. EL PROBLEMA: ¿QUÉ CAUSA LA INFIDELIDAD? - -

- El adulterio… “es una trampa peligrosa" -
- - Proverbios 22:14 (NTV) - -

-
    -
  • - - - - Necesidades insatisfechas -
  • -
  • - - - - Expectativas incumplidas -
  • -
  • - - - - Conflicto no resuelto -
  • -
  • - - - - Autoestima no desarrollada -
  • -
-

- II. LA PREVENCIÓN: SEIS PASOS + ¿Que produce la mansedumbre en nuestras relaciones?

- - 1. MIDO MI VIDA CON LA PALABRA DE DIOS + + Apacigua el {{ completa_lugar('uno') | raw}}. -

- "¿Cómo puede un joven mantenerse puro? Obedeciendo tu palabra." +

+ La respuesta apacible desvía el enojo, pero las palabras ásperas encienden los ánimos.
- Salmos 119:9 (NTV) + Proverbios 15:1 NTV

-

+ + Desarma a los {{ completa_lugar('dos') | raw}} + +

+ "Respondemos con gentileza cuando dicen cosas malas de nosotros". +
+ + 1 Corintios 4:13 NTV + +

+ + Abre la puerta la {{ completa_lugar('tres') | raw}} + +

+ Dialogar pacientemente con los gobernantes los hace cambiar su manera de pensar; un diálogo amistoso + tiene mucho poder. +
- Proverbios 5:15 (NBV) + Proverbios 25.15 PDT +

+

+ "Los sabios son conocidos por su entendimiento, y las palabras agradables son persuasivas".
- "Disfruta del amor, pero sólo con tu esposa. Tu amor y fidelidad le corresponden sólo a ella…" + + Proverbios 16:21 NTV +

- 2. MAGNIFICO LAS CONSECUENCIAS + Nos vuelve personas {{ completa_lugar('cuatro') | raw}} -

- "El hombre que comete adulterio es un necio total, porque se destruye a sí mismo." +

+ Procuren más bien la belleza pura, la que viene de lo íntimo del corazón y que consiste en un + espíritu afectuoso y tranquilo. Esta es la que tiene valor delante de Dios.
- Proverbios 6:32 (NTV) + 1 Pedro 3:4 NBV

-

- "Dormir con la mujer de otro hombre te costará la vida." + + Comunica el {{ completa_lugar('cinco') | raw}} + +

+ Ámense los unos a los otros con amor fraternal, respetándose y honrándose mutuamente.
- Proverbios 6:26 (NTV) + Romanos 12:10 NVI

- "Con toda seguridad, Dios juzgará a los que cometen inmoralidades sexuales y a los que cometen - adulterio." + Pues toda la ley se puede resumir en una sola frase: «Ama a tus semejantes como a ti mismo».
- Hebreos 13:4 (NTV) + Gálatas 5:14 PDT

- 3. MANTENGO VIVA LA INTIMIDAD + Es el camino al {{ completa_lugar('seis') | raw}} -

- “El hombre debe satisfacer a su mujer en todo lo que ella necesita como esposa. De la misma manera, - la mujer con su esposo." +

+ Moisés era un hombre muy manso, más que todos los hombres que había sobre la tierra.
- 1 Corintios 7:3 (PDT) + Números 12: 3 RVR -

+ + Da testimonio a quienes {{ completa_lugar('siete') | raw}} + +

+ Al contrario, honren en su corazón a Cristo, como Señor, y manténganse siempre listos para + defenderse, con mansedumbre y respeto, ante aquellos que les pidan explicarles la esperanza que hay + en ustedes. +
+ + 1 Pedro 3:15 RVC + +

+
+
+

+ ¿Cómo ser una persona mansa? +

+ + 1- Entiende {{ completa_lugar('ocho') | raw}} para tu vida. +

- "No se priven el uno al otro de tener relaciones sexuales, … a fin de que Satanás no pueda tentarlos - por la falta de control propio." + Pero los mansos heredarán la tierra, Y se recrearán con abundancia de paz. +
+ + Salmo 37:11 RVA + +

+

+ Obedezcan mis mandamientos y aprendan de mí, pues yo soy paciente y humilde de verdad. Conmigo + podrán descansar.
- 1 Corintios 7:5 (NTV) + Mateo 11:29 TLA

+
- 4. MANEJO MIS PENSAMIENTOS + 2- Elige la mansedumbre {{ completa_lugar('nueve') | raw}} -
- Cómo se desarrollan los engaños -
-
    -
  • - - Aceptar pensamientos pecaminosos en mi mente -
  • -
  • - - Participación emocional, no física -
  • -
  • - - Participación física -
  • -
  • - - Racionalizando el asunto -
  • -

- "La tentación viene de nuestros propios deseos, los cuales nos seducen y nos arrastran.
- De esos deseos nacen los actos pecaminosos, y el pecado, cuando se deja crecer, da a luz la muerte." + Siempre humildes y amables, pacientes, tolerantes unos con otros en amor.
- Santiago 1:14-15 (NTV) + Efesios 4:2 NVI

+ +

+ ¿Con qué personas seré manso? +

+ + - Con aquellos que hacen algo por mí. +

- "Evita las pasiones desordenadas… Esfuérzate por alcanzar una vida recta, tener fe, amor y paz junto - con la gente que tiene corazón puro y que ha confiado en el Señor." + No se ocupen solo de sus propios intereses, sino también procuren interesarse en los demás.
- 2 Timoteo 2:22 (PDT) + Filipenses 2: 4 NTV

+ + - Con aquellos que están en desacuerdo conmigo. +

- "Sean sabios para hacer el bien, e inocentes en cuanto al mal." + No hagan nada por rivalidad ni orgullo. Sean humildes y cada uno considere a los demás como más + importantes que sí mismo.
- Romanos 16:19 (PDT) + Filipenses 2:3 PDT

- 5. ME ALEJO DE TODA RELACIÓN INCORRECTA + - Con aquellos que me han decepcionado.

- "Ni siquiera hablen de la inmoralidad sexual." + Hermanos, si alguien es sorprendido en pecado, ustedes que son espirituales deben restaurarlo con + una actitud humilde. Pero cuídese cada uno, porque también puede ser tentado.
- Efesios 5:3 (DHH) + Gálatas 6:1 NVI

- 6. MINIMIZO LAS OPORTUNIDADES + - Con aquellos que me han lastimado.

- "Por eso, que nadie se sienta seguro de que no va a pecar, pues puede ser el primero en hacerlo." + Más bien, sean bondadosos y compasivos unos con otros, y perdónense mutuamente, así como Dios los + perdonó a ustedes en Cristo.
- 1 Corintios 10:12 (TLA) + Efesios 4: 32 NVI

+ + - Con aquellos que me corrigen. +

- "No se dejen engañar… «las malas compañías corrompen el buen carácter»." + Para aprender, hay que amar la disciplina; es tonto despreciar la corrección.
- 1 Corintios 15:33 (NTV) + Proverbios 12:1 NTV

+ + 3- Rinde tu vida al {{ completa_lugar('diez') | raw}} +

- "..Guarda tu corazón y permanece fiel a la esposa de tu juventud." + Para esto fueron llamados, porque Cristo sufrió por ustedes, dándoles ejemplo para que sigan sus + pasos. «Él no cometió ningún pecado, ni hubo engaño en su boca». Cuando proferían insultos contra + él, no replicaba con insultos; cuando padecía, no amenazaba, sino que se entregaba a aquel que + juzga con justicia. Él mismo, en su cuerpo, llevó al madero nuestros pecados, para que muramos al + pecado y vivamos para la justicia. Por sus heridas ustedes han sido sanados.
- Malaquías 2:15 (NTV) + 1° Pedro 2: 21- 24 NVI + +

+

+ Por eso les digo: dejen que el Espíritu Santo los guíe en la vida. Entonces no se dejarán llevar + por los impulsos de la naturaleza pecaminosa. +
+ + Gálatas 5: 16 NTV

-
-
-
-

- EL CAMINO DE REGRESO A LA PUREZA -

- -
    -
  • - 1 - Reconoce tu pecado. -
  • -
  • - 2 - Termine la relación inmediatamente. -
  • -
  • - 3 - Evite TODO el contacto con la persona a partir de ahora.
    ¡Haz lo que sea necesario para hacer esto! -
  • -
From b78fe6b1745b0999b6f9a0a7b412aa562bd169c8 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sun, 14 Nov 2021 12:59:49 -0300 Subject: [PATCH 189/197] model-section-flotante --- public/css/styles.css | 19 ++++++---- public/css/styles.min.css | 1 + templates/base.html.twig | 2 +- templates/entrada/link.html.twig | 2 +- templates/modelEntrada/_pContacto.html.twig | 2 -- templates/models/principal/avanza.html.twig | 2 +- templates/models/principal/programa.html.twig | 2 +- .../sections/section-flotante.html.twig | 35 +++++++++++++++++++ templates/reserva/index.html.twig | 2 +- templates/reserva/invitado.html.twig | 2 +- templates/reserva/reservante.html.twig | 2 +- templates/security/changepassword.html.twig | 2 +- templates/security/login.html.twig | 2 +- templates/security/register.html.twig | 2 +- .../registerVoluntarioReserva.html.twig | 2 +- 15 files changed, 60 insertions(+), 19 deletions(-) create mode 100644 public/css/styles.min.css create mode 100644 templates/models/sections/section-flotante.html.twig diff --git a/public/css/styles.css b/public/css/styles.css index 5c7bca46..e538d309 100755 --- a/public/css/styles.css +++ b/public/css/styles.css @@ -211,7 +211,7 @@ h1, h2, h3, h4, h5, h6 { } /*---------------------------------- - Carousell + Carousel ------------------------------------*/ .carousel-control-size { font-size: 2rem; @@ -220,7 +220,7 @@ h1, h2, h3, h4, h5, h6 { /*---------------------------------- Forms ------------------------------------*/ -/* Form Lable States */ +/* Form Label States */ .is-valid .form-label-text { color: #0dd157; } @@ -1047,10 +1047,7 @@ h1, h2, h3, h4, h5, h6 { right: 0; height: 3.75rem; overflow: hidden; - padding-left: 0.9375rem; - padding-right: 0.9375rem; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; + padding: 0.3125rem 0.9375rem; color: #fff; background-color: #59287a; transition: all .2s ease; @@ -1296,3 +1293,13 @@ Sorteable cursor: grab; } +.action-btn-wrapper { + position: relative; +} + +.fixed-action-btn.my-float-btn { + position: fixed; + right: 0; + bottom: 15%; + padding-top: 15px; +} diff --git a/public/css/styles.min.css b/public/css/styles.min.css new file mode 100644 index 00000000..88061f0d --- /dev/null +++ b/public/css/styles.min.css @@ -0,0 +1 @@ +html{font-size:1rem}body{font-weight:400;font-size:1rem;font-family:"Open Sans",sans-serif;line-height:1.6;color:#1b1e24;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-moz-font-feature-settings:"liga","kern";text-rendering:optimizelegibility}a{color:#59287a}a:hover{color:#59287a}a:focus{outline:0}p{line-height:1.8}figure{margin-bottom:0}hr{border-color:#e6e7e9}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,.h7,h1,h2,h3,h4,h5,h6{line-height:1.6}::-moz-selection{color:#fff;background-color:#59287a}::selection{color:#fff;background-color:#59287a}.bg-primary ::-moz-selection{color:#59287a;background-color:#fff}.bg-primary ::selection{color:#59287a;background-color:#fff}.alert__icon{font-size:1.25rem}.alert__close{padding:0;line-height:1.3;opacity:.7;background:0;border:0;cursor:pointer;font-size:1.625rem;transition:all .3s}.alert__close--light{color:#fff}.alert__close--dark{color:#1b1e24}.alert__close:hover{opacity:1}.alert__close:focus{outline:0 none;box-shadow:none}.u-bg-arrow-wrapper{position:relative}.u-bg-arrow-bottom::before{position:absolute;content:"";left:50%;margin-left:-20px;bottom:-25px;border-style:solid;border-width:25px 20px 0 20px;border-color:#fff transparent transparent transparent;z-index:3}.u-avatar{border:solid 3px #fff}.rounded-md{border-radius:.625rem}.btn{cursor:pointer;transition:.2s ease}.btn.focus,.btn:focus .btn.active:focus,.btn:active:focus{outline:0 none;box-shadow:none;border-color:transparent}.btn--circle{border-radius:100%;padding:0;width:2.625rem;height:2.625rem;line-height:2.625rem}.btn--circle.btn-sm{width:1.9375rem;height:1.9375rem;line-height:1.9375rem}.btn--circle.btn-lg{width:3.25rem;height:3.25rem;line-height:3.25rem}.btn--pill{border-radius:6.25rem;padding-left:1.25rem;padding-right:1.25rem}.btn--pill.btn-sm{padding-left:.9375rem;padding-right:.9375rem}.btn--pill.btn-lg{padding-left:1.5625rem;padding-right:1.5625rem}.btn-link{color:#59287a}.btn-link:hover{color:#59287a}.carousel-control-size{font-size:2rem}.is-valid .form-label-text{color:#0dd157}.is-invalid .form-label-text{color:#fb4143}.is-disabled .form-label-text{color:#8f95a0}.form--pill{border-radius:6.25rem;padding-left:1rem;padding-right:1rem}.form-icon-wrapper{position:relative;display:block}.form-icon-input-left{padding-left:2.1875rem}.form-icon-input-right{padding-right:2.1875rem}.form-icon{position:absolute;height:100%;width:2.5rem}.form-icon--left{left:0}.form-icon--right{right:0}.form-icon__item{position:absolute;top:50%;left:50%;color:#8f95a0;transform:translate(-50%,-50%)}.form-toggle{position:relative;cursor:pointer}.form-toggle__item{display:block;padding-left:1px;padding-right:1px;cursor:pointer;width:43px;height:22px;font-style:normal;font-weight:700;font-size:9px;color:#d5d7dc;border:solid 1px #d5d7dc;border-radius:6.25rem}.form-toggle__item i::before,.form-toggle__item i::after{content:"";display:block;position:absolute}.form-toggle__item i::before{content:attr(data-uncheck-icon);top:0;left:0;width:100%;line-height:18px;text-align:right;padding:2px 7px}.form-toggle__item i::after{left:4px;width:16px;height:16px;background-color:#d5d7dc;border-radius:50%;transform:translateY(-50%);transition:left .2s ease}.form-toggle input[type="checkbox"],.form-toggle input[type="radio"]{position:absolute;z-index:-1;opacity:0}.form-toggle input[type="checkbox"]:checked+.form-toggle__item,.form-toggle input[type="checkbox"]:checked+* .form-toggle__item,.form-toggle input[type="radio"]:checked+.form-toggle__item,.form-toggle input[type="radio"]:checked+* .form-toggle__item{color:#fff;background-color:#59287a;border-color:#59287a;transition:all .3s ease}.form-toggle input[type="checkbox"]:checked+.form-toggle__item i:before,.form-toggle input[type="checkbox"]:checked+* .form-toggle__item i:before,.form-toggle input[type="radio"]:checked+.form-toggle__item i:before,.form-toggle input[type="radio"]:checked+* .form-toggle__item i:before{content:attr(data-check-icon);text-align:left}.form-toggle input[type="checkbox"]:checked+.form-toggle__item i::after,.form-toggle input[type="checkbox"]:checked+* .form-toggle__item i::after,.form-toggle input[type="radio"]:checked+.form-toggle__item i::after,.form-toggle input[type="radio"]:checked+* .form-toggle__item i::after{left:calc(100% - 19px);background-color:#fff}.is-valid .form-toggle__item{color:#0dd157;border:solid 1px #0dd157}.is-valid .form-toggle__item i::after{background-color:#0dd157}.is-valid .form-toggle input[type="checkbox"]:checked+.form-toggle__item,.is-valid .form-toggle input[type="checkbox"]:checked+* .form-toggle__item,.is-valid .form-toggle input[type="radio"]:checked+.form-toggle__item,.is-valid .form-toggle input[type="radio"]:checked+* .form-toggle__item{background-color:#0dd157;border-color:#0dd157}.is-invalid .form-toggle__item{color:#fb4143;border:solid 1px #fb4143}.is-invalid .form-toggle__item i::after{background-color:#fb4143}.is-invalid .form-toggle input[type="checkbox"]:checked+.form-toggle__item,.is-invalid .form-toggle input[type="checkbox"]:checked+* .form-toggle__item,.is-invalid .form-toggle input[type="radio"]:checked+.form-toggle__item,.is-invalid .form-toggle input[type="radio"]:checked+* .form-toggle__item{background-color:#fb4143;border-color:#fb4143}.is-disabled .form-toggle__item{color:#e6e7e9;border:solid 1px #e6e7e9}.is-disabled .form-toggle__item i::after{background-color:#e6e7e9}.is-disabled .form-toggle input[type="checkbox"]:checked+.form-toggle__item,.is-disabled .form-toggle input[type="checkbox"]:checked+* .form-toggle__item,.is-disabled .form-toggle input[type="radio"]:checked+.form-toggle__item,.is-disabled .form-toggle input[type="radio"]:checked+* .form-toggle__item{background-color:#e6e7e9;border-color:#e6e7e9}.custom-control-input.is-valid:checked ~ .custom-control-label::before{background-color:#0dd157}.custom-control-input.is-invalid:checked ~ .custom-control-label::before{background-color:#fb4143}.custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:#d5d7dc}.modal-content{box-shadow:0 .25rem .6rem rgba(27,30,36,0.07)}@media(min-width:576px){.modal-content{box-shadow:0 .5rem 1.625rem rgba(27,30,36,0.07)}}.pager-btn{min-width:7.2rem}.pager-btn.btn-sm{min-width:6.2rem}.pager-btn.btn-lg{min-width:9.4rem}.popover{box-shadow:0 .25rem .6rem rgba(27,30,36,0.07)}.progress--pill{border-radius:6.25rem}.u-progress-bar-vertical{display:flex;flex-flow:column nowrap;justify-content:flex-end;background-color:#faf7fc;height:200px}.u-progress-bar-vertical__indicator{background-color:#59287a}.nav-tabs--v1 .nav-item{margin-right:3px}.nav-tabs--v1 .nav-item:last-child{margin-right:0}.nav-tabs--v1 .nav-link{border-top-width:3px}.nav-tabs--v1 .nav-link:hover,.nav-tabs--v1 .nav-link:focus{border-color:transparent}.nav-tabs--v1 .nav-link.active,.nav-tabs--v1 .nav-item.show .nav-link{border-top-color:#59287a}.nav-tabs--v1 .nav-link.active:hover,.nav-tabs--v1 .nav-link.active:focus,.nav-tabs--v1 .nav-item.show .nav-link:hover,.nav-tabs--v1 .nav-item.show .nav-link:focus{border-left-color:#e6e7e9;border-right-color:#e6e7e9;border-top-color:#59287a}.tab-content--v1{padding:1.25rem 1rem;margin-top:-1px;border:solid 1px #e6e7e9;border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.tab-content--v1 p:last-of-type{margin-bottom:0}.blockquote-v1{padding:1.5rem 1.25rem;background-color:#f6f9fc;font-size:1.25rem;font-weight:300;border-radius:.25rem;margin-bottom:1rem}.blockquote-v1--left{border-left:solid .25rem #59287a}.blockquote-v1--right{border-right:solid .25rem #59287a}.u-blockquote-v2{position:relative;background-color:#fff;box-shadow:5px 6px 9px -6px rgba(0,0,0,0.15);padding:1.875rem 1.875rem 1.875rem 3.75rem}.u-blockquote-v2::before{content:"\201C";position:absolute;width:3.75rem;margin:-1.5625rem 0 0 -2.5rem;color:#59287a;font-size:3.75rem}.u-blockquote-v2::after{content:"";position:absolute;bottom:-1.875rem;left:3.75rem;display:block;width:0;height:0;border-style:solid;border-width:30px 30px 0 0;border-color:#fff transparent transparent transparent;filter:drop-shadow(2px 2px 1px rgba(0,0,0,0.1))}.u-blockquote-v2__image{width:3.75rem;height:3.75rem}.u-clients__item{border-width:1px 0 1px 1px;border-color:#e6e7e9;border-style:solid;padding:3rem 0}.u-clients__image{width:7.5rem;margin-left:auto;margin-right:auto;filter:url("data:image/svg+xml;utf8,#grayscale");filter:gray;-webkit-filter:grayscale(100%);opacity:.3;transition:all .3s ease}.u-clients__image:hover{filter:url("data:image/svg+xml;utf8,#grayscale");-webkit-filter:grayscale(0);opacity:1}.u-browser-img{position:relative;top:-7px;border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}.u-device{position:relative;width:85%;z-index:-1;margin-bottom:-10rem}.u-device__item{border-radius:2rem;box-shadow:10px 15px 55px 15px rgba(140,152,164,0.1)}.u-icon{position:relative;z-index:1;line-height:.7;display:inline-block;vertical-align:middle;text-align:center;width:2.25rem;height:2.25rem;font-size:1.125rem;border-radius:.25rem;transition:.3s ease-in-out}.u-icon__inner{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.u-icon__inner-bottom-minus{top:90%}.u-icon--size--xs{width:1.5rem;height:1.5rem;font-size:.8125rem}.u-icon--size--sm{width:2rem;height:2rem;font-size:1rem}.u-icon--size--lg{width:3.5rem;height:3.5rem;font-size:1.75rem}.u-icon--size--xl{width:5rem;height:5rem;font-size:2.375rem}.u-icon-primary{color:color-yiq(#59287a);background-color:#59287a;border-color:#59287a}.u-icon-primary[href]:hover{color:color-yiq(#441f5d);background-color:#441f5d;border-color:#3d1b54}.u-icon-primary.disabled,.u-icon-primary:disabled{background-color:#59287a;border-color:#59287a}.u-icon-secondary{color:color-yiq(#00c9a7);background-color:#00c9a7;border-color:#00c9a7}.u-icon-secondary[href]:hover{color:color-yiq(#00a387);background-color:#00a387;border-color:#00967d}.u-icon-secondary.disabled,.u-icon-secondary:disabled{background-color:#00c9a7;border-color:#00c9a7}.u-icon-success{color:color-yiq(#0dd157);background-color:#0dd157;border-color:#0dd157}.u-icon-success[href]:hover{color:color-yiq(#0bad48);background-color:#0bad48;border-color:#0aa143}.u-icon-success.disabled,.u-icon-success:disabled{background-color:#0dd157;border-color:#0dd157}.u-icon-info{color:color-yiq(#2972fa);background-color:#2972fa;border-color:#2972fa}.u-icon-info[href]:hover{color:color-yiq(#065af7);background-color:#065af7;border-color:#0555eb}.u-icon-info.disabled,.u-icon-info:disabled{background-color:#2972fa;border-color:#2972fa}.u-icon-warning{color:color-yiq(#fab633);background-color:#fab633;border-color:#fab633}.u-icon-warning[href]:hover{color:color-yiq(#f9a90e);background-color:#f9a90e;border-color:#f4a306}.u-icon-warning.disabled,.u-icon-warning:disabled{background-color:#fab633;border-color:#fab633}.u-icon-danger{color:color-yiq(#fb4143);background-color:#fb4143;border-color:#fb4143}.u-icon-danger[href]:hover{color:color-yiq(#fa1c1e);background-color:#fa1c1e;border-color:#fa0f12}.u-icon-danger.disabled,.u-icon-danger:disabled{background-color:#fb4143;border-color:#fb4143}.u-icon-light{color:color-yiq(#f6f9fc);background-color:#f6f9fc;border-color:#f6f9fc}.u-icon-light[href]:hover{color:color-yiq(#d9e6f2);background-color:#d9e6f2;border-color:#d0e0ef}.u-icon-light.disabled,.u-icon-light:disabled{background-color:#f6f9fc;border-color:#f6f9fc}.u-icon-dark{color:color-yiq(#1b1e24);background-color:#1b1e24;border-color:#1b1e24}.u-icon-dark[href]:hover{color:color-yiq(#0b0c0e);background-color:#0b0c0e;border-color:#050607}.u-icon-dark.disabled,.u-icon-dark:disabled{background-color:#1b1e24;border-color:#1b1e24}.u-icon-white{color:color-yiq(#fff);background-color:#fff;border-color:#fff}.u-icon-white[href]:hover{color:color-yiq(#ececec);background-color:#ececec;border-color:#e6e6e6}.u-icon-white.disabled,.u-icon-white:disabled{background-color:#fff;border-color:#fff}.u-icon-facebook{color:color-yiq(#3b5998);background-color:#3b5998;border-color:#3b5998}.u-icon-facebook[href]:hover{color:color-yiq(#30497c);background-color:#30497c;border-color:#2d4373}.u-icon-facebook.disabled,.u-icon-facebook:disabled{background-color:#3b5998;border-color:#3b5998}.u-icon-google{color:color-yiq(#d14130);background-color:#d14130;border-color:#d14130}.u-icon-google[href]:hover{color:color-yiq(#b33628);background-color:#b33628;border-color:#a93325}.u-icon-google.disabled,.u-icon-google:disabled{background-color:#d14130;border-color:#d14130}.u-icon-twitter{color:color-yiq(#1da1f2);background-color:#1da1f2;border-color:#1da1f2}.u-icon-twitter[href]:hover{color:color-yiq(#0d8ddc);background-color:#0d8ddc;border-color:#0c85d0}.u-icon-twitter.disabled,.u-icon-twitter:disabled{background-color:#1da1f2;border-color:#1da1f2}.u-icon-instagram{color:color-yiq(#3f729b);background-color:#3f729b;border-color:#3f729b}.u-icon-instagram[href]:hover{color:#345e80;background-color:#345e80;border-color:#305777}.u-icon-instagram.disabled,.u-icon-instagram:disabled{background-color:#3f729b;border-color:#3f729b}.u-icon-github{color:color-yiq(#24292e);background-color:#24292e;border-color:#24292e}.u-icon-github[href]:hover{color:color-yiq(#131619);background-color:#131619;border-color:#0e1011}.u-icon-github.disabled,.u-icon-github:disabled{background-color:#24292e;border-color:#24292e}.u-icon-block__col{padding-top:4rem;padding-bottom:4rem}@media(min-width:992px){.u-icon-block{border-bottom:solid 1px #e6e7e9}.u-icon-block__col--left-brd{border-left:solid 1px #e6e7e9}}@media(max-width:767px){.navbar-expand-sm.fixed-top{background-color:rgba(27,30,36,0.3)}}@media(max-width:991px){.navbar-expand-md.fixed-top{background-color:rgba(27,30,36,0.3)}}@media(max-width:1199px){.navbar-expand-lg.fixed-top{background-color:rgba(27,30,36,0.3)}}.navbar-bg-onscroll.fixed-top{background-color:#672e8d;transition:all .3s ease-out}.navbar-bg-onscroll.fixed-top--fade{transition:all .4s ease-out}.u-portfolio-controls__item{display:inline-block;cursor:pointer}.u-portfolio-controls__item:not(:last-child)::after{content:"|";font-size:.71429rem;margin:0 4px;position:relative;top:-2px;line-height:inherit;display:inline-block;vertical-align:middle;color:transparent}@media(min-width:992px){.u-portfolio-controls__item:not(:last-child)::after{color:#d5d7dc;margin:0 7px 0 12px}}.u-portfolio-controls a{color:#1b1e24}.u-portfolio-controls a.active{color:#59287a}.u-portfolio__item{overflow:hidden;z-index:2}.u-portfolio__image{display:block;width:100%;height:auto;transition:all .2s ease}.u-portfolio__item:hover .u-portfolio__image{transform:translate3d(0,-60px,0)}.u-portfolio__info{position:absolute;bottom:0;left:0;right:0;height:3.75rem;overflow:hidden;padding:.3125rem .9375rem;color:#fff;background-color:#59287a;transition:all .2s ease;transform:translate3d(0,3.75rem,0)}.u-portfolio__info small{opacity:.7}.u-portfolio__item:hover .u-portfolio__info{transform:translate3d(0,0,0)}.u-portfolio__zoom{position:absolute;top:0;bottom:0;left:0;right:0;text-indent:-10000px}.u-promo-block{position:relative;min-height:100vh;padding-top:6.25rem;padding-bottom:6.25rem;background-repeat:no-repeat;background-position:50% 0;background-size:cover}.u-promo-block--mheight-450{min-height:450px}.u-promo-block--mheight-500{min-height:500px}.u-promo-block--mheight-600{min-height:600px}@media(max-width:1199px){.u-promo-block{background-attachment:fixed}}.u-destacado{background-color:#fff}.u-destacado__header{position:relative;padding:2.5rem 1.5rem}.u-destacado__header-price{display:block;line-height:.84}.u-destacado__header-title{opacity:.8}.u-destacado__header-decoration{position:absolute;left:0;right:0;bottom:0}.u-destacado__content{padding:1.5rem}.u-destacado__content .disabled .u-icon{color:#85778f;background-color:rgba(133,119,143,0.1)}.u-destacado .disabled{color:#85778f}.u-content-space{padding-top:6.25rem;padding-bottom:6.25rem}.u-content-space-top{padding-top:6.25rem}.u-content-space-bottom{padding-bottom:6.25rem}.u-pull-half{transform:translate3d(0,-50%,0)}.u-link{color:#1b1e24;text-decoration:none}.u-link:hover{color:#59287a;text-decoration:none}.u-box-shadow-sm{box-shadow:0 .2rem 1.25rem 0 rgba(27,30,36,0.07)}.u-box-shadow-lg{box-shadow:0 .4rem 2.2rem 0 rgba(27,30,36,0.1)}.u-hero-img{background-repeat:no-repeat;background-position:50% 0;background-size:cover}.u-overlay{position:relative}.u-overlay::after{content:"";position:absolute;top:0;right:0;bottom:0;left:0}.u-overlay--dark::after{background-color:rgba(27,30,36,0.3)}.u-overlay--light::after{background-color:rgba(255,255,255,0.3)}.u-overlay__inner{position:relative;z-index:1}.u-ver-center{position:absolute;top:50%;left:0;right:0;transform:translate3d(0,-50%,0)}.u-ver-bottom{position:absolute;left:50%;bottom:0;transform:translate3d(-50%,0,0)}.u-font-accent{font-family:"Playfair Display",serif}.u-font-size-75{font-size:75%}.u-font-size-90{font-size:90%}.u-letter-spacing-xs{letter-spacing:1px}.u-letter-spacing-sm{letter-spacing:2px}.u-opacity-1{opacity:.1}.u-opacity-6{opacity:.6}.sortable-ghost{background-color:rgba(62,76,102,0.89)}.drag-handle{cursor:grab}.action-btn-wrapper{position:relative}.fixed-action-btn.my-float-btn{position:fixed;right:0;bottom:15%;padding-top:15px} \ No newline at end of file diff --git a/templates/base.html.twig b/templates/base.html.twig index af640a9d..af81e283 100755 --- a/templates/base.html.twig +++ b/templates/base.html.twig @@ -29,7 +29,7 @@ {% block stylesheets %} - + {# #} diff --git a/templates/entrada/link.html.twig b/templates/entrada/link.html.twig index a3b8a579..7cc160f9 100644 --- a/templates/entrada/link.html.twig +++ b/templates/entrada/link.html.twig @@ -5,7 +5,7 @@ {{ parent() }} {# {{ encore_entry_link_tags('app') }} #} - {# #} + {# #} {# #} {# #} diff --git a/templates/modelEntrada/_pContacto.html.twig b/templates/modelEntrada/_pContacto.html.twig index bdeeaede..5fa3f6a2 100644 --- a/templates/modelEntrada/_pContacto.html.twig +++ b/templates/modelEntrada/_pContacto.html.twig @@ -4,7 +4,5 @@ {{ contacto.textoPagina }} {{ contacto.tipo.icon | raw }}
- - {% endfor %} diff --git a/templates/models/principal/avanza.html.twig b/templates/models/principal/avanza.html.twig index 645c94b2..9a1ac22f 100644 --- a/templates/models/principal/avanza.html.twig +++ b/templates/models/principal/avanza.html.twig @@ -3,7 +3,7 @@ {% block stylesheets %} {{ parent() }} - + diff --git a/templates/models/principal/programa.html.twig b/templates/models/principal/programa.html.twig index ffbf5881..0d06175c 100644 --- a/templates/models/principal/programa.html.twig +++ b/templates/models/principal/programa.html.twig @@ -4,7 +4,7 @@ {{ parent() }} {# {{ encore_entry_link_tags('app') }} #} - {# #} + {# #} {# #} {# #} diff --git a/templates/models/sections/section-flotante.html.twig b/templates/models/sections/section-flotante.html.twig new file mode 100644 index 00000000..5749f4e5 --- /dev/null +++ b/templates/models/sections/section-flotante.html.twig @@ -0,0 +1,35 @@ + +
+
+
+
+
+
+
    + {% for entrada in entradas %} + {% if (entrada.contacto) %} +
  • + {% include 'modelEntrada/_pContacto.html.twig' with { 'contactos':entrada.contacto } %} +
  • + {% endif %} + {% endfor %} +
+
+
+
+
+
+
diff --git a/templates/reserva/index.html.twig b/templates/reserva/index.html.twig index 7fcf84d4..467ccb0a 100644 --- a/templates/reserva/index.html.twig +++ b/templates/reserva/index.html.twig @@ -4,7 +4,7 @@ {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('app') }} - + diff --git a/templates/reserva/invitado.html.twig b/templates/reserva/invitado.html.twig index 333073b5..5289bde8 100644 --- a/templates/reserva/invitado.html.twig +++ b/templates/reserva/invitado.html.twig @@ -4,7 +4,7 @@ {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('app') }} - + {# #} {# #} diff --git a/templates/reserva/reservante.html.twig b/templates/reserva/reservante.html.twig index 30092302..c93d37d7 100644 --- a/templates/reserva/reservante.html.twig +++ b/templates/reserva/reservante.html.twig @@ -4,7 +4,7 @@ {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('app') }} - + {# #} {# #} diff --git a/templates/security/changepassword.html.twig b/templates/security/changepassword.html.twig index 668f9fa2..c8b27b4c 100644 --- a/templates/security/changepassword.html.twig +++ b/templates/security/changepassword.html.twig @@ -20,7 +20,7 @@ {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('loginStyle') }} - + {% endblock %} diff --git a/templates/security/login.html.twig b/templates/security/login.html.twig index 7a40569e..1fbfd56d 100755 --- a/templates/security/login.html.twig +++ b/templates/security/login.html.twig @@ -4,7 +4,7 @@ {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('loginStyle') }} - + {% endblock %} diff --git a/templates/security/register.html.twig b/templates/security/register.html.twig index 3f47e4be..2b29aca9 100755 --- a/templates/security/register.html.twig +++ b/templates/security/register.html.twig @@ -33,7 +33,7 @@ {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('loginStyle') }} - + {% endblock %} diff --git a/templates/security/registerVoluntarioReserva.html.twig b/templates/security/registerVoluntarioReserva.html.twig index 662c32a3..53d2ed45 100644 --- a/templates/security/registerVoluntarioReserva.html.twig +++ b/templates/security/registerVoluntarioReserva.html.twig @@ -10,7 +10,7 @@ {% block stylesheets %} {{ parent() }} {{ encore_entry_link_tags('loginStyle') }} - + {% endblock %} From e7598bbb563d7f31bda6b8f75e0470c40b14a56a Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Mon, 15 Nov 2021 21:07:11 -0300 Subject: [PATCH 190/197] model-section-flotante --- templates/modelEntrada/_pContacto.html.twig | 4 +++- templates/models/sections/section-flotante.html.twig | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/templates/modelEntrada/_pContacto.html.twig b/templates/modelEntrada/_pContacto.html.twig index 5fa3f6a2..e1155e71 100644 --- a/templates/modelEntrada/_pContacto.html.twig +++ b/templates/modelEntrada/_pContacto.html.twig @@ -1,6 +1,8 @@
{% for contacto in contactos %} - + {{ contacto.textoPagina }} {{ contacto.tipo.icon | raw }}
diff --git a/templates/models/sections/section-flotante.html.twig b/templates/models/sections/section-flotante.html.twig index 5749f4e5..b50a9d9d 100644 --- a/templates/models/sections/section-flotante.html.twig +++ b/templates/models/sections/section-flotante.html.twig @@ -22,7 +22,7 @@ {% for entrada in entradas %} {% if (entrada.contacto) %}
  • - {% include 'modelEntrada/_pContacto.html.twig' with { 'contactos':entrada.contacto } %} + {% include 'modelEntrada/_pContacto.html.twig' with { 'contactos':entrada.contacto, 'class_label': section.cssClass' } %}
  • {% endif %} {% endfor %} From 4752efea6f92d2054d42de655281be16ac424fcd Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Mon, 15 Nov 2021 21:10:51 -0300 Subject: [PATCH 191/197] model-section-flotante --- templates/modelEntrada/_pContacto.html.twig | 2 +- templates/models/sections/section-flotante.html.twig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/modelEntrada/_pContacto.html.twig b/templates/modelEntrada/_pContacto.html.twig index e1155e71..3cbd2a79 100644 --- a/templates/modelEntrada/_pContacto.html.twig +++ b/templates/modelEntrada/_pContacto.html.twig @@ -1,7 +1,7 @@
    {% for contacto in contactos %} {{ contacto.textoPagina }} {{ contacto.tipo.icon | raw }} diff --git a/templates/models/sections/section-flotante.html.twig b/templates/models/sections/section-flotante.html.twig index b50a9d9d..86644b4c 100644 --- a/templates/models/sections/section-flotante.html.twig +++ b/templates/models/sections/section-flotante.html.twig @@ -22,7 +22,7 @@ {% for entrada in entradas %} {% if (entrada.contacto) %}
  • - {% include 'modelEntrada/_pContacto.html.twig' with { 'contactos':entrada.contacto, 'class_label': section.cssClass' } %} + {% include 'modelEntrada/_pContacto.html.twig' with { 'contactos':entrada.contacto} %}
  • {% endif %} {% endfor %} From d969956b05e00bcabb8139e569c4b9d07e6b524f Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Mon, 15 Nov 2021 22:04:09 -0300 Subject: [PATCH 192/197] =?UTF-8?q?correcci=C3=B3n=20pr=C3=B3xima=20nova?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/igles.css | 4 ++++ public/css/igles.min.css | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/public/css/igles.css b/public/css/igles.css index 365025f4..8c39c2c0 100755 --- a/public/css/igles.css +++ b/public/css/igles.css @@ -1237,4 +1237,8 @@ h4.card-title{ font-weight: 500 !important; color: #fafafa !important; background-color: #2993e5 !important; +} + +.card-title{ + font-family: 'ArialNova', "proxima-nova", "Helvetica Neue", sans-serif !important; } \ No newline at end of file diff --git a/public/css/igles.min.css b/public/css/igles.min.css index f663d260..563762cc 100755 --- a/public/css/igles.min.css +++ b/public/css/igles.min.css @@ -1 +1 @@ -.bajomedia-content:before{border-color:transparent transparent #31708f transparent;position:absolute;display:block;border-style:solid;bottom:2.5em;content:''}.bajomedia-content:before{left:0;border-width:0 0 1em 1em}.navbar{background-color:#5a5a5a;background-repeat:repeat !important;padding:0 10px !important;margin-left:-16px;margin-right:-16px;box-shadow:0 10px 10px 5px}.fondo{background-color:rgba(0,0,0,.5)}.principal{top:-2.5rem}.text-point{color:#ca5430}.border-point{border-color:#2e2e2e !important}.bg-point{background-color:#f0e7d1}.text-tan{color:#f0e7d1}.bg-light-blue{background-color:#73aba2}.bg-point-sec{background-color:#438789}.text-point-sec{color:#438789}a.text-point-sec:hover{color:#438789;text-decoration:none}.text-light-blue{color:#73aba2}.text-blue{color:#0b51c5}.btn-alameda{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:"Proxima Nova",ArialNova,"Helvetica Neue",Helvetica,"Arial Nova",Arial,sans-serif !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:600;line-height:1.25;padding:9px 24px;color:white;background-color:#2993e5;border:1px solid transparent}.btn-alameda-reverso{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:ArialNova,"Arial Nova",Arial,sans-serif,"Proxima Nova","Helvetica Neue",Helvetica !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:900 !important;text-transform:uppercase;line-height:1.25;padding:15px 15px;color:#2993e5;background-color:white}.btn-alameda-reverso:hover{background-color:#2993e5;color:white !important;border:1px solid transparent;opacity:1}.btn-alameda:hover{color:#2993e5;background-color:white;border-color:#2993e5}.btn-alameda.focus,.btn-alameda:focus{box-shadow:0 0 0 .2rem rgba(41,147,229,.5)}.btn-outline-alameda{color:#fff;background-color:#f0e7d1;border-color:#fff}.btn-outline-alameda:hover{color:#438789;background-color:transparent;border-color:#73aba2;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-outline-alameda.focus,.btn-outline-alameda:focus{color:#438789;background-color:#fff;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}ul.punto li{list-style:none;text-indent:-3em}ul.pp li{list-style:none;text-indent:2em}.fondo-evento{background-color:#f0e7d122}.fondo-footer{background-color:rgba(67,135,137,.25)}.fondo-medio{background-color:rgba(0,132,137,0.9)}.fondo-blanco-50{background-color:rgba(256,256,256,.50)}.fondoFranja{background-repeat:repeat !important;padding:0 10px !important;box-shadow:0 10px 10px 5px}a.text-tan:hover{color:#f0e7d1;text-decoration:underline}.bg-teal{background-color:#006064EE !important}a.bg-teal:focus,a.bg-teal:hover,button.bg-teal:focus,button.bg-teal:hover{background-color:#00bcd4CC !important}.contador{font-size:1.2rem !important}.ajusteIndex{margin-top:-2rem !important}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.bienvenido{background-size:cover;animation:3s linear fadeInRightBig;margin:auto auto}@-webkit-keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}@keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}.paralelox{width:100%;height:570px;display:block;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;background-position:center center}.page-header>.container{color:#000 !important}.page-header{height:105vh !important;padding-top:10px;display:flex;align-items:flex-start}.blockquote-point{padding:.5rem 1rem;border-left:.25rem solid #ca5430}.blockquote-uvcp{padding:0 1rem;border-left:.25rem solid #0f0}.blockquote-uvcp_dark{padding:0 1rem;border-left:.25rem solid #04878e}.blockquote-uvcp_dark .rotar90{position:relative;display:table-cell;vertical-align:middle;-webkit-transform:rotate(-90deg);overflow:auto;-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-7em}.vertical-divider{position:absolute;display:table;text-align:center;height:auto;width:auto}.vertical-divider .center-element{position:relative;display:table-cell;vertical-align:top;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.finalBlock{border-right:.25rem solid #04878e}.tooltip{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#73aba2;border-radius:.25rem}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#73aba2 !important;border-radius:.25rem}h3.quote:after,h3.quote:before{display:block;font-size:1.5em;margin-top:.5em}h3.quote:before{content:'“'}h3.quote:after{content:'”'}.quote:after,.quote:before{display:block;font-size:1.5em;margin-top:.5em}.quote:before{content:'“'}.quote:after{content:'”'}.mdl-card__media{background-color:#009688 !important}.mdl-card__white{background-size:cover;background-origin:padding-box;background:#009688 repeat scroll 50% 50%;box-sizing:border-box}.section-heading .section-heading-lower{display:block;font-size:2rem !important;font-weight:100}.text-tan.card .card-body .card-text,.dark-grey-text{color:#f0e7d1 !important}@media(min-width:768px){header.masthead{padding-top:4rem;padding-bottom:4rem}header.masthead h1{font-size:3rem}}@media(max-width:640px){h1{font-size:45px !important;line-height:1.35 !important;letter-spacing:-.02em !important;margin:24px 0 !important}}.text-white-75{color:rgba(255,255,255,0.75) !important}.warnock{font-family:warnock,ArialNova Slab,Times New Roman,serif}.hoverage{font-family:Hoverage,ArialNova,sans-serif}.big_noodle_titling{font-family:big noodle titling,ArialNova,Helvetica,Arial,sans-serif}.matahati{font-family:Matahati Regular,ArialNova,sans-serif}.greatlakes{font-family:greatlakes,ArialNova,Helvetica,Arial,sans-serif}.tuesnight{font-family:"Tuesnight Regular",'ArialNova',sans-serif}.text-fine{font-size:48px;font-weight:100;line-height:1.2em;margin-bottom:20px;margin-top:20px;font-family:"Poppins",sans-serif}.fine4{font-weight:400;line-height:1.2em;margin-bottom:20px;margin-top:20px}.text-300{font-size:45px;font-weight:300;line-height:48px;margin-bottom:10px;margin-top:10px;font-family:"Poppins",sans-serif}.text-14-300{font-size:1.2em;font-weight:300;line-height:1.5em;font-family:"ArialNova",sans-serif}b,i,sup,sub,u,del{color:#2993e5}#paraque b,#paraque i,.base-marron sup,.base-marron sub,.base-marron u,.base-marron del{color:#5f4339}#section-azul b,#section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}.section-azul b,.section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}#section-rojo b,#section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}.section-rojo b,.section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}p .base-rojo{font-size:2em !important}.text-invitacion{font-size:1.5em !important}.text-realce{font-weight:600}.text-realce-verde{color:#6cbb23;font-weight:600}.text-realce-alameda{color:#2993e5;font-weight:600}a.text-realce-verde:hover{color:#3f8f1e;font-weight:600}.text-realce-sca{color:#476389;font-weight:600}.text-realce-marron{color:#8d6e63;font-weight:600}.text-realce-azul{color:#051433;font-weight:600}.text-realce-rojo{color:#8c3654;font-weight:600}.boxPorHacer{height:100vh;background-size:cover}.rgba-uvcp{background:rgba(108,187,35,0.85)}.rgba-seminario{background:rgba(61,112,141,0.85)}.text-100{width:100px;height:100px}.rotar90{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-5em}.icononos-sociales a{display:inline-block;height:3.5rem;width:3.5rem;background-color:#495057;color:white !important;border-radius:100%;text-align:center;font-size:1.5rem;line-height:3.5rem;margin-right:1rem}.icononos-sociales a:last-child{margin-right:0}.icononos-sociales a:hover{background-color:#6cbb23}.fontUnivers{font-family:'UniversLTStd-Obl','ArialNova',cursive}.fontTahu{font-family:'tahu',ArialNova,cursive}.shadow-blue{box-shadow:-3px -1px 4px #2d354f}b.text-shadow{font-weight:bold}.alameda{position:relative;width:50vw;height:150px}.alameda:hover{top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}.alameda:after{content:'';position:absolute;top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}@keyframes animate{0{right:0}100%{right:-400%}}.alameda img{position:absolute;top:0;z-index:1;box-shadow:0 0 40px rgba(0,0,0,1);padding:10px}.contenido{text-align:center;position:absolute;top:50%;transform:translate(-50% -50%);width:100%}.contenido p{color:white;font-weight:700}.compuesto{font-size:4.5em}@media(max-width:640px){.compuesto{font-size:3.5em}}body.frontal{font-family:ArialNova,sans-serif}.tono-cromo{background-repeat:no-repeat;background-size:cover;height:100vh;align-items:center}.letra_a_post{font-weight:300 !important}.shared-link{display:block;padding:.5rem}.finaliza{margin:.375rem;padding:10px 22px}.bg-alameda{background-color:#d3d9dd;color:#495359}.bg-camino{background:#032a3b linear-gradient(#032a3b,#518bb9)}.bg-alameda-reverso{background-color:#2993e5}.display-5{font-size:2rem;font-weight:300;line-height:1.2}.btn-blue{background-color:#1976d2 !important;color:#fff !important}header.masthead-oportunidades{padding-top:10rem;padding-bottom:calc(10rem - 4.5rem);background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:cover}@media(min-width:992px){header.masthead{height:100vh;min-height:40rem;padding-top:4.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(max-width:991px){header.masthead{height:100vh;min-height:40rem;padding-top:2.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(min-width:1200px){header.masthead h1{font-size:3.5rem}}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-black-75{color:rgba(0,0,0,0.75) !important}.text-black-25{color:rgba(0,0,0,0.25) !important}.sup-2{top:-2.5em !important}.h-90{height:90% !important}.left-n5{left:-5px !important}.left-n15{left:-15px !important}.bottom-n10{bottom:-10px !important}.container-img{position:relative !important;text-align:center;color:white}.bottom-left{position:absolute;bottom:8px;left:16px}.top-left{position:absolute;top:8px;left:16px}.top-right{position:absolute;top:8px;right:16px}.bottom-right{position:absolute;bottom:8px;right:16px}.btn-centered{position:absolute !important;top:75% !important;left:50% !important;transform:translate(-50%,-50%) !important}.aire-2{letter-spacing:2px}a:hover>b{color:white}.e80{font-size:.8em}.e90{font-size:.9em}.mt-n3{margin-top:-0.75rem !important}.mt-a35{margin-top:3.5rem !important}.mt-a4{margin-top:4rem !important}.text-alameda{color:#2993e5 !important}.t16{font-size:16px}.negrita7{font-weight:700 !important}.contenedor:hover .card-img:hover{transform:scale(1.3);-moz-transform:scale(1.3);-webkit-transform:scale(1.3);-o-transform:scale(1.3);-ms-transform:scale(1.3)}.card-img{transition:1.5s ease;-moz-transition:1.5s ease;-webkit-transition:1.5s ease;-o-transition:1.5s ease}.contenedor{overflow:hidden}.border-alameda{border-color:#2993e5 !important}.border-alameda-top{border-top-color:#2993e5 !important;border-top-style:solid;border-top-width:1px}.border-alameda-bottom{border-bottom-color:#2993e5 !important;border-bottom-style:solid;border-bottom-width:1px}a>span.text-alameda{font-weight:bolder !important;font-size:16px !important;text-rendering:optimizeLegibility}a>small{font-family:ArialNova,sans-serif;font-style:italic !important;transform:skewY(10deg) rotate(-10deg)}.blockquote-alameda-primary{padding:0 1rem;border-left:.25rem solid #2993e5}.blockquote-alameda-primary{padding:0 1rem !important;border-left:.25rem solid #2993e5 !important}.blockquote-alameda-secondary{padding:0 1rem !important;border-left:.25rem solid #d3d9dd !important}.btn-xl{font-size:.85rem;font-weight:700;text-transform:uppercase;border:none currentcolor;border-radius:10rem !important;background-color:#2993e5 !important}.bg-gris-medio{background-color:#f8fbfd}.bg-gris-alameda{background-color:#eee}.img-20{transform:translate3d(0,-30%,0);max-width:160px;width:100%;margin:0 auto}.sub-img{margin-top:-40px !important}.main-60{margin:-200px}h4.card-title{font-family:ArialNova,serif !important}.fuente-normal{font-size:1em !important;font-family:ArialNova,serif !important}.fuente-arial-nova{font-family:"ArialNova",sans-serif !important}.link-alameda{font-weight:900 !important;color:#2993e5 !important}.link-alameda:hover{font-weight:500 !important;color:#fafafa !important;background-color:#2993e5 !important} \ No newline at end of file +.bajomedia-content:before{border-color:transparent transparent #31708f transparent;position:absolute;display:block;border-style:solid;bottom:2.5em;content:''}.bajomedia-content:before{left:0;border-width:0 0 1em 1em}.navbar{background-color:#5a5a5a;background-repeat:repeat !important;padding:0 10px !important;margin-left:-16px;margin-right:-16px;box-shadow:0 10px 10px 5px}.fondo{background-color:rgba(0,0,0,.5)}.principal{top:-2.5rem}.text-point{color:#ca5430}.border-point{border-color:#2e2e2e !important}.bg-point{background-color:#f0e7d1}.text-tan{color:#f0e7d1}.bg-light-blue{background-color:#73aba2}.bg-point-sec{background-color:#438789}.text-point-sec{color:#438789}a.text-point-sec:hover{color:#438789;text-decoration:none}.text-light-blue{color:#73aba2}.text-blue{color:#0b51c5}.btn-alameda{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:"Proxima Nova",ArialNova,"Helvetica Neue",Helvetica,"Arial Nova",Arial,sans-serif !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:600;line-height:1.25;padding:9px 24px;color:white;background-color:#2993e5;border:1px solid transparent}.btn-alameda-reverso{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:ArialNova,"Arial Nova",Arial,sans-serif,"Proxima Nova","Helvetica Neue",Helvetica !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:900 !important;text-transform:uppercase;line-height:1.25;padding:15px 15px;color:#2993e5;background-color:white}.btn-alameda-reverso:hover{background-color:#2993e5;color:white !important;border:1px solid transparent;opacity:1}.btn-alameda:hover{color:#2993e5;background-color:white;border-color:#2993e5}.btn-alameda.focus,.btn-alameda:focus{box-shadow:0 0 0 .2rem rgba(41,147,229,.5)}.btn-outline-alameda{color:#fff;background-color:#f0e7d1;border-color:#fff}.btn-outline-alameda:hover{color:#438789;background-color:transparent;border-color:#73aba2;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-outline-alameda.focus,.btn-outline-alameda:focus{color:#438789;background-color:#fff;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}ul.punto li{list-style:none;text-indent:-3em}ul.pp li{list-style:none;text-indent:2em}.fondo-evento{background-color:#f0e7d122}.fondo-footer{background-color:rgba(67,135,137,.25)}.fondo-medio{background-color:rgba(0,132,137,0.9)}.fondo-blanco-50{background-color:rgba(256,256,256,.50)}.fondoFranja{background-repeat:repeat !important;padding:0 10px !important;box-shadow:0 10px 10px 5px}a.text-tan:hover{color:#f0e7d1;text-decoration:underline}.bg-teal{background-color:#006064EE !important}a.bg-teal:focus,a.bg-teal:hover,button.bg-teal:focus,button.bg-teal:hover{background-color:#00bcd4CC !important}.contador{font-size:1.2rem !important}.ajusteIndex{margin-top:-2rem !important}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.bienvenido{background-size:cover;animation:3s linear fadeInRightBig;margin:auto auto}@-webkit-keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}@keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}.paralelox{width:100%;height:570px;display:block;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;background-position:center center}.page-header>.container{color:#000 !important}.page-header{height:105vh !important;padding-top:10px;display:flex;align-items:flex-start}.blockquote-point{padding:.5rem 1rem;border-left:.25rem solid #ca5430}.blockquote-uvcp{padding:0 1rem;border-left:.25rem solid #0f0}.blockquote-uvcp_dark{padding:0 1rem;border-left:.25rem solid #04878e}.blockquote-uvcp_dark .rotar90{position:relative;display:table-cell;vertical-align:middle;-webkit-transform:rotate(-90deg);overflow:auto;-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-7em}.vertical-divider{position:absolute;display:table;text-align:center;height:auto;width:auto}.vertical-divider .center-element{position:relative;display:table-cell;vertical-align:top;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.finalBlock{border-right:.25rem solid #04878e}.tooltip{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#73aba2;border-radius:.25rem}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#73aba2 !important;border-radius:.25rem}h3.quote:after,h3.quote:before{display:block;font-size:1.5em;margin-top:.5em}h3.quote:before{content:'“'}h3.quote:after{content:'”'}.quote:after,.quote:before{display:block;font-size:1.5em;margin-top:.5em}.quote:before{content:'“'}.quote:after{content:'”'}.mdl-card__media{background-color:#009688 !important}.mdl-card__white{background-size:cover;background-origin:padding-box;background:#009688 repeat scroll 50% 50%;box-sizing:border-box}.section-heading .section-heading-lower{display:block;font-size:2rem !important;font-weight:100}.text-tan.card .card-body .card-text,.dark-grey-text{color:#f0e7d1 !important}@media(min-width:768px){header.masthead{padding-top:4rem;padding-bottom:4rem}header.masthead h1{font-size:3rem}}@media(max-width:640px){h1{font-size:45px !important;line-height:1.35 !important;letter-spacing:-.02em !important;margin:24px 0 !important}}.text-white-75{color:rgba(255,255,255,0.75) !important}.warnock{font-family:warnock,ArialNova Slab,Times New Roman,serif}.hoverage{font-family:Hoverage,ArialNova,sans-serif}.big_noodle_titling{font-family:big noodle titling,ArialNova,Helvetica,Arial,sans-serif}.matahati{font-family:Matahati Regular,ArialNova,sans-serif}.greatlakes{font-family:greatlakes,ArialNova,Helvetica,Arial,sans-serif}.tuesnight{font-family:"Tuesnight Regular",'ArialNova',sans-serif}.text-fine{font-size:48px;font-weight:100;line-height:1.2em;margin-bottom:20px;margin-top:20px;font-family:"Poppins",sans-serif}.fine4{font-weight:400;line-height:1.2em;margin-bottom:20px;margin-top:20px}.text-300{font-size:45px;font-weight:300;line-height:48px;margin-bottom:10px;margin-top:10px;font-family:"Poppins",sans-serif}.text-14-300{font-size:1.2em;font-weight:300;line-height:1.5em;font-family:"ArialNova",sans-serif}b,i,sup,sub,u,del{color:#2993e5}#paraque b,#paraque i,.base-marron sup,.base-marron sub,.base-marron u,.base-marron del{color:#5f4339}#section-azul b,#section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}.section-azul b,.section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}#section-rojo b,#section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}.section-rojo b,.section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}p .base-rojo{font-size:2em !important}.text-invitacion{font-size:1.5em !important}.text-realce{font-weight:600}.text-realce-verde{color:#6cbb23;font-weight:600}.text-realce-alameda{color:#2993e5;font-weight:600}a.text-realce-verde:hover{color:#3f8f1e;font-weight:600}.text-realce-sca{color:#476389;font-weight:600}.text-realce-marron{color:#8d6e63;font-weight:600}.text-realce-azul{color:#051433;font-weight:600}.text-realce-rojo{color:#8c3654;font-weight:600}.boxPorHacer{height:100vh;background-size:cover}.rgba-uvcp{background:rgba(108,187,35,0.85)}.rgba-seminario{background:rgba(61,112,141,0.85)}.text-100{width:100px;height:100px}.rotar90{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-5em}.icononos-sociales a{display:inline-block;height:3.5rem;width:3.5rem;background-color:#495057;color:white !important;border-radius:100%;text-align:center;font-size:1.5rem;line-height:3.5rem;margin-right:1rem}.icononos-sociales a:last-child{margin-right:0}.icononos-sociales a:hover{background-color:#6cbb23}.fontUnivers{font-family:'UniversLTStd-Obl','ArialNova',cursive}.fontTahu{font-family:'tahu',ArialNova,cursive}.shadow-blue{box-shadow:-3px -1px 4px #2d354f}b.text-shadow{font-weight:bold}.alameda{position:relative;width:50vw;height:150px}.alameda:hover{top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}.alameda:after{content:'';position:absolute;top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}@keyframes animate{0{right:0}100%{right:-400%}}.alameda img{position:absolute;top:0;z-index:1;box-shadow:0 0 40px rgba(0,0,0,1);padding:10px}.contenido{text-align:center;position:absolute;top:50%;transform:translate(-50% -50%);width:100%}.contenido p{color:white;font-weight:700}.compuesto{font-size:4.5em}@media(max-width:640px){.compuesto{font-size:3.5em}}body.frontal{font-family:ArialNova,sans-serif}.tono-cromo{background-repeat:no-repeat;background-size:cover;height:100vh;align-items:center}.letra_a_post{font-weight:300 !important}.shared-link{display:block;padding:.5rem}.finaliza{margin:.375rem;padding:10px 22px}.bg-alameda{background-color:#d3d9dd;color:#495359}.bg-camino{background:#032a3b linear-gradient(#032a3b,#518bb9)}.bg-alameda-reverso{background-color:#2993e5}.display-5{font-size:2rem;font-weight:300;line-height:1.2}.btn-blue{background-color:#1976d2 !important;color:#fff !important}header.masthead-oportunidades{padding-top:10rem;padding-bottom:calc(10rem - 4.5rem);background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:cover}@media(min-width:992px){header.masthead{height:100vh;min-height:40rem;padding-top:4.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(max-width:991px){header.masthead{height:100vh;min-height:40rem;padding-top:2.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(min-width:1200px){header.masthead h1{font-size:3.5rem}}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-black-75{color:rgba(0,0,0,0.75) !important}.text-black-25{color:rgba(0,0,0,0.25) !important}.sup-2{top:-2.5em !important}.h-90{height:90% !important}.left-n5{left:-5px !important}.left-n15{left:-15px !important}.bottom-n10{bottom:-10px !important}.container-img{position:relative !important;text-align:center;color:white}.bottom-left{position:absolute;bottom:8px;left:16px}.top-left{position:absolute;top:8px;left:16px}.top-right{position:absolute;top:8px;right:16px}.bottom-right{position:absolute;bottom:8px;right:16px}.btn-centered{position:absolute !important;top:75% !important;left:50% !important;transform:translate(-50%,-50%) !important}.aire-2{letter-spacing:2px}a:hover>b{color:white}.e80{font-size:.8em}.e90{font-size:.9em}.mt-n3{margin-top:-0.75rem !important}.mt-a35{margin-top:3.5rem !important}.mt-a4{margin-top:4rem !important}.text-alameda{color:#2993e5 !important}.t16{font-size:16px}.negrita7{font-weight:700 !important}.contenedor:hover .card-img:hover{transform:scale(1.3);-moz-transform:scale(1.3);-webkit-transform:scale(1.3);-o-transform:scale(1.3);-ms-transform:scale(1.3)}.card-img{transition:1.5s ease;-moz-transition:1.5s ease;-webkit-transition:1.5s ease;-o-transition:1.5s ease}.contenedor{overflow:hidden}.border-alameda{border-color:#2993e5 !important}.border-alameda-top{border-top-color:#2993e5 !important;border-top-style:solid;border-top-width:1px}.border-alameda-bottom{border-bottom-color:#2993e5 !important;border-bottom-style:solid;border-bottom-width:1px}a>span.text-alameda{font-weight:bolder !important;font-size:16px !important;text-rendering:optimizeLegibility}a>small{font-family:ArialNova,sans-serif;font-style:italic !important;transform:skewY(10deg) rotate(-10deg)}.blockquote-alameda-primary{padding:0 1rem;border-left:.25rem solid #2993e5}.blockquote-alameda-primary{padding:0 1rem !important;border-left:.25rem solid #2993e5 !important}.blockquote-alameda-secondary{padding:0 1rem !important;border-left:.25rem solid #d3d9dd !important}.btn-xl{font-size:.85rem;font-weight:700;text-transform:uppercase;border:none currentcolor;border-radius:10rem !important;background-color:#2993e5 !important}.bg-gris-medio{background-color:#f8fbfd}.bg-gris-alameda{background-color:#eee}.img-20{transform:translate3d(0,-30%,0);max-width:160px;width:100%;margin:0 auto}.sub-img{margin-top:-40px !important}.main-60{margin:-200px}h4.card-title{font-family:ArialNova,serif !important}.fuente-normal{font-size:1em !important;font-family:ArialNova,serif !important}.fuente-arial-nova{font-family:"ArialNova",sans-serif !important}.link-alameda{font-weight:900 !important;color:#2993e5 !important}.link-alameda:hover{font-weight:500 !important;color:#fafafa !important;background-color:#2993e5 !important}.card-title{font-family:'ArialNova',"proxima-nova","Helvetica Neue",sans-serif !important} \ No newline at end of file From 6c491a2290781c7f33fafee609702f0bd13c81e5 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Mon, 15 Nov 2021 22:12:30 -0300 Subject: [PATCH 193/197] =?UTF-8?q?correcci=C3=B3n=20pr=C3=B3xima=20nova?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/igles.css | 2 +- public/css/igles.min.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/css/igles.css b/public/css/igles.css index 8c39c2c0..d8c9e815 100755 --- a/public/css/igles.css +++ b/public/css/igles.css @@ -1226,7 +1226,7 @@ h4.card-title{ font-family: ArialNova, serif !important; } .fuente-arial-nova{ - font-family: "ArialNova", sans-serif !important; + font-family: 'ArialNova', "proxima-nova", "Helvetica Neue", sans-serif !important; } .link-alameda{ diff --git a/public/css/igles.min.css b/public/css/igles.min.css index 563762cc..c30bee2b 100755 --- a/public/css/igles.min.css +++ b/public/css/igles.min.css @@ -1 +1 @@ -.bajomedia-content:before{border-color:transparent transparent #31708f transparent;position:absolute;display:block;border-style:solid;bottom:2.5em;content:''}.bajomedia-content:before{left:0;border-width:0 0 1em 1em}.navbar{background-color:#5a5a5a;background-repeat:repeat !important;padding:0 10px !important;margin-left:-16px;margin-right:-16px;box-shadow:0 10px 10px 5px}.fondo{background-color:rgba(0,0,0,.5)}.principal{top:-2.5rem}.text-point{color:#ca5430}.border-point{border-color:#2e2e2e !important}.bg-point{background-color:#f0e7d1}.text-tan{color:#f0e7d1}.bg-light-blue{background-color:#73aba2}.bg-point-sec{background-color:#438789}.text-point-sec{color:#438789}a.text-point-sec:hover{color:#438789;text-decoration:none}.text-light-blue{color:#73aba2}.text-blue{color:#0b51c5}.btn-alameda{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:"Proxima Nova",ArialNova,"Helvetica Neue",Helvetica,"Arial Nova",Arial,sans-serif !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:600;line-height:1.25;padding:9px 24px;color:white;background-color:#2993e5;border:1px solid transparent}.btn-alameda-reverso{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:ArialNova,"Arial Nova",Arial,sans-serif,"Proxima Nova","Helvetica Neue",Helvetica !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:900 !important;text-transform:uppercase;line-height:1.25;padding:15px 15px;color:#2993e5;background-color:white}.btn-alameda-reverso:hover{background-color:#2993e5;color:white !important;border:1px solid transparent;opacity:1}.btn-alameda:hover{color:#2993e5;background-color:white;border-color:#2993e5}.btn-alameda.focus,.btn-alameda:focus{box-shadow:0 0 0 .2rem rgba(41,147,229,.5)}.btn-outline-alameda{color:#fff;background-color:#f0e7d1;border-color:#fff}.btn-outline-alameda:hover{color:#438789;background-color:transparent;border-color:#73aba2;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-outline-alameda.focus,.btn-outline-alameda:focus{color:#438789;background-color:#fff;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}ul.punto li{list-style:none;text-indent:-3em}ul.pp li{list-style:none;text-indent:2em}.fondo-evento{background-color:#f0e7d122}.fondo-footer{background-color:rgba(67,135,137,.25)}.fondo-medio{background-color:rgba(0,132,137,0.9)}.fondo-blanco-50{background-color:rgba(256,256,256,.50)}.fondoFranja{background-repeat:repeat !important;padding:0 10px !important;box-shadow:0 10px 10px 5px}a.text-tan:hover{color:#f0e7d1;text-decoration:underline}.bg-teal{background-color:#006064EE !important}a.bg-teal:focus,a.bg-teal:hover,button.bg-teal:focus,button.bg-teal:hover{background-color:#00bcd4CC !important}.contador{font-size:1.2rem !important}.ajusteIndex{margin-top:-2rem !important}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.bienvenido{background-size:cover;animation:3s linear fadeInRightBig;margin:auto auto}@-webkit-keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}@keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}.paralelox{width:100%;height:570px;display:block;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;background-position:center center}.page-header>.container{color:#000 !important}.page-header{height:105vh !important;padding-top:10px;display:flex;align-items:flex-start}.blockquote-point{padding:.5rem 1rem;border-left:.25rem solid #ca5430}.blockquote-uvcp{padding:0 1rem;border-left:.25rem solid #0f0}.blockquote-uvcp_dark{padding:0 1rem;border-left:.25rem solid #04878e}.blockquote-uvcp_dark .rotar90{position:relative;display:table-cell;vertical-align:middle;-webkit-transform:rotate(-90deg);overflow:auto;-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-7em}.vertical-divider{position:absolute;display:table;text-align:center;height:auto;width:auto}.vertical-divider .center-element{position:relative;display:table-cell;vertical-align:top;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.finalBlock{border-right:.25rem solid #04878e}.tooltip{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#73aba2;border-radius:.25rem}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#73aba2 !important;border-radius:.25rem}h3.quote:after,h3.quote:before{display:block;font-size:1.5em;margin-top:.5em}h3.quote:before{content:'“'}h3.quote:after{content:'”'}.quote:after,.quote:before{display:block;font-size:1.5em;margin-top:.5em}.quote:before{content:'“'}.quote:after{content:'”'}.mdl-card__media{background-color:#009688 !important}.mdl-card__white{background-size:cover;background-origin:padding-box;background:#009688 repeat scroll 50% 50%;box-sizing:border-box}.section-heading .section-heading-lower{display:block;font-size:2rem !important;font-weight:100}.text-tan.card .card-body .card-text,.dark-grey-text{color:#f0e7d1 !important}@media(min-width:768px){header.masthead{padding-top:4rem;padding-bottom:4rem}header.masthead h1{font-size:3rem}}@media(max-width:640px){h1{font-size:45px !important;line-height:1.35 !important;letter-spacing:-.02em !important;margin:24px 0 !important}}.text-white-75{color:rgba(255,255,255,0.75) !important}.warnock{font-family:warnock,ArialNova Slab,Times New Roman,serif}.hoverage{font-family:Hoverage,ArialNova,sans-serif}.big_noodle_titling{font-family:big noodle titling,ArialNova,Helvetica,Arial,sans-serif}.matahati{font-family:Matahati Regular,ArialNova,sans-serif}.greatlakes{font-family:greatlakes,ArialNova,Helvetica,Arial,sans-serif}.tuesnight{font-family:"Tuesnight Regular",'ArialNova',sans-serif}.text-fine{font-size:48px;font-weight:100;line-height:1.2em;margin-bottom:20px;margin-top:20px;font-family:"Poppins",sans-serif}.fine4{font-weight:400;line-height:1.2em;margin-bottom:20px;margin-top:20px}.text-300{font-size:45px;font-weight:300;line-height:48px;margin-bottom:10px;margin-top:10px;font-family:"Poppins",sans-serif}.text-14-300{font-size:1.2em;font-weight:300;line-height:1.5em;font-family:"ArialNova",sans-serif}b,i,sup,sub,u,del{color:#2993e5}#paraque b,#paraque i,.base-marron sup,.base-marron sub,.base-marron u,.base-marron del{color:#5f4339}#section-azul b,#section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}.section-azul b,.section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}#section-rojo b,#section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}.section-rojo b,.section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}p .base-rojo{font-size:2em !important}.text-invitacion{font-size:1.5em !important}.text-realce{font-weight:600}.text-realce-verde{color:#6cbb23;font-weight:600}.text-realce-alameda{color:#2993e5;font-weight:600}a.text-realce-verde:hover{color:#3f8f1e;font-weight:600}.text-realce-sca{color:#476389;font-weight:600}.text-realce-marron{color:#8d6e63;font-weight:600}.text-realce-azul{color:#051433;font-weight:600}.text-realce-rojo{color:#8c3654;font-weight:600}.boxPorHacer{height:100vh;background-size:cover}.rgba-uvcp{background:rgba(108,187,35,0.85)}.rgba-seminario{background:rgba(61,112,141,0.85)}.text-100{width:100px;height:100px}.rotar90{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-5em}.icononos-sociales a{display:inline-block;height:3.5rem;width:3.5rem;background-color:#495057;color:white !important;border-radius:100%;text-align:center;font-size:1.5rem;line-height:3.5rem;margin-right:1rem}.icononos-sociales a:last-child{margin-right:0}.icononos-sociales a:hover{background-color:#6cbb23}.fontUnivers{font-family:'UniversLTStd-Obl','ArialNova',cursive}.fontTahu{font-family:'tahu',ArialNova,cursive}.shadow-blue{box-shadow:-3px -1px 4px #2d354f}b.text-shadow{font-weight:bold}.alameda{position:relative;width:50vw;height:150px}.alameda:hover{top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}.alameda:after{content:'';position:absolute;top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}@keyframes animate{0{right:0}100%{right:-400%}}.alameda img{position:absolute;top:0;z-index:1;box-shadow:0 0 40px rgba(0,0,0,1);padding:10px}.contenido{text-align:center;position:absolute;top:50%;transform:translate(-50% -50%);width:100%}.contenido p{color:white;font-weight:700}.compuesto{font-size:4.5em}@media(max-width:640px){.compuesto{font-size:3.5em}}body.frontal{font-family:ArialNova,sans-serif}.tono-cromo{background-repeat:no-repeat;background-size:cover;height:100vh;align-items:center}.letra_a_post{font-weight:300 !important}.shared-link{display:block;padding:.5rem}.finaliza{margin:.375rem;padding:10px 22px}.bg-alameda{background-color:#d3d9dd;color:#495359}.bg-camino{background:#032a3b linear-gradient(#032a3b,#518bb9)}.bg-alameda-reverso{background-color:#2993e5}.display-5{font-size:2rem;font-weight:300;line-height:1.2}.btn-blue{background-color:#1976d2 !important;color:#fff !important}header.masthead-oportunidades{padding-top:10rem;padding-bottom:calc(10rem - 4.5rem);background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:cover}@media(min-width:992px){header.masthead{height:100vh;min-height:40rem;padding-top:4.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(max-width:991px){header.masthead{height:100vh;min-height:40rem;padding-top:2.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(min-width:1200px){header.masthead h1{font-size:3.5rem}}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-black-75{color:rgba(0,0,0,0.75) !important}.text-black-25{color:rgba(0,0,0,0.25) !important}.sup-2{top:-2.5em !important}.h-90{height:90% !important}.left-n5{left:-5px !important}.left-n15{left:-15px !important}.bottom-n10{bottom:-10px !important}.container-img{position:relative !important;text-align:center;color:white}.bottom-left{position:absolute;bottom:8px;left:16px}.top-left{position:absolute;top:8px;left:16px}.top-right{position:absolute;top:8px;right:16px}.bottom-right{position:absolute;bottom:8px;right:16px}.btn-centered{position:absolute !important;top:75% !important;left:50% !important;transform:translate(-50%,-50%) !important}.aire-2{letter-spacing:2px}a:hover>b{color:white}.e80{font-size:.8em}.e90{font-size:.9em}.mt-n3{margin-top:-0.75rem !important}.mt-a35{margin-top:3.5rem !important}.mt-a4{margin-top:4rem !important}.text-alameda{color:#2993e5 !important}.t16{font-size:16px}.negrita7{font-weight:700 !important}.contenedor:hover .card-img:hover{transform:scale(1.3);-moz-transform:scale(1.3);-webkit-transform:scale(1.3);-o-transform:scale(1.3);-ms-transform:scale(1.3)}.card-img{transition:1.5s ease;-moz-transition:1.5s ease;-webkit-transition:1.5s ease;-o-transition:1.5s ease}.contenedor{overflow:hidden}.border-alameda{border-color:#2993e5 !important}.border-alameda-top{border-top-color:#2993e5 !important;border-top-style:solid;border-top-width:1px}.border-alameda-bottom{border-bottom-color:#2993e5 !important;border-bottom-style:solid;border-bottom-width:1px}a>span.text-alameda{font-weight:bolder !important;font-size:16px !important;text-rendering:optimizeLegibility}a>small{font-family:ArialNova,sans-serif;font-style:italic !important;transform:skewY(10deg) rotate(-10deg)}.blockquote-alameda-primary{padding:0 1rem;border-left:.25rem solid #2993e5}.blockquote-alameda-primary{padding:0 1rem !important;border-left:.25rem solid #2993e5 !important}.blockquote-alameda-secondary{padding:0 1rem !important;border-left:.25rem solid #d3d9dd !important}.btn-xl{font-size:.85rem;font-weight:700;text-transform:uppercase;border:none currentcolor;border-radius:10rem !important;background-color:#2993e5 !important}.bg-gris-medio{background-color:#f8fbfd}.bg-gris-alameda{background-color:#eee}.img-20{transform:translate3d(0,-30%,0);max-width:160px;width:100%;margin:0 auto}.sub-img{margin-top:-40px !important}.main-60{margin:-200px}h4.card-title{font-family:ArialNova,serif !important}.fuente-normal{font-size:1em !important;font-family:ArialNova,serif !important}.fuente-arial-nova{font-family:"ArialNova",sans-serif !important}.link-alameda{font-weight:900 !important;color:#2993e5 !important}.link-alameda:hover{font-weight:500 !important;color:#fafafa !important;background-color:#2993e5 !important}.card-title{font-family:'ArialNova',"proxima-nova","Helvetica Neue",sans-serif !important} \ No newline at end of file +.bajomedia-content:before{border-color:transparent transparent #31708f transparent;position:absolute;display:block;border-style:solid;bottom:2.5em;content:''}.bajomedia-content:before{left:0;border-width:0 0 1em 1em}.navbar{background-color:#5a5a5a;background-repeat:repeat !important;padding:0 10px !important;margin-left:-16px;margin-right:-16px;box-shadow:0 10px 10px 5px}.fondo{background-color:rgba(0,0,0,.5)}.principal{top:-2.5rem}.text-point{color:#ca5430}.border-point{border-color:#2e2e2e !important}.bg-point{background-color:#f0e7d1}.text-tan{color:#f0e7d1}.bg-light-blue{background-color:#73aba2}.bg-point-sec{background-color:#438789}.text-point-sec{color:#438789}a.text-point-sec:hover{color:#438789;text-decoration:none}.text-light-blue{color:#73aba2}.text-blue{color:#0b51c5}.btn-alameda{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:"Proxima Nova",ArialNova,"Helvetica Neue",Helvetica,"Arial Nova",Arial,sans-serif !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:600;line-height:1.25;padding:9px 24px;color:white;background-color:#2993e5;border:1px solid transparent}.btn-alameda-reverso{box-sizing:border-box;outline:currentcolor none medium;border-radius:999px;cursor:default;width:auto;height:auto;display:inline-flex;-moz-box-align:center;align-items:center;font-family:ArialNova,"Arial Nova",Arial,sans-serif,"Proxima Nova","Helvetica Neue",Helvetica !important;user-select:none;margin-top:8px;font-size:1rem;font-weight:900 !important;text-transform:uppercase;line-height:1.25;padding:15px 15px;color:#2993e5;background-color:white}.btn-alameda-reverso:hover{background-color:#2993e5;color:white !important;border:1px solid transparent;opacity:1}.btn-alameda:hover{color:#2993e5;background-color:white;border-color:#2993e5}.btn-alameda.focus,.btn-alameda:focus{box-shadow:0 0 0 .2rem rgba(41,147,229,.5)}.btn-outline-alameda{color:#fff;background-color:#f0e7d1;border-color:#fff}.btn-outline-alameda:hover{color:#438789;background-color:transparent;border-color:#73aba2;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}.btn-outline-alameda.focus,.btn-outline-alameda:focus{color:#438789;background-color:#fff;box-shadow:0 0 0 .2rem rgba(255,255,255,0.5)}ul.punto li{list-style:none;text-indent:-3em}ul.pp li{list-style:none;text-indent:2em}.fondo-evento{background-color:#f0e7d122}.fondo-footer{background-color:rgba(67,135,137,.25)}.fondo-medio{background-color:rgba(0,132,137,0.9)}.fondo-blanco-50{background-color:rgba(256,256,256,.50)}.fondoFranja{background-repeat:repeat !important;padding:0 10px !important;box-shadow:0 10px 10px 5px}a.text-tan:hover{color:#f0e7d1;text-decoration:underline}.bg-teal{background-color:#006064EE !important}a.bg-teal:focus,a.bg-teal:hover,button.bg-teal:focus,button.bg-teal:hover{background-color:#00bcd4CC !important}.contador{font-size:1.2rem !important}.ajusteIndex{margin-top:-2rem !important}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@-webkit-keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRightBig{0{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}.bienvenido{background-size:cover;animation:3s linear fadeInRightBig;margin:auto auto}@-webkit-keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}@keyframes move{from{margin-left:50%;width:150%}to{margin-left:0;width:100%}}.paralelox{width:100%;height:570px;display:block;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;background-position:center center}.page-header>.container{color:#000 !important}.page-header{height:105vh !important;padding-top:10px;display:flex;align-items:flex-start}.blockquote-point{padding:.5rem 1rem;border-left:.25rem solid #ca5430}.blockquote-uvcp{padding:0 1rem;border-left:.25rem solid #0f0}.blockquote-uvcp_dark{padding:0 1rem;border-left:.25rem solid #04878e}.blockquote-uvcp_dark .rotar90{position:relative;display:table-cell;vertical-align:middle;-webkit-transform:rotate(-90deg);overflow:auto;-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-7em}.vertical-divider{position:absolute;display:table;text-align:center;height:auto;width:auto}.vertical-divider .center-element{position:relative;display:table-cell;vertical-align:top;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.finalBlock{border-right:.25rem solid #04878e}.tooltip{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#73aba2;border-radius:.25rem}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#73aba2 !important;border-radius:.25rem}h3.quote:after,h3.quote:before{display:block;font-size:1.5em;margin-top:.5em}h3.quote:before{content:'“'}h3.quote:after{content:'”'}.quote:after,.quote:before{display:block;font-size:1.5em;margin-top:.5em}.quote:before{content:'“'}.quote:after{content:'”'}.mdl-card__media{background-color:#009688 !important}.mdl-card__white{background-size:cover;background-origin:padding-box;background:#009688 repeat scroll 50% 50%;box-sizing:border-box}.section-heading .section-heading-lower{display:block;font-size:2rem !important;font-weight:100}.text-tan.card .card-body .card-text,.dark-grey-text{color:#f0e7d1 !important}@media(min-width:768px){header.masthead{padding-top:4rem;padding-bottom:4rem}header.masthead h1{font-size:3rem}}@media(max-width:640px){h1{font-size:45px !important;line-height:1.35 !important;letter-spacing:-.02em !important;margin:24px 0 !important}}.text-white-75{color:rgba(255,255,255,0.75) !important}.warnock{font-family:warnock,ArialNova Slab,Times New Roman,serif}.hoverage{font-family:Hoverage,ArialNova,sans-serif}.big_noodle_titling{font-family:big noodle titling,ArialNova,Helvetica,Arial,sans-serif}.matahati{font-family:Matahati Regular,ArialNova,sans-serif}.greatlakes{font-family:greatlakes,ArialNova,Helvetica,Arial,sans-serif}.tuesnight{font-family:"Tuesnight Regular",'ArialNova',sans-serif}.text-fine{font-size:48px;font-weight:100;line-height:1.2em;margin-bottom:20px;margin-top:20px;font-family:"Poppins",sans-serif}.fine4{font-weight:400;line-height:1.2em;margin-bottom:20px;margin-top:20px}.text-300{font-size:45px;font-weight:300;line-height:48px;margin-bottom:10px;margin-top:10px;font-family:"Poppins",sans-serif}.text-14-300{font-size:1.2em;font-weight:300;line-height:1.5em;font-family:"ArialNova",sans-serif}b,i,sup,sub,u,del{color:#2993e5}#paraque b,#paraque i,.base-marron sup,.base-marron sub,.base-marron u,.base-marron del{color:#5f4339}#section-azul b,#section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}.section-azul b,.section-azul i,.base-azul sup,.base-azul sub,.base-azul u,.base-azul del{color:#2d354f}#section-rojo b,#section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}.section-rojo b,.section-rojo i,.base-rojo sup,.base-rojo sub,.base-rojo u,.base-rojo del{color:#8c3654}p .base-rojo{font-size:2em !important}.text-invitacion{font-size:1.5em !important}.text-realce{font-weight:600}.text-realce-verde{color:#6cbb23;font-weight:600}.text-realce-alameda{color:#2993e5;font-weight:600}a.text-realce-verde:hover{color:#3f8f1e;font-weight:600}.text-realce-sca{color:#476389;font-weight:600}.text-realce-marron{color:#8d6e63;font-weight:600}.text-realce-azul{color:#051433;font-weight:600}.text-realce-rojo{color:#8c3654;font-weight:600}.boxPorHacer{height:100vh;background-size:cover}.rgba-uvcp{background:rgba(108,187,35,0.85)}.rgba-seminario{background:rgba(61,112,141,0.85)}.text-100{width:100px;height:100px}.rotar90{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);float:left;margin-left:-5em}.icononos-sociales a{display:inline-block;height:3.5rem;width:3.5rem;background-color:#495057;color:white !important;border-radius:100%;text-align:center;font-size:1.5rem;line-height:3.5rem;margin-right:1rem}.icononos-sociales a:last-child{margin-right:0}.icononos-sociales a:hover{background-color:#6cbb23}.fontUnivers{font-family:'UniversLTStd-Obl','ArialNova',cursive}.fontTahu{font-family:'tahu',ArialNova,cursive}.shadow-blue{box-shadow:-3px -1px 4px #2d354f}b.text-shadow{font-weight:bold}.alameda{position:relative;width:50vw;height:150px}.alameda:hover{top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}.alameda:after{content:'';position:absolute;top:0;right:0;width:400%;height:100%;background:linear-gradient(to right,transparent,#000,#000);z-index:3;animation:animate 2s linear forwards}@keyframes animate{0{right:0}100%{right:-400%}}.alameda img{position:absolute;top:0;z-index:1;box-shadow:0 0 40px rgba(0,0,0,1);padding:10px}.contenido{text-align:center;position:absolute;top:50%;transform:translate(-50% -50%);width:100%}.contenido p{color:white;font-weight:700}.compuesto{font-size:4.5em}@media(max-width:640px){.compuesto{font-size:3.5em}}body.frontal{font-family:ArialNova,sans-serif}.tono-cromo{background-repeat:no-repeat;background-size:cover;height:100vh;align-items:center}.letra_a_post{font-weight:300 !important}.shared-link{display:block;padding:.5rem}.finaliza{margin:.375rem;padding:10px 22px}.bg-alameda{background-color:#d3d9dd;color:#495359}.bg-camino{background:#032a3b linear-gradient(#032a3b,#518bb9)}.bg-alameda-reverso{background-color:#2993e5}.display-5{font-size:2rem;font-weight:300;line-height:1.2}.btn-blue{background-color:#1976d2 !important;color:#fff !important}header.masthead-oportunidades{padding-top:10rem;padding-bottom:calc(10rem - 4.5rem);background-position:center;background-repeat:no-repeat;background-attachment:scroll;background-size:cover}@media(min-width:992px){header.masthead{height:100vh;min-height:40rem;padding-top:4.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(max-width:991px){header.masthead{height:100vh;min-height:40rem;padding-top:2.5rem;padding-bottom:0}header.masthead p{font-size:1.15rem}header.masthead h1{font-size:3rem}}@media(min-width:1200px){header.masthead h1{font-size:3.5rem}}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-black-75{color:rgba(0,0,0,0.75) !important}.text-black-25{color:rgba(0,0,0,0.25) !important}.sup-2{top:-2.5em !important}.h-90{height:90% !important}.left-n5{left:-5px !important}.left-n15{left:-15px !important}.bottom-n10{bottom:-10px !important}.container-img{position:relative !important;text-align:center;color:white}.bottom-left{position:absolute;bottom:8px;left:16px}.top-left{position:absolute;top:8px;left:16px}.top-right{position:absolute;top:8px;right:16px}.bottom-right{position:absolute;bottom:8px;right:16px}.btn-centered{position:absolute !important;top:75% !important;left:50% !important;transform:translate(-50%,-50%) !important}.aire-2{letter-spacing:2px}a:hover>b{color:white}.e80{font-size:.8em}.e90{font-size:.9em}.mt-n3{margin-top:-0.75rem !important}.mt-a35{margin-top:3.5rem !important}.mt-a4{margin-top:4rem !important}.text-alameda{color:#2993e5 !important}.t16{font-size:16px}.negrita7{font-weight:700 !important}.contenedor:hover .card-img:hover{transform:scale(1.3);-moz-transform:scale(1.3);-webkit-transform:scale(1.3);-o-transform:scale(1.3);-ms-transform:scale(1.3)}.card-img{transition:1.5s ease;-moz-transition:1.5s ease;-webkit-transition:1.5s ease;-o-transition:1.5s ease}.contenedor{overflow:hidden}.border-alameda{border-color:#2993e5 !important}.border-alameda-top{border-top-color:#2993e5 !important;border-top-style:solid;border-top-width:1px}.border-alameda-bottom{border-bottom-color:#2993e5 !important;border-bottom-style:solid;border-bottom-width:1px}a>span.text-alameda{font-weight:bolder !important;font-size:16px !important;text-rendering:optimizeLegibility}a>small{font-family:ArialNova,sans-serif;font-style:italic !important;transform:skewY(10deg) rotate(-10deg)}.blockquote-alameda-primary{padding:0 1rem;border-left:.25rem solid #2993e5}.blockquote-alameda-primary{padding:0 1rem !important;border-left:.25rem solid #2993e5 !important}.blockquote-alameda-secondary{padding:0 1rem !important;border-left:.25rem solid #d3d9dd !important}.btn-xl{font-size:.85rem;font-weight:700;text-transform:uppercase;border:none currentcolor;border-radius:10rem !important;background-color:#2993e5 !important}.bg-gris-medio{background-color:#f8fbfd}.bg-gris-alameda{background-color:#eee}.img-20{transform:translate3d(0,-30%,0);max-width:160px;width:100%;margin:0 auto}.sub-img{margin-top:-40px !important}.main-60{margin:-200px}h4.card-title{font-family:ArialNova,serif !important}.fuente-normal{font-size:1em !important;font-family:ArialNova,serif !important}.fuente-arial-nova{font-family:'ArialNova',"proxima-nova","Helvetica Neue",sans-serif !important}.link-alameda{font-weight:900 !important;color:#2993e5 !important}.link-alameda:hover{font-weight:500 !important;color:#fafafa !important;background-color:#2993e5 !important}.card-title{font-family:'ArialNova',"proxima-nova","Helvetica Neue",sans-serif !important} \ No newline at end of file From abbcd9b8cda8fd8ae02973c5af2b5fb4e8414956 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Tue, 16 Nov 2021 08:27:29 -0300 Subject: [PATCH 194/197] sacar la necesidad de reserva --- .../models/principal/listadoPrincipal.html.twig | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/templates/models/principal/listadoPrincipal.html.twig b/templates/models/principal/listadoPrincipal.html.twig index 644d9b4e..7af7c98b 100644 --- a/templates/models/principal/listadoPrincipal.html.twig +++ b/templates/models/principal/listadoPrincipal.html.twig @@ -105,21 +105,20 @@
    Celebraciones
    - Recuerda que puedes participar de nuestras celebraciones en forma presencial realizando tu
    -
    - reserva desde aquí -
    u online desde
    + Recuerda que puedes participar de nuestras celebraciones en forma presencial sin realizar + reserva previa
    +{# #} +{# reserva desde aquí#} +{# #} +
    u online desde
    https://vivo.alamenda.ar -
    -
    -
    - +
    From 3f62cdfdc1effdaaf4a515e4bab236b9d08494ca Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Tue, 16 Nov 2021 11:03:58 -0300 Subject: [PATCH 195/197] mejora en secciones --- .../models/sections/imagenSuperiorParallaxWhitTitle.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/models/sections/imagenSuperiorParallaxWhitTitle.html.twig b/templates/models/sections/imagenSuperiorParallaxWhitTitle.html.twig index a786ee63..d987bdfe 100644 --- a/templates/models/sections/imagenSuperiorParallaxWhitTitle.html.twig +++ b/templates/models/sections/imagenSuperiorParallaxWhitTitle.html.twig @@ -20,7 +20,7 @@
    -
    +
    From 04a890821e195fa6bae898ad1ecef1da40ecfc0a Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Tue, 16 Nov 2021 13:36:22 -0300 Subject: [PATCH 196/197] model section iframe-newsletter.html.twig --- src/Twig/BaseExtension.php | 31 +++++++++++++++---- .../sections/iframe-newsletter.html.twig | 14 +++++++++ 2 files changed, 39 insertions(+), 6 deletions(-) create mode 100644 templates/models/sections/iframe-newsletter.html.twig diff --git a/src/Twig/BaseExtension.php b/src/Twig/BaseExtension.php index 7d717346..baa8a5d5 100755 --- a/src/Twig/BaseExtension.php +++ b/src/Twig/BaseExtension.php @@ -59,14 +59,14 @@ public function getFunctions(): array ]; } - public function lema() + public function lema(): ?string { $lema = $this->em->getRepository(IndexAlameda::class)->findOneBy(['base' => 'index']); return $lema->getLema(); } - public function metaDescripcion() + public function metaDescripcion(): ?string { $base = $this->em->getRepository(IndexAlameda::class)->findOneBy(['base' => 'index']); @@ -88,7 +88,7 @@ public function getUploadedAssetPath(string $path): string ->getPublicPath($path); } - public function capacidad_restante(string $celebracion, int $cantidad) + public function capacidad_restante(string $celebracion, int $cantidad): int { $invitados = $this->container->get(EntityManagerInterface::class)->getRepository(Invitado::class)->countByCelebracion($celebracion); return $cantidad - $invitados; @@ -99,7 +99,7 @@ public function capacidad_ocupada(string $celebracion) return $this->container->get(EntityManagerInterface::class)->getRepository(Invitado::class)->countByCelebracion($celebracion); } - public static function getSubscribedServices() + public static function getSubscribedServices(): array { return [ UploaderHelper::class, @@ -162,12 +162,18 @@ private function addTexto($valor): string return sprintf($texto, $valor, $valor, $valor, $valor); } - public function form_suscripto_newsletter(string $type,string $fuente): string + /** + * @param string $type + * @param string $fuente + * @return array|string|void + */ + public function form_suscripto_newsletter(string $type,string $fuente) { switch ($type){ case 'script': - default: return $this->divScript($fuente); + case 'iframe': + return $this->divIframe($fuente); } } @@ -184,4 +190,17 @@ protected function divScript(string $fuente): string return $crea_formulario[0]->getSrcCodigo(); } + /** + * @param string $fuente + * @return array + */ + protected function divIframe(string $fuente): array + { + $crea_formulario = $this->container->get(EntityManagerInterface::class) + ->getRepository(NewsSite::class) + ->findBy(['srcType' =>'iframe', 'srcSite' => $fuente]); + + return [$crea_formulario[0]->getSrcCodigo(),$crea_formulario[0]->getSrcParameters()]; + } + } diff --git a/templates/models/sections/iframe-newsletter.html.twig b/templates/models/sections/iframe-newsletter.html.twig new file mode 100644 index 00000000..97943a46 --- /dev/null +++ b/templates/models/sections/iframe-newsletter.html.twig @@ -0,0 +1,14 @@ +{# +# Template section script-suscripcion-newsletter.html.twig +# No necesita entradas +#} +
    +
    +{#
    #} + +{#
    #} +
    +
    \ No newline at end of file From 553c36f86a4b1a4442f6bd666fa3b8cb80069655 Mon Sep 17 00:00:00 2001 From: "Gerardo J. Montivero" Date: Sat, 20 Nov 2021 08:42:30 -0300 Subject: [PATCH 197/197] SE9 --- assets/js/nota_mensaje.js | 160 ++++++++++++++-------------- templates/bases/_nota.html.twig | 182 ++++++++++---------------------- 2 files changed, 134 insertions(+), 208 deletions(-) diff --git a/assets/js/nota_mensaje.js b/assets/js/nota_mensaje.js index 8387b3bc..e3988415 100644 --- a/assets/js/nota_mensaje.js +++ b/assets/js/nota_mensaje.js @@ -1,28 +1,28 @@ import $ from 'jquery'; $(function () { - const puno = localStorage.getItem("SE8Puno"); - const pdos = localStorage.getItem("SE8Pdos"); - const ptres = localStorage.getItem("SE8Ptres"); - const pcuatro = localStorage.getItem("SE8Pcuatro"); - const pcinco = localStorage.getItem("SE8Pcinco"); - const pseis = localStorage.getItem("SE8Pseis"); - const psiete = localStorage.getItem("SE8Psiete"); - const pocho = localStorage.getItem("SE8Pocho"); - const pnueve = localStorage.getItem("SE8Pnueve"); - const pdiez = localStorage.getItem("SE8Pdiez"); - const ponce = localStorage.getItem("SE8Ponce"); - const pdoce = localStorage.getItem("SE8Pdoce"); - const ptrece = localStorage.getItem("SE8Ptrece"); - const pcatorce = localStorage.getItem("SE8Pcatorce"); - const pquince = localStorage.getItem("SE8Pquince"); - const pdieciseis = localStorage.getItem("SE8Pdieciseis"); - const pdiecisiete = localStorage.getItem("SE8Pdiecisiete"); - const pdieciocho = localStorage.getItem("SE8Pdieciocho"); - const pdiecinueve = localStorage.getItem("SE8Pdiecinueve"); - const pveinte = localStorage.getItem("SE8Pveinte"); + const puno = localStorage.getItem("SE9Puno"); + const pdos = localStorage.getItem("SE9Pdos"); + const ptres = localStorage.getItem("SE9Ptres"); + const pcuatro = localStorage.getItem("SE9Pcuatro"); + const pcinco = localStorage.getItem("SE9Pcinco"); + const pseis = localStorage.getItem("SE9Pseis"); + const psiete = localStorage.getItem("SE9Psiete"); + const pocho = localStorage.getItem("SE9Pocho"); + const pnueve = localStorage.getItem("SE9Pnueve"); + const pdiez = localStorage.getItem("SE9Pdiez"); + const ponce = localStorage.getItem("SE9Ponce"); + const pdoce = localStorage.getItem("SE9Pdoce"); + const ptrece = localStorage.getItem("SE9Ptrece"); + const pcatorce = localStorage.getItem("SE9Pcatorce"); + const pquince = localStorage.getItem("SE9Pquince"); + const pdieciseis = localStorage.getItem("SE9Pdieciseis"); + const pdiecisiete = localStorage.getItem("SE9Pdiecisiete"); + const pdieciocho = localStorage.getItem("SE9Pdieciocho"); + const pdiecinueve = localStorage.getItem("SE9Pdiecinueve"); + const pveinte = localStorage.getItem("SE9Pveinte"); if (pcinco != null) { - $('#pcinco').val(JSON.parse(localStorage.SE8Pcinco)) + $('#pcinco').val(JSON.parse(localStorage.SE9Pcinco)) muestra1('#lpcinco', '#sinpcinco') aceptado('cinco'); } else { @@ -30,7 +30,7 @@ $(function () { } if (puno != null) { - $('#puno').val(JSON.parse(localStorage.SE8Puno)) + $('#puno').val(JSON.parse(localStorage.SE9Puno)) muestra1('#lpuno', '#sinpuno') aceptado('uno'); console.log('19') @@ -40,7 +40,7 @@ $(function () { } if (pdos != null) { - $('#pdos').val(JSON.parse(localStorage.SE8Pdos)) + $('#pdos').val(JSON.parse(localStorage.SE9Pdos)) muestra1('#lpdos', '#sinpdos') aceptado('dos'); } else { @@ -48,7 +48,7 @@ $(function () { } if (ptres != null) { - $('#ptres').val(JSON.parse(localStorage.SE8Ptres)) + $('#ptres').val(JSON.parse(localStorage.SE9Ptres)) muestra1('#lptres', '#sinptres') aceptado('tres'); } else { @@ -56,7 +56,7 @@ $(function () { } if (pcuatro != null) { - $('#pcuatro').val(JSON.parse(localStorage.SE8Pcuatro)) + $('#pcuatro').val(JSON.parse(localStorage.SE9Pcuatro)) muestra1('#lpcuatro', '#sinpcuatro') aceptado('cuatro'); } else { @@ -64,14 +64,14 @@ $(function () { } if (pseis != null) { - $('#pseis').val(JSON.parse(localStorage.SE8Pseis)) + $('#pseis').val(JSON.parse(localStorage.SE9Pseis)) muestra1('#lpseis', '#sinpseis') aceptado('seis'); } else { oculta1('#lpseis', '#sinpseis') } if (psiete != null) { - $('#psiete').val(JSON.parse(localStorage.SE8Psiete)) + $('#psiete').val(JSON.parse(localStorage.SE9Psiete)) muestra1('#lpsiete', '#sinpsiete') aceptado('siete'); } else { @@ -79,7 +79,7 @@ $(function () { } if (pocho != null) { - $('#pocho').val(JSON.parse(localStorage.SE8Pocho)) + $('#pocho').val(JSON.parse(localStorage.SE9Pocho)) muestra1('#lpocho', '#sinpocho') aceptado('ocho'); } else { @@ -87,7 +87,7 @@ $(function () { } if (pnueve != null) { - $('#pnueve').val(JSON.parse(localStorage.SE8Pnueve)) + $('#pnueve').val(JSON.parse(localStorage.SE9Pnueve)) muestra1('#lpnueve', '#sinpnueve') aceptado('nueve'); } else { @@ -95,7 +95,7 @@ $(function () { } if (pdiez != null) { - $('#pdiez').val(JSON.parse(localStorage.SE8Pdiez)) + $('#pdiez').val(JSON.parse(localStorage.SE9Pdiez)) muestra1('#lpdiez', '#sinpdiez') aceptado('diez'); } else { @@ -103,70 +103,70 @@ $(function () { } if (ponce != null) { - $('#ponce').val(JSON.parse(localStorage.SE8Ponce)) + $('#ponce').val(JSON.parse(localStorage.SE9Ponce)) muestra1('#lponce', '#sinponce') aceptado('once'); } else { oculta1('#lponce', '#sinponce') } if (pdoce != null) { - $('#pdoce').val(JSON.parse(localStorage.SE8Pdoce)) + $('#pdoce').val(JSON.parse(localStorage.SE9Pdoce)) muestra1('#lpdoce', '#sinpdoce') aceptado('doce'); } else { oculta1('#lpdoce', '#sinpdoce') } if (ptrece != null) { - $('#ptrece').val(JSON.parse(localStorage.SE8Ptrece)) + $('#ptrece').val(JSON.parse(localStorage.SE9Ptrece)) muestra1('#lptrece', '#sinptrece') aceptado('trece'); } else { oculta1('#lptrece', '#sinptrece') } if (pcatorce != null) { - $('#pcatorce').val(JSON.parse(localStorage.SE8Pcatorce)) + $('#pcatorce').val(JSON.parse(localStorage.SE9Pcatorce)) muestra1('#lpcatorce', '#sinpcatorce') aceptado('catorce'); } else { oculta1('#lpcatorce', '#sinpcatorce') } if (pquince != null) { - $('#pquince').val(JSON.parse(localStorage.SE8Pquince)) + $('#pquince').val(JSON.parse(localStorage.SE9Pquince)) muestra1('#lpquince', '#sinpquince') aceptado('quince'); } else { oculta1('#lpquince', '#sinpquince') } if (pdieciseis != null) { - $('#pdieciseis').val(JSON.parse(localStorage.SE8Pdieciseis)) + $('#pdieciseis').val(JSON.parse(localStorage.SE9Pdieciseis)) muestra1('#lpdieciseis', '#sinpdieciseis') aceptado('dieciseis'); } else { oculta1('#lpdieciseis', '#sinpdieciseis') } if (pdiecisiete != null) { - $('#pdiecisiete').val(JSON.parse(localStorage.SE8Pdiecisiete)) + $('#pdiecisiete').val(JSON.parse(localStorage.SE9Pdiecisiete)) muestra1('#lpdiecisiete', '#sinpdiecisiete') aceptado('diecisiete'); } else { oculta1('#lpdiecisiete', '#sinpdiecisiete') } if (pdieciocho != null) { - $('#pdieciocho').val(JSON.parse(localStorage.SE8Pdieciocho)) + $('#pdieciocho').val(JSON.parse(localStorage.SE9Pdieciocho)) muestra1('#lpdieciocho', '#sinpdieciocho') aceptado('dieciocho'); } else { oculta1('#lpdieciocho', '#sinpdieciocho') } if (pdiecinueve != null) { - $('#pdiecinueve').val(JSON.parse(localStorage.SE8Pdiecinueve)) + $('#pdiecinueve').val(JSON.parse(localStorage.SE9Pdiecinueve)) muestra1('#lpdiecinueve', '#sinpdiecinueve') aceptado('diecinueve'); } else { oculta1('#lpdiecinueve', '#sinpdiecinueve') } if (pveinte != null) { - $('#pveinte').val(JSON.parse(localStorage.SE8Pveinte)) + $('#pveinte').val(JSON.parse(localStorage.SE9Pveinte)) muestra1('#lpveinte', '#sinpveinte') aceptado('veinte'); } else { @@ -530,94 +530,94 @@ function procesa(p) { console.log('p = ' + p) if (p === 'diez') { const pdiez = $('#pdiez').val(); - localStorage.SE8Pdiez = JSON.stringify(pdiez); + localStorage.SE9Pdiez = JSON.stringify(pdiez); } if (p === 'nueve') { const pnueve = $('#pnueve').val(); - localStorage.SE8Pnueve = JSON.stringify(pnueve); + localStorage.SE9Pnueve = JSON.stringify(pnueve); } if (p === 'ocho') { const pocho = $('#pocho').val(); - localStorage.SE8Pocho = JSON.stringify(pocho); + localStorage.SE9Pocho = JSON.stringify(pocho); } if (p === 'siete') { const psiete = $('#psiete').val(); - localStorage.SE8Psiete = JSON.stringify(psiete); + localStorage.SE9Psiete = JSON.stringify(psiete); } if (p === 'seis') { const pseis = $('#pseis').val(); - localStorage.SE8Pseis = JSON.stringify(pseis); + localStorage.SE9Pseis = JSON.stringify(pseis); } if (p === 'cinco') { const pcinco = $('#pcinco').val(); - localStorage.SE8Pcinco = JSON.stringify(pcinco); + localStorage.SE9Pcinco = JSON.stringify(pcinco); } if (p === 'uno') { const puno = $('#puno').val(); - localStorage.SE8Puno = JSON.stringify(puno); + localStorage.SE9Puno = JSON.stringify(puno); } if (p === 'dos') { const pdos = $('#pdos').val(); - localStorage.SE8Pdos = JSON.stringify(pdos); + localStorage.SE9Pdos = JSON.stringify(pdos); } if (p === 'tres') { const ptres = $('#ptres').val(); - localStorage.SE8Ptres = JSON.stringify(ptres); + localStorage.SE9Ptres = JSON.stringify(ptres); } if (p === 'cuatro') { const pcuatro = $('#pcuatro').val(); - localStorage.SE8Pcuatro = JSON.stringify(pcuatro); + localStorage.SE9Pcuatro = JSON.stringify(pcuatro); } if (p === 'once') { const ponce = $('#ponce').val(); - localStorage.SE8Ponce = JSON.stringify(ponce); + localStorage.SE9Ponce = JSON.stringify(ponce); } if (p === 'doce') { const pdoce = $('#pdoce').val(); - localStorage.SE8Pdoce = JSON.stringify(pdoce); + localStorage.SE9Pdoce = JSON.stringify(pdoce); } if (p === 'trece') { const ptrece = $('#ptrece').val(); - localStorage.SE8Ptrece = JSON.stringify(ptrece); + localStorage.SE9Ptrece = JSON.stringify(ptrece); } if (p === 'catorce') { const pcatorce = $('#pcatorce').val(); - localStorage.SE8Pcatorce = JSON.stringify(pcatorce); + localStorage.SE9Pcatorce = JSON.stringify(pcatorce); } if (p === 'quince') { const pquince = $('#pquince').val(); - localStorage.SE8Pquince = JSON.stringify(pquince); + localStorage.SE9Pquince = JSON.stringify(pquince); } if (p === 'dieciseis') { const pdieciseis = $('#pdieciseis').val(); - localStorage.SE8Pdieciseis = JSON.stringify(pdieciseis); + localStorage.SE9Pdieciseis = JSON.stringify(pdieciseis); } if (p === 'diecisiete') { const pdiecisiete = $('#pdiecisiete').val(); - localStorage.SE8Pdiecisiete = JSON.stringify(pdiecisiete); + localStorage.SE9Pdiecisiete = JSON.stringify(pdiecisiete); } if (p === 'dieciocho') { const pdieciocho = $('#pdieciocho').val(); - localStorage.SE8Pdieciocho = JSON.stringify(pdieciocho); + localStorage.SE9Pdieciocho = JSON.stringify(pdieciocho); } if (p === 'diecinueve') { const pdiecinueve = $('#pdiecinueve').val(); - localStorage.SE8Pdiecinueve = JSON.stringify(pdiecinueve); + localStorage.SE9Pdiecinueve = JSON.stringify(pdiecinueve); } if (p === 'veinte') { const pveinte = $('#pveinte').val(); - localStorage.SE8Pveinte = JSON.stringify(pveinte); + localStorage.SE9Pveinte = JSON.stringify(pveinte); } @@ -626,7 +626,7 @@ function procesa(p) { function aceptado(p) { if (p === 'diez') { - const pdiez = JSON.parse(localStorage.SE8Pdiez); + const pdiez = JSON.parse(localStorage.SE9Pdiez); $('#lpdiez').addClass('fontTahu fa-2x text-info'); $('#lpdiez').html(pdiez); @@ -634,7 +634,7 @@ function aceptado(p) { } if (p === 'nueve') { - const pnueve = JSON.parse(localStorage.SE8Pnueve); + const pnueve = JSON.parse(localStorage.SE9Pnueve); $('#lpnueve').addClass('fontTahu fa-2x text-info'); $('#lpnueve').html(pnueve); @@ -642,7 +642,7 @@ function aceptado(p) { } if (p === 'ocho') { - const pocho = JSON.parse(localStorage.SE8Pocho); + const pocho = JSON.parse(localStorage.SE9Pocho); $('#lpocho').addClass('fontTahu fa-2x text-info'); $('#lpocho').html(pocho); @@ -650,7 +650,7 @@ function aceptado(p) { } if (p === 'seis') { - const pseis = JSON.parse(localStorage.SE8Pseis); + const pseis = JSON.parse(localStorage.SE9Pseis); $('#lpseis').addClass('fontTahu fa-2x text-info'); $('#lpseis').html(pseis); @@ -658,7 +658,7 @@ function aceptado(p) { } if (p === 'siete') { - const psiete = JSON.parse(localStorage.SE8Psiete); + const psiete = JSON.parse(localStorage.SE9Psiete); $('#lpsiete').addClass('fontTahu fa-2x text-info'); $('#lpsiete').html(psiete); @@ -666,7 +666,7 @@ function aceptado(p) { } if (p === 'uno') { - const puno = JSON.parse(localStorage.SE8Puno); + const puno = JSON.parse(localStorage.SE9Puno); $('#lpuno').addClass('fontTahu fa-2x text-info'); $('#lpuno').html(puno); @@ -674,28 +674,28 @@ function aceptado(p) { } if (p === 'cinco') { console.log('aceptado = ' + p) - const pcinco = JSON.parse(localStorage.SE8Pcinco); + const pcinco = JSON.parse(localStorage.SE9Pcinco); $('#lpcinco').addClass('fontTahu fa-2x text-info'); $('#lpcinco').html(pcinco); $('#lpcinco').show(); $('#sinpcinco').hide(); } if (p === 'dos') { - const pdos = JSON.parse(localStorage.SE8Pdos); + const pdos = JSON.parse(localStorage.SE9Pdos); $('#lpdos').addClass('fontTahu fa-2x text-info'); $('#lpdos').html(pdos); $('#sinpdos').hide(); } if (p === 'tres') { - const ptres = JSON.parse(localStorage.SE8Ptres); + const ptres = JSON.parse(localStorage.SE9Ptres); $('#lptres').addClass('fontTahu fa-2x text-info'); $('#lptres').html(ptres); $('#sinptres').hide(); } if (p === 'cuatro') { - const pcuatro = JSON.parse(localStorage.SE8Pcuatro); + const pcuatro = JSON.parse(localStorage.SE9Pcuatro); $('#lpcuatro').addClass('fontTahu fa-2x text-info'); $('#lpcuatro').html(pcuatro); @@ -703,7 +703,7 @@ function aceptado(p) { } if (p === 'once') { - const ponce = JSON.parse(localStorage.SE8Ponce); + const ponce = JSON.parse(localStorage.SE9Ponce); $('#lponce').addClass('fontTahu fa-2x text-info'); $('#lponce').html(ponce); @@ -711,7 +711,7 @@ function aceptado(p) { } if (p === 'doce') { - const pdoce = JSON.parse(localStorage.SE8Pdoce); + const pdoce = JSON.parse(localStorage.SE9Pdoce); $('#lpdoce').addClass('fontTahu fa-2x text-info'); $('#lpdoce').html(pdoce); @@ -719,7 +719,7 @@ function aceptado(p) { } if (p === 'trece') { - const ptrece = JSON.parse(localStorage.SE8Ptrece); + const ptrece = JSON.parse(localStorage.SE9Ptrece); $('#lptrece').addClass('fontTahu fa-2x text-info'); $('#lptrece').html(ptrece); @@ -727,49 +727,49 @@ function aceptado(p) { } if (p === 'catorce') { - const pcatorce = JSON.parse(localStorage.SE8Pcatorce); + const pcatorce = JSON.parse(localStorage.SE9Pcatorce); $('#lpcatorce').addClass('fontTahu fa-2x text-info'); $('#lpcatorce').html(pcatorce); $('#sinpcatorce').hide(); } if (p === 'quince') { - const pquince = JSON.parse(localStorage.SE8Pquince); + const pquince = JSON.parse(localStorage.SE9Pquince); $('#lpquince').addClass('fontTahu fa-2x text-info'); $('#lpquince').html(pquince); $('#sinpquince').hide(); } if (p === 'dieciseis') { - const pdieciseis = JSON.parse(localStorage.SE8Pdieciseis); + const pdieciseis = JSON.parse(localStorage.SE9Pdieciseis); $('#lpdieciseis').addClass('fontTahu fa-2x text-info'); $('#lpdieciseis').html(pdieciseis); $('#sinpdieciseis').hide(); } if (p === 'diecisiete') { - const pdiecisiete = JSON.parse(localStorage.SE8Pdiecisiete); + const pdiecisiete = JSON.parse(localStorage.SE9Pdiecisiete); $('#lpdiecisiete').addClass('fontTahu fa-2x text-info'); $('#lpdiecisiete').html(pdiecisiete); $('#sinpdiecisiete').hide(); } if (p === 'dieciocho') { - const pdieciocho = JSON.parse(localStorage.SE8Pdieciocho); + const pdieciocho = JSON.parse(localStorage.SE9Pdieciocho); $('#lpdieciocho').addClass('fontTahu fa-2x text-info'); $('#lpdieciocho').html(pdieciocho); $('#sinpdieciocho').hide(); } if (p === 'diecinueve') { - const pdiecinueve = JSON.parse(localStorage.SE8Pdiecinueve); + const pdiecinueve = JSON.parse(localStorage.SE9Pdiecinueve); $('#lpdiecinueve').addClass('fontTahu fa-2x text-info'); $('#lpdiecinueve').html(pdiecinueve); $('#sinpdiecinueve').hide(); } if (p === 'veinte') { - const pveinte = JSON.parse(localStorage.SE8Pveinte); + const pveinte = JSON.parse(localStorage.SE9Pveinte); $('#lpveinte').addClass('fontTahu fa-2x text-info'); $('#lpveinte').html(pveinte); diff --git a/templates/bases/_nota.html.twig b/templates/bases/_nota.html.twig index 0b9cde14..8c02220b 100644 --- a/templates/bases/_nota.html.twig +++ b/templates/bases/_nota.html.twig @@ -8,233 +8,159 @@

    - MANSEDUMBRE DE CORAZÓN + FUERZA INTERIOR
    - Serie: Social Ed. - Parte 8 + Serie: Social Ed. - Parte 9

    - Pero el fruto que produce el Espíritu Santo dentro de ti es ... dulzura de corazón, y fuerza de espíritu. + "A Como ciudad sin muralla y expuesta al peligro, así es quien no sabe dominar sus impulsos."
    - Gal. 5: 22 y 23. TPT - -

    -

    - Si se enojan, no pequen. No permitan que el enojo les dure hasta la puesta del sol. -
    - - Efesios 4:26 NVI + Proverbios 25:28 (DHH)

    -

    - ¿Que produce la mansedumbre en nuestras relaciones? -

    - Apacigua el {{ completa_lugar('uno') | raw}}. + La más grande destructora: Una {{ completa_lugar('uno') | raw}} +

    - La respuesta apacible desvía el enojo, pero las palabras ásperas encienden los ánimos. + "La lengua es un miembro diminuto, ¡pero cuánto daño puede hacer! Basta una chispa para + hacer arder un inmenso bosque… puede avivar esta llama y convertir nuestras vidas en llamarada + destructiva y desastrosa."
    - Proverbios 15:1 NTV + Santiago 3:5-6 (BAD)

    - - Desarma a los {{ completa_lugar('dos') | raw}} - +

    - "Respondemos con gentileza cuando dicen cosas malas de nosotros". + "Quien controla su boca protege su vida."
    - 1 Corintios 4:13 NTV + Proverbios 13:3 (BTI)

    - - Abre la puerta la {{ completa_lugar('tres') | raw}} +
    +
    +

    + COMO MANEJAR SU BOCA +

    + + 1. {{ completa_lugar('dos') | raw}} ANTES DE HABLAR. -

    - Dialogar pacientemente con los gobernantes los hace cambiar su manera de pensar; un diálogo amistoso - tiene mucho poder. +

    + "Un hombre sabio siempre piensa antes de hablar; dice lo correcto y vale la pena escucharlo."
    - Proverbios 25.15 PDT + Proverbios 16:23 (PDT)

    - "Los sabios son conocidos por su entendimiento, y las palabras agradables son persuasivas". + "Cada uno comerá hasta el cansancio del fruto de sus palabras."
    - Proverbios 16:21 NTV + Proverbios 18:20 (DHH)

    - - Nos vuelve personas {{ completa_lugar('cuatro') | raw}} - -

    - Procuren más bien la belleza pura, la que viene de lo íntimo del corazón y que consiste en un - espíritu afectuoso y tranquilo. Esta es la que tiene valor delante de Dios. +

    + "Es peligroso decir a la ligera: «Esto prometo» y después reconsiderar lo prometido.”
    - 1 Pedro 3:4 NBV + Proverbios 20:25 (BLPH)

    - Comunica el {{ completa_lugar('cinco') | raw}} + 2.HABLO SIEMPRE {{ completa_lugar('tres') | raw}}

    - Ámense los unos a los otros con amor fraternal, respetándose y honrándose mutuamente. + "El que guiña el ojo causa problemas; el que habla sinceramente trae la paz"
    - Romanos 12:10 NVI + Proverbios 10:10 (PDT)

    - Pues toda la ley se puede resumir en una sola frase: «Ama a tus semejantes como a ti mismo». + “Hablar con honestidad es un signo de verdadera amistad"
    - Gálatas 5:14 PDT + Proverbios 24:26 (TPT)

    - - Es el camino al {{ completa_lugar('seis') | raw}} -

    - Moisés era un hombre muy manso, más que todos los hombres que había sobre la tierra. + "El tiempo te demostrará que vale más una crítica sincera que un elogio."
    - Números 12: 3 RVR + Proverbios 28:23 (TLA)

    - Da testimonio a quienes {{ completa_lugar('siete') | raw}} + 3. HABLO LA VERDAD {{ completa_lugar('cuatro') | raw}}

    - Al contrario, honren en su corazón a Cristo, como Señor, y manténganse siempre listos para - defenderse, con mansedumbre y respeto, ante aquellos que les pidan explicarles la esperanza que hay - en ustedes. + "El que habla sin pensar hiere como un cuchillo, pero el que habla sabiamente sabe sanar la herida."
    - 1 Pedro 3:15 RVC + Proverbios 12:18 (TLA)

    -
    -
    -

    - ¿Cómo ser una persona mansa? -

    - - 1- Entiende {{ completa_lugar('ocho') | raw}} para tu vida. - -

    - Pero los mansos heredarán la tierra, Y se recrearán con abundancia de paz. -
    - - Salmo 37:11 RVA - -

    -

    - Obedezcan mis mandamientos y aprendan de mí, pues yo soy paciente y humilde de verdad. Conmigo - podrán descansar. -
    - - Mateo 11:29 TLA - -

    -
    - - 2- Elige la mansedumbre {{ completa_lugar('nueve') | raw}} - -

    - Siempre humildes y amables, pacientes, tolerantes unos con otros en amor. -
    - - Efesios 4:2 NVI - -

    - -

    - ¿Con qué personas seré manso? -

    - - - Con aquellos que hacen algo por mí. -

    - No se ocupen solo de sus propios intereses, sino también procuren interesarse en los demás. + "Las palabras que brindan consuelo son la mejor medicina."
    - Filipenses 2: 4 NTV + Proverbios 15:4 (TLA)

    - - - Con aquellos que están en desacuerdo conmigo. -

    - No hagan nada por rivalidad ni orgullo. Sean humildes y cada uno considere a los demás como más - importantes que sí mismo. + "Una palabra de aliento que da vida puede hacer maravillas para devolver la alegría al corazón"
    - Filipenses 2:3 PDT + Proverbios 12:25 (TPT)

    - - Con aquellos que me han decepcionado. + 4. PIDO LA {{ completa_lugar('cinco') | raw}} CADA DÍA.

    - Hermanos, si alguien es sorprendido en pecado, ustedes que son espirituales deben restaurarlo con - una actitud humilde. Pero cuídese cada uno, porque también puede ser tentado. + "Señor, ponme en la boca un centinela; un guardia a la puerta de mis labios.."
    - Gálatas 6:1 NVI + Salmo. 141:3 (NVI)

    - - - Con aquellos que me han lastimado. -

    - Más bien, sean bondadosos y compasivos unos con otros, y perdónense mutuamente, así como Dios los - perdonó a ustedes en Cristo. + “Ayúdame, Señor, a mantener cerrada mi boca”
    - Efesios 4: 32 NVI + Salmo 41:3 (NBV)

    - - - Con aquellos que me corrigen. -

    - Para aprender, hay que amar la disciplina; es tonto despreciar la corrección. + Jesús: "Las palabras que ustedes dicen provienen del corazón; eso es lo que los contamina."
    - Proverbios 12:1 NTV + Mateo 15:18 (NTV)

    - - 3- Rinde tu vida al {{ completa_lugar('diez') | raw}} -

    - Para esto fueron llamados, porque Cristo sufrió por ustedes, dándoles ejemplo para que sigan sus - pasos. «Él no cometió ningún pecado, ni hubo engaño en su boca». Cuando proferían insultos contra - él, no replicaba con insultos; cuando padecía, no amenazaba, sino que se entregaba a aquel que - juzga con justicia. Él mismo, en su cuerpo, llevó al madero nuestros pecados, para que muramos al - pecado y vivamos para la justicia. Por sus heridas ustedes han sido sanados. + "Deja atrás tu rebelión y procura encontrar un corazón nuevo y un espíritu nuevo."
    - 1° Pedro 2: 21- 24 NVI + Ezequiel 18:31 (NTV)

    - Por eso les digo: dejen que el Espíritu Santo los guíe en la vida. Entonces no se dejarán llevar - por los impulsos de la naturaleza pecaminosa. + "Si afirmas ser religioso pero no controlas tu lengua, te engañas a ti mismo y tu religión no vale + nada."
    - Gálatas 5: 16 NTV + Santiago 1:26 (NTV)