Full Code of escueladigital/EDgrid for AI

master d287bd622887 cached
168 files
994.3 KB
317.2k tokens
5 symbols
1 requests
Download .txt
Showing preview only (1,052K chars total). Download the full file or copy to clipboard to get everything.
Repository: escueladigital/EDgrid
Branch: master
Commit: d287bd622887
Files: 168
Total size: 994.3 KB

Directory structure:
gitextract_bfb6tb_w/

├── .babelrc
├── .editorconfig
├── .gitattributes
├── .gitignore
├── .npmignore
├── LICENSE
├── README.md
├── docs/
│   ├── CNAME
│   ├── assets/
│   │   └── img/
│   │       └── edgrid-poster_tmp23195
│   ├── casos-de-exito/
│   │   └── index.html
│   ├── changelog/
│   │   └── index.html
│   ├── creditos/
│   │   └── index.html
│   ├── css/
│   │   └── styles.css
│   ├── documentacion/
│   │   ├── alineacion.1.html
│   │   ├── alineacion.html
│   │   ├── banner.html
│   │   ├── base.1.html
│   │   ├── base.html
│   │   ├── botones.html
│   │   ├── breakpoints.html
│   │   ├── cards.html
│   │   ├── css.html
│   │   ├── distribucion.html
│   │   ├── estructura.html
│   │   ├── flexbox-helpers.html
│   │   ├── funciones.html
│   │   ├── grids.html
│   │   ├── helpers.html
│   │   ├── imagenes.html
│   │   ├── index.html
│   │   ├── instalacion.html
│   │   ├── layout-css-grid.html
│   │   ├── layout-flexbox.html
│   │   ├── layout.html
│   │   ├── mediaqueries.html
│   │   ├── menu-responsive.html
│   │   ├── menus.html
│   │   ├── modo-dev.html
│   │   ├── offset.html
│   │   ├── personalizar.html
│   │   ├── prototipado-avanzado.html
│   │   ├── prototipado.html
│   │   ├── ratios.html
│   │   ├── sass.html
│   │   ├── skeleton.html
│   │   ├── videos.html
│   │   └── visibilidad.html
│   ├── index.html
│   ├── js/
│   │   ├── scripts-min.js
│   │   └── scripts.js
│   ├── sitemap.xml
│   └── test.html
├── ed-grid.scss
├── gulpfile.babel.js
├── index.js
├── package.json
├── poster.psd
├── src/
│   ├── css/
│   │   └── ed-grid.css
│   ├── data/
│   │   └── casos-de-exito.json
│   ├── js/
│   │   ├── index.js
│   │   └── modules/
│   │       ├── activeMenu.js
│   │       ├── menu.js
│   │       └── scrollBarWIdth.js
│   ├── md/
│   │   ├── alineacion.md
│   │   ├── base.md
│   │   ├── breakpoints.md
│   │   ├── cards.md
│   │   ├── distribucion.md
│   │   ├── docs/
│   │   │   ├── botones.md
│   │   │   ├── flexbox.md
│   │   │   ├── menu.md
│   │   │   ├── offset.md
│   │   │   └── videos.md
│   │   ├── estructura.md
│   │   ├── funciones.md
│   │   ├── grids.md
│   │   ├── helpers.md
│   │   ├── layout-css-grid.md
│   │   ├── layout-flexbox.md
│   │   ├── layout.md
│   │   ├── mediaqueries.md
│   │   ├── menu-responsive.md
│   │   ├── modo-dev.md
│   │   ├── personalizar.md
│   │   ├── prototipado-avanzado.md
│   │   ├── prototipado.md
│   │   ├── ratios.md
│   │   ├── skeleton.md
│   │   └── visibilidad.md
│   ├── pug/
│   │   ├── config/
│   │   │   ├── config.pug
│   │   │   └── template.pug
│   │   ├── includes/
│   │   │   ├── banner.pug
│   │   │   ├── cards.pug
│   │   │   ├── collaborator.pug
│   │   │   ├── docs-menu.pug
│   │   │   ├── feature-item.pug
│   │   │   ├── footer.pug
│   │   │   ├── header.pug
│   │   │   ├── main-banner.pug
│   │   │   └── main-menu.pug
│   │   └── pages/
│   │       ├── casos-de-exito/
│   │       │   └── index.pug
│   │       ├── changelog/
│   │       │   └── index.pug
│   │       ├── creditos/
│   │       │   └── index.pug
│   │       ├── documentacion/
│   │       │   ├── alineacion.pug
│   │       │   ├── banner.pug
│   │       │   ├── base.pug
│   │       │   ├── breakpoints.pug
│   │       │   ├── cards.pug
│   │       │   ├── distribucion.pug
│   │       │   ├── estructura.pug
│   │       │   ├── flexbox-helpers.pug
│   │       │   ├── funciones.pug
│   │       │   ├── grids.pug
│   │       │   ├── helpers.pug
│   │       │   ├── index.pug
│   │       │   ├── instalacion.pug
│   │       │   ├── layout-css-grid.pug
│   │       │   ├── layout-flexbox.pug
│   │       │   ├── layout.pug
│   │       │   ├── mediaqueries.pug
│   │       │   ├── menu-responsive.pug
│   │       │   ├── menus.pug
│   │       │   ├── modo-dev.pug
│   │       │   ├── offset.pug
│   │       │   ├── personalizar.pug
│   │       │   ├── prototipado-avanzado.pug
│   │       │   ├── prototipado.pug
│   │       │   ├── ratios.pug
│   │       │   ├── sass.pug
│   │       │   ├── skeleton.pug
│   │       │   ├── videos.pug
│   │       │   └── visibilidad.pug
│   │       └── index.pug
│   └── scss/
│       ├── ed-grid/
│       │   ├── components/
│       │   │   ├── _alignment.scss
│       │   │   ├── _base.scss
│       │   │   ├── _core-flexbox.scss
│       │   │   ├── _core-grid.scss
│       │   │   ├── _dev.scss
│       │   │   ├── _layout.scss
│       │   │   ├── _media-queries.scss
│       │   │   ├── _prototype.scss
│       │   │   ├── _video.scss
│       │   │   └── _visibility.scss
│       │   ├── helpers/
│       │   │   ├── _functions.scss
│       │   │   └── _mixins.scss
│       │   └── legacy/
│       │       ├── _ed-menu.scss
│       │       ├── _grid.scss
│       │       ├── _legacy.scss
│       │       └── _offset.scss
│       ├── ed-grid-css.scss
│       ├── ed-grid.scss
│       ├── styles.scss
│       └── web-styles/
│           ├── base/
│           │   └── base.scss
│           ├── components/
│           │   ├── _buttons.scss
│           │   ├── _demo.scss
│           │   ├── _main-features.scss
│           │   ├── _menu-responsive.scss
│           │   └── _menus.scss
│           ├── config/
│           │   ├── _functions.scss
│           │   └── _variables.scss
│           ├── hacks/
│           │   └── _hacks.scss
│           ├── layout/
│           │   └── _layout.scss
│           ├── libraries/
│           │   └── _prism.scss
│           └── theme/
│               ├── _banner.scss
│               ├── _footer.scss
│               ├── _icons.scss
│               └── _typography.scss
└── test.html

================================================
FILE CONTENTS
================================================

================================================
FILE: .babelrc
================================================
{
  "presets": ["env"],
  "plugins": ["add-module-exports"]
}


================================================
FILE: .editorconfig
================================================
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# http://editorconfig.org

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
indent_size = 4
trim_trailing_whitespace = false

[node_modules/**.js]
codepaint = false


================================================
FILE: .gitattributes
================================================
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs     diff=csharp

# Standard to msysgit
*.doc	 diff=astextplain
*.DOC	 diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot  diff=astextplain
*.DOT  diff=astextplain
*.pdf  diff=astextplain
*.PDF	 diff=astextplain
*.rtf	 diff=astextplain
*.RTF	 diff=astextplain


================================================
FILE: .gitignore
================================================
# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

# =========================
# Operating System Files
# =========================

# OSX
# =========================

.DS_Store
.AppleDouble
.LSOverride

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
prepros.cfg
.idea
.vscode

node_modules/
npm-debug.log
test/styles.css
js/ed-grid.js.map
js/babel/.tern-port
public



================================================
FILE: .npmignore
================================================
node_modules
npm-debug.log
.DS_Store
.idea
.gitignore
.gitattributes


================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.)  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.

  The precise terms and conditions for copying, distribution and
modification follow.

                    GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as "you".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.

    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.

    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,

    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,

    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.

  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number.  If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

                            NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    {description}
    Copyright (C) {year}  {fullname}

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

    Gnomovision version 69, Copyright (C) year name of author
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James Hacker.

  {signature of Ty Coon}, 1 April 1989
  Ty Coon, President of Vice

This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.


================================================
FILE: README.md
================================================
# EDgrid
![Logo de EDgrid](https://ed-grid.com/assets/img/logo/EDgrid-logo.svg)

EDgrid implementa un sistema de diseño flexible y personalizable para construir layouts y componentes responsive a la velocidad de la luz ⚡

Documentación oficial: https://ed-grid.com/documentacion/instalacion.html

Colaboradores: https://ed-grid.com/creditos/


================================================
FILE: docs/CNAME
================================================
ed-grid.com

================================================
FILE: docs/assets/img/edgrid-poster_tmp23195
================================================


================================================
FILE: docs/casos-de-exito/index.html
================================================
<!DOCTYPE html><html lang="es"><head><title>Casos de éxito</title><meta charset="utf-8"><meta name="viewport" content="initial-scale=1.0, width=device-width"><meta name="description" content="Casos de éxito que se encuentran actualmente en producción y que utilizan la librería de EDgrid."><!-- Estilos--><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700|Open+Sans:700"><link rel="stylesheet" href="/css/styles.css?180113"><link rel="shortcut icon" href="/assets/img/logo/favicon.png"><meta property="og:title" content="Casos de éxito"><meta property="og:type" content="website"><meta property="og:description" content="Casos de éxito que se encuentran actualmente en producción y que utilizan la librería de EDgrid."><meta property="og:url" content="/casos-exito.html"><meta property="og:image" content="/assets/img/logo/edgrid-poster.jpg"><meta property="og:site_name" content="EDteam"><meta property="og:locale" content="es_PE"><meta property="og:locale:alternate" content="es_CO"><meta property="og:locale:alternate" content="es_MX"><meta property="og:locale:alternate" content="es_DO"><meta property="og:locale:alternate" content="es_BO"><meta property="twitter:card" content="summary_large_image"><meta property="twitter:title" content="Casos de éxito"><meta property="twitter:site" content="@EDteamLat"><meta property="twitter:description" content="Casos de éxito que se encuentran actualmente en producción y que utilizan la librería de EDgrid."><meta name="theme-color" content="#007BDF"></head><!-- Body--><body itemscope itemtype="http://schema.org/WebPage"><header class="main-header" itemscope itemtype="http://schema.org/WPHeader"><div class="ed-grid s-grid-5 cols-lg-10"><div class="s-cols-2 s-cross-center" itemscope itemtype="http://schema.org/Organization"><a href="/" itemprop="url"><img class="main-logo" alt="Logotipo de EDgrid" itemprop="logo" src="/assets/img/logo/EDgrid-logo.svg"></a></div><div class="s-cols-3 lg-cols-8 main-menu-container s-cross-center s-main-end"><nav class="main-menu" itemscope itemtype="http://schema.org/SiteNavigationElement" role="navigation" id="main-menu"><ul><li itemprop="url"><a href="/documentacion/instalacion.html" target="" itemprop="name" title="Enlace de Documentación">Documentación</a></li><li itemprop="url"><a href="/casos-de-exito" target="" itemprop="name" title="Enlace de Casos de éxito">Casos de éxito</a></li><li itemprop="url"><a href="/changelog" target="" itemprop="name" title="Enlace de Changelog">Changelog</a></li><li itemprop="url"><a href="/creditos" target="" itemprop="name" title="Enlace de Créditos">Créditos</a></li><li itemprop="url"><a href="https://ed.team" target="&quot;_blank&quot;" itemprop="name" title="Enlace de Ir a EDteam">Ir a EDteam</a></li></ul></nav><div class="main-menu-toggle to-l" id="main-menu-toggle"></div></div></div></header><!-- Banner section--><div class="main-banner background s-py-4 grey-700 l-block img-container grey-700"><div class="ed-grid lg-grid-6"><div class="lg-cols-4 lg-x-2 s-center"><div class="main-banner__data"><div class="t1 s-mb-2"><span class="color white-color">Casos de éxito</span></div><p class="color white-color s-opacity-8 s-mb-0">¿Tienes un sitio en producción que use EDgrid?</p><div class="s-pt-2"><a class="button blue-500" href="https://form.asana.com?hash=31f9f176c441c66d609b556604bcdedd200b3712c944519a869686a6fb11ca4c&amp;id=1189924623721081" target="_blank">⚡ Envíanos tu caso</a></div></div></div></div></div><!-- Main--><div class="l-block"></div><div class="main-section l-big-section"><main class="main-section"><div class="ed-grid lg-grid-3 rows-gap l-section"><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/ed-team-web.jpg"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">EDteam</h2><p class="color color-text-light">Web oficial de EDteam</p><div class="card__body"><p>Plataforma dedicada a la enseñanza de programación, diseño web y todo lo referente al mundo de desarrollo web.</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="https://ed.team/" title="EDteam">Ver página</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/la-canasta.jpg"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Las Canastas</h2><p class="color color-text-light">Restaurant</p><div class="card__body"><p>Restaurant de parrilldas y pollos ubicada en Perú con diversas sucursales al rededor de todo el país.</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="https://lascanastas.com/" title="Las Canastas">Ver página</a></div><div class="s-to-right s-cross-center user-avatar"><div class="photo s-mr-1"><div class="img-container circle"><img src="/assets/img/jose-alvarado.png"/></div></div><a target="_blank" href="https://twitter.com/josealvaradoo">Jose Álvarado</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/caexco.jpg"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Caexco</h2><p class="color color-text-light">Tienda en línea</p><div class="card__body"><p>Empresa dedicada a la comercialización de equipo agrícola, repuestos y accesorios. </p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="http://www.caexcobolivia.com/" title="Caexco">Ver página</a></div><div class="s-to-right s-cross-center user-avatar"><div class="photo s-mr-1"><div class="img-container circle"><img src="/assets/img/beto-quiroga.jpg"/></div></div><a target="_blank" href="https://www.facebook.com/diterterrones">Beto Quiroga</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/importmecardo.jpg"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Importmercado</h2><p class="color color-text-light">Venta de maquinaría metalmecánica</p><div class="card__body"><p>Empresa dedicada a la importación y comercialización de maquinaria metalmecánica y accesorios.</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="http://importmercado.com/" title="Importmercado">Ver página</a></div><div class="s-to-right s-cross-center user-avatar"><div class="photo s-mr-1"><div class="img-container circle"><img src="/assets/img/beto-quiroga.jpg"/></div></div><a target="_blank" href="https://www.facebook.com/diterterrones">Beto Quiroga</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/capilla-cocha.jpg"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Capilla de Cochabamba</h2><p class="color color-text-light">Centro educativo cristiano bilingüe</p><div class="card__body"><p>Unidad Educativa fundamentada en sólidos principios bíblicos con una alta calidad en la formación académica bilingüe.</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="http://colegiocapillacbba.edu.bo/" title="Capilla de Cochabamba">Ver página</a></div><div class="s-to-right s-cross-center user-avatar"><div class="photo s-mr-1"><div class="img-container circle"><img src="/assets/img/beto-quiroga.jpg"/></div></div><a target="_blank" href="https://www.facebook.com/diterterrones">Beto Quiroga</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/aremisse.jpg"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Aremisse Lima</h2><p class="color color-text-light">Transporte corporativo, turístico y personal</p><div class="card__body"><p>Empresa peruana dedicada al transporte de personal, transporte ejecutivo o corporativo y transporte turístico.</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="https://aremisse.com/" title="Aremisse Lima">Ver página</a></div><div class="s-to-right s-cross-center user-avatar"><div class="photo s-mr-1"><div class="img-container circle"><img src="/assets/img/diter-terrones.jpeg"/></div></div><a target="_blank" href="https://www.facebook.com/diterterrones">Diter Terrones</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/wizardgva-web.png"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Wizardgva</h2><p class="color color-text-light">Agencia de soluciones TI</p><div class="card__body"><p>Wizardgva nace del sueño de un joven por brindar soluciones de hardware rápidas y accesibles</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="https://wizardgva.com/" title="Wizardgva">Ver página</a></div><div class="s-to-right s-cross-center user-avatar"><div class="photo s-mr-1"><div class="img-container circle"><img src="/assets/img/wizardgva-user.png"/></div></div><a target="_blank" href="https://www.linkedin.com/in/restrepodanny/">Danny Restrepo</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/alkila-web.png"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Alkila</h2><p class="color color-text-light">Empresa de reta de autos</p><div class="card__body"><p>Alkila es una empresa Peruana dedicada al rubro de alquiler de vehículos.</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="http://alkilarentacar.com" title="Alkila">Ver página</a></div><div class="s-to-right s-cross-center user-avatar"><div class="photo s-mr-1"><div class="img-container circle"><img src="/assets/img/alkila-user.png"/></div></div><a target="_blank" href="https://www.linkedin.com/in/edwingromero/">Edwing Romero</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/gema-web.png"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Agencia Gema</h2><p class="color color-text-light">Agencia de eventos</p><div class="card__body"><p>En Gema, son especialistas en el servicio de banquetes y renta de equipo para todo tipo de eventos</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="http://agenciagema.com/" title="Agencia Gema">Ver página</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/robert-web.png"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Portafolio - Robert</h2><p class="color color-text-light">Portafolio</p><div class="card__body"><p>Esta web es el portfolio de Robert Huamán Cáceres, estudiante en Ingeniería informática y sistemas de la Universidad Nacional Micaela Bastidas de Apurímac - Perú</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="https://pepobj.github.io/dist/" title="Portafolio - Robert">Ver página</a></div><div class="s-to-right s-cross-center user-avatar"><div class="photo s-mr-1"><div class="img-container circle"><img src="/assets/img/robert-user.png"/></div></div><a target="_blank" href="https://www.linkedin.com/in/robert-bj-huaman/">Robert BJ Huamán</a></div></footer></div></div><div class="testimony-card s-column s-border s-radius s-bg-white s-shadow-bottom"><div class="img-container s-ratio-16-9"><img class="s-radius-tl s-radius-tr" src="/assets/img/militaria-web.png"/></div><div class="content s-pxy-2 s-column"><h2 class="t3 s-mb-1">Militaria</h2><p class="color color-text-light">Empresa</p><div class="card__body"><p>Empresa peruana dedicada a la exportación de indumentaria y accesorios para uso militar.</p></div><footer class="card__footer s-cross-center nowrap"><div class="card__btn small s-mr-1"><a class="button small ghost" target="_blank" href="http://militaria.com.pe/" title="Militaria">Ver página</a></div><div class="s-to-right s-cross-center user-avatar"><div class="photo s-mr-1"><div class="img-container circle"><img src="/assets/img/alkila-user.png"/></div></div><a target="_blank" href="https://www.linkedin.com/in/robert-bj-huaman/">Edwing Romero</a></div></footer></div></div></div><div class="ed-grid s-center"><h3>¿Quieres que tu sitio sea parte de esta página?</h3><div><a class="button blue-500" href="https://form.asana.com?hash=31f9f176c441c66d609b556604bcdedd200b3712c944519a869686a6fb11ca4c&amp;id=1189924623721081" target="_blank">⚡ Envíanos tu caso</a></div></div></main></div><!-- Footer--><footer class="main-footer" role="contentinfo" itemscope itemtype="http://schema.org/WPFooter"><div class="ed-container main-footer--content"><div class="ed-item l-50 s-to-center s-center"><p class="smaller s-mb-1">EDgrid es una librería Sass/Css para crear diseños web responsive y mobile first.<a class="icon-github space" href="https://github.com/escueladigital/EDgrid" target="_blank" title="EDgrid en EDgrid"></a><a class="icon-docs space" href="documentacion" target="_blank" title="Documentación de EDgrid"></a></p><p class="smaller s-mb-1">EDgrid es una marca de <a target="_blank" href="https://ed.team">EDteam</a>, ambas fundadas por <a target="_blank" href="https://alvaro.ceo">Álvaro Felipe</a>.</p><p class="smaller l-block">2015 - 2020</p><div class="s-cross-center s-main-center"><a class="s-mr-3" href="https://github.com/escueladigital/EDgrid" target="_blank"><img src="/assets/img/icons/github.svg" width="20" height="20"></a><a href="https://twitter.com/EDgridcss" target="_blank"><img src="/assets/img/icons/twitter.svg" width="20" height="20"></a></div></div></div></footer><script src="/js/scripts.js"></script></body></html>

================================================
FILE: docs/changelog/index.html
================================================
<!DOCTYPE html><html lang="es"><head><title>EDgrid | Changelog</title><meta charset="utf-8"><meta name="viewport" content="initial-scale=1.0, width=device-width"><meta name="description" content="Registro de cambios que ha tenido la librería EDgrid."><!-- Estilos--><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700|Open+Sans:700"><link rel="stylesheet" href="/css/styles.css?180113"><link rel="shortcut icon" href="/assets/img/logo/favicon.png"><meta property="og:title" content="EDgrid | Changelog"><meta property="og:type" content="website"><meta property="og:description" content="Registro de cambios que ha tenido la librería EDgrid."><meta property="og:url" content="/funciones.html"><meta property="og:image" content="/assets/img/logo/edgrid-poster.jpg"><meta property="og:site_name" content="EDteam"><meta property="og:locale" content="es_PE"><meta property="og:locale:alternate" content="es_CO"><meta property="og:locale:alternate" content="es_MX"><meta property="og:locale:alternate" content="es_DO"><meta property="og:locale:alternate" content="es_BO"><meta property="twitter:card" content="summary_large_image"><meta property="twitter:title" content="EDgrid | Changelog"><meta property="twitter:site" content="@EDteamLat"><meta property="twitter:description" content="Registro de cambios que ha tenido la librería EDgrid."><meta name="theme-color" content="#007BDF"></head><!-- Body--><body itemscope itemtype="http://schema.org/WebPage"><header class="main-header" itemscope itemtype="http://schema.org/WPHeader"><div class="ed-grid s-grid-5 cols-lg-10"><div class="s-cols-2 s-cross-center" itemscope itemtype="http://schema.org/Organization"><a href="/" itemprop="url"><img class="main-logo" alt="Logotipo de EDgrid" itemprop="logo" src="/assets/img/logo/EDgrid-logo.svg"></a></div><div class="s-cols-3 lg-cols-8 main-menu-container s-cross-center s-main-end"><nav class="main-menu" itemscope itemtype="http://schema.org/SiteNavigationElement" role="navigation" id="main-menu"><ul><li itemprop="url"><a href="/documentacion/instalacion.html" target="" itemprop="name" title="Enlace de Documentación">Documentación</a></li><li itemprop="url"><a href="/casos-de-exito" target="" itemprop="name" title="Enlace de Casos de éxito">Casos de éxito</a></li><li itemprop="url"><a href="/changelog" target="" itemprop="name" title="Enlace de Changelog">Changelog</a></li><li itemprop="url"><a href="/creditos" target="" itemprop="name" title="Enlace de Créditos">Créditos</a></li><li itemprop="url"><a href="https://ed.team" target="&quot;_blank&quot;" itemprop="name" title="Enlace de Ir a EDteam">Ir a EDteam</a></li></ul></nav><div class="main-menu-toggle to-l" id="main-menu-toggle"></div></div></div></header><!-- Banner section--><div class="main-banner background s-py-4 grey-700 l-block img-container grey-700"><div class="ed-grid lg-grid-6"><div class="lg-cols-4 lg-x-2 s-center"><div class="main-banner__data"><div class="t1 s-mb-2"><span class="color white-color">Changelog</span></div><p class="color white-color s-opacity-8 s-mb-0">Lanzamientos importantes de EDgrid</p></div></div></div></div><!-- Main--><div class="l-block"></div><div class="main-section l-big-section"><div class="ed-grid lg-grid-6"><div class="lg-cols-4 lg-x-2"><ul class="data-list"><li class="s-column s-cross-start"><div class="container s-column"><div class="s-main-justify"><span class="s-mb-1 strong">Actual (v 3.0)</span><a class="button small icon-download space" href="https://github.com/escueladigital/EDgrid/archive/master.zip" itemprop="url" target="_blank">Descargar versión</a></div><ul class="small s-pl-0"><li>- CSS Grid para crear layouts</li><li>- Versión desarrollo para CSS grid</li><li>- Modo dev en hover para CSS grid y flexbox</li><li>- Correcciones en clases de alineación</li><li>- Se eliminó el componente Menu (pasó a ser legacy)</li><li>- Corrige error en los .ed-container con la clase .full</li><li>- Prototipado y prototipado avanzado</li><li>- Sección de componentes creados con EDgrid</li><li>- CDN para a versión CSS</li><li>- Modifica estructura de archivos del core principal</li><li>- Mejoras en código en general</li></ul></div></li><li><p><span class="strong">v2.1.6 (Mayo 2017)</span><br><span class="small">Agrega CSS grid y resuelve varios bugs menores.</span></p><a class="button small icon-download space" href="https://github.com/escueladigital/EDgrid/archive/v2.0.2.zip" itemprop="url" target="_blank">Descargar versión</a></li><li><p><span class="strong">v2.0 (3 dic 2016)</span><br><span class="small">Cambia su enfoque al de librería (pretendía ser un framework) en versión Sass y CSS. Permite usar mixins que compilano solo el código necesario, además de activar y desactivar componentes.</span></p><a class="button small icon-download space" href="https://github.com/escueladigital/EDgrid/releases/tag/v2.0.0" itemprop="url" target="_blank">Descargar versión</a></li><li><p><span class="strong">v1.2 (26 sep 2015)</span><br><span class="small">Se cambia floats por flexbox. Se usan las clases <code>.ed-container</code> y <code>.ed-item</code> en remplazo de <code>.grupo</code> y <code>.caja</code></span></p><a class="button small icon-download space" href="https://github.com/escueladigital/EDgrid/releases/tag/1.2" itemprop="url" target="_blank">Descargar versión</a></li><li><p><span class="strong">v1.0 (19 abr 2015)</span><br><span class="small">Uso de floats, clases <code>.grupo</code> y <code>.caja</code></span></p><a class="button small icon-download space" href="https://github.com/escueladigital/EDgrid/releases/tag/v1.0" itemprop="url" target="_blank">Descargar versión</a></li></ul></div></div></div><!-- Footer--><footer class="main-footer" role="contentinfo" itemscope itemtype="http://schema.org/WPFooter"><div class="ed-container main-footer--content"><div class="ed-item l-50 s-to-center s-center"><p class="smaller s-mb-1">EDgrid es una librería Sass/Css para crear diseños web responsive y mobile first.<a class="icon-github space" href="https://github.com/escueladigital/EDgrid" target="_blank" title="EDgrid en EDgrid"></a><a class="icon-docs space" href="documentacion" target="_blank" title="Documentación de EDgrid"></a></p><p class="smaller s-mb-1">EDgrid es una marca de <a target="_blank" href="https://ed.team">EDteam</a>, ambas fundadas por <a target="_blank" href="https://alvaro.ceo">Álvaro Felipe</a>.</p><p class="smaller l-block">2015 - 2020</p><div class="s-cross-center s-main-center"><a class="s-mr-3" href="https://github.com/escueladigital/EDgrid" target="_blank"><img src="/assets/img/icons/github.svg" width="20" height="20"></a><a href="https://twitter.com/EDgridcss" target="_blank"><img src="/assets/img/icons/twitter.svg" width="20" height="20"></a></div></div></div></footer><script src="/js/scripts.js"></script></body></html>

================================================
FILE: docs/creditos/index.html
================================================
<!DOCTYPE html><html lang="es"><head><title>EDgrid | Créditos</title><meta charset="utf-8"><meta name="viewport" content="initial-scale=1.0, width=device-width"><meta name="description" content="Créditos de quien realizo la librería, colaboro desarrollando el portal."><!-- Estilos--><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700|Open+Sans:700"><link rel="stylesheet" href="/css/styles.css?180113"><link rel="shortcut icon" href="/assets/img/logo/favicon.png"><meta property="og:title" content="EDgrid | Créditos"><meta property="og:type" content="website"><meta property="og:description" content="Créditos de quien realizo la librería, colaboro desarrollando el portal."><meta property="og:url" content="/creditos.html"><meta property="og:image" content="/assets/img/logo/edgrid-poster.jpg"><meta property="og:site_name" content="EDteam"><meta property="og:locale" content="es_PE"><meta property="og:locale:alternate" content="es_CO"><meta property="og:locale:alternate" content="es_MX"><meta property="og:locale:alternate" content="es_DO"><meta property="og:locale:alternate" content="es_BO"><meta property="twitter:card" content="summary_large_image"><meta property="twitter:title" content="EDgrid | Créditos"><meta property="twitter:site" content="@EDteamLat"><meta property="twitter:description" content="Créditos de quien realizo la librería, colaboro desarrollando el portal."><meta name="theme-color" content="#007BDF"></head><!-- Body--><body itemscope itemtype="http://schema.org/WebPage"><header class="main-header" itemscope itemtype="http://schema.org/WPHeader"><div class="ed-grid s-grid-5 cols-lg-10"><div class="s-cols-2 s-cross-center" itemscope itemtype="http://schema.org/Organization"><a href="/" itemprop="url"><img class="main-logo" alt="Logotipo de EDgrid" itemprop="logo" src="/assets/img/logo/EDgrid-logo.svg"></a></div><div class="s-cols-3 lg-cols-8 main-menu-container s-cross-center s-main-end"><nav class="main-menu" itemscope itemtype="http://schema.org/SiteNavigationElement" role="navigation" id="main-menu"><ul><li itemprop="url"><a href="/documentacion/instalacion.html" target="" itemprop="name" title="Enlace de Documentación">Documentación</a></li><li itemprop="url"><a href="/casos-de-exito" target="" itemprop="name" title="Enlace de Casos de éxito">Casos de éxito</a></li><li itemprop="url"><a href="/changelog" target="" itemprop="name" title="Enlace de Changelog">Changelog</a></li><li itemprop="url"><a href="/creditos" target="" itemprop="name" title="Enlace de Créditos">Créditos</a></li><li itemprop="url"><a href="https://ed.team" target="&quot;_blank&quot;" itemprop="name" title="Enlace de Ir a EDteam">Ir a EDteam</a></li></ul></nav><div class="main-menu-toggle to-l" id="main-menu-toggle"></div></div></div></header><!-- Banner section--><div class="main-banner background s-py-4 grey-700 l-block img-container dark-color"><div class="ed-grid lg-grid-6"><div class="lg-cols-4 lg-x-2 s-center"><div class="main-banner__data"><div class="t1 s-mb-2"><span class="color white-color">Créditos</span></div><p class="color white-color s-opacity-8 s-mb-0">Gente que ha ayudado a construir la librería.</p><p class="s-opacity-8 s-mb-0">¿Quieres ser uno de ellos?</p><div class="s-pt-2"><a class="button blue-500" href="https://github.com/escueladigital/EDgrid" target="_blank">😼 Colabora en EDgrid</a></div></div></div></div></div><!-- Main--><div class="l-block"></div><div class="main-section l-big-section"><div class="ed-grid"><div class="s-to-center s-65"><main class="ed-grid m-grid-2 lg-grid-3 row-gap l-section"><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://www.linkedin.com/in/alvarofelipe/" target="_blank"><div class="img-container circle"><img src="/assets/img/people/alvaro-felipe.jpg"/></div></a><p class="t4 s-mb-1 s-center">Álvaro Felipe</p><p class="color blue-500 s-mb-0 smaller font-semibold">CEO de EDteam</p></article><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://twitter.com/Jopzik" target="_blank"><div class="img-container circle"><img src="/assets/img/people/alexis-mora.jpg"/></div></a><p class="t4 s-mb-1 s-center">Alexis Mora Angulo</p><p class="color blue-500 s-mb-0 smaller font-semibold">UX Designer</p></article><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://github.com/carloscuatin" target="_blank"><div class="img-container circle"><img src="/assets/img/people/carlos-cuatin.jpg"/></div></a><p class="t4 s-mb-1 s-center">Carlos Cuatin</p><p class="color blue-500 s-mb-0 smaller font-semibold">Frontend Developer</p></article><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://github.com/aeroxmotion" target="_blank"><div class="img-container circle"><img src="/assets/img/people/camilo-rodirguez.png"/></div></a><p class="t4 s-mb-1 s-center">Camilo Rodríguez</p><p class="color blue-500 s-mb-0 smaller font-semibold">Web Developer</p></article><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://github.com/danielromeroauk" target="_blank"><div class="img-container circle"><img src="/assets/img/people/daniel-romero.jpg"/></div></a><p class="t4 s-mb-1 s-center">Daniel Romero</p><p class="color blue-500 s-mb-0 smaller font-semibold">Backend Developer</p></article><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://github.com/francocorreasosa" target="_blank"><div class="img-container circle"><img src="/assets/img/people/franco-correa.jpg"/></div></a><p class="t4 s-mb-1 s-center">Franco Correa</p><p class="color blue-500 s-mb-0 smaller font-semibold">Web Developer</p></article><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://github.com/Revod" target="_blank"><div class="img-container circle"><img src="/assets/img/people/ernesto-graterol.png"/></div></a><p class="t4 s-mb-1 s-center">Ernesto Graterol</p><p class="color blue-500 s-mb-0 smaller font-semibold">UI Designer</p></article><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://github.com/daniel7byte" target="_blank"><div class="img-container circle"><img src="/assets/img/people/jose-daniel.png"/></div></a><p class="t4 s-mb-1 s-center">Jose Daniel Posso Garcia</p><p class="color blue-500 s-mb-0 smaller font-semibold">Developer</p></article><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://www.linkedin.com/in/alex-andrei/" target="_blank"><div class="img-container circle"><img src="/assets/img/people/alex-andrei.jpg"/></div></a><p class="t4 s-mb-1 s-center">Alex Andrei</p><p class="color blue-500 s-mb-0 smaller font-semibold">Frontend Developer</p></article><article class="s-mb-0 s-column s-cross-center s-pxy-2"><a class="s-70 s-to-center s-mb-2" href="https://github.com/AKUmajinn" target="_blank"><div class="img-container circle"><img src="/assets/img/people/johelyn.jpg"/></div></a><p class="t4 s-mb-1 s-center">Johelyn Cordovao</p><p class="color blue-500 s-mb-0 smaller font-semibold">Web Designer</p></article></main></div></div><div class="ed-grid s-center"><h3>¿Quieres ser parte de esta página?</h3><div><a class="button blue-500" href="https://github.com/escueladigital/EDgrid" target="_blank">😼 Colabora en EDgrid</a></div></div></div><!-- Footer--><footer class="main-footer" role="contentinfo" itemscope itemtype="http://schema.org/WPFooter"><div class="ed-container main-footer--content"><div class="ed-item l-50 s-to-center s-center"><p class="smaller s-mb-1">EDgrid es una librería Sass/Css para crear diseños web responsive y mobile first.<a class="icon-github space" href="https://github.com/escueladigital/EDgrid" target="_blank" title="EDgrid en EDgrid"></a><a class="icon-docs space" href="documentacion" target="_blank" title="Documentación de EDgrid"></a></p><p class="smaller s-mb-1">EDgrid es una marca de <a target="_blank" href="https://ed.team">EDteam</a>, ambas fundadas por <a target="_blank" href="https://alvaro.ceo">Álvaro Felipe</a>.</p><p class="smaller l-block">2015 - 2020</p><div class="s-cross-center s-main-center"><a class="s-mr-3" href="https://github.com/escueladigital/EDgrid" target="_blank"><img src="/assets/img/icons/github.svg" width="20" height="20"></a><a href="https://twitter.com/EDgridcss" target="_blank"><img src="/assets/img/icons/twitter.svg" width="20" height="20"></a></div></div></div></footer><script src="/js/scripts.js"></script></body></html>

================================================
FILE: docs/css/styles.css
================================================
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@700;800&display=swap");*,*:before,*:after{box-sizing:border-box}body{margin:0;font-family:sans-serif}img{max-width:100%;height:auto}a{text-decoration:none}a:hover{text-decoration:underline}body.dev:before,body.desarrollo:before,body.dev .ed-container:before,body.dev .ed-grid:before,body.desarrollo .ed-container:before,body.desarrollo .ed-grid:before,body.dev .ed-item:before,body.dev .ed-grid>*:before,body.desarrollo .ed-item:before,body.desarrollo .ed-grid>*:before,body.dev-hover .ed-container:hover:before,body.dev-hover .ed-grid:hover:before,body.desarrollo-hover .ed-container:hover:before,body.desarrollo-hover .ed-grid:hover:before,body.dev-hover .ed-item:hover:before,body.dev-hover .ed-grid>*:hover:before,body.desarrollo-hover .ed-item:hover:before,body.desarrollo-hover .ed-grid>*:hover:before,.dev-demo:before,.dev-demo-hover:before,.dev-demo .ed-container:before,.dev-demo .ed-grid:before,.dev-demo .ed-item:before,.dev-demo .ed-grid>*:before,.dev-demo-hover .ed-container:hover:before,.dev-demo-hover .ed-grid:hover:before,.dev-demo-hover .ed-item:hover:before,.dev-demo-hover .ed-grid>*:hover:before{content:attr(class);font-style:italic;font-size:.75rem;font-weight:normal;z-index:1;right:0;position:absolute;display:table;width:100%;padding:0 .3125em;height:1.25rem;line-height:1.25rem}body.dev,body.desarrollo{margin:0 !important;position:relative;top:66px}body.dev:before,body.desarrollo:before{position:fixed;background:steelblue;color:#FFF;font-size:.875rem;text-align:center;line-height:36px;height:36px;top:0}body.dev:before,body.desarrollo:before{content:"ed-grid: size s, from 0 (ed-containers: red, ed-items: blue, yellow)"}@media screen and (min-width: 640px){body.dev:before,body.desarrollo:before{content:"ed-grid: size m, from 640px (ed-containers: red, ed-items: blue, yellow)"}}@media screen and (min-width: 1024px){body.dev:before,body.desarrollo:before{content:"ed-grid: size l, from 1024px (ed-containers: red, ed-items: blue, yellow)"}}@media screen and (min-width: 1024px){body.dev:before,body.desarrollo:before{content:"ed-grid: size lg, from 1024px (ed-containers: red, ed-items: blue, yellow)"}}@media screen and (min-width: 1440px){body.dev:before,body.desarrollo:before{content:"ed-grid: size xl, from 1440px (ed-containers: red, ed-items: blue, yellow)"}}body.dev .ed-container,body.dev .ed-grid,body.desarrollo .ed-container,body.desarrollo .ed-grid{padding-top:1.25rem;margin-bottom:10px;outline:1px solid tomato;position:relative}body.dev .ed-container .ed-container,body.dev .ed-container .ed-grid,body.dev .ed-grid .ed-container,body.dev .ed-grid .ed-grid,body.desarrollo .ed-container .ed-container,body.desarrollo .ed-container .ed-grid,body.desarrollo .ed-grid .ed-container,body.desarrollo .ed-grid .ed-grid{margin-bottom:0}body.dev .ed-container:before,body.dev .ed-grid:before,body.desarrollo .ed-container:before,body.desarrollo .ed-grid:before{top:0;background:rgba(255,99,71,0.3);color:tomato}body.dev .ed-item,body.dev .ed-grid>*,body.desarrollo .ed-item,body.desarrollo .ed-grid>*{position:relative;padding-bottom:1.25rem;background-color:rgba(70,130,180,0.1);outline:1px solid #4682b4;background-clip:content-box}body.dev .ed-item:before,body.dev .ed-grid>*:before,body.desarrollo .ed-item:before,body.desarrollo .ed-grid>*:before{background:rgba(70,130,180,0.8);color:#FFF;bottom:0}body.dev-hover .ed-container:hover,body.dev-hover .ed-grid:hover,body.desarrollo-hover .ed-container:hover,body.desarrollo-hover .ed-grid:hover{padding-top:1.25rem;margin-bottom:10px;outline:1px solid tomato;position:relative}body.dev-hover .ed-container:hover .ed-container,body.dev-hover .ed-container:hover .ed-grid,body.dev-hover .ed-grid:hover .ed-container,body.dev-hover .ed-grid:hover .ed-grid,body.desarrollo-hover .ed-container:hover .ed-container,body.desarrollo-hover .ed-container:hover .ed-grid,body.desarrollo-hover .ed-grid:hover .ed-container,body.desarrollo-hover .ed-grid:hover .ed-grid{margin-bottom:0}body.dev-hover .ed-container:hover:before,body.dev-hover .ed-grid:hover:before,body.desarrollo-hover .ed-container:hover:before,body.desarrollo-hover .ed-grid:hover:before{top:0;background:rgba(255,99,71,0.3);color:tomato}body.dev-hover .ed-item:hover,body.dev-hover .ed-grid>*:hover,body.desarrollo-hover .ed-item:hover,body.desarrollo-hover .ed-grid>*:hover{position:relative;padding-bottom:1.25rem;background-color:rgba(70,130,180,0.1);outline:1px solid #4682b4;background-clip:content-box}body.dev-hover .ed-item:hover:before,body.dev-hover .ed-grid>*:hover:before,body.desarrollo-hover .ed-item:hover:before,body.desarrollo-hover .ed-grid>*:hover:before{background:rgba(70,130,180,0.8);color:#FFF;bottom:0}.ed-container{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:var(--max-width);margin-left:auto;margin-right:auto;width:100%}.ed-item{margin:0;padding-left:1rem;padding-right:1rem}.ed-container.full{max-width:100%}.ed-item{width:100%}.ed-item.ed-container{padding-left:0;padding-right:0}.s-5,.ed-item.s-5{width:5%}.s-10,.ed-item.s-10{width:10%}.s-15,.ed-item.s-15{width:15%}.s-20,.ed-item.s-20{width:20%}.s-25,.ed-item.s-25{width:25%}.s-30,.ed-item.s-30{width:30%}.s-35,.ed-item.s-35{width:35%}.s-40,.ed-item.s-40{width:40%}.s-45,.ed-item.s-45{width:45%}.s-50,.ed-item.s-50{width:50%}.s-55,.ed-item.s-55{width:55%}.s-60,.ed-item.s-60{width:60%}.s-65,.ed-item.s-65{width:65%}.s-70,.ed-item.s-70{width:70%}.s-75,.ed-item.s-75{width:75%}.s-80,.ed-item.s-80{width:80%}.s-85,.ed-item.s-85{width:85%}.s-90,.ed-item.s-90{width:90%}.s-95,.ed-item.s-95{width:95%}.s-100,.ed-item.s-100{width:100%}.s-1-3,.ed-item.s-1-3{width:33.33333%}.s-2-3,.ed-item.s-2-3{width:66.66667%}.s-3-3,.ed-item.s-3-3{width:100%}.s-1-6,.ed-item.s-1-6{width:16.66667%}.s-2-6,.ed-item.s-2-6{width:33.33333%}.s-3-6,.ed-item.s-3-6{width:50%}.s-4-6,.ed-item.s-4-6{width:66.66667%}.s-5-6,.ed-item.s-5-6{width:83.33333%}.s-6-6,.ed-item.s-6-6{width:100%}@media screen and (min-width: 640px){.m-5,.ed-item.m-5{width:5%}.m-10,.ed-item.m-10{width:10%}.m-15,.ed-item.m-15{width:15%}.m-20,.ed-item.m-20{width:20%}.m-25,.ed-item.m-25{width:25%}.m-30,.ed-item.m-30{width:30%}.m-35,.ed-item.m-35{width:35%}.m-40,.ed-item.m-40{width:40%}.m-45,.ed-item.m-45{width:45%}.m-50,.ed-item.m-50{width:50%}.m-55,.ed-item.m-55{width:55%}.m-60,.ed-item.m-60{width:60%}.m-65,.ed-item.m-65{width:65%}.m-70,.ed-item.m-70{width:70%}.m-75,.ed-item.m-75{width:75%}.m-80,.ed-item.m-80{width:80%}.m-85,.ed-item.m-85{width:85%}.m-90,.ed-item.m-90{width:90%}.m-95,.ed-item.m-95{width:95%}.m-100,.ed-item.m-100{width:100%}.m-1-3,.ed-item.m-1-3{width:33.33333%}.m-2-3,.ed-item.m-2-3{width:66.66667%}.m-3-3,.ed-item.m-3-3{width:100%}.m-1-6,.ed-item.m-1-6{width:16.66667%}.m-2-6,.ed-item.m-2-6{width:33.33333%}.m-3-6,.ed-item.m-3-6{width:50%}.m-4-6,.ed-item.m-4-6{width:66.66667%}.m-5-6,.ed-item.m-5-6{width:83.33333%}.m-6-6,.ed-item.m-6-6{width:100%}}@media screen and (min-width: 1024px){.l-5,.ed-item.l-5{width:5%}.l-10,.ed-item.l-10{width:10%}.l-15,.ed-item.l-15{width:15%}.l-20,.ed-item.l-20{width:20%}.l-25,.ed-item.l-25{width:25%}.l-30,.ed-item.l-30{width:30%}.l-35,.ed-item.l-35{width:35%}.l-40,.ed-item.l-40{width:40%}.l-45,.ed-item.l-45{width:45%}.l-50,.ed-item.l-50{width:50%}.l-55,.ed-item.l-55{width:55%}.l-60,.ed-item.l-60{width:60%}.l-65,.ed-item.l-65{width:65%}.l-70,.ed-item.l-70{width:70%}.l-75,.ed-item.l-75{width:75%}.l-80,.ed-item.l-80{width:80%}.l-85,.ed-item.l-85{width:85%}.l-90,.ed-item.l-90{width:90%}.l-95,.ed-item.l-95{width:95%}.l-100,.ed-item.l-100{width:100%}.l-1-3,.ed-item.l-1-3{width:33.33333%}.l-2-3,.ed-item.l-2-3{width:66.66667%}.l-3-3,.ed-item.l-3-3{width:100%}.l-1-6,.ed-item.l-1-6{width:16.66667%}.l-2-6,.ed-item.l-2-6{width:33.33333%}.l-3-6,.ed-item.l-3-6{width:50%}.l-4-6,.ed-item.l-4-6{width:66.66667%}.l-5-6,.ed-item.l-5-6{width:83.33333%}.l-6-6,.ed-item.l-6-6{width:100%}}@media screen and (min-width: 1024px){.lg-5,.ed-item.lg-5{width:5%}.lg-10,.ed-item.lg-10{width:10%}.lg-15,.ed-item.lg-15{width:15%}.lg-20,.ed-item.lg-20{width:20%}.lg-25,.ed-item.lg-25{width:25%}.lg-30,.ed-item.lg-30{width:30%}.lg-35,.ed-item.lg-35{width:35%}.lg-40,.ed-item.lg-40{width:40%}.lg-45,.ed-item.lg-45{width:45%}.lg-50,.ed-item.lg-50{width:50%}.lg-55,.ed-item.lg-55{width:55%}.lg-60,.ed-item.lg-60{width:60%}.lg-65,.ed-item.lg-65{width:65%}.lg-70,.ed-item.lg-70{width:70%}.lg-75,.ed-item.lg-75{width:75%}.lg-80,.ed-item.lg-80{width:80%}.lg-85,.ed-item.lg-85{width:85%}.lg-90,.ed-item.lg-90{width:90%}.lg-95,.ed-item.lg-95{width:95%}.lg-100,.ed-item.lg-100{width:100%}.lg-1-3,.ed-item.lg-1-3{width:33.33333%}.lg-2-3,.ed-item.lg-2-3{width:66.66667%}.lg-3-3,.ed-item.lg-3-3{width:100%}.lg-1-6,.ed-item.lg-1-6{width:16.66667%}.lg-2-6,.ed-item.lg-2-6{width:33.33333%}.lg-3-6,.ed-item.lg-3-6{width:50%}.lg-4-6,.ed-item.lg-4-6{width:66.66667%}.lg-5-6,.ed-item.lg-5-6{width:83.33333%}.lg-6-6,.ed-item.lg-6-6{width:100%}}@media screen and (min-width: 1440px){.xl-5,.ed-item.xl-5{width:5%}.xl-10,.ed-item.xl-10{width:10%}.xl-15,.ed-item.xl-15{width:15%}.xl-20,.ed-item.xl-20{width:20%}.xl-25,.ed-item.xl-25{width:25%}.xl-30,.ed-item.xl-30{width:30%}.xl-35,.ed-item.xl-35{width:35%}.xl-40,.ed-item.xl-40{width:40%}.xl-45,.ed-item.xl-45{width:45%}.xl-50,.ed-item.xl-50{width:50%}.xl-55,.ed-item.xl-55{width:55%}.xl-60,.ed-item.xl-60{width:60%}.xl-65,.ed-item.xl-65{width:65%}.xl-70,.ed-item.xl-70{width:70%}.xl-75,.ed-item.xl-75{width:75%}.xl-80,.ed-item.xl-80{width:80%}.xl-85,.ed-item.xl-85{width:85%}.xl-90,.ed-item.xl-90{width:90%}.xl-95,.ed-item.xl-95{width:95%}.xl-100,.ed-item.xl-100{width:100%}.xl-1-3,.ed-item.xl-1-3{width:33.33333%}.xl-2-3,.ed-item.xl-2-3{width:66.66667%}.xl-3-3,.ed-item.xl-3-3{width:100%}.xl-1-6,.ed-item.xl-1-6{width:16.66667%}.xl-2-6,.ed-item.xl-2-6{width:33.33333%}.xl-3-6,.ed-item.xl-3-6{width:50%}.xl-4-6,.ed-item.xl-4-6{width:66.66667%}.xl-5-6,.ed-item.xl-5-6{width:83.33333%}.xl-6-6,.ed-item.xl-6-6{width:100%}}.ed-grid.s-gap-0{--gap:0rem}@media screen and (min-width: 640px){.ed-grid.m-gap-0{--gap:0rem}}@media screen and (min-width: 1024px){.ed-grid.l-gap-0{--gap:0rem}}@media screen and (min-width: 1024px){.ed-grid.lg-gap-0{--gap:0rem}}@media screen and (min-width: 1440px){.ed-grid.xl-gap-0{--gap:0rem}}.ed-grid.s-gap-1{--gap:.5rem}@media screen and (min-width: 640px){.ed-grid.m-gap-1{--gap:.5rem}}@media screen and (min-width: 1024px){.ed-grid.l-gap-1{--gap:.5rem}}@media screen and (min-width: 1024px){.ed-grid.lg-gap-1{--gap:.5rem}}@media screen and (min-width: 1440px){.ed-grid.xl-gap-1{--gap:.5rem}}.ed-grid.s-gap-2{--gap:1rem}@media screen and (min-width: 640px){.ed-grid.m-gap-2{--gap:1rem}}@media screen and (min-width: 1024px){.ed-grid.l-gap-2{--gap:1rem}}@media screen and (min-width: 1024px){.ed-grid.lg-gap-2{--gap:1rem}}@media screen and (min-width: 1440px){.ed-grid.xl-gap-2{--gap:1rem}}.ed-grid.s-gap-3{--gap:1.5rem}@media screen and (min-width: 640px){.ed-grid.m-gap-3{--gap:1.5rem}}@media screen and (min-width: 1024px){.ed-grid.l-gap-3{--gap:1.5rem}}@media screen and (min-width: 1024px){.ed-grid.lg-gap-3{--gap:1.5rem}}@media screen and (min-width: 1440px){.ed-grid.xl-gap-3{--gap:1.5rem}}.ed-grid.s-gap-4{--gap:2rem}@media screen and (min-width: 640px){.ed-grid.m-gap-4{--gap:2rem}}@media screen and (min-width: 1024px){.ed-grid.l-gap-4{--gap:2rem}}@media screen and (min-width: 1024px){.ed-grid.lg-gap-4{--gap:2rem}}@media screen and (min-width: 1440px){.ed-grid.xl-gap-4{--gap:2rem}}.ed-grid{display:-ms-grid;display:grid;-ms-grid-columns:100%;grid-template-columns:100%;column-gap:var(--gap);width:calc(100% - 2rem);margin-left:1rem;margin-right:1rem;max-width:var(--max-width)}.ed-grid.gap-0{--gap: 0rem}.ed-grid.gap-1{--gap: .5rem}.ed-grid.gap-2{--gap: 1rem}.ed-grid.gap-3{--gap: 1.5rem}.ed-grid.gap-4{--gap: 2rem}@media screen and (min-width: 1200px){.ed-grid{width:100%;margin-left:auto;margin-right:auto}}.ed-grid.row-gap,.ed-grid.rows-gap{row-gap:var(--gap)}.ed-grid .ed-grid,.ed-grid.full{width:100%;max-width:100%;margin-right:0;margin-left:0}.ed-grid .ed-grid.s-5,.ed-grid .ed-grid .ed-grid.s-5{width:5%}.ed-grid .ed-grid.s-10,.ed-grid .ed-grid .ed-grid.s-10{width:10%}.ed-grid .ed-grid.s-15,.ed-grid .ed-grid .ed-grid.s-15{width:15%}.ed-grid .ed-grid.s-20,.ed-grid .ed-grid .ed-grid.s-20{width:20%}.ed-grid .ed-grid.s-25,.ed-grid .ed-grid .ed-grid.s-25{width:25%}.ed-grid .ed-grid.s-30,.ed-grid .ed-grid .ed-grid.s-30{width:30%}.ed-grid .ed-grid.s-35,.ed-grid .ed-grid .ed-grid.s-35{width:35%}.ed-grid .ed-grid.s-40,.ed-grid .ed-grid .ed-grid.s-40{width:40%}.ed-grid .ed-grid.s-45,.ed-grid .ed-grid .ed-grid.s-45{width:45%}.ed-grid .ed-grid.s-50,.ed-grid .ed-grid .ed-grid.s-50{width:50%}.ed-grid .ed-grid.s-55,.ed-grid .ed-grid .ed-grid.s-55{width:55%}.ed-grid .ed-grid.s-60,.ed-grid .ed-grid .ed-grid.s-60{width:60%}.ed-grid .ed-grid.s-65,.ed-grid .ed-grid .ed-grid.s-65{width:65%}.ed-grid .ed-grid.s-70,.ed-grid .ed-grid .ed-grid.s-70{width:70%}.ed-grid .ed-grid.s-75,.ed-grid .ed-grid .ed-grid.s-75{width:75%}.ed-grid .ed-grid.s-80,.ed-grid .ed-grid .ed-grid.s-80{width:80%}.ed-grid .ed-grid.s-85,.ed-grid .ed-grid .ed-grid.s-85{width:85%}.ed-grid .ed-grid.s-90,.ed-grid .ed-grid .ed-grid.s-90{width:90%}.ed-grid .ed-grid.s-95,.ed-grid .ed-grid .ed-grid.s-95{width:95%}.ed-grid .ed-grid.s-100,.ed-grid .ed-grid .ed-grid.s-100{width:100%}.ed-grid .ed-grid.s-to-center,.ed-grid .ed-grid .ed-grid.s-to-center{margin-left:auto;margin-right:auto}.ed-grid .ed-grid.s-to-right,.ed-grid .ed-grid .ed-grid.s-to-right{margin-left:auto;margin-right:0}.ed-grid .ed-grid.s-to-left,.ed-grid .ed-grid .ed-grid.s-to-left{margin-left:0;margin-right:auto}@media screen and (min-width: 640px){.ed-grid .ed-grid.m-5,.ed-grid .ed-grid .ed-grid.m-5{width:5%}.ed-grid .ed-grid.m-10,.ed-grid .ed-grid .ed-grid.m-10{width:10%}.ed-grid .ed-grid.m-15,.ed-grid .ed-grid .ed-grid.m-15{width:15%}.ed-grid .ed-grid.m-20,.ed-grid .ed-grid .ed-grid.m-20{width:20%}.ed-grid .ed-grid.m-25,.ed-grid .ed-grid .ed-grid.m-25{width:25%}.ed-grid .ed-grid.m-30,.ed-grid .ed-grid .ed-grid.m-30{width:30%}.ed-grid .ed-grid.m-35,.ed-grid .ed-grid .ed-grid.m-35{width:35%}.ed-grid .ed-grid.m-40,.ed-grid .ed-grid .ed-grid.m-40{width:40%}.ed-grid .ed-grid.m-45,.ed-grid .ed-grid .ed-grid.m-45{width:45%}.ed-grid .ed-grid.m-50,.ed-grid .ed-grid .ed-grid.m-50{width:50%}.ed-grid .ed-grid.m-55,.ed-grid .ed-grid .ed-grid.m-55{width:55%}.ed-grid .ed-grid.m-60,.ed-grid .ed-grid .ed-grid.m-60{width:60%}.ed-grid .ed-grid.m-65,.ed-grid .ed-grid .ed-grid.m-65{width:65%}.ed-grid .ed-grid.m-70,.ed-grid .ed-grid .ed-grid.m-70{width:70%}.ed-grid .ed-grid.m-75,.ed-grid .ed-grid .ed-grid.m-75{width:75%}.ed-grid .ed-grid.m-80,.ed-grid .ed-grid .ed-grid.m-80{width:80%}.ed-grid .ed-grid.m-85,.ed-grid .ed-grid .ed-grid.m-85{width:85%}.ed-grid .ed-grid.m-90,.ed-grid .ed-grid .ed-grid.m-90{width:90%}.ed-grid .ed-grid.m-95,.ed-grid .ed-grid .ed-grid.m-95{width:95%}.ed-grid .ed-grid.m-100,.ed-grid .ed-grid .ed-grid.m-100{width:100%}.ed-grid .ed-grid.m-to-center,.ed-grid .ed-grid .ed-grid.m-to-center{margin-left:auto;margin-right:auto}.ed-grid .ed-grid.m-to-right,.ed-grid .ed-grid .ed-grid.m-to-right{margin-left:auto;margin-right:0}.ed-grid .ed-grid.m-to-left,.ed-grid .ed-grid .ed-grid.m-to-left{margin-left:0;margin-right:auto}}@media screen and (min-width: 1024px){.ed-grid .ed-grid.l-5,.ed-grid .ed-grid .ed-grid.l-5{width:5%}.ed-grid .ed-grid.l-10,.ed-grid .ed-grid .ed-grid.l-10{width:10%}.ed-grid .ed-grid.l-15,.ed-grid .ed-grid .ed-grid.l-15{width:15%}.ed-grid .ed-grid.l-20,.ed-grid .ed-grid .ed-grid.l-20{width:20%}.ed-grid .ed-grid.l-25,.ed-grid .ed-grid .ed-grid.l-25{width:25%}.ed-grid .ed-grid.l-30,.ed-grid .ed-grid .ed-grid.l-30{width:30%}.ed-grid .ed-grid.l-35,.ed-grid .ed-grid .ed-grid.l-35{width:35%}.ed-grid .ed-grid.l-40,.ed-grid .ed-grid .ed-grid.l-40{width:40%}.ed-grid .ed-grid.l-45,.ed-grid .ed-grid .ed-grid.l-45{width:45%}.ed-grid .ed-grid.l-50,.ed-grid .ed-grid .ed-grid.l-50{width:50%}.ed-grid .ed-grid.l-55,.ed-grid .ed-grid .ed-grid.l-55{width:55%}.ed-grid .ed-grid.l-60,.ed-grid .ed-grid .ed-grid.l-60{width:60%}.ed-grid .ed-grid.l-65,.ed-grid .ed-grid .ed-grid.l-65{width:65%}.ed-grid .ed-grid.l-70,.ed-grid .ed-grid .ed-grid.l-70{width:70%}.ed-grid .ed-grid.l-75,.ed-grid .ed-grid .ed-grid.l-75{width:75%}.ed-grid .ed-grid.l-80,.ed-grid .ed-grid .ed-grid.l-80{width:80%}.ed-grid .ed-grid.l-85,.ed-grid .ed-grid .ed-grid.l-85{width:85%}.ed-grid .ed-grid.l-90,.ed-grid .ed-grid .ed-grid.l-90{width:90%}.ed-grid .ed-grid.l-95,.ed-grid .ed-grid .ed-grid.l-95{width:95%}.ed-grid .ed-grid.l-100,.ed-grid .ed-grid .ed-grid.l-100{width:100%}.ed-grid .ed-grid.l-to-center,.ed-grid .ed-grid .ed-grid.l-to-center{margin-left:auto;margin-right:auto}.ed-grid .ed-grid.l-to-right,.ed-grid .ed-grid .ed-grid.l-to-right{margin-left:auto;margin-right:0}.ed-grid .ed-grid.l-to-left,.ed-grid .ed-grid .ed-grid.l-to-left{margin-left:0;margin-right:auto}}@media screen and (min-width: 1024px){.ed-grid .ed-grid.lg-5,.ed-grid .ed-grid .ed-grid.lg-5{width:5%}.ed-grid .ed-grid.lg-10,.ed-grid .ed-grid .ed-grid.lg-10{width:10%}.ed-grid .ed-grid.lg-15,.ed-grid .ed-grid .ed-grid.lg-15{width:15%}.ed-grid .ed-grid.lg-20,.ed-grid .ed-grid .ed-grid.lg-20{width:20%}.ed-grid .ed-grid.lg-25,.ed-grid .ed-grid .ed-grid.lg-25{width:25%}.ed-grid .ed-grid.lg-30,.ed-grid .ed-grid .ed-grid.lg-30{width:30%}.ed-grid .ed-grid.lg-35,.ed-grid .ed-grid .ed-grid.lg-35{width:35%}.ed-grid .ed-grid.lg-40,.ed-grid .ed-grid .ed-grid.lg-40{width:40%}.ed-grid .ed-grid.lg-45,.ed-grid .ed-grid .ed-grid.lg-45{width:45%}.ed-grid .ed-grid.lg-50,.ed-grid .ed-grid .ed-grid.lg-50{width:50%}.ed-grid .ed-grid.lg-55,.ed-grid .ed-grid .ed-grid.lg-55{width:55%}.ed-grid .ed-grid.lg-60,.ed-grid .ed-grid .ed-grid.lg-60{width:60%}.ed-grid .ed-grid.lg-65,.ed-grid .ed-grid .ed-grid.lg-65{width:65%}.ed-grid .ed-grid.lg-70,.ed-grid .ed-grid .ed-grid.lg-70{width:70%}.ed-grid .ed-grid.lg-75,.ed-grid .ed-grid .ed-grid.lg-75{width:75%}.ed-grid .ed-grid.lg-80,.ed-grid .ed-grid .ed-grid.lg-80{width:80%}.ed-grid .ed-grid.lg-85,.ed-grid .ed-grid .ed-grid.lg-85{width:85%}.ed-grid .ed-grid.lg-90,.ed-grid .ed-grid .ed-grid.lg-90{width:90%}.ed-grid .ed-grid.lg-95,.ed-grid .ed-grid .ed-grid.lg-95{width:95%}.ed-grid .ed-grid.lg-100,.ed-grid .ed-grid .ed-grid.lg-100{width:100%}.ed-grid .ed-grid.lg-to-center,.ed-grid .ed-grid .ed-grid.lg-to-center{margin-left:auto;margin-right:auto}.ed-grid .ed-grid.lg-to-right,.ed-grid .ed-grid .ed-grid.lg-to-right{margin-left:auto;margin-right:0}.ed-grid .ed-grid.lg-to-left,.ed-grid .ed-grid .ed-grid.lg-to-left{margin-left:0;margin-right:auto}}@media screen and (min-width: 1440px){.ed-grid .ed-grid.xl-5,.ed-grid .ed-grid .ed-grid.xl-5{width:5%}.ed-grid .ed-grid.xl-10,.ed-grid .ed-grid .ed-grid.xl-10{width:10%}.ed-grid .ed-grid.xl-15,.ed-grid .ed-grid .ed-grid.xl-15{width:15%}.ed-grid .ed-grid.xl-20,.ed-grid .ed-grid .ed-grid.xl-20{width:20%}.ed-grid .ed-grid.xl-25,.ed-grid .ed-grid .ed-grid.xl-25{width:25%}.ed-grid .ed-grid.xl-30,.ed-grid .ed-grid .ed-grid.xl-30{width:30%}.ed-grid .ed-grid.xl-35,.ed-grid .ed-grid .ed-grid.xl-35{width:35%}.ed-grid .ed-grid.xl-40,.ed-grid .ed-grid .ed-grid.xl-40{width:40%}.ed-grid .ed-grid.xl-45,.ed-grid .ed-grid .ed-grid.xl-45{width:45%}.ed-grid .ed-grid.xl-50,.ed-grid .ed-grid .ed-grid.xl-50{width:50%}.ed-grid .ed-grid.xl-55,.ed-grid .ed-grid .ed-grid.xl-55{width:55%}.ed-grid .ed-grid.xl-60,.ed-grid .ed-grid .ed-grid.xl-60{width:60%}.ed-grid .ed-grid.xl-65,.ed-grid .ed-grid .ed-grid.xl-65{width:65%}.ed-grid .ed-grid.xl-70,.ed-grid .ed-grid .ed-grid.xl-70{width:70%}.ed-grid .ed-grid.xl-75,.ed-grid .ed-grid .ed-grid.xl-75{width:75%}.ed-grid .ed-grid.xl-80,.ed-grid .ed-grid .ed-grid.xl-80{width:80%}.ed-grid .ed-grid.xl-85,.ed-grid .ed-grid .ed-grid.xl-85{width:85%}.ed-grid .ed-grid.xl-90,.ed-grid .ed-grid .ed-grid.xl-90{width:90%}.ed-grid .ed-grid.xl-95,.ed-grid .ed-grid .ed-grid.xl-95{width:95%}.ed-grid .ed-grid.xl-100,.ed-grid .ed-grid .ed-grid.xl-100{width:100%}.ed-grid .ed-grid.xl-to-center,.ed-grid .ed-grid .ed-grid.xl-to-center{margin-left:auto;margin-right:auto}.ed-grid .ed-grid.xl-to-right,.ed-grid .ed-grid .ed-grid.xl-to-right{margin-left:auto;margin-right:0}.ed-grid .ed-grid.xl-to-left,.ed-grid .ed-grid .ed-grid.xl-to-left{margin-left:0;margin-right:auto}}.ed-grid.cols-s-1,.ed-grid.s-grid-1{-ms-grid-columns:100%;grid-template-columns:100%}.ed-grid>.span-s-1,.ed-grid>.s-cols-1{-ms-grid-column-span:1;grid-column-end:span 1}.ed-grid>.s-rows-1{-ms-grid-row-span:1;grid-row-end:span 1}.ed-grid>.s-x-1{-ms-grid-column:1;grid-column-start:1}.ed-grid>.s-y-1{-ms-grid-row:1;grid-row-start:1}.ed-grid.cols-s-2,.ed-grid.s-grid-2{-ms-grid-columns:(calc((100% - var(--gap) * 1) / 2))[2];grid-template-columns:repeat(2, calc((100% - var(--gap) * 1) / 2))}.ed-grid>.span-s-2,.ed-grid>.s-cols-2{-ms-grid-column-span:2;grid-column-end:span 2}.ed-grid>.s-rows-2{-ms-grid-row-span:2;grid-row-end:span 2}.ed-grid>.s-x-2{-ms-grid-column:2;grid-column-start:2}.ed-grid>.s-y-2{-ms-grid-row:2;grid-row-start:2}.ed-grid.cols-s-3,.ed-grid.s-grid-3{-ms-grid-columns:(calc((100% - var(--gap) * 2) / 3))[3];grid-template-columns:repeat(3, calc((100% - var(--gap) * 2) / 3))}.ed-grid>.span-s-3,.ed-grid>.s-cols-3{-ms-grid-column-span:3;grid-column-end:span 3}.ed-grid>.s-rows-3{-ms-grid-row-span:3;grid-row-end:span 3}.ed-grid>.s-x-3{-ms-grid-column:3;grid-column-start:3}.ed-grid>.s-y-3{-ms-grid-row:3;grid-row-start:3}.ed-grid.cols-s-4,.ed-grid.s-grid-4{-ms-grid-columns:(calc((100% - var(--gap) * 3) / 4))[4];grid-template-columns:repeat(4, calc((100% - var(--gap) * 3) / 4))}.ed-grid>.span-s-4,.ed-grid>.s-cols-4{-ms-grid-column-span:4;grid-column-end:span 4}.ed-grid>.s-rows-4{-ms-grid-row-span:4;grid-row-end:span 4}.ed-grid>.s-x-4{-ms-grid-column:4;grid-column-start:4}.ed-grid>.s-y-4{-ms-grid-row:4;grid-row-start:4}.ed-grid.cols-s-5,.ed-grid.s-grid-5{-ms-grid-columns:(calc((100% - var(--gap) * 4) / 5))[5];grid-template-columns:repeat(5, calc((100% - var(--gap) * 4) / 5))}.ed-grid>.span-s-5,.ed-grid>.s-cols-5{-ms-grid-column-span:5;grid-column-end:span 5}.ed-grid>.s-rows-5{-ms-grid-row-span:5;grid-row-end:span 5}.ed-grid>.s-x-5{-ms-grid-column:5;grid-column-start:5}.ed-grid>.s-y-5{-ms-grid-row:5;grid-row-start:5}.ed-grid.cols-s-6,.ed-grid.s-grid-6{-ms-grid-columns:(calc((100% - var(--gap) * 5) / 6))[6];grid-template-columns:repeat(6, calc((100% - var(--gap) * 5) / 6))}.ed-grid>.span-s-6,.ed-grid>.s-cols-6{-ms-grid-column-span:6;grid-column-end:span 6}.ed-grid>.s-rows-6{-ms-grid-row-span:6;grid-row-end:span 6}.ed-grid>.s-x-6{-ms-grid-column:6;grid-column-start:6}.ed-grid>.s-y-6{-ms-grid-row:6;grid-row-start:6}.ed-grid.cols-s-7,.ed-grid.s-grid-7{-ms-grid-columns:(calc((100% - var(--gap) * 6) / 7))[7];grid-template-columns:repeat(7, calc((100% - var(--gap) * 6) / 7))}.ed-grid>.span-s-7,.ed-grid>.s-cols-7{-ms-grid-column-span:7;grid-column-end:span 7}.ed-grid>.s-rows-7{-ms-grid-row-span:7;grid-row-end:span 7}.ed-grid>.s-x-7{-ms-grid-column:7;grid-column-start:7}.ed-grid>.s-y-7{-ms-grid-row:7;grid-row-start:7}.ed-grid.cols-s-8,.ed-grid.s-grid-8{-ms-grid-columns:(calc((100% - var(--gap) * 7) / 8))[8];grid-template-columns:repeat(8, calc((100% - var(--gap) * 7) / 8))}.ed-grid>.span-s-8,.ed-grid>.s-cols-8{-ms-grid-column-span:8;grid-column-end:span 8}.ed-grid>.s-rows-8{-ms-grid-row-span:8;grid-row-end:span 8}.ed-grid>.s-x-8{-ms-grid-column:8;grid-column-start:8}.ed-grid>.s-y-8{-ms-grid-row:8;grid-row-start:8}.ed-grid.cols-s-9,.ed-grid.s-grid-9{-ms-grid-columns:(calc((100% - var(--gap) * 8) / 9))[9];grid-template-columns:repeat(9, calc((100% - var(--gap) * 8) / 9))}.ed-grid>.span-s-9,.ed-grid>.s-cols-9{-ms-grid-column-span:9;grid-column-end:span 9}.ed-grid>.s-rows-9{-ms-grid-row-span:9;grid-row-end:span 9}.ed-grid>.s-x-9{-ms-grid-column:9;grid-column-start:9}.ed-grid>.s-y-9{-ms-grid-row:9;grid-row-start:9}.ed-grid.cols-s-10,.ed-grid.s-grid-10{-ms-grid-columns:(calc((100% - var(--gap) * 9) / 10))[10];grid-template-columns:repeat(10, calc((100% - var(--gap) * 9) / 10))}.ed-grid>.span-s-10,.ed-grid>.s-cols-10{-ms-grid-column-span:10;grid-column-end:span 10}.ed-grid>.s-rows-10{-ms-grid-row-span:10;grid-row-end:span 10}.ed-grid>.s-x-10{-ms-grid-column:10;grid-column-start:10}.ed-grid>.s-y-10{-ms-grid-row:10;grid-row-start:10}.ed-grid.cols-s-11,.ed-grid.s-grid-11{-ms-grid-columns:(calc((100% - var(--gap) * 10) / 11))[11];grid-template-columns:repeat(11, calc((100% - var(--gap) * 10) / 11))}.ed-grid>.span-s-11,.ed-grid>.s-cols-11{-ms-grid-column-span:11;grid-column-end:span 11}.ed-grid>.s-rows-11{-ms-grid-row-span:11;grid-row-end:span 11}.ed-grid>.s-x-11{-ms-grid-column:11;grid-column-start:11}.ed-grid>.s-y-11{-ms-grid-row:11;grid-row-start:11}.ed-grid.cols-s-12,.ed-grid.s-grid-12{-ms-grid-columns:(calc((100% - var(--gap) * 11) / 12))[12];grid-template-columns:repeat(12, calc((100% - var(--gap) * 11) / 12))}.ed-grid>.span-s-12,.ed-grid>.s-cols-12{-ms-grid-column-span:12;grid-column-end:span 12}.ed-grid>.s-rows-12{-ms-grid-row-span:12;grid-row-end:span 12}.ed-grid>.s-x-12{-ms-grid-column:12;grid-column-start:12}.ed-grid>.s-y-12{-ms-grid-row:12;grid-row-start:12}@media screen and (min-width: 640px){.ed-grid.cols-m-1,.ed-grid.m-grid-1{-ms-grid-columns:100%;grid-template-columns:100%}.ed-grid>.span-m-1,.ed-grid>.m-cols-1{-ms-grid-column-span:1;grid-column-end:span 1}.ed-grid>.m-rows-1{-ms-grid-row-span:1;grid-row-end:span 1}.ed-grid>.m-x-1{-ms-grid-column:1;grid-column-start:1}.ed-grid>.m-y-1{-ms-grid-row:1;grid-row-start:1}.ed-grid.cols-m-2,.ed-grid.m-grid-2{-ms-grid-columns:(calc((100% - var(--gap) * 1) / 2))[2];grid-template-columns:repeat(2, calc((100% - var(--gap) * 1) / 2))}.ed-grid>.span-m-2,.ed-grid>.m-cols-2{-ms-grid-column-span:2;grid-column-end:span 2}.ed-grid>.m-rows-2{-ms-grid-row-span:2;grid-row-end:span 2}.ed-grid>.m-x-2{-ms-grid-column:2;grid-column-start:2}.ed-grid>.m-y-2{-ms-grid-row:2;grid-row-start:2}.ed-grid.cols-m-3,.ed-grid.m-grid-3{-ms-grid-columns:(calc((100% - var(--gap) * 2) / 3))[3];grid-template-columns:repeat(3, calc((100% - var(--gap) * 2) / 3))}.ed-grid>.span-m-3,.ed-grid>.m-cols-3{-ms-grid-column-span:3;grid-column-end:span 3}.ed-grid>.m-rows-3{-ms-grid-row-span:3;grid-row-end:span 3}.ed-grid>.m-x-3{-ms-grid-column:3;grid-column-start:3}.ed-grid>.m-y-3{-ms-grid-row:3;grid-row-start:3}.ed-grid.cols-m-4,.ed-grid.m-grid-4{-ms-grid-columns:(calc((100% - var(--gap) * 3) / 4))[4];grid-template-columns:repeat(4, calc((100% - var(--gap) * 3) / 4))}.ed-grid>.span-m-4,.ed-grid>.m-cols-4{-ms-grid-column-span:4;grid-column-end:span 4}.ed-grid>.m-rows-4{-ms-grid-row-span:4;grid-row-end:span 4}.ed-grid>.m-x-4{-ms-grid-column:4;grid-column-start:4}.ed-grid>.m-y-4{-ms-grid-row:4;grid-row-start:4}.ed-grid.cols-m-5,.ed-grid.m-grid-5{-ms-grid-columns:(calc((100% - var(--gap) * 4) / 5))[5];grid-template-columns:repeat(5, calc((100% - var(--gap) * 4) / 5))}.ed-grid>.span-m-5,.ed-grid>.m-cols-5{-ms-grid-column-span:5;grid-column-end:span 5}.ed-grid>.m-rows-5{-ms-grid-row-span:5;grid-row-end:span 5}.ed-grid>.m-x-5{-ms-grid-column:5;grid-column-start:5}.ed-grid>.m-y-5{-ms-grid-row:5;grid-row-start:5}.ed-grid.cols-m-6,.ed-grid.m-grid-6{-ms-grid-columns:(calc((100% - var(--gap) * 5) / 6))[6];grid-template-columns:repeat(6, calc((100% - var(--gap) * 5) / 6))}.ed-grid>.span-m-6,.ed-grid>.m-cols-6{-ms-grid-column-span:6;grid-column-end:span 6}.ed-grid>.m-rows-6{-ms-grid-row-span:6;grid-row-end:span 6}.ed-grid>.m-x-6{-ms-grid-column:6;grid-column-start:6}.ed-grid>.m-y-6{-ms-grid-row:6;grid-row-start:6}.ed-grid.cols-m-7,.ed-grid.m-grid-7{-ms-grid-columns:(calc((100% - var(--gap) * 6) / 7))[7];grid-template-columns:repeat(7, calc((100% - var(--gap) * 6) / 7))}.ed-grid>.span-m-7,.ed-grid>.m-cols-7{-ms-grid-column-span:7;grid-column-end:span 7}.ed-grid>.m-rows-7{-ms-grid-row-span:7;grid-row-end:span 7}.ed-grid>.m-x-7{-ms-grid-column:7;grid-column-start:7}.ed-grid>.m-y-7{-ms-grid-row:7;grid-row-start:7}.ed-grid.cols-m-8,.ed-grid.m-grid-8{-ms-grid-columns:(calc((100% - var(--gap) * 7) / 8))[8];grid-template-columns:repeat(8, calc((100% - var(--gap) * 7) / 8))}.ed-grid>.span-m-8,.ed-grid>.m-cols-8{-ms-grid-column-span:8;grid-column-end:span 8}.ed-grid>.m-rows-8{-ms-grid-row-span:8;grid-row-end:span 8}.ed-grid>.m-x-8{-ms-grid-column:8;grid-column-start:8}.ed-grid>.m-y-8{-ms-grid-row:8;grid-row-start:8}.ed-grid.cols-m-9,.ed-grid.m-grid-9{-ms-grid-columns:(calc((100% - var(--gap) * 8) / 9))[9];grid-template-columns:repeat(9, calc((100% - var(--gap) * 8) / 9))}.ed-grid>.span-m-9,.ed-grid>.m-cols-9{-ms-grid-column-span:9;grid-column-end:span 9}.ed-grid>.m-rows-9{-ms-grid-row-span:9;grid-row-end:span 9}.ed-grid>.m-x-9{-ms-grid-column:9;grid-column-start:9}.ed-grid>.m-y-9{-ms-grid-row:9;grid-row-start:9}.ed-grid.cols-m-10,.ed-grid.m-grid-10{-ms-grid-columns:(calc((100% - var(--gap) * 9) / 10))[10];grid-template-columns:repeat(10, calc((100% - var(--gap) * 9) / 10))}.ed-grid>.span-m-10,.ed-grid>.m-cols-10{-ms-grid-column-span:10;grid-column-end:span 10}.ed-grid>.m-rows-10{-ms-grid-row-span:10;grid-row-end:span 10}.ed-grid>.m-x-10{-ms-grid-column:10;grid-column-start:10}.ed-grid>.m-y-10{-ms-grid-row:10;grid-row-start:10}.ed-grid.cols-m-11,.ed-grid.m-grid-11{-ms-grid-columns:(calc((100% - var(--gap) * 10) / 11))[11];grid-template-columns:repeat(11, calc((100% - var(--gap) * 10) / 11))}.ed-grid>.span-m-11,.ed-grid>.m-cols-11{-ms-grid-column-span:11;grid-column-end:span 11}.ed-grid>.m-rows-11{-ms-grid-row-span:11;grid-row-end:span 11}.ed-grid>.m-x-11{-ms-grid-column:11;grid-column-start:11}.ed-grid>.m-y-11{-ms-grid-row:11;grid-row-start:11}.ed-grid.cols-m-12,.ed-grid.m-grid-12{-ms-grid-columns:(calc((100% - var(--gap) * 11) / 12))[12];grid-template-columns:repeat(12, calc((100% - var(--gap) * 11) / 12))}.ed-grid>.span-m-12,.ed-grid>.m-cols-12{-ms-grid-column-span:12;grid-column-end:span 12}.ed-grid>.m-rows-12{-ms-grid-row-span:12;grid-row-end:span 12}.ed-grid>.m-x-12{-ms-grid-column:12;grid-column-start:12}.ed-grid>.m-y-12{-ms-grid-row:12;grid-row-start:12}}@media screen and (min-width: 1024px){.ed-grid.cols-l-1,.ed-grid.l-grid-1{-ms-grid-columns:100%;grid-template-columns:100%}.ed-grid>.span-l-1,.ed-grid>.l-cols-1{-ms-grid-column-span:1;grid-column-end:span 1}.ed-grid>.l-rows-1{-ms-grid-row-span:1;grid-row-end:span 1}.ed-grid>.l-x-1{-ms-grid-column:1;grid-column-start:1}.ed-grid>.l-y-1{-ms-grid-row:1;grid-row-start:1}.ed-grid.cols-l-2,.ed-grid.l-grid-2{-ms-grid-columns:(calc((100% - var(--gap) * 1) / 2))[2];grid-template-columns:repeat(2, calc((100% - var(--gap) * 1) / 2))}.ed-grid>.span-l-2,.ed-grid>.l-cols-2{-ms-grid-column-span:2;grid-column-end:span 2}.ed-grid>.l-rows-2{-ms-grid-row-span:2;grid-row-end:span 2}.ed-grid>.l-x-2{-ms-grid-column:2;grid-column-start:2}.ed-grid>.l-y-2{-ms-grid-row:2;grid-row-start:2}.ed-grid.cols-l-3,.ed-grid.l-grid-3{-ms-grid-columns:(calc((100% - var(--gap) * 2) / 3))[3];grid-template-columns:repeat(3, calc((100% - var(--gap) * 2) / 3))}.ed-grid>.span-l-3,.ed-grid>.l-cols-3{-ms-grid-column-span:3;grid-column-end:span 3}.ed-grid>.l-rows-3{-ms-grid-row-span:3;grid-row-end:span 3}.ed-grid>.l-x-3{-ms-grid-column:3;grid-column-start:3}.ed-grid>.l-y-3{-ms-grid-row:3;grid-row-start:3}.ed-grid.cols-l-4,.ed-grid.l-grid-4{-ms-grid-columns:(calc((100% - var(--gap) * 3) / 4))[4];grid-template-columns:repeat(4, calc((100% - var(--gap) * 3) / 4))}.ed-grid>.span-l-4,.ed-grid>.l-cols-4{-ms-grid-column-span:4;grid-column-end:span 4}.ed-grid>.l-rows-4{-ms-grid-row-span:4;grid-row-end:span 4}.ed-grid>.l-x-4{-ms-grid-column:4;grid-column-start:4}.ed-grid>.l-y-4{-ms-grid-row:4;grid-row-start:4}.ed-grid.cols-l-5,.ed-grid.l-grid-5{-ms-grid-columns:(calc((100% - var(--gap) * 4) / 5))[5];grid-template-columns:repeat(5, calc((100% - var(--gap) * 4) / 5))}.ed-grid>.span-l-5,.ed-grid>.l-cols-5{-ms-grid-column-span:5;grid-column-end:span 5}.ed-grid>.l-rows-5{-ms-grid-row-span:5;grid-row-end:span 5}.ed-grid>.l-x-5{-ms-grid-column:5;grid-column-start:5}.ed-grid>.l-y-5{-ms-grid-row:5;grid-row-start:5}.ed-grid.cols-l-6,.ed-grid.l-grid-6{-ms-grid-columns:(calc((100% - var(--gap) * 5) / 6))[6];grid-template-columns:repeat(6, calc((100% - var(--gap) * 5) / 6))}.ed-grid>.span-l-6,.ed-grid>.l-cols-6{-ms-grid-column-span:6;grid-column-end:span 6}.ed-grid>.l-rows-6{-ms-grid-row-span:6;grid-row-end:span 6}.ed-grid>.l-x-6{-ms-grid-column:6;grid-column-start:6}.ed-grid>.l-y-6{-ms-grid-row:6;grid-row-start:6}.ed-grid.cols-l-7,.ed-grid.l-grid-7{-ms-grid-columns:(calc((100% - var(--gap) * 6) / 7))[7];grid-template-columns:repeat(7, calc((100% - var(--gap) * 6) / 7))}.ed-grid>.span-l-7,.ed-grid>.l-cols-7{-ms-grid-column-span:7;grid-column-end:span 7}.ed-grid>.l-rows-7{-ms-grid-row-span:7;grid-row-end:span 7}.ed-grid>.l-x-7{-ms-grid-column:7;grid-column-start:7}.ed-grid>.l-y-7{-ms-grid-row:7;grid-row-start:7}.ed-grid.cols-l-8,.ed-grid.l-grid-8{-ms-grid-columns:(calc((100% - var(--gap) * 7) / 8))[8];grid-template-columns:repeat(8, calc((100% - var(--gap) * 7) / 8))}.ed-grid>.span-l-8,.ed-grid>.l-cols-8{-ms-grid-column-span:8;grid-column-end:span 8}.ed-grid>.l-rows-8{-ms-grid-row-span:8;grid-row-end:span 8}.ed-grid>.l-x-8{-ms-grid-column:8;grid-column-start:8}.ed-grid>.l-y-8{-ms-grid-row:8;grid-row-start:8}.ed-grid.cols-l-9,.ed-grid.l-grid-9{-ms-grid-columns:(calc((100% - var(--gap) * 8) / 9))[9];grid-template-columns:repeat(9, calc((100% - var(--gap) * 8) / 9))}.ed-grid>.span-l-9,.ed-grid>.l-cols-9{-ms-grid-column-span:9;grid-column-end:span 9}.ed-grid>.l-rows-9{-ms-grid-row-span:9;grid-row-end:span 9}.ed-grid>.l-x-9{-ms-grid-column:9;grid-column-start:9}.ed-grid>.l-y-9{-ms-grid-row:9;grid-row-start:9}.ed-grid.cols-l-10,.ed-grid.l-grid-10{-ms-grid-columns:(calc((100% - var(--gap) * 9) / 10))[10];grid-template-columns:repeat(10, calc((100% - var(--gap) * 9) / 10))}.ed-grid>.span-l-10,.ed-grid>.l-cols-10{-ms-grid-column-span:10;grid-column-end:span 10}.ed-grid>.l-rows-10{-ms-grid-row-span:10;grid-row-end:span 10}.ed-grid>.l-x-10{-ms-grid-column:10;grid-column-start:10}.ed-grid>.l-y-10{-ms-grid-row:10;grid-row-start:10}.ed-grid.cols-l-11,.ed-grid.l-grid-11{-ms-grid-columns:(calc((100% - var(--gap) * 10) / 11))[11];grid-template-columns:repeat(11, calc((100% - var(--gap) * 10) / 11))}.ed-grid>.span-l-11,.ed-grid>.l-cols-11{-ms-grid-column-span:11;grid-column-end:span 11}.ed-grid>.l-rows-11{-ms-grid-row-span:11;grid-row-end:span 11}.ed-grid>.l-x-11{-ms-grid-column:11;grid-column-start:11}.ed-grid>.l-y-11{-ms-grid-row:11;grid-row-start:11}.ed-grid.cols-l-12,.ed-grid.l-grid-12{-ms-grid-columns:(calc((100% - var(--gap) * 11) / 12))[12];grid-template-columns:repeat(12, calc((100% - var(--gap) * 11) / 12))}.ed-grid>.span-l-12,.ed-grid>.l-cols-12{-ms-grid-column-span:12;grid-column-end:span 12}.ed-grid>.l-rows-12{-ms-grid-row-span:12;grid-row-end:span 12}.ed-grid>.l-x-12{-ms-grid-column:12;grid-column-start:12}.ed-grid>.l-y-12{-ms-grid-row:12;grid-row-start:12}}@media screen and (min-width: 1024px){.ed-grid.cols-lg-1,.ed-grid.lg-grid-1{-ms-grid-columns:100%;grid-template-columns:100%}.ed-grid>.span-lg-1,.ed-grid>.lg-cols-1{-ms-grid-column-span:1;grid-column-end:span 1}.ed-grid>.lg-rows-1{-ms-grid-row-span:1;grid-row-end:span 1}.ed-grid>.lg-x-1{-ms-grid-column:1;grid-column-start:1}.ed-grid>.lg-y-1{-ms-grid-row:1;grid-row-start:1}.ed-grid.cols-lg-2,.ed-grid.lg-grid-2{-ms-grid-columns:(calc((100% - var(--gap) * 1) / 2))[2];grid-template-columns:repeat(2, calc((100% - var(--gap) * 1) / 2))}.ed-grid>.span-lg-2,.ed-grid>.lg-cols-2{-ms-grid-column-span:2;grid-column-end:span 2}.ed-grid>.lg-rows-2{-ms-grid-row-span:2;grid-row-end:span 2}.ed-grid>.lg-x-2{-ms-grid-column:2;grid-column-start:2}.ed-grid>.lg-y-2{-ms-grid-row:2;grid-row-start:2}.ed-grid.cols-lg-3,.ed-grid.lg-grid-3{-ms-grid-columns:(calc((100% - var(--gap) * 2) / 3))[3];grid-template-columns:repeat(3, calc((100% - var(--gap) * 2) / 3))}.ed-grid>.span-lg-3,.ed-grid>.lg-cols-3{-ms-grid-column-span:3;grid-column-end:span 3}.ed-grid>.lg-rows-3{-ms-grid-row-span:3;grid-row-end:span 3}.ed-grid>.lg-x-3{-ms-grid-column:3;grid-column-start:3}.ed-grid>.lg-y-3{-ms-grid-row:3;grid-row-start:3}.ed-grid.cols-lg-4,.ed-grid.lg-grid-4{-ms-grid-columns:(calc((100% - var(--gap) * 3) / 4))[4];grid-template-columns:repeat(4, calc((100% - var(--gap) * 3) / 4))}.ed-grid>.span-lg-4,.ed-grid>.lg-cols-4{-ms-grid-column-span:4;grid-column-end:span 4}.ed-grid>.lg-rows-4{-ms-grid-row-span:4;grid-row-end:span 4}.ed-grid>.lg-x-4{-ms-grid-column:4;grid-column-start:4}.ed-grid>.lg-y-4{-ms-grid-row:4;grid-row-start:4}.ed-grid.cols-lg-5,.ed-grid.lg-grid-5{-ms-grid-columns:(calc((100% - var(--gap) * 4) / 5))[5];grid-template-columns:repeat(5, calc((100% - var(--gap) * 4) / 5))}.ed-grid>.span-lg-5,.ed-grid>.lg-cols-5{-ms-grid-column-span:5;grid-column-end:span 5}.ed-grid>.lg-rows-5{-ms-grid-row-span:5;grid-row-end:span 5}.ed-grid>.lg-x-5{-ms-grid-column:5;grid-column-start:5}.ed-grid>.lg-y-5{-ms-grid-row:5;grid-row-start:5}.ed-grid.cols-lg-6,.ed-grid.lg-grid-6{-ms-grid-columns:(calc((100% - var(--gap) * 5) / 6))[6];grid-template-columns:repeat(6, calc((100% - var(--gap) * 5) / 6))}.ed-grid>.span-lg-6,.ed-grid>.lg-cols-6{-ms-grid-column-span:6;grid-column-end:span 6}.ed-grid>.lg-rows-6{-ms-grid-row-span:6;grid-row-end:span 6}.ed-grid>.lg-x-6{-ms-grid-column:6;grid-column-start:6}.ed-grid>.lg-y-6{-ms-grid-row:6;grid-row-start:6}.ed-grid.cols-lg-7,.ed-grid.lg-grid-7{-ms-grid-columns:(calc((100% - var(--gap) * 6) / 7))[7];grid-template-columns:repeat(7, calc((100% - var(--gap) * 6) / 7))}.ed-grid>.span-lg-7,.ed-grid>.lg-cols-7{-ms-grid-column-span:7;grid-column-end:span 7}.ed-grid>.lg-rows-7{-ms-grid-row-span:7;grid-row-end:span 7}.ed-grid>.lg-x-7{-ms-grid-column:7;grid-column-start:7}.ed-grid>.lg-y-7{-ms-grid-row:7;grid-row-start:7}.ed-grid.cols-lg-8,.ed-grid.lg-grid-8{-ms-grid-columns:(calc((100% - var(--gap) * 7) / 8))[8];grid-template-columns:repeat(8, calc((100% - var(--gap) * 7) / 8))}.ed-grid>.span-lg-8,.ed-grid>.lg-cols-8{-ms-grid-column-span:8;grid-column-end:span 8}.ed-grid>.lg-rows-8{-ms-grid-row-span:8;grid-row-end:span 8}.ed-grid>.lg-x-8{-ms-grid-column:8;grid-column-start:8}.ed-grid>.lg-y-8{-ms-grid-row:8;grid-row-start:8}.ed-grid.cols-lg-9,.ed-grid.lg-grid-9{-ms-grid-columns:(calc((100% - var(--gap) * 8) / 9))[9];grid-template-columns:repeat(9, calc((100% - var(--gap) * 8) / 9))}.ed-grid>.span-lg-9,.ed-grid>.lg-cols-9{-ms-grid-column-span:9;grid-column-end:span 9}.ed-grid>.lg-rows-9{-ms-grid-row-span:9;grid-row-end:span 9}.ed-grid>.lg-x-9{-ms-grid-column:9;grid-column-start:9}.ed-grid>.lg-y-9{-ms-grid-row:9;grid-row-start:9}.ed-grid.cols-lg-10,.ed-grid.lg-grid-10{-ms-grid-columns:(calc((100% - var(--gap) * 9) / 10))[10];grid-template-columns:repeat(10, calc((100% - var(--gap) * 9) / 10))}.ed-grid>.span-lg-10,.ed-grid>.lg-cols-10{-ms-grid-column-span:10;grid-column-end:span 10}.ed-grid>.lg-rows-10{-ms-grid-row-span:10;grid-row-end:span 10}.ed-grid>.lg-x-10{-ms-grid-column:10;grid-column-start:10}.ed-grid>.lg-y-10{-ms-grid-row:10;grid-row-start:10}.ed-grid.cols-lg-11,.ed-grid.lg-grid-11{-ms-grid-columns:(calc((100% - var(--gap) * 10) / 11))[11];grid-template-columns:repeat(11, calc((100% - var(--gap) * 10) / 11))}.ed-grid>.span-lg-11,.ed-grid>.lg-cols-11{-ms-grid-column-span:11;grid-column-end:span 11}.ed-grid>.lg-rows-11{-ms-grid-row-span:11;grid-row-end:span 11}.ed-grid>.lg-x-11{-ms-grid-column:11;grid-column-start:11}.ed-grid>.lg-y-11{-ms-grid-row:11;grid-row-start:11}.ed-grid.cols-lg-12,.ed-grid.lg-grid-12{-ms-grid-columns:(calc((100% - var(--gap) * 11) / 12))[12];grid-template-columns:repeat(12, calc((100% - var(--gap) * 11) / 12))}.ed-grid>.span-lg-12,.ed-grid>.lg-cols-12{-ms-grid-column-span:12;grid-column-end:span 12}.ed-grid>.lg-rows-12{-ms-grid-row-span:12;grid-row-end:span 12}.ed-grid>.lg-x-12{-ms-grid-column:12;grid-column-start:12}.ed-grid>.lg-y-12{-ms-grid-row:12;grid-row-start:12}}@media screen and (min-width: 1440px){.ed-grid.cols-xl-1,.ed-grid.xl-grid-1{-ms-grid-columns:100%;grid-template-columns:100%}.ed-grid>.span-xl-1,.ed-grid>.xl-cols-1{-ms-grid-column-span:1;grid-column-end:span 1}.ed-grid>.xl-rows-1{-ms-grid-row-span:1;grid-row-end:span 1}.ed-grid>.xl-x-1{-ms-grid-column:1;grid-column-start:1}.ed-grid>.xl-y-1{-ms-grid-row:1;grid-row-start:1}.ed-grid.cols-xl-2,.ed-grid.xl-grid-2{-ms-grid-columns:(calc((100% - var(--gap) * 1) / 2))[2];grid-template-columns:repeat(2, calc((100% - var(--gap) * 1) / 2))}.ed-grid>.span-xl-2,.ed-grid>.xl-cols-2{-ms-grid-column-span:2;grid-column-end:span 2}.ed-grid>.xl-rows-2{-ms-grid-row-span:2;grid-row-end:span 2}.ed-grid>.xl-x-2{-ms-grid-column:2;grid-column-start:2}.ed-grid>.xl-y-2{-ms-grid-row:2;grid-row-start:2}.ed-grid.cols-xl-3,.ed-grid.xl-grid-3{-ms-grid-columns:(calc((100% - var(--gap) * 2) / 3))[3];grid-template-columns:repeat(3, calc((100% - var(--gap) * 2) / 3))}.ed-grid>.span-xl-3,.ed-grid>.xl-cols-3{-ms-grid-column-span:3;grid-column-end:span 3}.ed-grid>.xl-rows-3{-ms-grid-row-span:3;grid-row-end:span 3}.ed-grid>.xl-x-3{-ms-grid-column:3;grid-column-start:3}.ed-grid>.xl-y-3{-ms-grid-row:3;grid-row-start:3}.ed-grid.cols-xl-4,.ed-grid.xl-grid-4{-ms-grid-columns:(calc((100% - var(--gap) * 3) / 4))[4];grid-template-columns:repeat(4, calc((100% - var(--gap) * 3) / 4))}.ed-grid>.span-xl-4,.ed-grid>.xl-cols-4{-ms-grid-column-span:4;grid-column-end:span 4}.ed-grid>.xl-rows-4{-ms-grid-row-span:4;grid-row-end:span 4}.ed-grid>.xl-x-4{-ms-grid-column:4;grid-column-start:4}.ed-grid>.xl-y-4{-ms-grid-row:4;grid-row-start:4}.ed-grid.cols-xl-5,.ed-grid.xl-grid-5{-ms-grid-columns:(calc((100% - var(--gap) * 4) / 5))[5];grid-template-columns:repeat(5, calc((100% - var(--gap) * 4) / 5))}.ed-grid>.span-xl-5,.ed-grid>.xl-cols-5{-ms-grid-column-span:5;grid-column-end:span 5}.ed-grid>.xl-rows-5{-ms-grid-row-span:5;grid-row-end:span 5}.ed-grid>.xl-x-5{-ms-grid-column:5;grid-column-start:5}.ed-grid>.xl-y-5{-ms-grid-row:5;grid-row-start:5}.ed-grid.cols-xl-6,.ed-grid.xl-grid-6{-ms-grid-columns:(calc((100% - var(--gap) * 5) / 6))[6];grid-template-columns:repeat(6, calc((100% - var(--gap) * 5) / 6))}.ed-grid>.span-xl-6,.ed-grid>.xl-cols-6{-ms-grid-column-span:6;grid-column-end:span 6}.ed-grid>.xl-rows-6{-ms-grid-row-span:6;grid-row-end:span 6}.ed-grid>.xl-x-6{-ms-grid-column:6;grid-column-start:6}.ed-grid>.xl-y-6{-ms-grid-row:6;grid-row-start:6}.ed-grid.cols-xl-7,.ed-grid.xl-grid-7{-ms-grid-columns:(calc((100% - var(--gap) * 6) / 7))[7];grid-template-columns:repeat(7, calc((100% - var(--gap) * 6) / 7))}.ed-grid>.span-xl-7,.ed-grid>.xl-cols-7{-ms-grid-column-span:7;grid-column-end:span 7}.ed-grid>.xl-rows-7{-ms-grid-row-span:7;grid-row-end:span 7}.ed-grid>.xl-x-7{-ms-grid-column:7;grid-column-start:7}.ed-grid>.xl-y-7{-ms-grid-row:7;grid-row-start:7}.ed-grid.cols-xl-8,.ed-grid.xl-grid-8{-ms-grid-columns:(calc((100% - var(--gap) * 7) / 8))[8];grid-template-columns:repeat(8, calc((100% - var(--gap) * 7) / 8))}.ed-grid>.span-xl-8,.ed-grid>.xl-cols-8{-ms-grid-column-span:8;grid-column-end:span 8}.ed-grid>.xl-rows-8{-ms-grid-row-span:8;grid-row-end:span 8}.ed-grid>.xl-x-8{-ms-grid-column:8;grid-column-start:8}.ed-grid>.xl-y-8{-ms-grid-row:8;grid-row-start:8}.ed-grid.cols-xl-9,.ed-grid.xl-grid-9{-ms-grid-columns:(calc((100% - var(--gap) * 8) / 9))[9];grid-template-columns:repeat(9, calc((100% - var(--gap) * 8) / 9))}.ed-grid>.span-xl-9,.ed-grid>.xl-cols-9{-ms-grid-column-span:9;grid-column-end:span 9}.ed-grid>.xl-rows-9{-ms-grid-row-span:9;grid-row-end:span 9}.ed-grid>.xl-x-9{-ms-grid-column:9;grid-column-start:9}.ed-grid>.xl-y-9{-ms-grid-row:9;grid-row-start:9}.ed-grid.cols-xl-10,.ed-grid.xl-grid-10{-ms-grid-columns:(calc((100% - var(--gap) * 9) / 10))[10];grid-template-columns:repeat(10, calc((100% - var(--gap) * 9) / 10))}.ed-grid>.span-xl-10,.ed-grid>.xl-cols-10{-ms-grid-column-span:10;grid-column-end:span 10}.ed-grid>.xl-rows-10{-ms-grid-row-span:10;grid-row-end:span 10}.ed-grid>.xl-x-10{-ms-grid-column:10;grid-column-start:10}.ed-grid>.xl-y-10{-ms-grid-row:10;grid-row-start:10}.ed-grid.cols-xl-11,.ed-grid.xl-grid-11{-ms-grid-columns:(calc((100% - var(--gap) * 10) / 11))[11];grid-template-columns:repeat(11, calc((100% - var(--gap) * 10) / 11))}.ed-grid>.span-xl-11,.ed-grid>.xl-cols-11{-ms-grid-column-span:11;grid-column-end:span 11}.ed-grid>.xl-rows-11{-ms-grid-row-span:11;grid-row-end:span 11}.ed-grid>.xl-x-11{-ms-grid-column:11;grid-column-start:11}.ed-grid>.xl-y-11{-ms-grid-row:11;grid-row-start:11}.ed-grid.cols-xl-12,.ed-grid.xl-grid-12{-ms-grid-columns:(calc((100% - var(--gap) * 11) / 12))[12];grid-template-columns:repeat(12, calc((100% - var(--gap) * 11) / 12))}.ed-grid>.span-xl-12,.ed-grid>.xl-cols-12{-ms-grid-column-span:12;grid-column-end:span 12}.ed-grid>.xl-rows-12{-ms-grid-row-span:12;grid-row-end:span 12}.ed-grid>.xl-x-12{-ms-grid-column:12;grid-column-start:12}.ed-grid>.xl-y-12{-ms-grid-row:12;grid-row-start:12}}.ed-grid[class*="-main-"],.ed-grid[class*="-cross-"]{display:-ms-grid;display:grid}.l-block,.cancel-l-block,.l-section,.cancel-l-section,.l-big-section,.cancel-l-big-section{margin-top:0}.l-block{margin-bottom:var(--vertical-block-space)}.cancel-l-block{margin-top:calc(var(--vertical-block-space) * -1)}.l-section{margin-bottom:calc(var(--vertical-block-space) * 2)}.cancel-l-section{margin-top:calc(var(--vertical-block-space) * -2)}.l-big-section{margin-bottom:calc(var(--vertical-block-space) * 4)}.cancel-l-big-section{margin-top:calc(var(--vertical-block-space) * -4)}body{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-height:100vh}.main-footer{margin-top:auto}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:var(--vertical-content-space)}h1{margin-bottom:calc(var(--vertical-content-space) * 1.5)}p,video,blockquote,article,section,form,figure,iframe,ul,ol,pre,hr,dl,address,table{margin-top:0;margin-bottom:calc(var(--vertical-content-space) * 1.5)}p+h2,video+h2,blockquote+h2,article+h2,section+h2,form+h2,figure+h2,iframe+h2,ul+h2,ol+h2,pre+h2,hr+h2,dl+h2,address+h2,table+h2{padding-top:calc(var(--vertical-content-space) * 1.5)}p+h3,video+h3,blockquote+h3,article+h3,section+h3,form+h3,figure+h3,iframe+h3,ul+h3,ol+h3,pre+h3,hr+h3,dl+h3,address+h3,table+h3{padding-top:var(--vertical-content-space)}ul ul,ol ol,ul ol,ol ul{margin-bottom:0}.s-pt-0{padding-top:0}.s-pl-0{padding-left:0}.s-pb-0{padding-bottom:0}.s-pr-0{padding-right:0}.s-py-0{padding-top:0;padding-bottom:0}.s-px-0{padding-left:0;padding-right:0}.s-pxy-0{padding:0}.s-mr-0{margin-right:0}.s-mb-0{margin-bottom:0}.s-mt-0{margin-top:0}.s-ml-0{margin-left:0}.s-sticky-0{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 0)}.s-pt-1{padding-top:.5rem}.s-pl-1{padding-left:.5rem}.s-pb-1{padding-bottom:.5rem}.s-pr-1{padding-right:.5rem}.s-py-1{padding-top:.5rem;padding-bottom:.5rem}.s-px-1,.card__teachers span{padding-left:.5rem;padding-right:.5rem}.s-pxy-1{padding:.5rem}.s-mr-1{margin-right:.5rem}.s-mb-1{margin-bottom:.5rem}.s-mt-1{margin-top:-.5rem}.s-ml-1{margin-left:-.5rem}.s-sticky-1{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .5rem)}.s-pt-2{padding-top:1rem}.s-pl-2{padding-left:1rem}.s-pb-2{padding-bottom:1rem}.s-pr-2{padding-right:1rem}.s-py-2{padding-top:1rem;padding-bottom:1rem}.s-px-2{padding-left:1rem;padding-right:1rem}.s-pxy-2{padding:1rem}.s-mr-2{margin-right:1rem}.s-mb-2{margin-bottom:1rem}.s-mt-2{margin-top:-1rem}.s-ml-2{margin-left:-1rem}.s-sticky-2{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1rem)}.s-pt-3{padding-top:1.5rem}.s-pl-3{padding-left:1.5rem}.s-pb-3{padding-bottom:1.5rem}.s-pr-3{padding-right:1.5rem}.s-py-3{padding-top:1.5rem;padding-bottom:1.5rem}.s-px-3{padding-left:1.5rem;padding-right:1.5rem}.s-pxy-3{padding:1.5rem}.s-mr-3{margin-right:1.5rem}.s-mb-3{margin-bottom:1.5rem}.s-mt-3{margin-top:-1.5rem}.s-ml-3{margin-left:-1.5rem}.s-sticky-3{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1.5rem)}.s-pt-4{padding-top:2rem}.s-pl-4{padding-left:2rem}.s-pb-4{padding-bottom:2rem}.s-pr-4{padding-right:2rem}.s-py-4{padding-top:2rem;padding-bottom:2rem}.s-px-4{padding-left:2rem;padding-right:2rem}.s-pxy-4{padding:2rem}.s-mr-4{margin-right:2rem}.s-mb-4{margin-bottom:2rem}.s-mt-4{margin-top:-2rem}.s-ml-4{margin-left:-2rem}.s-sticky-4{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 2rem)}.s-pt-05{padding-top:.25rem}.s-pl-05{padding-left:.25rem}.s-pb-05{padding-bottom:.25rem}.s-pr-05{padding-right:.25rem}.s-py-05,.card__teachers span{padding-top:.25rem;padding-bottom:.25rem}.s-px-05{padding-left:.25rem;padding-right:.25rem}.s-pxy-05{padding:.25rem}.s-mr-05{margin-right:.25rem}.s-mb-05{margin-bottom:.25rem}.s-mt-05{margin-top:-.25rem}.s-ml-05{margin-left:-.25rem}.s-sticky-05{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .25rem)}.s-sticky-none{position:static}@media screen and (min-width: 640px){.m-pt-0{padding-top:0}.m-pl-0{padding-left:0}.m-pb-0{padding-bottom:0}.m-pr-0{padding-right:0}.m-py-0{padding-top:0;padding-bottom:0}.m-px-0{padding-left:0;padding-right:0}.m-pxy-0{padding:0}.m-mr-0{margin-right:0}.m-mb-0{margin-bottom:0}.m-mt-0{margin-top:0}.m-ml-0{margin-left:0}.m-sticky-0{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 0)}.m-pt-1{padding-top:.5rem}.m-pl-1{padding-left:.5rem}.m-pb-1{padding-bottom:.5rem}.m-pr-1{padding-right:.5rem}.m-py-1{padding-top:.5rem;padding-bottom:.5rem}.m-px-1{padding-left:.5rem;padding-right:.5rem}.m-pxy-1{padding:.5rem}.m-mr-1{margin-right:.5rem}.m-mb-1{margin-bottom:.5rem}.m-mt-1{margin-top:-.5rem}.m-ml-1{margin-left:-.5rem}.m-sticky-1{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .5rem)}.m-pt-2{padding-top:1rem}.m-pl-2{padding-left:1rem}.m-pb-2{padding-bottom:1rem}.m-pr-2{padding-right:1rem}.m-py-2{padding-top:1rem;padding-bottom:1rem}.m-px-2{padding-left:1rem;padding-right:1rem}.m-pxy-2{padding:1rem}.m-mr-2{margin-right:1rem}.m-mb-2{margin-bottom:1rem}.m-mt-2{margin-top:-1rem}.m-ml-2{margin-left:-1rem}.m-sticky-2{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1rem)}.m-pt-3{padding-top:1.5rem}.m-pl-3{padding-left:1.5rem}.m-pb-3{padding-bottom:1.5rem}.m-pr-3{padding-right:1.5rem}.m-py-3{padding-top:1.5rem;padding-bottom:1.5rem}.m-px-3{padding-left:1.5rem;padding-right:1.5rem}.m-pxy-3{padding:1.5rem}.m-mr-3{margin-right:1.5rem}.m-mb-3{margin-bottom:1.5rem}.m-mt-3{margin-top:-1.5rem}.m-ml-3{margin-left:-1.5rem}.m-sticky-3{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1.5rem)}.m-pt-4{padding-top:2rem}.m-pl-4{padding-left:2rem}.m-pb-4{padding-bottom:2rem}.m-pr-4{padding-right:2rem}.m-py-4{padding-top:2rem;padding-bottom:2rem}.m-px-4{padding-left:2rem;padding-right:2rem}.m-pxy-4{padding:2rem}.m-mr-4{margin-right:2rem}.m-mb-4{margin-bottom:2rem}.m-mt-4{margin-top:-2rem}.m-ml-4{margin-left:-2rem}.m-sticky-4{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 2rem)}.m-pt-05{padding-top:.25rem}.m-pl-05{padding-left:.25rem}.m-pb-05{padding-bottom:.25rem}.m-pr-05{padding-right:.25rem}.m-py-05{padding-top:.25rem;padding-bottom:.25rem}.m-px-05{padding-left:.25rem;padding-right:.25rem}.m-pxy-05{padding:.25rem}.m-mr-05{margin-right:.25rem}.m-mb-05{margin-bottom:.25rem}.m-mt-05{margin-top:-.25rem}.m-ml-05{margin-left:-.25rem}.m-sticky-05{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .25rem)}.m-sticky-none{position:static}}@media screen and (min-width: 1024px){.l-pt-0{padding-top:0}.l-pl-0{padding-left:0}.l-pb-0{padding-bottom:0}.l-pr-0{padding-right:0}.l-py-0{padding-top:0;padding-bottom:0}.l-px-0{padding-left:0;padding-right:0}.l-pxy-0{padding:0}.l-mr-0{margin-right:0}.l-mb-0{margin-bottom:0}.l-mt-0{margin-top:0}.l-ml-0{margin-left:0}.l-sticky-0{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 0)}.l-pt-1{padding-top:.5rem}.l-pl-1{padding-left:.5rem}.l-pb-1{padding-bottom:.5rem}.l-pr-1{padding-right:.5rem}.l-py-1{padding-top:.5rem;padding-bottom:.5rem}.l-px-1{padding-left:.5rem;padding-right:.5rem}.l-pxy-1{padding:.5rem}.l-mr-1{margin-right:.5rem}.l-mb-1{margin-bottom:.5rem}.l-mt-1{margin-top:-.5rem}.l-ml-1{margin-left:-.5rem}.l-sticky-1{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .5rem)}.l-pt-2{padding-top:1rem}.l-pl-2{padding-left:1rem}.l-pb-2{padding-bottom:1rem}.l-pr-2{padding-right:1rem}.l-py-2{padding-top:1rem;padding-bottom:1rem}.l-px-2{padding-left:1rem;padding-right:1rem}.l-pxy-2{padding:1rem}.l-mr-2{margin-right:1rem}.l-mb-2{margin-bottom:1rem}.l-mt-2{margin-top:-1rem}.l-ml-2{margin-left:-1rem}.l-sticky-2{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1rem)}.l-pt-3{padding-top:1.5rem}.l-pl-3{padding-left:1.5rem}.l-pb-3{padding-bottom:1.5rem}.l-pr-3{padding-right:1.5rem}.l-py-3{padding-top:1.5rem;padding-bottom:1.5rem}.l-px-3{padding-left:1.5rem;padding-right:1.5rem}.l-pxy-3{padding:1.5rem}.l-mr-3{margin-right:1.5rem}.l-mb-3{margin-bottom:1.5rem}.l-mt-3{margin-top:-1.5rem}.l-ml-3{margin-left:-1.5rem}.l-sticky-3{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1.5rem)}.l-pt-4{padding-top:2rem}.l-pl-4{padding-left:2rem}.l-pb-4{padding-bottom:2rem}.l-pr-4{padding-right:2rem}.l-py-4{padding-top:2rem;padding-bottom:2rem}.l-px-4{padding-left:2rem;padding-right:2rem}.l-pxy-4{padding:2rem}.l-mr-4{margin-right:2rem}.l-mb-4{margin-bottom:2rem}.l-mt-4{margin-top:-2rem}.l-ml-4{margin-left:-2rem}.l-sticky-4{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 2rem)}.l-pt-05{padding-top:.25rem}.l-pl-05{padding-left:.25rem}.l-pb-05{padding-bottom:.25rem}.l-pr-05{padding-right:.25rem}.l-py-05{padding-top:.25rem;padding-bottom:.25rem}.l-px-05{padding-left:.25rem;padding-right:.25rem}.l-pxy-05{padding:.25rem}.l-mr-05{margin-right:.25rem}.l-mb-05{margin-bottom:.25rem}.l-mt-05{margin-top:-.25rem}.l-ml-05{margin-left:-.25rem}.l-sticky-05{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .25rem)}.l-sticky-none{position:static}}@media screen and (min-width: 1024px){.lg-pt-0{padding-top:0}.lg-pl-0{padding-left:0}.lg-pb-0{padding-bottom:0}.lg-pr-0{padding-right:0}.lg-py-0{padding-top:0;padding-bottom:0}.lg-px-0{padding-left:0;padding-right:0}.lg-pxy-0{padding:0}.lg-mr-0{margin-right:0}.lg-mb-0{margin-bottom:0}.lg-mt-0{margin-top:0}.lg-ml-0{margin-left:0}.lg-sticky-0{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 0)}.lg-pt-1{padding-top:.5rem}.lg-pl-1{padding-left:.5rem}.lg-pb-1{padding-bottom:.5rem}.lg-pr-1{padding-right:.5rem}.lg-py-1{padding-top:.5rem;padding-bottom:.5rem}.lg-px-1{padding-left:.5rem;padding-right:.5rem}.lg-pxy-1{padding:.5rem}.lg-mr-1{margin-right:.5rem}.lg-mb-1{margin-bottom:.5rem}.lg-mt-1{margin-top:-.5rem}.lg-ml-1{margin-left:-.5rem}.lg-sticky-1{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .5rem)}.lg-pt-2{padding-top:1rem}.lg-pl-2{padding-left:1rem}.lg-pb-2{padding-bottom:1rem}.lg-pr-2{padding-right:1rem}.lg-py-2{padding-top:1rem;padding-bottom:1rem}.lg-px-2{padding-left:1rem;padding-right:1rem}.lg-pxy-2{padding:1rem}.lg-mr-2{margin-right:1rem}.lg-mb-2{margin-bottom:1rem}.lg-mt-2{margin-top:-1rem}.lg-ml-2{margin-left:-1rem}.lg-sticky-2{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1rem)}.lg-pt-3{padding-top:1.5rem}.lg-pl-3{padding-left:1.5rem}.lg-pb-3{padding-bottom:1.5rem}.lg-pr-3{padding-right:1.5rem}.lg-py-3{padding-top:1.5rem;padding-bottom:1.5rem}.lg-px-3{padding-left:1.5rem;padding-right:1.5rem}.lg-pxy-3{padding:1.5rem}.lg-mr-3{margin-right:1.5rem}.lg-mb-3{margin-bottom:1.5rem}.lg-mt-3{margin-top:-1.5rem}.lg-ml-3{margin-left:-1.5rem}.lg-sticky-3{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1.5rem)}.lg-pt-4{padding-top:2rem}.lg-pl-4{padding-left:2rem}.lg-pb-4{padding-bottom:2rem}.lg-pr-4{padding-right:2rem}.lg-py-4{padding-top:2rem;padding-bottom:2rem}.lg-px-4{padding-left:2rem;padding-right:2rem}.lg-pxy-4{padding:2rem}.lg-mr-4{margin-right:2rem}.lg-mb-4{margin-bottom:2rem}.lg-mt-4{margin-top:-2rem}.lg-ml-4{margin-left:-2rem}.lg-sticky-4{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 2rem)}.lg-pt-05{padding-top:.25rem}.lg-pl-05{padding-left:.25rem}.lg-pb-05{padding-bottom:.25rem}.lg-pr-05{padding-right:.25rem}.lg-py-05{padding-top:.25rem;padding-bottom:.25rem}.lg-px-05{padding-left:.25rem;padding-right:.25rem}.lg-pxy-05{padding:.25rem}.lg-mr-05{margin-right:.25rem}.lg-mb-05{margin-bottom:.25rem}.lg-mt-05{margin-top:-.25rem}.lg-ml-05{margin-left:-.25rem}.lg-sticky-05{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .25rem)}.lg-sticky-none{position:static}}@media screen and (min-width: 1440px){.xl-pt-0{padding-top:0}.xl-pl-0{padding-left:0}.xl-pb-0{padding-bottom:0}.xl-pr-0{padding-right:0}.xl-py-0{padding-top:0;padding-bottom:0}.xl-px-0{padding-left:0;padding-right:0}.xl-pxy-0{padding:0}.xl-mr-0{margin-right:0}.xl-mb-0{margin-bottom:0}.xl-mt-0{margin-top:0}.xl-ml-0{margin-left:0}.xl-sticky-0{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 0)}.xl-pt-1{padding-top:.5rem}.xl-pl-1{padding-left:.5rem}.xl-pb-1{padding-bottom:.5rem}.xl-pr-1{padding-right:.5rem}.xl-py-1{padding-top:.5rem;padding-bottom:.5rem}.xl-px-1{padding-left:.5rem;padding-right:.5rem}.xl-pxy-1{padding:.5rem}.xl-mr-1{margin-right:.5rem}.xl-mb-1{margin-bottom:.5rem}.xl-mt-1{margin-top:-.5rem}.xl-ml-1{margin-left:-.5rem}.xl-sticky-1{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .5rem)}.xl-pt-2{padding-top:1rem}.xl-pl-2{padding-left:1rem}.xl-pb-2{padding-bottom:1rem}.xl-pr-2{padding-right:1rem}.xl-py-2{padding-top:1rem;padding-bottom:1rem}.xl-px-2{padding-left:1rem;padding-right:1rem}.xl-pxy-2{padding:1rem}.xl-mr-2{margin-right:1rem}.xl-mb-2{margin-bottom:1rem}.xl-mt-2{margin-top:-1rem}.xl-ml-2{margin-left:-1rem}.xl-sticky-2{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1rem)}.xl-pt-3{padding-top:1.5rem}.xl-pl-3{padding-left:1.5rem}.xl-pb-3{padding-bottom:1.5rem}.xl-pr-3{padding-right:1.5rem}.xl-py-3{padding-top:1.5rem;padding-bottom:1.5rem}.xl-px-3{padding-left:1.5rem;padding-right:1.5rem}.xl-pxy-3{padding:1.5rem}.xl-mr-3{margin-right:1.5rem}.xl-mb-3{margin-bottom:1.5rem}.xl-mt-3{margin-top:-1.5rem}.xl-ml-3{margin-left:-1.5rem}.xl-sticky-3{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 1.5rem)}.xl-pt-4{padding-top:2rem}.xl-pl-4{padding-left:2rem}.xl-pb-4{padding-bottom:2rem}.xl-pr-4{padding-right:2rem}.xl-py-4{padding-top:2rem;padding-bottom:2rem}.xl-px-4{padding-left:2rem;padding-right:2rem}.xl-pxy-4{padding:2rem}.xl-mr-4{margin-right:2rem}.xl-mb-4{margin-bottom:2rem}.xl-mt-4{margin-top:-2rem}.xl-ml-4{margin-left:-2rem}.xl-sticky-4{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + 2rem)}.xl-pt-05{padding-top:.25rem}.xl-pl-05{padding-left:.25rem}.xl-pb-05{padding-bottom:.25rem}.xl-pr-05{padding-right:.25rem}.xl-py-05{padding-top:.25rem;padding-bottom:.25rem}.xl-px-05{padding-left:.25rem;padding-right:.25rem}.xl-pxy-05{padding:.25rem}.xl-mr-05{margin-right:.25rem}.xl-mb-05{margin-bottom:.25rem}.xl-mt-05{margin-top:-.25rem}.xl-ml-05{margin-left:-.25rem}.xl-sticky-05{position:-webkit-sticky;position:sticky;top:calc(var(--header-height) + .25rem)}.xl-sticky-none{position:static}}.s-left{text-align:left}.s-center{text-align:center}.s-right{text-align:right}.s-to-left{margin-left:0;margin-right:auto}.s-to-left[class*=button]{display:table}.s-to-center{margin-left:auto;margin-right:auto}.s-to-center[class*=button]{display:table}.s-to-right{margin-right:0;margin-left:auto}.s-to-right[class*=button]{display:table}.s-block-left{display:block;margin-left:0;margin-right:auto}.s-block-center{display:block;margin-left:auto;margin-right:auto}.s-block-right{display:block;margin-right:0;margin-left:auto}@media screen and (min-width: 640px){.m-left{text-align:left}.m-center{text-align:center}.m-right{text-align:right}.m-to-left{margin-left:0;margin-right:auto}.m-to-left[class*=button]{display:table}.m-to-center{margin-left:auto;margin-right:auto}.m-to-center[class*=button]{display:table}.m-to-right{margin-right:0;margin-left:auto}.m-to-right[class*=button]{display:table}.m-block-left{display:block;margin-left:0;margin-right:auto}.m-block-center{display:block;margin-left:auto;margin-right:auto}.m-block-right{display:block;margin-right:0;margin-left:auto}}@media screen and (min-width: 1024px){.l-left{text-align:left}.l-center{text-align:center}.l-right{text-align:right}.l-to-left{margin-left:0;margin-right:auto}.l-to-left[class*=button]{display:table}.l-to-center{margin-left:auto;margin-right:auto}.l-to-center[class*=button]{display:table}.l-to-right{margin-right:0;margin-left:auto}.l-to-right[class*=button]{display:table}.l-block-left{display:block;margin-left:0;margin-right:auto}.l-block-center{display:block;margin-left:auto;margin-right:auto}.l-block-right{display:block;margin-right:0;margin-left:auto}}@media screen and (min-width: 1024px){.lg-left{text-align:left}.lg-center{text-align:center}.lg-right{text-align:right}.lg-to-left{margin-left:0;margin-right:auto}.lg-to-left[class*=button]{display:table}.lg-to-center{margin-left:auto;margin-right:auto}.lg-to-center[class*=button]{display:table}.lg-to-right{margin-right:0;margin-left:auto}.lg-to-right[class*=button]{display:table}.lg-block-left{display:block;margin-left:0;margin-right:auto}.lg-block-center{display:block;margin-left:auto;margin-right:auto}.lg-block-right{display:block;margin-right:0;margin-left:auto}}@media screen and (min-width: 1440px){.xl-left{text-align:left}.xl-center{text-align:center}.xl-right{text-align:right}.xl-to-left{margin-left:0;margin-right:auto}.xl-to-left[class*=button]{display:table}.xl-to-center{margin-left:auto;margin-right:auto}.xl-to-center[class*=button]{display:table}.xl-to-right{margin-right:0;margin-left:auto}.xl-to-right[class*=button]{display:table}.xl-block-left{display:block;margin-left:0;margin-right:auto}.xl-block-center{display:block;margin-left:auto;margin-right:auto}.xl-block-right{display:block;margin-right:0;margin-left:auto}}.s-order-1{-ms-flex-order:1;order:1}.s-order-2{-ms-flex-order:2;order:2}.s-order-3{-ms-flex-order:3;order:3}.s-order-4{-ms-flex-order:4;order:4}.s-order-5{-ms-flex-order:5;order:5}.s-order-6{-ms-flex-order:6;order:6}.s-order-7{-ms-flex-order:7;order:7}.s-order-8{-ms-flex-order:8;order:8}.s-order-9{-ms-flex-order:9;order:9}.s-order-10{-ms-flex-order:10;order:10}.s-order-11{-ms-flex-order:11;order:11}.s-order-12{-ms-flex-order:12;order:12}@media screen and (min-width: 640px){.m-order-1{-ms-flex-order:1;order:1}.m-order-2{-ms-flex-order:2;order:2}.m-order-3{-ms-flex-order:3;order:3}.m-order-4{-ms-flex-order:4;order:4}.m-order-5{-ms-flex-order:5;order:5}.m-order-6{-ms-flex-order:6;order:6}.m-order-7{-ms-flex-order:7;order:7}.m-order-8{-ms-flex-order:8;order:8}.m-order-9{-ms-flex-order:9;order:9}.m-order-10{-ms-flex-order:10;order:10}.m-order-11{-ms-flex-order:11;order:11}.m-order-12{-ms-flex-order:12;order:12}}@media screen and (min-width: 1024px){.l-order-1{-ms-flex-order:1;order:1}.l-order-2{-ms-flex-order:2;order:2}.l-order-3{-ms-flex-order:3;order:3}.l-order-4{-ms-flex-order:4;order:4}.l-order-5{-ms-flex-order:5;order:5}.l-order-6{-ms-flex-order:6;order:6}.l-order-7{-ms-flex-order:7;order:7}.l-order-8{-ms-flex-order:8;order:8}.l-order-9{-ms-flex-order:9;order:9}.l-order-10{-ms-flex-order:10;order:10}.l-order-11{-ms-flex-order:11;order:11}.l-order-12{-ms-flex-order:12;order:12}}@media screen and (min-width: 1024px){.lg-order-1{-ms-flex-order:1;order:1}.lg-order-2{-ms-flex-order:2;order:2}.lg-order-3{-ms-flex-order:3;order:3}.lg-order-4{-ms-flex-order:4;order:4}.lg-order-5{-ms-flex-order:5;order:5}.lg-order-6{-ms-flex-order:6;order:6}.lg-order-7{-ms-flex-order:7;order:7}.lg-order-8{-ms-flex-order:8;order:8}.lg-order-9{-ms-flex-order:9;order:9}.lg-order-10{-ms-flex-order:10;order:10}.lg-order-11{-ms-flex-order:11;order:11}.lg-order-12{-ms-flex-order:12;order:12}}@media screen and (min-width: 1440px){.xl-order-1{-ms-flex-order:1;order:1}.xl-order-2{-ms-flex-order:2;order:2}.xl-order-3{-ms-flex-order:3;order:3}.xl-order-4{-ms-flex-order:4;order:4}.xl-order-5{-ms-flex-order:5;order:5}.xl-order-6{-ms-flex-order:6;order:6}.xl-order-7{-ms-flex-order:7;order:7}.xl-order-8{-ms-flex-order:8;order:8}.xl-order-9{-ms-flex-order:9;order:9}.xl-order-10{-ms-flex-order:10;order:10}.xl-order-11{-ms-flex-order:11;order:11}.xl-order-12{-ms-flex-order:12;order:12}}.flex,.s-row,.s-row-reverse,.s-column,.s-column-reverse,.s-main-start,.s-main-center,.s-main-end,.s-main-justify,.s-main-distribute,.s-cross-baseline,.s-cross-start,.s-cross-center,.s-cross-end{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (min-width: 640px){.flex,.m-row,.m-row-reverse,.m-column,.m-column-reverse,.m-main-start,.m-main-center,.m-main-end,.m-main-justify,.m-main-distribute,.m-cross-baseline,.m-cross-start,.m-cross-center,.m-cross-end{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width: 1024px){.flex,.l-row,.l-row-reverse,.l-column,.l-column-reverse,.l-main-start,.l-main-center,.l-main-end,.l-main-justify,.l-main-distribute,.l-cross-baseline,.l-cross-start,.l-cross-center,.l-cross-end{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width: 1024px){.flex,.lg-row,.lg-row-reverse,.lg-column,.lg-column-reverse,.lg-main-start,.lg-main-center,.lg-main-end,.lg-main-justify,.lg-main-distribute,.lg-cross-baseline,.lg-cross-start,.lg-cross-center,.lg-cross-end{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (min-width: 1440px){.flex,.xl-row,.xl-row-reverse,.xl-column,.xl-column-reverse,.xl-main-start,.xl-main-center,.xl-main-end,.xl-main-justify,.xl-main-distribute,.xl-cross-baseline,.xl-cross-start,.xl-cross-center,.xl-cross-end{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}.s-row{-ms-flex-direction:row;flex-direction:row}.s-row-reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.s-column{-ms-flex-direction:column;flex-direction:column}.s-column-reverse{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.s-main-start{-ms-flex-pack:start;justify-content:flex-start}.s-main-center{-ms-flex-pack:center;justify-content:center}.s-main-end{-ms-flex-pack:end;justify-content:flex-end}.s-main-justify{-ms-flex-pack:justify;justify-content:space-between}.s-main-distribute{-ms-flex-pack:space-evenly;justify-content:space-evenly}.s-cross-baseline{-ms-flex-align:baseline;align-items:baseline;-ms-flex-line-pack:baseline;align-content:baseline}.s-cross-start{-ms-flex-align:start;align-items:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.s-cross-center{-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.s-cross-end{-ms-flex-align:end;align-items:flex-end;-ms-flex-line-pack:end;align-content:flex-end}@media screen and (min-width: 640px){.m-row{-ms-flex-direction:row;flex-direction:row}.m-row-reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.m-column{-ms-flex-direction:column;flex-direction:column}.m-column-reverse{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.m-main-start{-ms-flex-pack:start;justify-content:flex-start}.m-main-center{-ms-flex-pack:center;justify-content:center}.m-main-end{-ms-flex-pack:end;justify-content:flex-end}.m-main-justify{-ms-flex-pack:justify;justify-content:space-between}.m-main-distribute{-ms-flex-pack:space-evenly;justify-content:space-evenly}.m-cross-baseline{-ms-flex-align:baseline;align-items:baseline;-ms-flex-line-pack:baseline;align-content:baseline}.m-cross-start{-ms-flex-align:start;align-items:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.m-cross-center{-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.m-cross-end{-ms-flex-align:end;align-items:flex-end;-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width: 1024px){.l-row{-ms-flex-direction:row;flex-direction:row}.l-row-reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.l-column{-ms-flex-direction:column;flex-direction:column}.l-column-reverse{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.l-main-start{-ms-flex-pack:start;justify-content:flex-start}.l-main-center{-ms-flex-pack:center;justify-content:center}.l-main-end{-ms-flex-pack:end;justify-content:flex-end}.l-main-justify{-ms-flex-pack:justify;justify-content:space-between}.l-main-distribute{-ms-flex-pack:space-evenly;justify-content:space-evenly}.l-cross-baseline{-ms-flex-align:baseline;align-items:baseline;-ms-flex-line-pack:baseline;align-content:baseline}.l-cross-start{-ms-flex-align:start;align-items:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.l-cross-center{-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.l-cross-end{-ms-flex-align:end;align-items:flex-end;-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width: 1024px){.lg-row{-ms-flex-direction:row;flex-direction:row}.lg-row-reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.lg-column{-ms-flex-direction:column;flex-direction:column}.lg-column-reverse{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.lg-main-start{-ms-flex-pack:start;justify-content:flex-start}.lg-main-center{-ms-flex-pack:center;justify-content:center}.lg-main-end{-ms-flex-pack:end;justify-content:flex-end}.lg-main-justify{-ms-flex-pack:justify;justify-content:space-between}.lg-main-distribute{-ms-flex-pack:space-evenly;justify-content:space-evenly}.lg-cross-baseline{-ms-flex-align:baseline;align-items:baseline;-ms-flex-line-pack:baseline;align-content:baseline}.lg-cross-start{-ms-flex-align:start;align-items:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.lg-cross-center{-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.lg-cross-end{-ms-flex-align:end;align-items:flex-end;-ms-flex-line-pack:end;align-content:flex-end}}@media screen and (min-width: 1440px){.xl-row{-ms-flex-direction:row;flex-direction:row}.xl-row-reverse{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.xl-column{-ms-flex-direction:column;flex-direction:column}.xl-column-reverse{-ms-flex-direction:column-reverse;flex-direction:column-reverse}.xl-main-start{-ms-flex-pack:start;justify-content:flex-start}.xl-main-center{-ms-flex-pack:center;justify-content:center}.xl-main-end{-ms-flex-pack:end;justify-content:flex-end}.xl-main-justify{-ms-flex-pack:justify;justify-content:space-between}.xl-main-distribute{-ms-flex-pack:space-evenly;justify-content:space-evenly}.xl-cross-baseline{-ms-flex-align:baseline;align-items:baseline;-ms-flex-line-pack:baseline;align-content:baseline}.xl-cross-start{-ms-flex-align:start;align-items:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.xl-cross-center{-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.xl-cross-end{-ms-flex-align:end;align-items:flex-end;-ms-flex-line-pack:end;align-content:flex-end}}.from-s{display:none}.to-s{display:none}@media screen and (max-width: 639px){.from-m{display:none}}@media screen and (min-width: 640px){.to-m{display:none}}@media screen and (max-width: 1023px){.from-l{display:none}}@media screen and (min-width: 1024px){.to-l{display:none}}@media screen and (max-width: 1023px){.from-lg{display:none}}@media screen and (min-width: 1024px){.to-lg{display:none}}@media screen and (max-width: 1439px){.from-xl{display:none}}@media screen and (min-width: 1440px){.to-xl{display:none}}.button{display:inline-block;padding:.5em 1em;color:#FFF;background:var(--color);cursor:pointer;text-decoration:none;line-height:inherit;border-radius:.25rem;transition:transform .05s;border:none}.button:hover{background:var(--color-alt)}.z-back{z-index:var(--z-back)}.z-normal{z-index:var(--z-normal)}.z-tooltip{z-index:var(--z-tooltip)}.z-fixed{z-index:var(--z-fixed)}.z-modal{z-index:var(--z-modal)}.s-border,.card__teachers span{border:1px solid var(--border-color)}.s-border-none{border:none}.s-radius,.card__teachers span{border-radius:var(--border-radius)}.s-border-top{border-top:1px solid var(--border-color)}.s-border-none{border-top:none}.s-border-right{border-right:1px solid var(--border-color)}.s-border-none{border-right:none}.s-border-bottom{border-bottom:1px solid var(--border-color)}.s-border-none{border-bottom:none}.s-border-left{border-left:1px solid var(--border-color)}.s-border-none{border-left:none}.s-radius-tl{border-top-left-radius:var(--border-radius)}.s-radius-tr{border-top-right-radius:var(--border-radius)}.s-radius-bl{border-bottom-left-radius:var(--border-radius)}.s-radius-br{border-bottom-right-radius:var(--border-radius)}.s-radius-0{border-radius:0}.s-radius-1{border-radius:.5rem}.s-radius-2{border-radius:1rem}.s-radius-3{border-radius:1.5rem}.s-radius-4{border-radius:2rem}.s-radius-05{border-radius:.25rem}.s-radius-tl-0{border-top-left-radius:0}.s-radius-tl-1{border-top-left-radius:.5rem}.s-radius-tl-2{border-top-left-radius:1rem}.s-radius-tl-3{border-top-left-radius:1.5rem}.s-radius-tl-4{border-top-left-radius:2rem}.s-radius-tl-05{border-top-left-radius:.25rem}.s-radius-tr-0{border-top-right-radius:0}.s-radius-tr-1{border-top-right-radius:.5rem}.s-radius-tr-2{border-top-right-radius:1rem}.s-radius-tr-3{border-top-right-radius:1.5rem}.s-radius-tr-4{border-top-right-radius:2rem}.s-radius-tr-05{border-top-right-radius:.25rem}.s-radius-bl-0{border-bottom-left-radius:0}.s-radius-bl-1{border-bottom-left-radius:.5rem}.s-radius-bl-2{border-bottom-left-radius:1rem}.s-radius-bl-3{border-bottom-left-radius:1.5rem}.s-radius-bl-4{border-bottom-left-radius:2rem}.s-radius-bl-05{border-bottom-left-radius:.25rem}.s-radius-br-0{border-bottom-right-radius:0}.s-radius-br-1{border-bottom-right-radius:.5rem}.s-radius-br-2{border-bottom-right-radius:1rem}.s-radius-br-3{border-bottom-right-radius:1.5rem}.s-radius-br-4{border-bottom-right-radius:2rem}.s-radius-br-05{border-bottom-right-radius:.25rem}.s-radius-tl-none{border-top-left-radius:0}.s-radius-tr-none{border-top-right-radius:0}.s-radius-bl-none{border-bottom-left-radius:0}.s-radius-br-none{border-bottom-right-radius:0}.s-radius-none{border-radius:none}.s-bg-blue{background-color:var(--color)}.s-bg-white{background-color:#FFF}.s-bg-grey{background-color:var(--light-bg)}.s-bg-none{background-color:transparent}.s-ratio-1-1{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.s-ratio-1-2{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.s-ratio-1-3{width:100%;height:0;overflow:hidden;padding-bottom:300%;position:relative}.s-ratio-1-4{width:100%;height:0;overflow:hidden;padding-bottom:400%;position:relative}.s-ratio-2-1{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.s-ratio-2-2{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.s-ratio-2-3{width:100%;height:0;overflow:hidden;padding-bottom:150%;position:relative}.s-ratio-2-4{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.s-ratio-3-1{width:100%;height:0;overflow:hidden;padding-bottom:33.33333%;position:relative}.s-ratio-3-2{width:100%;height:0;overflow:hidden;padding-bottom:66.66667%;position:relative}.s-ratio-3-3{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.s-ratio-3-4{width:100%;height:0;overflow:hidden;padding-bottom:133.33333%;position:relative}.s-ratio-4-1{width:100%;height:0;overflow:hidden;padding-bottom:25%;position:relative}.s-ratio-4-2{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.s-ratio-4-3{width:100%;height:0;overflow:hidden;padding-bottom:75%;position:relative}.s-ratio-4-4{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.s-ratio-16-9{width:100%;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.s-ratio-9-16{width:100%;height:0;overflow:hidden;padding-bottom:177.77778%;position:relative}.s-ratio-21-9{width:100%;height:0;overflow:hidden;padding-bottom:42.85714%;position:relative}.s-shadow{box-shadow:0 0 1rem #CCC}.s-shadow-bottom,.card:hover{box-shadow:0 0.5rem 1rem -0.5rem #CCC}.s-shadow-top{box-shadow:0 -0.5rem 1rem -0.5rem #CCC}.s-shadow-right{box-shadow:0.5rem 0 1rem -0.5rem #CCC}.s-shadow-left{box-shadow:-0.5rem 0 1rem -0.5rem #CCC}.s-shadow-none{box-shadow:none}.s-fxn{-ms-flex:none;flex:none}.s-fxw{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.s-fxg{-ms-flex-positive:1;flex-grow:1}.s-opacity-1{opacity:.1}.s-opacity-2{opacity:.2}.s-opacity-3{opacity:.3}.s-opacity-4{opacity:.4}.s-opacity-5{opacity:.5}.s-opacity-6{opacity:.6}.s-opacity-7{opacity:.7}.s-opacity-8{opacity:.8}.s-opacity-9{opacity:.9}.s-opacity-10{opacity:1}@media screen and (min-width: 640px){.m-border{border:1px solid var(--border-color)}.m-border-none{border:none}.m-radius{border-radius:var(--border-radius)}.m-border-top{border-top:1px solid var(--border-color)}.m-border-none{border-top:none}.m-border-right{border-right:1px solid var(--border-color)}.m-border-none{border-right:none}.m-border-bottom{border-bottom:1px solid var(--border-color)}.m-border-none{border-bottom:none}.m-border-left{border-left:1px solid var(--border-color)}.m-border-none{border-left:none}.m-radius-tl{border-top-left-radius:var(--border-radius)}.m-radius-tr{border-top-right-radius:var(--border-radius)}.m-radius-bl{border-bottom-left-radius:var(--border-radius)}.m-radius-br{border-bottom-right-radius:var(--border-radius)}.m-radius-0{border-radius:0}.m-radius-1{border-radius:.5rem}.m-radius-2{border-radius:1rem}.m-radius-3{border-radius:1.5rem}.m-radius-4{border-radius:2rem}.m-radius-05{border-radius:.25rem}.m-radius-tl-0{border-top-left-radius:0}.m-radius-tl-1{border-top-left-radius:.5rem}.m-radius-tl-2{border-top-left-radius:1rem}.m-radius-tl-3{border-top-left-radius:1.5rem}.m-radius-tl-4{border-top-left-radius:2rem}.m-radius-tl-05{border-top-left-radius:.25rem}.m-radius-tr-0{border-top-right-radius:0}.m-radius-tr-1{border-top-right-radius:.5rem}.m-radius-tr-2{border-top-right-radius:1rem}.m-radius-tr-3{border-top-right-radius:1.5rem}.m-radius-tr-4{border-top-right-radius:2rem}.m-radius-tr-05{border-top-right-radius:.25rem}.m-radius-bl-0{border-bottom-left-radius:0}.m-radius-bl-1{border-bottom-left-radius:.5rem}.m-radius-bl-2{border-bottom-left-radius:1rem}.m-radius-bl-3{border-bottom-left-radius:1.5rem}.m-radius-bl-4{border-bottom-left-radius:2rem}.m-radius-bl-05{border-bottom-left-radius:.25rem}.m-radius-br-0{border-bottom-right-radius:0}.m-radius-br-1{border-bottom-right-radius:.5rem}.m-radius-br-2{border-bottom-right-radius:1rem}.m-radius-br-3{border-bottom-right-radius:1.5rem}.m-radius-br-4{border-bottom-right-radius:2rem}.m-radius-br-05{border-bottom-right-radius:.25rem}.m-radius-tl-none{border-top-left-radius:0}.m-radius-tr-none{border-top-right-radius:0}.m-radius-bl-none{border-bottom-left-radius:0}.m-radius-br-none{border-bottom-right-radius:0}.m-radius-none{border-radius:none}.m-bg-blue{background-color:var(--color)}.m-bg-white{background-color:#FFF}.m-bg-grey{background-color:var(--light-bg)}.m-bg-none{background-color:transparent}.m-ratio-1-1{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.m-ratio-1-2{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.m-ratio-1-3{width:100%;height:0;overflow:hidden;padding-bottom:300%;position:relative}.m-ratio-1-4{width:100%;height:0;overflow:hidden;padding-bottom:400%;position:relative}.m-ratio-2-1{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.m-ratio-2-2{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.m-ratio-2-3{width:100%;height:0;overflow:hidden;padding-bottom:150%;position:relative}.m-ratio-2-4{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.m-ratio-3-1{width:100%;height:0;overflow:hidden;padding-bottom:33.33333%;position:relative}.m-ratio-3-2{width:100%;height:0;overflow:hidden;padding-bottom:66.66667%;position:relative}.m-ratio-3-3{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.m-ratio-3-4{width:100%;height:0;overflow:hidden;padding-bottom:133.33333%;position:relative}.m-ratio-4-1{width:100%;height:0;overflow:hidden;padding-bottom:25%;position:relative}.m-ratio-4-2{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.m-ratio-4-3{width:100%;height:0;overflow:hidden;padding-bottom:75%;position:relative}.m-ratio-4-4{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.m-ratio-16-9{width:100%;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.m-ratio-9-16{width:100%;height:0;overflow:hidden;padding-bottom:177.77778%;position:relative}.m-ratio-21-9{width:100%;height:0;overflow:hidden;padding-bottom:42.85714%;position:relative}.m-shadow{box-shadow:0 0 1rem #CCC}.m-shadow-bottom{box-shadow:0 0.5rem 1rem -0.5rem #CCC}.m-shadow-top{box-shadow:0 -0.5rem 1rem -0.5rem #CCC}.m-shadow-right{box-shadow:0.5rem 0 1rem -0.5rem #CCC}.m-shadow-left{box-shadow:-0.5rem 0 1rem -0.5rem #CCC}.m-shadow-none{box-shadow:none}.m-fxn{-ms-flex:none;flex:none}.m-fxw{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.m-fxg{-ms-flex-positive:1;flex-grow:1}.m-opacity-1{opacity:.1}.m-opacity-2{opacity:.2}.m-opacity-3{opacity:.3}.m-opacity-4{opacity:.4}.m-opacity-5{opacity:.5}.m-opacity-6{opacity:.6}.m-opacity-7{opacity:.7}.m-opacity-8{opacity:.8}.m-opacity-9{opacity:.9}.m-opacity-10{opacity:1}}@media screen and (min-width: 1024px){.l-border{border:1px solid var(--border-color)}.l-border-none{border:none}.l-radius{border-radius:var(--border-radius)}.l-border-top{border-top:1px solid var(--border-color)}.l-border-none{border-top:none}.l-border-right{border-right:1px solid var(--border-color)}.l-border-none{border-right:none}.l-border-bottom{border-bottom:1px solid var(--border-color)}.l-border-none{border-bottom:none}.l-border-left{border-left:1px solid var(--border-color)}.l-border-none{border-left:none}.l-radius-tl{border-top-left-radius:var(--border-radius)}.l-radius-tr{border-top-right-radius:var(--border-radius)}.l-radius-bl{border-bottom-left-radius:var(--border-radius)}.l-radius-br{border-bottom-right-radius:var(--border-radius)}.l-radius-0{border-radius:0}.l-radius-1{border-radius:.5rem}.l-radius-2{border-radius:1rem}.l-radius-3{border-radius:1.5rem}.l-radius-4{border-radius:2rem}.l-radius-05{border-radius:.25rem}.l-radius-tl-0{border-top-left-radius:0}.l-radius-tl-1{border-top-left-radius:.5rem}.l-radius-tl-2{border-top-left-radius:1rem}.l-radius-tl-3{border-top-left-radius:1.5rem}.l-radius-tl-4{border-top-left-radius:2rem}.l-radius-tl-05{border-top-left-radius:.25rem}.l-radius-tr-0{border-top-right-radius:0}.l-radius-tr-1{border-top-right-radius:.5rem}.l-radius-tr-2{border-top-right-radius:1rem}.l-radius-tr-3{border-top-right-radius:1.5rem}.l-radius-tr-4{border-top-right-radius:2rem}.l-radius-tr-05{border-top-right-radius:.25rem}.l-radius-bl-0{border-bottom-left-radius:0}.l-radius-bl-1{border-bottom-left-radius:.5rem}.l-radius-bl-2{border-bottom-left-radius:1rem}.l-radius-bl-3{border-bottom-left-radius:1.5rem}.l-radius-bl-4{border-bottom-left-radius:2rem}.l-radius-bl-05{border-bottom-left-radius:.25rem}.l-radius-br-0{border-bottom-right-radius:0}.l-radius-br-1{border-bottom-right-radius:.5rem}.l-radius-br-2{border-bottom-right-radius:1rem}.l-radius-br-3{border-bottom-right-radius:1.5rem}.l-radius-br-4{border-bottom-right-radius:2rem}.l-radius-br-05{border-bottom-right-radius:.25rem}.l-radius-tl-none{border-top-left-radius:0}.l-radius-tr-none{border-top-right-radius:0}.l-radius-bl-none{border-bottom-left-radius:0}.l-radius-br-none{border-bottom-right-radius:0}.l-radius-none{border-radius:none}.l-bg-blue{background-color:var(--color)}.l-bg-white{background-color:#FFF}.l-bg-grey{background-color:var(--light-bg)}.l-bg-none{background-color:transparent}.l-ratio-1-1{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.l-ratio-1-2{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.l-ratio-1-3{width:100%;height:0;overflow:hidden;padding-bottom:300%;position:relative}.l-ratio-1-4{width:100%;height:0;overflow:hidden;padding-bottom:400%;position:relative}.l-ratio-2-1{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.l-ratio-2-2{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.l-ratio-2-3{width:100%;height:0;overflow:hidden;padding-bottom:150%;position:relative}.l-ratio-2-4{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.l-ratio-3-1{width:100%;height:0;overflow:hidden;padding-bottom:33.33333%;position:relative}.l-ratio-3-2{width:100%;height:0;overflow:hidden;padding-bottom:66.66667%;position:relative}.l-ratio-3-3{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.l-ratio-3-4{width:100%;height:0;overflow:hidden;padding-bottom:133.33333%;position:relative}.l-ratio-4-1{width:100%;height:0;overflow:hidden;padding-bottom:25%;position:relative}.l-ratio-4-2{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.l-ratio-4-3{width:100%;height:0;overflow:hidden;padding-bottom:75%;position:relative}.l-ratio-4-4{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.l-ratio-16-9{width:100%;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.l-ratio-9-16{width:100%;height:0;overflow:hidden;padding-bottom:177.77778%;position:relative}.l-ratio-21-9{width:100%;height:0;overflow:hidden;padding-bottom:42.85714%;position:relative}.l-shadow{box-shadow:0 0 1rem #CCC}.l-shadow-bottom{box-shadow:0 0.5rem 1rem -0.5rem #CCC}.l-shadow-top{box-shadow:0 -0.5rem 1rem -0.5rem #CCC}.l-shadow-right{box-shadow:0.5rem 0 1rem -0.5rem #CCC}.l-shadow-left{box-shadow:-0.5rem 0 1rem -0.5rem #CCC}.l-shadow-none{box-shadow:none}.l-fxn{-ms-flex:none;flex:none}.l-fxw{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.l-fxg{-ms-flex-positive:1;flex-grow:1}.l-opacity-1{opacity:.1}.l-opacity-2{opacity:.2}.l-opacity-3{opacity:.3}.l-opacity-4{opacity:.4}.l-opacity-5{opacity:.5}.l-opacity-6{opacity:.6}.l-opacity-7{opacity:.7}.l-opacity-8{opacity:.8}.l-opacity-9{opacity:.9}.l-opacity-10{opacity:1}}@media screen and (min-width: 1024px){.lg-border{border:1px solid var(--border-color)}.lg-border-none{border:none}.lg-radius{border-radius:var(--border-radius)}.lg-border-top{border-top:1px solid var(--border-color)}.lg-border-none{border-top:none}.lg-border-right{border-right:1px solid var(--border-color)}.lg-border-none{border-right:none}.lg-border-bottom{border-bottom:1px solid var(--border-color)}.lg-border-none{border-bottom:none}.lg-border-left{border-left:1px solid var(--border-color)}.lg-border-none{border-left:none}.lg-radius-tl{border-top-left-radius:var(--border-radius)}.lg-radius-tr{border-top-right-radius:var(--border-radius)}.lg-radius-bl{border-bottom-left-radius:var(--border-radius)}.lg-radius-br{border-bottom-right-radius:var(--border-radius)}.lg-radius-0{border-radius:0}.lg-radius-1{border-radius:.5rem}.lg-radius-2{border-radius:1rem}.lg-radius-3{border-radius:1.5rem}.lg-radius-4{border-radius:2rem}.lg-radius-05{border-radius:.25rem}.lg-radius-tl-0{border-top-left-radius:0}.lg-radius-tl-1{border-top-left-radius:.5rem}.lg-radius-tl-2{border-top-left-radius:1rem}.lg-radius-tl-3{border-top-left-radius:1.5rem}.lg-radius-tl-4{border-top-left-radius:2rem}.lg-radius-tl-05{border-top-left-radius:.25rem}.lg-radius-tr-0{border-top-right-radius:0}.lg-radius-tr-1{border-top-right-radius:.5rem}.lg-radius-tr-2{border-top-right-radius:1rem}.lg-radius-tr-3{border-top-right-radius:1.5rem}.lg-radius-tr-4{border-top-right-radius:2rem}.lg-radius-tr-05{border-top-right-radius:.25rem}.lg-radius-bl-0{border-bottom-left-radius:0}.lg-radius-bl-1{border-bottom-left-radius:.5rem}.lg-radius-bl-2{border-bottom-left-radius:1rem}.lg-radius-bl-3{border-bottom-left-radius:1.5rem}.lg-radius-bl-4{border-bottom-left-radius:2rem}.lg-radius-bl-05{border-bottom-left-radius:.25rem}.lg-radius-br-0{border-bottom-right-radius:0}.lg-radius-br-1{border-bottom-right-radius:.5rem}.lg-radius-br-2{border-bottom-right-radius:1rem}.lg-radius-br-3{border-bottom-right-radius:1.5rem}.lg-radius-br-4{border-bottom-right-radius:2rem}.lg-radius-br-05{border-bottom-right-radius:.25rem}.lg-radius-tl-none{border-top-left-radius:0}.lg-radius-tr-none{border-top-right-radius:0}.lg-radius-bl-none{border-bottom-left-radius:0}.lg-radius-br-none{border-bottom-right-radius:0}.lg-radius-none{border-radius:none}.lg-bg-blue{background-color:var(--color)}.lg-bg-white{background-color:#FFF}.lg-bg-grey{background-color:var(--light-bg)}.lg-bg-none{background-color:transparent}.lg-ratio-1-1{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.lg-ratio-1-2{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.lg-ratio-1-3{width:100%;height:0;overflow:hidden;padding-bottom:300%;position:relative}.lg-ratio-1-4{width:100%;height:0;overflow:hidden;padding-bottom:400%;position:relative}.lg-ratio-2-1{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.lg-ratio-2-2{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.lg-ratio-2-3{width:100%;height:0;overflow:hidden;padding-bottom:150%;position:relative}.lg-ratio-2-4{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.lg-ratio-3-1{width:100%;height:0;overflow:hidden;padding-bottom:33.33333%;position:relative}.lg-ratio-3-2{width:100%;height:0;overflow:hidden;padding-bottom:66.66667%;position:relative}.lg-ratio-3-3{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.lg-ratio-3-4{width:100%;height:0;overflow:hidden;padding-bottom:133.33333%;position:relative}.lg-ratio-4-1{width:100%;height:0;overflow:hidden;padding-bottom:25%;position:relative}.lg-ratio-4-2{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.lg-ratio-4-3{width:100%;height:0;overflow:hidden;padding-bottom:75%;position:relative}.lg-ratio-4-4{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.lg-ratio-16-9{width:100%;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.lg-ratio-9-16{width:100%;height:0;overflow:hidden;padding-bottom:177.77778%;position:relative}.lg-ratio-21-9{width:100%;height:0;overflow:hidden;padding-bottom:42.85714%;position:relative}.lg-shadow{box-shadow:0 0 1rem #CCC}.lg-shadow-bottom{box-shadow:0 0.5rem 1rem -0.5rem #CCC}.lg-shadow-top{box-shadow:0 -0.5rem 1rem -0.5rem #CCC}.lg-shadow-right{box-shadow:0.5rem 0 1rem -0.5rem #CCC}.lg-shadow-left{box-shadow:-0.5rem 0 1rem -0.5rem #CCC}.lg-shadow-none{box-shadow:none}.lg-fxn{-ms-flex:none;flex:none}.lg-fxw{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.lg-fxg{-ms-flex-positive:1;flex-grow:1}.lg-opacity-1{opacity:.1}.lg-opacity-2{opacity:.2}.lg-opacity-3{opacity:.3}.lg-opacity-4{opacity:.4}.lg-opacity-5{opacity:.5}.lg-opacity-6{opacity:.6}.lg-opacity-7{opacity:.7}.lg-opacity-8{opacity:.8}.lg-opacity-9{opacity:.9}.lg-opacity-10{opacity:1}}@media screen and (min-width: 1440px){.xl-border{border:1px solid var(--border-color)}.xl-border-none{border:none}.xl-radius{border-radius:var(--border-radius)}.xl-border-top{border-top:1px solid var(--border-color)}.xl-border-none{border-top:none}.xl-border-right{border-right:1px solid var(--border-color)}.xl-border-none{border-right:none}.xl-border-bottom{border-bottom:1px solid var(--border-color)}.xl-border-none{border-bottom:none}.xl-border-left{border-left:1px solid var(--border-color)}.xl-border-none{border-left:none}.xl-radius-tl{border-top-left-radius:var(--border-radius)}.xl-radius-tr{border-top-right-radius:var(--border-radius)}.xl-radius-bl{border-bottom-left-radius:var(--border-radius)}.xl-radius-br{border-bottom-right-radius:var(--border-radius)}.xl-radius-0{border-radius:0}.xl-radius-1{border-radius:.5rem}.xl-radius-2{border-radius:1rem}.xl-radius-3{border-radius:1.5rem}.xl-radius-4{border-radius:2rem}.xl-radius-05{border-radius:.25rem}.xl-radius-tl-0{border-top-left-radius:0}.xl-radius-tl-1{border-top-left-radius:.5rem}.xl-radius-tl-2{border-top-left-radius:1rem}.xl-radius-tl-3{border-top-left-radius:1.5rem}.xl-radius-tl-4{border-top-left-radius:2rem}.xl-radius-tl-05{border-top-left-radius:.25rem}.xl-radius-tr-0{border-top-right-radius:0}.xl-radius-tr-1{border-top-right-radius:.5rem}.xl-radius-tr-2{border-top-right-radius:1rem}.xl-radius-tr-3{border-top-right-radius:1.5rem}.xl-radius-tr-4{border-top-right-radius:2rem}.xl-radius-tr-05{border-top-right-radius:.25rem}.xl-radius-bl-0{border-bottom-left-radius:0}.xl-radius-bl-1{border-bottom-left-radius:.5rem}.xl-radius-bl-2{border-bottom-left-radius:1rem}.xl-radius-bl-3{border-bottom-left-radius:1.5rem}.xl-radius-bl-4{border-bottom-left-radius:2rem}.xl-radius-bl-05{border-bottom-left-radius:.25rem}.xl-radius-br-0{border-bottom-right-radius:0}.xl-radius-br-1{border-bottom-right-radius:.5rem}.xl-radius-br-2{border-bottom-right-radius:1rem}.xl-radius-br-3{border-bottom-right-radius:1.5rem}.xl-radius-br-4{border-bottom-right-radius:2rem}.xl-radius-br-05{border-bottom-right-radius:.25rem}.xl-radius-tl-none{border-top-left-radius:0}.xl-radius-tr-none{border-top-right-radius:0}.xl-radius-bl-none{border-bottom-left-radius:0}.xl-radius-br-none{border-bottom-right-radius:0}.xl-radius-none{border-radius:none}.xl-bg-blue{background-color:var(--color)}.xl-bg-white{background-color:#FFF}.xl-bg-grey{background-color:var(--light-bg)}.xl-bg-none{background-color:transparent}.xl-ratio-1-1{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.xl-ratio-1-2{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.xl-ratio-1-3{width:100%;height:0;overflow:hidden;padding-bottom:300%;position:relative}.xl-ratio-1-4{width:100%;height:0;overflow:hidden;padding-bottom:400%;position:relative}.xl-ratio-2-1{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.xl-ratio-2-2{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.xl-ratio-2-3{width:100%;height:0;overflow:hidden;padding-bottom:150%;position:relative}.xl-ratio-2-4{width:100%;height:0;overflow:hidden;padding-bottom:200%;position:relative}.xl-ratio-3-1{width:100%;height:0;overflow:hidden;padding-bottom:33.33333%;position:relative}.xl-ratio-3-2{width:100%;height:0;overflow:hidden;padding-bottom:66.66667%;position:relative}.xl-ratio-3-3{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.xl-ratio-3-4{width:100%;height:0;overflow:hidden;padding-bottom:133.33333%;position:relative}.xl-ratio-4-1{width:100%;height:0;overflow:hidden;padding-bottom:25%;position:relative}.xl-ratio-4-2{width:100%;height:0;overflow:hidden;padding-bottom:50%;position:relative}.xl-ratio-4-3{width:100%;height:0;overflow:hidden;padding-bottom:75%;position:relative}.xl-ratio-4-4{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.xl-ratio-16-9{width:100%;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.xl-ratio-9-16{width:100%;height:0;overflow:hidden;padding-bottom:177.77778%;position:relative}.xl-ratio-21-9{width:100%;height:0;overflow:hidden;padding-bottom:42.85714%;position:relative}.xl-shadow{box-shadow:0 0 1rem #CCC}.xl-shadow-bottom{box-shadow:0 0.5rem 1rem -0.5rem #CCC}.xl-shadow-top{box-shadow:0 -0.5rem 1rem -0.5rem #CCC}.xl-shadow-right{box-shadow:0.5rem 0 1rem -0.5rem #CCC}.xl-shadow-left{box-shadow:-0.5rem 0 1rem -0.5rem #CCC}.xl-shadow-none{box-shadow:none}.xl-fxn{-ms-flex:none;flex:none}.xl-fxw{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.xl-fxg{-ms-flex-positive:1;flex-grow:1}.xl-opacity-1{opacity:.1}.xl-opacity-2{opacity:.2}.xl-opacity-3{opacity:.3}.xl-opacity-4{opacity:.4}.xl-opacity-5{opacity:.5}.xl-opacity-6{opacity:.6}.xl-opacity-7{opacity:.7}.xl-opacity-8{opacity:.8}.xl-opacity-9{opacity:.9}.xl-opacity-10{opacity:1}}.circle,.square{width:100%;height:0;overflow:hidden;padding-bottom:100%;position:relative}.circle{border-radius:50%}.img-container{position:relative}.img-container img{width:100%;height:100%;position:absolute;top:0;left:0;-o-object-fit:cover;object-fit:cover}.ed-video{height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.ed-video>iframe,.ed-video>video,.ed-video>.video{position:absolute;top:0;left:0;width:100%;height:100%}:root{--color: #007BDF;--color-alt: #006DC6;--border-color: #DFE0E0;--light-bg: #F0F0F0;--border-radius: .25rem;--vertical-block-space: 1rem;--vertical-content-space: 1rem;--gap: 1rem;--max-width: 1200px}@media screen and (min-width: 1024px){:root{--vertical-block-space: 2rem;--gap: 2rem}}:root{--header-height: 3rem}@media screen and (min-width: 1024px){:root{--header-height: 4rem}}:root{--z-back: -10;--z-normal: 1;--z-tooltip: 10;--z-fixed: 100;--z-modal: 1000}:root{--heading-font: 'Raleway', sans-serif;--body-font: 'Open Sans', sans-serif;--bigger-font-size: 1.75rem;--h1-font-size: 1.5rem;--h2-font-size: 1.25rem;--h3-font-size: 1rem;--normal-font-size: .9375rem;--small-font-size: .8125rem;--smaller-font-size: .75rem;--heading-line-height: 1.3;--body-line-height: 1.6}@media screen and (min-width: 1024px){:root{--bigger-font-size: 2.25rem;--h1-font-size: 2rem;--h2-font-size: 1.5rem;--h3-font-size: 1.25rem;--normal-font-size: 1rem;--small-font-size: .875rem;--smaller-font-size: .8125rem}}.bigger-title{line-height:var(--heading-line-height);font-family:var(--heading-font);font-weight:800;letter-spacing:0.015em;color:var(--title-color);font-size:var(--bigger-font-size)}.main-banner .bigger-title{color:var(--white-color)}h1,.t1{line-height:var(--heading-line-height);font-family:var(--heading-font);font-weight:800;letter-spacing:0.015em;color:var(--title-color);font-size:var(--h1-font-size)}.main-banner h1,.main-banner .t1{color:var(--white-color)}h2,.t2{line-height:var(--heading-line-height);font-family:var(--heading-font);font-weight:800;letter-spacing:0.015em;color:var(--title-color);font-size:var(--h2-font-size)}.main-banner h2,.main-banner .t2{color:var(--white-color)}h3,.t3{line-height:var(--heading-line-height);font-family:var(--heading-font);font-weight:700;letter-spacing:0.015em;color:var(--title-color);font-size:var(--h3-font-size)}.main-banner h3,.main-banner .t3{color:var(--white-color)}h4,.t4{line-height:var(--heading-line-height);font-family:var(--heading-font);font-weight:700;letter-spacing:0.015em;color:var(--title-color);font-size:var(--normal-font-size)}.main-banner h4,.main-banner .t4{color:var(--white-color)}h5,.t5{line-height:var(--heading-line-height);font-family:var(--heading-font);font-weight:700;letter-spacing:0.015em;color:var(--title-color);font-size:var(--small-font-size)}.main-banner h5,.main-banner .t5{color:var(--white-color)}h6,.t6{line-height:var(--heading-line-height);font-family:var(--heading-font);font-weight:700;letter-spacing:0.015em;color:var(--title-color);font-size:var(--smaller-font-size)}.main-banner h6,.main-banner .t6{color:var(--white-color)}.biggest{font-family:var(--body-font);font-weight:400;line-height:var(--body-line-height);font-size:var(--h1-font-size)}.bigger{font-family:var(--body-font);font-weight:400;line-height:var(--body-line-height);font-size:var(--h2-font-size)}.big{font-family:var(--body-font);font-weight:400;line-height:var(--body-line-height);font-size:var(--h3-font-size)}.normal{font-family:var(--body-font);font-weight:400;line-height:var(--body-line-height);font-size:var(--normal-font-size)}.small{font-family:var(--body-font);font-weight:400;line-height:var(--body-line-height);font-size:var(--small-font-size)}.smaller{font-family:var(--body-font);font-weight:400;line-height:var(--body-line-height);font-size:var(--smaller-font-size)}body{font-family:var(--body-font);font-weight:400;line-height:var(--body-line-height);font-size:var(--normal-font-size);color:var(--text-color)}.body-font{font-family:var(--body-font)}.heading-font{font-family:var(--heading-font)}blockquote{font-family:var(--body-font);font-weight:400;line-height:var(--body-line-height);font-size:var(--h3-font-size);font-style:italic;letter-spacing:.01em;margin-left:2rem;position:relative;opacity:.9}@media screen and (min-width: 1024px){blockquote{margin-left:4rem}}blockquote::before{content:'\201C';font-family:Georgia, serif;font-size:3em;position:absolute;top:.5em;left:-.6em;line-height:0;letter-spacing:-0.5em}a{color:var(--second-color)}main a{text-decoration:none}main a:hover{text-decoration:underline}::-moz-selection{background:var(--second-color);color:#FFF}::selection{background:var(--second-color);color:#FFF}*,*::before,*::after{box-sizing:border-box}body{margin:0;background:var(--body-bg)}a{color:var(--blue-400)}strong{font-weight:700}body{margin:var(--header-height) 0 0 0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-height:calc(100vh - var(--header-height))}.foro-title{position:relative;padding-left:0.75rem}@media screen and (min-width: 1024px){.foro-title{padding-left:1rem}}.foro-title::before{content:'';position:absolute;left:0;height:100%;width:0.35rem;border-radius:0.25rem;background-color:#007BDF}@media screen and (min-width: 1024px){.foro-title::before{width:0.5rem}}.section-comments,.section-answer{display:-ms-grid;display:grid;-ms-grid-columns:1fr;grid-template-columns:1fr;grid-gap:2rem}.section-comments{-ms-grid-column:span 2;grid-column:span 2;margin-bottom:0}@media screen and (min-width: 640px){.section-comments{-ms-grid-column:2;grid-column:2}}.section-answer{padding:2rem 0 0 2rem}code[class*="language-"],pre[class*="language-"]{color:#F8F8F2;background:none;text-shadow:0 1px rgba(0,0,0,0.3);font-family:Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;border:none;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*="language-"]{padding:1em;overflow:auto;border-radius:0.3em}:not(pre)>code[class*="language-"],pre[class*="language-"]{background:#272822}:not(pre)>code[class*="language-"]{padding:.1em;border-radius:.3em;white-space:normal}.token.comment,.token.prolog,.token.doctype,.token.cdata{color:slategray}.token.punctuation{color:#F8F8F2}.namespace{opacity:.7}.token.property,.token.tag,.token.constant,.token.symbol,.token.deleted{color:#F92672}.token.boolean,.token.number{color:#AE81FF}.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.inserted{color:#A6E22E}.token.operator,.token.entity,.token.url,.language-css .token.string,.style .token.string,.token.variable{color:#F8F8F2}.token.atrule,.token.attr-value,.token.function{color:#E6DB74}.token.keyword{color:#66D9EF}.token.regex,.token.important{color:#FD971F}.token.important,.token.bold{font-weight:bold}.token.italic{font-style:italic}.token.entity{cursor:help}pre.line-numbers{position:relative;padding-left:3.8em;counter-reset:linenumber}pre.line-numbers>code{position:relative;white-space:inherit}.line-numbers .line-numbers-rows{position:absolute;pointer-events:none;top:0;font-size:100%;left:-3.8em;width:3em;letter-spacing:-1px;border-right:1px solid #999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.line-numbers-rows>span{pointer-events:none;display:block;counter-increment:linenumber}.line-numbers-rows>span:before{content:counter(linenumber);color:#999;display:block;padding-right:0.8em;text-align:right}pre.code-toolbar{position:relative}pre.code-toolbar>.toolbar{position:absolute;top:.3em;right:.2em;transition:opacity 0.3s ease-in-out;opacity:0}pre.code-toolbar:hover>.toolbar{opacity:1}pre.code-toolbar>.toolbar .toolbar-item{display:inline-block}pre.code-toolbar>.toolbar a{cursor:pointer}pre.code-toolbar>.toolbar button{background:none;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}pre.code-toolbar>.toolbar a,pre.code-toolbar>.toolbar button,pre.code-toolbar>.toolbar span{color:#BBB;font-size:.8em;padding:0 .5em;background:#F5F2F0;background:rgba(224,224,224,0.2);box-shadow:0 2px 0 0 rgba(0,0,0,0.2);border-radius:.5em}pre.code-toolbar>.toolbar a:hover,pre.code-toolbar>.toolbar a:focus,pre.code-toolbar>.toolbar button:hover,pre.code-toolbar>.toolbar button:focus,pre.code-toolbar>.toolbar span:hover,pre.code-toolbar>.toolbar span:focus{color:inherit;text-decoration:none}.svg-icon{height:1em;width:1em;display:inline-block;fill:currentcolor}.svg-icon.before{margin-right:.3em}.svg-stroke{fill:none;stroke:currentColor}.button{display:inline-block;padding:0.5rem 1rem;background-color:var(--color);color:#FFF;font-weight:600;cursor:pointer;text-decoration:none;line-height:inherit;border-radius:0.25rem;transition:transform 0.05s;border:1px solid var(--color);text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.button:hover{background-color:var(--color-alt);text-decoration:inherit}.button:active{transform:scale(0.99)}.button--tiny{padding:.25rem .5rem;font-size:var(--small-font-size)}.button.full{margin-right:0;margin-left:0;width:100%}.button--secondary,.button--second{--color-button: var(--second-color);--color-button-alt: var(--second-color-alt)}.button--alert{--color-button: var(--third-color);--color-button-alt: var(--third-color-alt)}.button--cta{--color-button: var(--accent-color);--color-button-alt: var(--accent-color-alt)
}.button--dark{--color-button: var(--dark-color);--color-button-alt: var(--dark-color-alt)}.button--light{--color-button: #FFF;--color-button-alt: var(--color-light);color:var(--color-text)}[class*=button--ghost]{color:var(--color-button);background:none;border:1px solid}[class*=button--ghost]:hover{background:var(--color-button);color:#FFF;border-color:transparent}.button--ghost-alert,.button--ghost--alert{--color-button: var(--third-color)}.button--ghost-secondary,.button--ghost--secondary,.button--ghost-second,.button--ghost--second,.buttton--ghost.second-color{--color-button: var(--second-color)}.button--ghost-cta,.button--ghost--cta,.button-ghost.accent-color{--color-button: var(--accent-color)}.button--ghost-dark,.button--ghost--dark,.button--ghost.dark-color{--color-button: var(--dark-color)}.button--ghost-light,.button--ghost--light{--color-button: #FFF}.button--ghost-light:hover,.button--ghost--light:hover{color:var(--text-color)}.button--cancel{color:var(--color-button);background:none;border:1px solid;--color-button: var(--text-color)}.button--cancel:hover{background:var(--color-button);color:#FFF;border-color:transparent}.button.light-color{color:var(--text-color)}.disabled,.disabled:hover{--color: var(--light-color);background:var(--color);cursor:default;color:#888}.disabled:active,.disabled:hover:active{transform:none}.ghost{color:var(--color);background:none}.ghost:hover{background:var(--color);color:#fff}.ghost.color-light,.ghost.light-color{--color: var(--body-bg);color:var(--color)}.ghost.color-light:hover,.ghost.light-color:hover{color:var(--color-text)}.button.big{font-size:var(--normal-font-size);padding:0.75rem 1.5rem}.button.tiny{font-size:var(--small-font-size);padding:.25rem .5rem}.button.micro{font-size:var(--small-font-size);padding:0 .25rem}.main-menu a:hover{text-decoration:none}@media screen and (min-width: 1024px){.main-menu .active{font-weight:400;color:var(--third-color)}.main-menu .active::before{display:none}}body{position:relative;right:0;transition:right .5s}@media screen and (max-width: 1023px){body.main-menu-visible{right:80%;overflow-y:hidden}}.main-menu-toggle{position:relative;z-index:300;width:30px;height:20px;box-shadow:0 4px var(--text-color) inset;cursor:pointer}.main-menu-toggle::after,.main-menu-toggle::before{content:"";position:absolute;width:100%;height:4px;background-color:var(--text-color);bottom:0}.main-menu-toggle::after{bottom:8px}.main-menu{font-size:var(--small-font-size)}@media screen and (max-width: 1023px){.main-menu{position:fixed;top:var(--header-height);background:var(--dark-color);width:80%;right:-80%;padding:1em 1em 2em;height:calc(100vh - 64px);transition:right .5s;overflow-y:auto}.main-menu.show{right:0}}.main-menu ul{list-style:none;margin-top:0;margin-bottom:0;padding-left:0;margin-left:0}@media screen and (min-width: 1024px){.main-menu ul{display:-ms-flexbox;display:flex}}.main-menu li{color:#FFF;border-bottom:1px solid rgba(255,255,255,0.2);padding:1em 0;margin:0}@media screen and (min-width: 1024px){.main-menu li{color:var(--text-color);padding:0;margin-left:2rem}}.main-menu a{color:inherit}@media screen and (max-width: 1023px){.vertical-menu{max-height:0;transition:max-height .5s;overflow:hidden}.vertical-menu.show{max-height:1000px;margin-bottom:1em}.vertical-menu .active::before{display:none}}.vertical-menu ul{list-style:none;margin-top:0;margin-bottom:0;padding-left:0;margin-left:0}.vertical-menu li{padding:.4em 0;border-bottom:none;font-size:var(--small-font-size);color:var(--text-color)}.vertical-menu a{color:inherit;display:block}.vertical-menu a.active{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;color:var(--third-color)}.vertical-menu a.active::after{content:'';display:block;width:1rem;height:1rem;background:url(https://ux.ed.team/img/icon-right.svg) center right/contain no-repeat}.vertical-menu a.active:hover{text-decoration:none}.vertical-menu .active{border-bottom:1px solid var(--border-color);border-top:1px solid var(--border-color);margin-right:-1px;padding:.5em 0;border-right:1px solid var(--body-bg)}.vertical-menu .active::after{background:url(https://ux.ed.team/img/icon-right.svg) 100%/contain no-repeat !important;margin-right:1rem}.vertical-menu-toggle{--size: 3rem;width:var(--size);height:var(--size);background:var(--first-color);border-radius:50%;position:fixed;bottom:1rem;right:1rem;z-index:var(--z-fixed);transition:transform .3s;box-shadow:2px 2px 12px rgba(0,0,0,0.3)}.vertical-menu-toggle::before,.vertical-menu-toggle::after{content:"";width:calc(var(--size) * 0.6);height:calc(var(--size) * 0.1);background:#FFF;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);border-radius:calc(var(--size) * 0.05)}.vertical-menu-toggle::after{transform:translate(-50%, -50%) rotate(90deg)}.vertical-menu-toggle.active{transform:rotate(-45deg)}.section-title{margin-top:0}.main-banner{position:relative !important}@media screen and (max-width: 1023px){.vertical-menu{position:fixed;top:4rem;background:var(--dark-color);width:calc(100vw - 2rem);border:none;padding:0 1rem;height:calc(100vh - 12rem);overflow-y:auto;border-radius:.25rem;box-shadow:0 5px 5px -2px rgba(0,0,0,0.3);z-index:var(--z-fixed)}.vertical-menu::before{content:'Documentación';display:block;font-size:var(--h2-font-size);margin-bottom:1rem}.vertical-menu li{padding:.75em 0;border-bottom:1px solid rgba(83,87,90,0.2)}.vertical-menu li:last-child{border-bottom:none}.vertical-menu a{color:var(--border-color);padding-left:.5rem}.vertical-menu .active{border:none;-ms-flex-pack:start !important;justify-content:flex-start !important}.vertical-menu .active::after{-ms-flex-order:-1;order:-1;width:.5rem}.vertical-menu.show{padding:.5rem 1rem}}.main-logo{height:2rem;width:auto;display:block}ul,ol{padding-left:2rem;margin-left:0}.data-list,.feature-list{list-style:none;margin-top:0;margin-bottom:0;padding-left:0;margin-left:0;margin-bottom:2em}.data-list li,.feature-list li{border-bottom:1px solid var(--border-color);padding-top:1rem;padding-bottom:1rem;margin:0}.data-list li{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center}.data-list li>:first-child{margin-bottom:.5rem;max-width:75%}@media screen and (min-width: 1024px){.data-list li>:first-child{margin-bottom:0}}@media screen and (max-width: 1023px){.data-list li [class*="button"]{font-size:var(--small-font-size)}}.data-list li li div:last-child p{text-align:right}.data-list h1,.data-list h2,.data-list h3,.data-list h4,.data-list h5,.data-list h6,.data-list p,.data-list [class*="button"]{margin:0}.feature-list{padding-left:0}.feature-list li{padding-left:1.5rem;list-style:none;position:relative}.feature-list li::before{content:'';width:1rem;height:1rem;display:block;position:absolute;top:1.25em;left:0;color:var(--first-color);background:url(https://ux.ed.team/img/icon-check.svg)}:not(pre) code{font-family:var(--body-font);font-weight:400;line-height:var(--body-line-height);font-size:var(--small-font-size);font-family:Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;background:var(--color-light);border:1px solid var(--color-border);color:var(--third-color);padding:0 .25em;margin:0 .1em;word-break:break-all}.center{text-align:center}.strong{font-weight:700}table{table-layout:fixed;border-collapse:collapse;font-size:var(--small-font-size);background:#FFF;min-width:100%}table th{background:#007BDF}table tr{border-bottom:1px solid rgba(0,123,223,0.3)}table tr:hover{background:rgba(0,123,223,0.1)}table.first-column td:first-child{background:rgba(0,123,223,0.75);color:#fff}table.center-content{text-align:center}table.center-content th{text-align:inherit}table th{font-family:'Open Sans', sans-serif;text-align:left;color:#FFF;font-weight:700;border-right:1px solid rgba(255,255,255,0.2)}table td{min-width:100px}table td:nth-child(even){background:rgba(238,238,243,0.2)}table td,table th{padding:1em 1.5em}.table-container{overflow-x:auto;border:1px solid var(--border-color);margin-bottom:2em;min-width:100%;position:relative;table-layout:fixed}.table--secondary th{background:#00CBFF}.table--secondary tr{border-bottom:1px solid rgba(0,203,255,0.3)}.table--secondary tr:hover{background:rgba(0,203,255,0.1)}.table--secondary.first-column td:first-child{background:rgba(0,203,255,0.75);color:#fff}.table--secondary.center-content{text-align:center}.table--secondary.center-content th{text-align:inherit}.table--tertiary th{background:#FF3C32}.table--tertiary tr{border-bottom:1px solid rgba(255,60,50,0.3)}.table--tertiary tr:hover{background:rgba(255,60,50,0.1)}.table--tertiary.first-column td:first-child{background:rgba(255,60,50,0.75);color:#fff}.table--tertiary.center-content{text-align:center}.table--tertiary.center-content th{text-align:inherit}.table--accent th{background:#FBA905}.table--accent tr{border-bottom:1px solid rgba(251,169,5,0.3)}.table--accent tr:hover{background:rgba(251,169,5,0.1)}.table--accent.first-column td:first-child{background:rgba(251,169,5,0.75);color:#fff}.table--accent.center-content{text-align:center}.table--accent.center-content th{text-align:inherit}.table--dark th{background:#282D31}.table--dark tr{border-bottom:1px solid rgba(40,45,49,0.3)}.table--dark tr:hover{background:rgba(40,45,49,0.1)}.table--dark.first-column td:first-child{background:rgba(40,45,49,0.75);color:#fff}.table--dark.center-content{text-align:center}.table--dark.center-content th{text-align:inherit}.form__item{margin-bottom:2rem}.form__item:last-child{margin-bottom:0}[type="text"],[type="email"],[type="password"],[type="number"],[type="date"],[type="time"],[type="datetime-local"],[type="search"],[type="tel"],[type="url"],select,textarea{display:block;border:1px solid var(--border-color);background:#fff;width:100%;line-height:1.6;font-family:"Open Sans",sans-serif;font-size:var(--small-font-size);color:var(--text-color);border-radius:.25rem;padding:.5rem 1rem}[type="text"]:-ms-input-placeholder,[type="email"]:-ms-input-placeholder,[type="password"]:-ms-input-placeholder,[type="number"]:-ms-input-placeholder,[type="date"]:-ms-input-placeholder,[type="time"]:-ms-input-placeholder,[type="datetime-local"]:-ms-input-placeholder,[type="search"]:-ms-input-placeholder,[type="tel"]:-ms-input-placeholder,[type="url"]:-ms-input-placeholder,select:-ms-input-placeholder,textarea:-ms-input-placeholder{color:rgba(83,87,90,0.75)}[type="text"]::placeholder,[type="email"]::placeholder,[type="password"]::placeholder,[type="number"]::placeholder,[type="date"]::placeholder,[type="time"]::placeholder,[type="datetime-local"]::placeholder,[type="search"]::placeholder,[type="tel"]::placeholder,[type="url"]::placeholder,select::placeholder,textarea::placeholder{color:rgba(83,87,90,0.75)}[type="text"]:disabled,[type="email"]:disabled,[type="password"]:disabled,[type="number"]:disabled,[type="date"]:disabled,[type="time"]:disabled,[type="datetime-local"]:disabled,[type="search"]:disabled,[type="tel"]:disabled,[type="url"]:disabled,select:disabled,textarea:disabled{background:var(--border-color);cursor:default}[type="search"]{background:#fff url(https://ux.ed.team/img/icon-search.svg) center right 1rem/1rem no-repeat !important}select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff url(https://ux.ed.team/img/arrow.svg) center right 1rem/1rem no-repeat !important}textarea{min-height:6em;max-height:6em;min-width:100%;max-width:100%}label{position:relative;display:block;font-size:var(--small-font-size);margin-bottom:.2em}label+input:-ms-input-placeholder{display:none}label+input::placeholder{display:none}[type="submit"]{margin:0 !important}.card__avatar{width:2rem}.card__teachers .card__teacher{position:relative}.card__teachers .card__teacher:hover span{transform:scaleY(1)}.card__teachers span{position:absolute;top:calc(100% + .5rem);left:0;background:#fff;white-space:nowrap;transform:scaleY(0);transform-origin:top;transition:transform .2s}.card__teachers span::before{content:"";display:block;position:absolute;border:1px solid var(--border-color);width:.5rem;height:.5rem;background:#fff;top:calc( -0.35rem + 1.5px);left:0.65rem;transform:rotate(45deg);border-color:var(--border-color) transparent transparent var(--border-color)}.post-header{position:relative;margin-bottom:2em}.post-header img{display:block}.post-header::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(40,45,49,0.8)}.post-header h1{position:absolute;top:50%;text-align:center;width:90%;left:5%;transform:translateY(-50%);color:#fff}.post .author{display:table;margin:-5em auto 2em;position:relative}.post .author img{border:4px solid #fff}.main-banner{--color: var(--first-color);--color-alt: var(--accent-color);--padding: 2rem;background:var(--color);color:#FFF;padding-top:var(--padding);padding-bottom:calc(var(--padding) * 1.25)}.main-banner.diagonal{-webkit-clip-path:polygon(0 0, 100% 0, 100% 100%, 0 94%);clip-path:polygon(0 0, 100% 0, 100% 100%, 0 94%)}@media screen and (min-width: 1024px){.main-banner{--padding: 4rem}}.main-banner .button{--color-button: var(--color-alt)}.main-banner__img{opacity:.1}.main-banner__data{position:relative}.main-header{height:var(--header-height);border-bottom:1px solid var(--border-color);background:#FFF;position:fixed;top:0;width:100%;left:0;z-index:100}.main-header>.ed-grid{height:100%}.main-header--dark{background:var(--dark-color-alt);border-bottom:none}@media screen and (min-width: 1024px){.main-header--dark li{border-bottom:none}}.main-header--dark a{color:rgba(238,238,243,0.5)}.main-footer{background:var(--dark-color);color:#FFF;padding:2rem 0;font-size:var(--small-font-size);margin-top:auto}.topbar{background:var(--color);color:#fff;padding:.5rem 0}@media screen and (min-width: 1024px){.topbar{height:var(--header-height)}}.topbar .ed-grid{height:100%;-ms-flex-align:center;align-items:center}.topbar form{-ms-flex:auto;flex:auto}@media screen and (max-width: 1023px){.topbar form{display:none}}.topbar input{border:none}.ed-modal-container{position:fixed;width:100%;height:100%;left:0;top:0;background:rgba(252,252,254,0.9);display:-ms-flexbox;display:flex;z-index:1000}.ed-modal-container::before{content:"";width:3rem;height:3rem;background:url(https://ux.ed.team/img/icon-close.svg);position:absolute;top:2rem;right:2rem;cursor:pointer}.ed-modal-content{box-shadow:0 2px 16px -2px rgba(0,0,0,0.15);border:none;background:#fff;width:90%;max-width:1000px;max-height:90vh;margin:auto;padding:2rem;border-radius:.25rem;overflow-y:auto}.video{width:100%;position:relative;height:0;padding-bottom:56.25%;overflow:hidden}.video iframe{width:100%;position:absolute;top:0;left:0;height:100%}@media screen and (max-width: 1023px){.edui-tabs--class{margin-left:-1rem;margin-right:-1rem;border:none;margin-top:-2rem}}.edui-tabs .tabs{display:-ms-flexbox;display:flex;position:relative;left:1rem;top:1px}.edui-tabs .tab{border:1px solid var(--border-color);padding:1rem;border-radius:.25rem .25rem 0 0;margin-right:.5rem;background:#fff;cursor:pointer;opacity:.5}.edui-tabs .tab.active{border-bottom:1px solid #fff;opacity:1}.edui-tabs .tab img{width:2.25rem;display:block}.edui-tabs .tab .tab{border:none;padding:0;border-radius:0;margin:0;opacity:1}.edui-tabs .panel{box-shadow:0 2px 16px -2px rgba(0,0,0,0.15);border:none;background:#fff;display:none;border-radius:.25rem;padding:2rem}.edui-tabs .panel.active{display:block}.edui-tabs .tabs--class{left:0;border-radius:.25rem .25rem 0 0;overflow:hidden}.edui-tabs .tabs--class::before{content:"";display:block;width:25%;height:4px;background:var(--second-color);position:absolute;bottom:0;left:0;transition:transform .25s ease-in}.edui-tabs .tabs--class[data-tab="2"]::before{transform:translateX(100%)}.edui-tabs .tabs--class[data-tab="3"]::before{transform:translateX(200%)}.edui-tabs .tabs--class[data-tab="4"]::before{transform:translateX(300%)}.edui-tabs .tab--class{width:25%;text-align:center;margin:0;border-radius:0;border:none;background:var(--dark-color);color:var(--border-color);opacity:1;height:3rem;padding:.6rem 0 0;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;line-height:1.6;box-shadow:0 -4px rgba(255,255,255,0.5) inset}.edui-tabs .tab--class.active{color:var(--second-color);border:none;background:var(--dark-color-alt)}.edui-tabs .panels--class{height:calc(100vh - 10rem);overflow:auto;border:1px solid var(--border-color);background:#fff;border-radius:0 0 .25rem .25rem;box-shadow:0 2px 16px -2px rgba(0,0,0,0.15);border:none;background:#fff}.edui-tabs .panel--class{padding:2rem 1rem 1rem;background:none;border:none;box-shadow:none}.payment-method__name{padding-bottom:.5rem;border-bottom:1px solid var(--border-color);margin-bottom:.5rem}.payment-method__notes{margin-top:-1.5rem}.payment-method__account{color:var(--third-color)}.video-class{background:var(--dark-color)}@media screen and (min-aspect-ratio: 8 / 5){.video-class{height:calc(100vh - 3rem)}}.video-class--container{position:fixed;top:var(--header-height);width:100%;z-index:100}@media screen and (min-width: 960px){.video-class--container{position:static}}@media screen and (min-width: 1024px) and (min-aspect-ratio: 8 / 5){.video-class--container{height:calc(100vh - 9rem);padding:1rem}}.video-class--element{margin:auto}.video-class--element iframe{width:100%;height:100%}.video-class--footer{background:var(--dark-color-alt);color:#fff;padding:1rem 0}@media screen and (min-aspect-ratio: 8 / 5){.video-class--footer{height:6rem;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0}}.video-class--title{line-height:var(--heading-line-height);font-family:var(--heading-font);font-weight:700;letter-spacing:0.015em;color:var(--title-color);font-size:var(--h3-font-size)}.main-banner .video-class--title{color:var(--white-color)}.video-class--course{color:var(--accent-color);font-size:var(--small-font-size);margin:-.5rem 0 0 0;opacity:.75}.video-class--next,.video-class--prev{width:2rem;margin-left:1rem;cursor:pointer}.video-live{background:var(--dark-color)}@media screen and (min-width: 1024px){.video-live__container{display:-ms-grid;display:grid;padding:1rem;grid-gap:1rem;-ms-grid-columns:1fr minmax(320px, 360px);grid-template-columns:1fr minmax(320px, 360px)}}.video-live__video.video-fixed{position:fixed;z-index:var(--z-fixed);top:var(--header-height);left:0}.video-live__data{color:var(--border-color);padding:1rem 0}.video-live__data [class*="button"]{margin-right:0}@media screen and (min-width: 1024px){.video-live__data{-ms-grid-column-span:2;-ms-grid-column:1;grid-column:1 / span 2;-ms-grid-row:2;grid-row:2}.video-live__data [class*="button"]{margin-right:6rem}}.video-live__title-container{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-bottom:1rem}.video-live__title-container [class*="button"]{margin-right:1rem}.video-live__title{margin:0;line-height:var(--heading-line-height);font-family:var(--heading-font);font-weight:700;letter-spacing:0.015em;color:var(--title-color);font-size:var(--h3-font-size)}.main-banner .video-live__title{color:var(--white-color)}.video-live__footer{background:var(--dark-color-alt)}.class-temary{padding-top:2rem;counter-reset:subjects}.class-subject__title{counter-increment:subjects;margin-bottom:0}.class-subject__title::before{content:counter(subjects) ".";display:inline-block;margin-right:.25rem}.class-fragment__title{position:relative}.class-fragment__title a{color:var(--text-color);position:relative;left:1.5em}.class-fragment__title img{width:1em;height:1em;position:absolute;top:.25em}.class-fragment [class*="button"]{margin-left:1em;font-size:12px}.class-fragment [class*="button"]:hover{text-decoration:none}.chat{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%;color:var(--border-color)}@media screen and (max-width: 1023px){.chat{padding:0 1rem;max-height:500px}}.chat__send{position:relative;margin-bottom:1rem}.chat__send-message{width:100%;display:block;padding:.75em 2.5em .75em .75em;line-height:1.6;border-radius:.25rem;border:1px solid var(--border-color)}.chat__send-submit{width:1.5em;position:absolute;right:.75em;top:50%;transform:translateY(-50%)}.chat__info{color:var(--text-color);margin-top:-.5rem;opacity:.5;font-style:italic;margin-bottom:1rem}.chat__messages{padding-top:1rem}.chat__message{display:-ms-flexbox;display:flex;border-bottom:1px solid var(--border-color);padding-bottom:.75rem;margin-bottom:1rem;color:var(--text-color)}.chat__message-avatar{width:2rem;height:2rem;margin-right:1rem}.chat__message-avatar img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:.25rem}.chat__message-user,.chat__message-date{vertical-align:super;margin-right:.5rem;opacity:.8}.chat__message-user{font-weight:bold}.chat__message-comment{margin:-.4em 0 0}@media screen and (min-width: 1024px){.video-live__chat .chat{-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1}}.video-live__chat .chat__send-message{background:var(--dark-color-alt);color:var(--border-color);border:1px solid rgba(251,169,5,0.3)}.video-live__chat .chat__messages{background:var(--dark-color-alt);padding:1rem;border-radius:.25rem;overflow-y:auto}.video-live__chat .chat__message{border-bottom:1px solid rgba(255,60,50,0.3);color:inherit}.video-live__chat .chat-user,.video-live__chat .chat-date{opacity:.5}.add-note textarea{margin-bottom:.5rem}.add-note__info{opacity:.5;font-style:italic;margin-bottom:.5rem}.notes{padding-top:2rem}.note{border:1px solid var(--border-color);font-size:var(--small-font-size);border-radius:.25rem}.note--edit{background:rgba(251,169,5,0.075)}.note--delete{position:relative}.note--delete__alert{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(255,255,255,0.95);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;border:1px solid rgba(251,169,5,0.5)}.note__header{background:var(--text-color);color:var(--border-color);padding:.5rem 1rem;border-radius:.25rem .25rem 0 0;font-size:12px}.note__header p{margin:0}.note__content{padding:1rem 1rem .5rem}.note__content p,.note__content blockquote,.note__content pre{margin-bottom:1rem}.note__footer{padding:0 1rem 1rem}.note__footer img{width:1rem;height:1rem;margin-right:1rem}.resources li{padding-left:.5em}.resources li::before{background:none}.resources img{width:1em;height:1em;margin-right:.5em}.resources a{color:var(--text-color)}.course-header{position:relative;margin-bottom:2rem;width:100%;overflow:hidden}.course-header::before{content:"";position:absolute;top:-10%;left:-10vw;width:120vw;height:120%;filter:blur(10px);background:linear-gradient(rgba(40,45,49,0.9), rgba(40,45,49,0.9)),url(https://ed.team/sites/default/files/styles/large/public/courses/images/css-animaciones-poster-1280.jpg) no-repeat center/cover}.course-data{color:#fff;position:relative;padding:2rem 0}@media screen and (min-width: 1440px){.course-data{padding:4rem 0}}.course-data__subtitle{margin-top:-1rem}.course-data__description,.course-data__stars-info,.course-data__live-or-record span{opacity:0.8}.course-data__more-info{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media screen and (min-width: 400px){.course-data__more-info{-ms-flex-direction:row;flex-direction:row}}.course-data__calification{display:-ms-flexbox;display:flex;margin-right:2rem}.course-data__stars{margin-right:1rem}.course-data__live-or-record span{margin-left:0.25em}.course-info{border-radius:0.25rem;position:relative;margin-bottom:2rem;padding:1rem;border:1px solid var(--border-color);box-shadow:0 2px 6px rgba(0,0,0,0.1)}@media screen and (max-width: 639px){.course-info__item:nth-child(2){margin:1rem 0}}.course-info__title{border-bottom:1px solid var(--border-color);font-family:"Raleway",sans-serif}.course-info__list{padding:0;margin-left:0.5rem;margin-bottom:0;list-style:none}.course-info__list-item{position:relative;margin-bottom:0.5rem;padding-left:1.5rem}.course-info__list-item::before{content:"";display:block;position:absolute;left:0;top:0.20rem;width:1rem;height:1rem;background:url("https://ed.team/themes/custom/escueladigital/img/active-check.svg") no-repeat 50%/contain}@media screen and (max-width: 1023px){.course-main .span-l-1{-ms-flex-order:1;order:1}.course-main .span-l-3{-ms-flex-order:2;order:2}.card--sidebar{margin-bottom:2rem}}.course-main{margin-bottom:2rem}@media screen and (min-width: 1024px){.course-main{margin-bottom:4rem}}.temary-accordion{margin-bottom:2rem;padding:1rem;background-color:#fff;border:1px solid var(--border-color);border-radius:0.25rem}@media screen and (min-width: 1024px){.temary-accordion:last-of-type{margin-bottom:0}}.temary-accordion__main-title{font-family:"Raleway",sans-serif;outline:none}.temary-accordion__list{padding:1rem 1rem 0;margin-bottom:0}.temary-accordion__item{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;color:var(--text-color)}.temary-accordion__title{position:relative;margin-bottom:0.25rem;padding-left:1.5rem;color:inherit}.temary-accordion__title::before{content:"";display:block;position:absolute;left:0;top:0.2rem;width:12px;height:12px;opacity:0.5;background:url("https://ed.team/themes/custom/escueladigital/img/padlock.svg") no-repeat 50%/contain}.temary-accordion__title.free-class{color:var(--accent-color)}.temary-accordion__title.free-class::before{opacity:1;background:url("https://ed.team/themes/custom/escueladigital/img/active-check.svg") no-repeat 50%/contain}.method-payment__container{box-shadow:0 2px 16px -2px rgba(0,0,0,0.15);border:none;background:#fff;padding:0 2rem}.method-payment__row{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[4];grid-template-columns:repeat(4, 1fr);grid-column-gap:1rem;padding:2rem 0}.method-payment__row:not(:last-child){border-bottom:1px solid #EEEEF3}@media screen and (max-width: 639px){.method-payment__row{-ms-grid-columns:1fr;grid-template-columns:1fr}}.method-payment__column{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}@media screen and (max-width: 639px){.method-payment__column{-ms-flex-pack:center;justify-content:center}.method-payment__column:not(:last-child){margin-bottom:1rem}}.method-payment__image{height:2rem}.method-payment__span{color:#FF3C32}.method-payment p{margin-bottom:0}.playlist{box-shadow:0 2px 16px -2px rgba(0,0,0,0.15);border:none;background:#fff;border-radius:0.25rem}.playlist__header{position:relative}.playlist__header-meatballs{position:absolute;top:1rem;right:1rem;width:25px;height:5px;cursor:pointer;z-index:10}.playlist__header-meatballs::before{content:'';display:block;height:5px;width:5px;background:#fff;border-radius:50%;box-shadow:10px 0 #fff,20px 0 #fff}.playlist__header-content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:end;justify-content:flex-end;position:absolute;padding:1rem;width:100%;height:100%;background-image:linear-gradient(to top, rgba(40,45,49,0.9), transparent 80%);color:#fff;z-index:1}.playlist__header-fragment{margin-bottom:0.5rem;font-size:var(--h3-font-size)}.playlist__header-cover{display:block}.playlist__content{position:relative;padding:1.5rem 1rem 0}.playlist__button-add{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;position:absolute;top:-20px;right:1rem;width:40px;height:40px;background-color:#FBA905;border-radius:50%;color:#fff;font-size:2rem;z-index:10}.playlist__button-add:hover{text-decoration:none;background-color:#F1A000}.playlist__button-add::before{content:'+'}.playlist__search{margin-bottom:1rem}.playlist__list{height:300px;overflow-y:auto}@media screen and (min-width: 1024px){.playlist__list{margin-right:-1rem;padding-right:1rem}}.playlist__item{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-align:center;align-items:center;padding:0.5rem 0;border-bottom:1px solid #EEEEF3;color:#53575A;font-size:var(--small-font-size)}.playlist__item:hover{color:#FF3C32;text-decoration:none}.playlist__item-data{display:-ms-flexbox;display:flex;-ms-flex-align:baseline;align-items:baseline}.playlist__item-index{margin-right:0.5rem;color:#FBA905;font-family:"Open Sans",sans-serif}.playlist__item-content{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.playlist__item-fragment{font-family:"Raleway",sans-serif;font-weight:bold}.playlist__item-action{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.playlist__item-button-delete{margin-left:0.5rem;width:1rem;height:1rem}.pricing-table{border:1px solid var(--border-color);border-radius:.25rem;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}.pricing-table__header{background:var(--color);color:#FFF;padding:1rem;border-radius:.25rem .25rem 0 0;margin:-1px -1px -1px 0}.pricing-table__title{padding-left:1.5rem;background:url(https://ux.ed.team/img/plans/plan-2.svg) no-repeat center left}.pricing-table__price{padding:1rem}.pricing-table__description{border-top:1px solid var(--border-color);border-bottom:1px solid var(--border-color);padding:1rem;margin-bottom:1.5rem}.pricing-table__features{margin-bottom:0;list-style:none;padding:0 1rem}.pricing-table__feature{margin-bottom:.75rem;display:-ms-grid;display:grid;-ms-grid-columns:1rem auto;grid-template-columns:1rem auto;grid-gap:.5rem;-ms-flex-align:baseline;align-items:baseline}.pricing-table__feature svg{height:.8em}.pricing-table__footer{padding:1rem;margin-top:auto}.pricing-table [class*=button]{--color: var(--current-color);margin:0}.pricing-table.color-second .pricing-table__title{background-image:url(https://ux.ed.team/img/plans/plan-1.svg)}.pricing-table.color-accent .pricing-table__title{background-image:url(https://ux.ed.team/img/plans/plan-3.svg)}.pricing-table.color-dark .pricing-table__title{background-image:url(https://ux.ed.team/img/plans/plan-4.svg)}.alt-banner{--image: url('https://drupal.ed.team/sites/default/files/2018-10/joan-serna.jpg');--radius: 1200px;--size: 100%;padding-top:2rem;padding-bottom:2rem;background:linear-gradient(rgba(40,45,49,0.9), rgba(40,45,49,0.9)),var(--image) no-repeat center center/cover}@media screen and (max-width: 1023px){.alt-banner{-webkit-clip-path:polygon(0 0, 100% 0, 100% 100%, 0 95%);clip-path:polygon(0 0, 100% 0, 100% 100%, 0 95%)}}@media screen and (min-width: 1024px){.alt-banner{background:radial-gradient(circle var(--radius) at 100% 100%, transparent 50%, #F6F6F6 50%),var(--image) no-repeat center right/auto var(--size);padding-bottom:6rem;padding-top:6rem;border-bottom:1px solid var(--border-color)}}@media screen and (min-width: 1200px){.alt-banner{--radius: 1300px}}@media screen and (min-width: 1440px){.alt-banner{--radius: 1600px;--size: 120%}}.alt-banner .ed-grid{position:relative}@media screen and (max-width: 1023px){.alt-banner h2{color:var(--color-second)}}.alt-banner__data{position:relative;color:#FFF;text-align:center;font-size:var(--small-font-size)}@media screen and (min-width: 1024px){.alt-banner__data{padding:1rem 1rem 1rem 2rem;text-align:left;color:var(--text-color)}.alt-banner__data::before{position:absolute;border-radius:4px;content:"";width:8px;height:100%;top:0;left:0;background:var(--color)}}.alt-banner__caption{position:absolute;bottom:-5rem;right:0;z-index:var(--z-tooltip);background:rgba(20,22,24,0.9);color:#FFF;padding:.5rem;font-size:var(--smaller-font-size)}@media screen and (max-width: 1023px){.alt-banner__caption{display:none}}.alt-banner__caption span{color:var(--color-second)}.landing-section{--current-color: var(--color-first);--color: var(--current-color);--color-button: var(--current-color);margin-bottom:2rem}@media screen and (min-width: 1024px){.landing-section{margin-bottom:8rem}}.landing-section article{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;-ms-flex-align:start;align-items:flex-start}@media screen and (min-width: 1024px){.landing-section article{padding-right:2rem}.landing-section article::before{content:"";display:block;position:absolute;width:.5rem;border-radius:.25rem;height:100%;right:0;background:var(--color)}}.landing-section img{border-radius:.25rem;margin-bottom:1rem}@media screen and (min-width: 1024px){.landing-section img{margin-bottom:0;-webkit-clip-path:polygon(10% 0, 100% 0, 90% 100%, 0 100%);clip-path:polygon(10% 0, 100% 0, 90% 100%, 0 100%)}}.landing-section h2{color:var(--color)}.landing-section [class*=button]{margin-bottom:0}@media screen and (min-width: 1024px){.landing-section:first-of-type{padding-top:4rem}}.landing-section:nth-of-type(even){--current-color: var(--color-third);--color: var(--current-color);--color-button: var(--current-color)}@media screen and (min-width: 1024px){.landing-section:nth-of-type(even) img{-webkit-clip-path:polygon(0 0, 90% 0, 100% 100%, 10% 100%);clip-path:polygon(0 0, 90% 0, 100% 100%, 10% 100%)}.landing-section:nth-of-type(even) article{-ms-flex-order:-1;order:-1;padding-right:0;padding-left:2rem}.landing-section:nth-of-type(even) article::before{left:0}}summary{cursor:pointer;outline:none;font-weight:bold}summary+*{margin-top:1rem}details{margin-bottom:.5rem;background:#FFF;padding:.5rem 1rem;border:1px solid #DFE0E0;border-radius:.25rem}@media screen and (min-width: 1024px){details{margin-bottom:1rem;padding:1rem}}.vote{margin-bottom:0.25rem;color:#53575A}.vote:hover{text-decoration:none}.vote:hover svg{transform:scale(1.15)}.vote--positive svg{stroke:#007BDF}.vote--positive.active svg{fill:#007BDF}.vote--negative svg{stroke:#FF3C32}.vote--negative.active svg{fill:#FF3C32}.answer{color:#53575A}.foro-sidebar{background-color:#fff}.foro-sidebar:not(:last-of-type){margin-bottom:2rem}.foro-sidebar--category .foro-sidebar__link{display:-ms-grid;display:grid;-ms-grid-columns:max-content 1fr;grid-template-columns:max-content 1fr;color:#53575A}.foro-sidebar--category .foro-sidebar__link img{width:1rem;height:1rem;-o-object-fit:contain;object-fit:contain}.foro-sidebar__list{list-style:none}.top-user{--user-size: 2.5rem;-ms-grid-columns:(var(--user-size))[10];grid-template-columns:repeat(10, var(--user-size));-ms-grid-rows:var(--user-size);grid-template-rows:var(--user-size);padding:0.25rem;overflow-x:auto}@media screen and (min-width: 640px){.top-user{--user-size: 3rem}}.top-user__item{position:relative;width:100%;height:100%;box-shadow:0 0 0 2px #FCFCFE,0 0 0 4px #007BDF}.top-user__item:hover .top-user__score{transform:scale(1)}.top-user__score{border-radius:1.5rem;position:absolute;height:100%;width:100%;background-color:rgba(0,123,223,0.5);color:#fff;font-weight:bold;line-height:initial;transform:scale(0);transition:0.25s;z-index:1}.user-foro{display:-ms-flexbox;display:flex;margin-bottom:0.5rem}.user-foro__image{border-radius:0.25rem;-ms-flex:none;flex:none;height:2rem;width:2rem;-o-object-fit:cover;object-fit:cover;margin-right:0.75rem}.user-foro__info{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;line-height:initial}.user-foro__name{color:#53575A;font-weight:bold}.user-foro__date{color:#BABDBF}.featured-publication{overflow-x:scroll}.featured-publication__container{display:-ms-grid;display:grid;-ms-grid-columns:(1fr)[12];grid-template-columns:repeat(12, 1fr);grid-gap:1rem;width:1200%}@media screen and (min-width: 640px){.featured-publication__container{width:600%}}@media screen and (min-width: 1024px){.featured-publication__container{width:300%}}.featured-publication__item{background-color:#fff}.featured-publication__content{display:-ms-flexbox;display:flex}.featured-publication__user-photo{border-radius:0.25rem;-ms-flex:none;flex:none;height:2rem;width:2rem;-o-object-fit:cover;object-fit:cover}.featured-publication__title{color:#53575A}.featured-publication__footer{display:-ms-flexbox;display:flex}.featured-publication__footer .vote{margin:0 1rem 0 0}.foro-sidebar__list .featured-publication__item{padding:0 0 1rem 0;border:none;border-radius:0;font-family:"Open Sans",sans-serif;font-weight:normal}.scroll--dark{--thumb-color: #3f474d;--track-color: #566169;--thumb-color-hover: #333a3f}.scroll--dark-alt{--thumb-color: #2b3034;--track-color: #424950;--thumb-color-hover: #202326}.scroll.no-background{--track-color: transparent}.scroll.hidden{--display: none}.scroll.hover{--display: none}.scroll.hover:hover{--display: block}.scroll.mobile{--display: none}@media screen and (min-width: 1024px){.scroll.mobile{--display: block}}@media screen and (min-width: 1024px){[class*=scroll],.scroll,body{--thumb-color: #dfdfe8;--thumb-color-hover: #c1c1d3;--track-color: #fdfdfe;--scroll-size: 10px;--scroll-radius: calc(var(--scroll-size) / 2);--display: block}[class*=scroll]::-webkit-scrollbar,.scroll::-webkit-scrollbar,body::-webkit-scrollbar{display:var(--display);width:var(--scroll-size);height:var(--scroll-size)}[class*=scroll]::-webkit-scrollbar-thumb,.scroll::-webkit-scrollbar-thumb,body::-webkit-scrollbar-thumb{background:var(--thumb-color);border-radius:var(--scroll-radius)}[class*=scroll]::-webkit-scrollbar-thumb:hover,[class*=scroll]::-webkit-scrollbar-thumb:active,.scroll::-webkit-scrollbar-thumb:hover,.scroll::-webkit-scrollbar-thumb:active,body::-webkit-scrollbar-thumb:hover,body::-webkit-scrollbar-thumb:active{background:var(--thumb-color-hover)}[class*=scroll]::-webkit-scrollbar-track,.scroll::-webkit-scrollbar-track,body::-webkit-scrollbar-track{background:var(--track-color);border-radius:var(--scroll-radius)}}.meatballs-menu{display:inline-block;position:relative}.meatballs-menu__button{--button-color: #53575A;height:1rem;width:1rem;border:none;outline:none;background:none;cursor:pointer}.meatballs-menu--white .meatballs-menu__button{--button-color: #EEEEF3}.meatballs-menu__button::before{border-radius:1.5rem;content:'';display:block;width:.25rem;height:.25rem;background:var(--button-color);box-shadow:0 .375rem var(--button-color),0 -.375rem var(--button-color)}.meatballs-menu--horizontal .meatballs-menu__button::before{box-shadow:.375rem 0 var(--button-color),-.375rem 0 var(--button-color)}.meatballs-menu__nav{box-shadow:0 2px 16px -2px rgba(0,0,0,0.15);border:none;background:#fff;border-radius:0.25rem;display:none;position:absolute;top:0;padding:0.75rem;z-index:var(--z-fixed);white-space:nowrap;right:35%}.meatballs-menu__nav.active{display:block}.meatballs-menu--right .meatballs-menu__nav{left:35%;right:auto}.meatballs-menu__list{list-style:none;margin-top:0;margin-bottom:0;padding-left:0;margin-left:0;display:-ms-grid;display:grid;-ms-grid-columns:1fr;grid-template-columns:1fr;grid-gap:0.5rem;font-size:var(--smaller-font-size)}.meatballs-menu__link{margin:0;padding:0;background:none;border:none;outline:none;color:#53575A;cursor:pointer}.meatballs-menu__link:hover{text-decoration:none}.meatballs-menu--foro .meatballs-menu__link{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.meatballs-menu--foro .meatballs-menu__link .svg-stroke{fill:currentColor;margin-right:0.25rem}.meatballs-menu--foro .meatballs-menu__link--delete{color:#FF3C32}.pagination__menu{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;list-style:none}.pagination__item:not(:last-of-type){margin-right:0.5rem}.pagination__link{display:block;line-height:1;color:#53575A}.pagination__link:hover{color:#fff;background-color:#007BDF;border:1px solid #007BDF;text-decoration:none}.pagination__link.current,.pagination__link--right,.pagination__link--left{color:#fff;border:1px solid #007BDF;background-color:#007BDF}.pagination__link.current:hover,.pagination__link--right:hover,.pagination__link--left:hover{border:1px solid #006DC6;background-color:#006DC6}.pagination__link--right::before{content:'▶'}.pagination__link--left::before{content:'◀'}.form-editor{background-color:#fff}.form-editor__textarea{height:200px;max-height:200px;outline:none}@media screen and (min-width: 640px){.form-editor__toolbar{-ms-grid-columns:1fr max-content;grid-template-columns:1fr max-content}}.form-editor__action{display:-ms-grid;display:grid;-ms-grid-columns:(max-content)[3];grid-template-columns:repeat(3, max-content);grid-gap:1rem}.form-editor__button{border:none;outline:none;color:#53575A;background:none;cursor:pointer}.form-editor__button:hover{color:#FBA905;transform:scale(1.2)}.form-editor__icon{fill:currentColor;height:1rem;width:1rem}.form-editor__button-post{margin-bottom:0}.section-answer .form-editor:focus-within .form-editor__toolbar{display:-ms-grid;display:grid}.section-answer .form-editor:focus-within .form-editor__textarea{height:100px;max-height:100px}.section-answer .form-editor__textarea{min-height:1.35rem;height:1.35rem}.section-answer .form-editor__toolbar{display:none}.blue-100{--color: #e7f4fd;--color-alt: #b7defa}:root{--blue-100: #e7f4fd}.blue-200{--color: #b7defa;--color-alt: #88c8f7}:root{--blue-200: #b7defa}.blue-300{--color: #88c8f7;--color-alt: #58b3f3}:root{--blue-300: #88c8f7}.blue-400{--color: #58b3f3;--color-alt: #1192ee}:root{--blue-400: #58b3f3}.blue-500{--color: #1192ee;--color-alt: #1083d5}:root{--blue-500: #1192ee}.blue-600{--color: #1083d5;--color-alt: #0c66a6}:root{--blue-600: #1083d5}.blue-700{--color: #0c66a6;--color-alt: #094977}:root{--blue-700: #0c66a6}.blue-800{--color: #094977;--color-alt: #052c48}:root{--blue-800: #094977}.blue-900{--color: #052c48;--color-alt: #052c48}:root{--blue-900: #052c48}.primary-100{--color: #e7f4fd;--color-alt: #b7defa}:root{--primary-100: #e7f4fd}.primary-200{--color: #b7defa;--color-alt: #88c8f7}:root{--primary-200: #b7defa}.primary-300{--color: #88c8f7;--color-alt: #58b3f3}:root{--primary-300: #88c8f7}.primary-400{--color: #58b3f3;--color-alt: #1192ee}:root{--primary-400: #58b3f3}.primary-500{--color: #1192ee;--color-alt: #1083d5}:root{--primary-500: #1192ee}.primary-600{--color: #1083d5;--color-alt: #0c66a6}:root{--primary-600: #1083d5}.primary-700{--color: #0c66a6;--color-alt: #094977}:root{--primary-700: #0c66a6}.primary-800{--color: #094977;--color-alt: #052c48}:root{--primary-800: #094977}.primary-900{--color: #052c48;--color-alt: #052c48}:root{--primary-900: #052c48}.green-100{--color: #eafbf2;--color-alt: #c0f2d9}:root{--green-100: #eafbf2}.green-20
Download .txt
gitextract_bfb6tb_w/

├── .babelrc
├── .editorconfig
├── .gitattributes
├── .gitignore
├── .npmignore
├── LICENSE
├── README.md
├── docs/
│   ├── CNAME
│   ├── assets/
│   │   └── img/
│   │       └── edgrid-poster_tmp23195
│   ├── casos-de-exito/
│   │   └── index.html
│   ├── changelog/
│   │   └── index.html
│   ├── creditos/
│   │   └── index.html
│   ├── css/
│   │   └── styles.css
│   ├── documentacion/
│   │   ├── alineacion.1.html
│   │   ├── alineacion.html
│   │   ├── banner.html
│   │   ├── base.1.html
│   │   ├── base.html
│   │   ├── botones.html
│   │   ├── breakpoints.html
│   │   ├── cards.html
│   │   ├── css.html
│   │   ├── distribucion.html
│   │   ├── estructura.html
│   │   ├── flexbox-helpers.html
│   │   ├── funciones.html
│   │   ├── grids.html
│   │   ├── helpers.html
│   │   ├── imagenes.html
│   │   ├── index.html
│   │   ├── instalacion.html
│   │   ├── layout-css-grid.html
│   │   ├── layout-flexbox.html
│   │   ├── layout.html
│   │   ├── mediaqueries.html
│   │   ├── menu-responsive.html
│   │   ├── menus.html
│   │   ├── modo-dev.html
│   │   ├── offset.html
│   │   ├── personalizar.html
│   │   ├── prototipado-avanzado.html
│   │   ├── prototipado.html
│   │   ├── ratios.html
│   │   ├── sass.html
│   │   ├── skeleton.html
│   │   ├── videos.html
│   │   └── visibilidad.html
│   ├── index.html
│   ├── js/
│   │   ├── scripts-min.js
│   │   └── scripts.js
│   ├── sitemap.xml
│   └── test.html
├── ed-grid.scss
├── gulpfile.babel.js
├── index.js
├── package.json
├── poster.psd
├── src/
│   ├── css/
│   │   └── ed-grid.css
│   ├── data/
│   │   └── casos-de-exito.json
│   ├── js/
│   │   ├── index.js
│   │   └── modules/
│   │       ├── activeMenu.js
│   │       ├── menu.js
│   │       └── scrollBarWIdth.js
│   ├── md/
│   │   ├── alineacion.md
│   │   ├── base.md
│   │   ├── breakpoints.md
│   │   ├── cards.md
│   │   ├── distribucion.md
│   │   ├── docs/
│   │   │   ├── botones.md
│   │   │   ├── flexbox.md
│   │   │   ├── menu.md
│   │   │   ├── offset.md
│   │   │   └── videos.md
│   │   ├── estructura.md
│   │   ├── funciones.md
│   │   ├── grids.md
│   │   ├── helpers.md
│   │   ├── layout-css-grid.md
│   │   ├── layout-flexbox.md
│   │   ├── layout.md
│   │   ├── mediaqueries.md
│   │   ├── menu-responsive.md
│   │   ├── modo-dev.md
│   │   ├── personalizar.md
│   │   ├── prototipado-avanzado.md
│   │   ├── prototipado.md
│   │   ├── ratios.md
│   │   ├── skeleton.md
│   │   └── visibilidad.md
│   ├── pug/
│   │   ├── config/
│   │   │   ├── config.pug
│   │   │   └── template.pug
│   │   ├── includes/
│   │   │   ├── banner.pug
│   │   │   ├── cards.pug
│   │   │   ├── collaborator.pug
│   │   │   ├── docs-menu.pug
│   │   │   ├── feature-item.pug
│   │   │   ├── footer.pug
│   │   │   ├── header.pug
│   │   │   ├── main-banner.pug
│   │   │   └── main-menu.pug
│   │   └── pages/
│   │       ├── casos-de-exito/
│   │       │   └── index.pug
│   │       ├── changelog/
│   │       │   └── index.pug
│   │       ├── creditos/
│   │       │   └── index.pug
│   │       ├── documentacion/
│   │       │   ├── alineacion.pug
│   │       │   ├── banner.pug
│   │       │   ├── base.pug
│   │       │   ├── breakpoints.pug
│   │       │   ├── cards.pug
│   │       │   ├── distribucion.pug
│   │       │   ├── estructura.pug
│   │       │   ├── flexbox-helpers.pug
│   │       │   ├── funciones.pug
│   │       │   ├── grids.pug
│   │       │   ├── helpers.pug
│   │       │   ├── index.pug
│   │       │   ├── instalacion.pug
│   │       │   ├── layout-css-grid.pug
│   │       │   ├── layout-flexbox.pug
│   │       │   ├── layout.pug
│   │       │   ├── mediaqueries.pug
│   │       │   ├── menu-responsive.pug
│   │       │   ├── menus.pug
│   │       │   ├── modo-dev.pug
│   │       │   ├── offset.pug
│   │       │   ├── personalizar.pug
│   │       │   ├── prototipado-avanzado.pug
│   │       │   ├── prototipado.pug
│   │       │   ├── ratios.pug
│   │       │   ├── sass.pug
│   │       │   ├── skeleton.pug
│   │       │   ├── videos.pug
│   │       │   └── visibilidad.pug
│   │       └── index.pug
│   └── scss/
│       ├── ed-grid/
│       │   ├── components/
│       │   │   ├── _alignment.scss
│       │   │   ├── _base.scss
│       │   │   ├── _core-flexbox.scss
│       │   │   ├── _core-grid.scss
│       │   │   ├── _dev.scss
│       │   │   ├── _layout.scss
│       │   │   ├── _media-queries.scss
│       │   │   ├── _prototype.scss
│       │   │   ├── _video.scss
│       │   │   └── _visibility.scss
│       │   ├── helpers/
│       │   │   ├── _functions.scss
│       │   │   └── _mixins.scss
│       │   └── legacy/
│       │       ├── _ed-menu.scss
│       │       ├── _grid.scss
│       │       ├── _legacy.scss
│       │       └── _offset.scss
│       ├── ed-grid-css.scss
│       ├── ed-grid.scss
│       ├── styles.scss
│       └── web-styles/
│           ├── base/
│           │   └── base.scss
│           ├── components/
│           │   ├── _buttons.scss
│           │   ├── _demo.scss
│           │   ├── _main-features.scss
│           │   ├── _menu-responsive.scss
│           │   └── _menus.scss
│           ├── config/
│           │   ├── _functions.scss
│           │   └── _variables.scss
│           ├── hacks/
│           │   └── _hacks.scss
│           ├── layout/
│           │   └── _layout.scss
│           ├── libraries/
│           │   └── _prism.scss
│           └── theme/
│               ├── _banner.scss
│               ├── _footer.scss
│               ├── _icons.scss
│               └── _typography.scss
└── test.html
Download .txt
SYMBOL INDEX (5 symbols across 2 files)

FILE: docs/js/scripts-min.js
  function r (line 1) | function r(s,o){if(!n[s]){if(!t[s]){var l="function"==typeof require&&re...
  function i (line 1) | function i(e){return e&&e.__esModule?e:{default:e}}

FILE: docs/js/scripts.js
  function r (line 1) | function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==...
  function _interopRequireDefault (line 15) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob...
  function _toConsumableArray (line 531) | function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i ...
Condensed preview — 168 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,073K chars).
[
  {
    "path": ".babelrc",
    "chars": 62,
    "preview": "{\n  \"presets\": [\"env\"],\n  \"plugins\": [\"add-module-exports\"]\n}\n"
  },
  {
    "path": ".editorconfig",
    "chars": 385,
    "preview": "# EditorConfig helps developers define and maintain consistent\n# coding styles between different editors and IDEs\n# http"
  },
  {
    "path": ".gitattributes",
    "chars": 378,
    "preview": "# Auto detect text files and perform LF normalization\n* text=auto\n\n# Custom for Visual Studio\n*.cs     diff=csharp\n\n# St"
  },
  {
    "path": ".gitignore",
    "chars": 691,
    "preview": "# Windows image file caches\nThumbs.db\nehthumbs.db\n\n# Folder config file\nDesktop.ini\n\n# Recycle Bin used on file shares\n$"
  },
  {
    "path": ".npmignore",
    "chars": 69,
    "preview": "node_modules\nnpm-debug.log\n.DS_Store\n.idea\n.gitignore\n.gitattributes\n"
  },
  {
    "path": "LICENSE",
    "chars": 18046,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 2, June 1991\n\n Copyright (C) 1989, 1991 Fr"
  },
  {
    "path": "README.md",
    "chars": 342,
    "preview": "# EDgrid\n![Logo de EDgrid](https://ed-grid.com/assets/img/logo/EDgrid-logo.svg)\n\nEDgrid implementa un sistema de diseño "
  },
  {
    "path": "docs/CNAME",
    "chars": 11,
    "preview": "ed-grid.com"
  },
  {
    "path": "docs/assets/img/edgrid-poster_tmp23195",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "docs/casos-de-exito/index.html",
    "chars": 15143,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>Casos de éxito</title><meta charset=\"utf-8\"><meta name=\"viewport\" content=\"i"
  },
  {
    "path": "docs/changelog/index.html",
    "chars": 6855,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Changelog</title><meta charset=\"utf-8\"><meta name=\"viewport\" conten"
  },
  {
    "path": "docs/creditos/index.html",
    "chars": 8705,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Créditos</title><meta charset=\"utf-8\"><meta name=\"viewport\" content"
  },
  {
    "path": "docs/css/styles.css",
    "chars": 165614,
    "preview": "@import url(\"https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@700;800&display=swap\");"
  },
  {
    "path": "docs/documentacion/alineacion.1.html",
    "chars": 16351,
    "preview": "<!DOCTYPE html>\n<html lang=\"es\">\n  <head>\n    <title>EDgrid | Base (CSS/Sass)</title>\n    <meta charset=\"utf-8\">\n    <me"
  },
  {
    "path": "docs/documentacion/alineacion.html",
    "chars": 16040,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Base (CSS/Sass)</title><meta charset=\"utf-8\"><meta name=\"viewport\" "
  },
  {
    "path": "docs/documentacion/banner.html",
    "chars": 9678,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Banner</title><meta charset=\"utf-8\"><meta name=\"viewport\" content=\""
  },
  {
    "path": "docs/documentacion/base.1.html",
    "chars": 7828,
    "preview": "<!DOCTYPE html>\n<html lang=\"es\">\n  <head>\n    <title>EDgrid | Base (CSS/Sass)</title>\n    <meta charset=\"utf-8\">\n    <me"
  },
  {
    "path": "docs/documentacion/base.html",
    "chars": 7975,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Base (CSS/Sass)</title><meta charset=\"utf-8\"><meta name=\"viewport\" "
  },
  {
    "path": "docs/documentacion/botones.html",
    "chars": 9350,
    "preview": "<!DOCTYPE html>\n<html lang=\"es\">\n  <head>\n    <title>EDgrid | Botones (Sass/CSS)</title>\n    <meta charset=\"utf-8\">\n    "
  },
  {
    "path": "docs/documentacion/breakpoints.html",
    "chars": 10826,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | CSS</title><meta charset=\"utf-8\"><meta name=\"viewport\" content=\"ini"
  },
  {
    "path": "docs/documentacion/cards.html",
    "chars": 13245,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Cards (Sass/CSS)</title><meta charset=\"utf-8\"><meta name=\"viewport\""
  },
  {
    "path": "docs/documentacion/css.html",
    "chars": 11120,
    "preview": "<!DOCTYPE html>\n<html lang=\"es\">\n  <head>\n    <title>EDgrid | CSS</title>\n    <meta charset=\"utf-8\">\n    <meta name=\"vie"
  },
  {
    "path": "docs/documentacion/distribucion.html",
    "chars": 11989,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Distribucion</title><meta charset=\"utf-8\"><meta name=\"viewport\" con"
  },
  {
    "path": "docs/documentacion/estructura.html",
    "chars": 13374,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Estructura</title><meta charset=\"utf-8\"><meta name=\"viewport\" conte"
  },
  {
    "path": "docs/documentacion/flexbox-helpers.html",
    "chars": 15982,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Flexbox (CSS/Sass)</title><meta charset=\"utf-8\"><meta name=\"viewpor"
  },
  {
    "path": "docs/documentacion/funciones.html",
    "chars": 8619,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Funciones (Sass)</title><meta charset=\"utf-8\"><meta name=\"viewport\""
  },
  {
    "path": "docs/documentacion/grids.html",
    "chars": 11492,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Grid (CSS/Sass)</title><meta charset=\"utf-8\"><meta name=\"viewport\" "
  },
  {
    "path": "docs/documentacion/helpers.html",
    "chars": 12774,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Helpers (CSS/Sass)</title><meta charset=\"utf-8\"><meta name=\"viewpor"
  },
  {
    "path": "docs/documentacion/imagenes.html",
    "chars": 9153,
    "preview": "<!DOCTYPE html>\n<html lang=\"es\">\n  <head>\n    <title>EDgrid | Imágenes (Sass/CSS)</title>\n    <meta charset=\"utf-8\">\n   "
  },
  {
    "path": "docs/documentacion/index.html",
    "chars": 8352,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Documentación</title><meta charset=\"utf-8\"><meta name=\"viewport\" co"
  },
  {
    "path": "docs/documentacion/instalacion.html",
    "chars": 9402,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Base (CSS/Sass)</title><meta charset=\"utf-8\"><meta name=\"viewport\" "
  },
  {
    "path": "docs/documentacion/layout-css-grid.html",
    "chars": 16053,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Flujo de trabajo (CSS/Sass)</title><meta charset=\"utf-8\"><meta name"
  },
  {
    "path": "docs/documentacion/layout-flexbox.html",
    "chars": 17204,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Flujo de trabajo (CSS/Sass)</title><meta charset=\"utf-8\"><meta name"
  },
  {
    "path": "docs/documentacion/layout.html",
    "chars": 16251,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Base (CSS/Sass)</title><meta charset=\"utf-8\"><meta name=\"viewport\" "
  },
  {
    "path": "docs/documentacion/mediaqueries.html",
    "chars": 10154,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Mediaqueries (Sass)</title><meta charset=\"utf-8\"><meta name=\"viewpo"
  },
  {
    "path": "docs/documentacion/menu-responsive.html",
    "chars": 15594,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Menú responsive (Sass/CSS)</title><meta charset=\"utf-8\"><meta name="
  },
  {
    "path": "docs/documentacion/menus.html",
    "chars": 10716,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Uso con CSS (cssCore)</title><meta charset=\"utf-8\"><meta name=\"view"
  },
  {
    "path": "docs/documentacion/modo-dev.html",
    "chars": 11543,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Modo dev</title><meta charset=\"utf-8\"><meta name=\"viewport\" content"
  },
  {
    "path": "docs/documentacion/offset.html",
    "chars": 9998,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Offset (Sass/CSS)</title><meta charset=\"utf-8\"><meta name=\"viewport"
  },
  {
    "path": "docs/documentacion/personalizar.html",
    "chars": 10698,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Configurar (Sass)</title><meta charset=\"utf-8\"><meta name=\"viewport"
  },
  {
    "path": "docs/documentacion/prototipado-avanzado.html",
    "chars": 11418,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Prototipado avanzado (Sass/CSS)</title><meta charset=\"utf-8\"><meta "
  },
  {
    "path": "docs/documentacion/prototipado.html",
    "chars": 14093,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Base (CSS/Sass)</title><meta charset=\"utf-8\"><meta name=\"viewport\" "
  },
  {
    "path": "docs/documentacion/ratios.html",
    "chars": 11381,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Ratios (Sass/CSS)</title><meta charset=\"utf-8\"><meta name=\"viewport"
  },
  {
    "path": "docs/documentacion/sass.html",
    "chars": 9765,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Sass</title><meta charset=\"utf-8\"><meta name=\"viewport\" content=\"in"
  },
  {
    "path": "docs/documentacion/skeleton.html",
    "chars": 10037,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Skeleton (Sass/CSS)</title><meta charset=\"utf-8\"><meta name=\"viewpo"
  },
  {
    "path": "docs/documentacion/videos.html",
    "chars": 9209,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Videos responsive (Sass/CSS)</title><meta charset=\"utf-8\"><meta nam"
  },
  {
    "path": "docs/documentacion/visibilidad.html",
    "chars": 10313,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid | Visibilidad</title><meta charset=\"utf-8\"><meta name=\"viewport\" cont"
  },
  {
    "path": "docs/index.html",
    "chars": 7609,
    "preview": "<!DOCTYPE html><html lang=\"es\"><head><title>EDgrid - Libreria Sass/CSS de EDteam para construir layouts web responsive</"
  },
  {
    "path": "docs/js/scripts-min.js",
    "chars": 16576,
    "preview": "!function(){return function e(t,n,a){function r(s,o){if(!n[s]){if(!t[s]){var l=\"function\"==typeof require&&require;if(!o"
  },
  {
    "path": "docs/js/scripts.js",
    "chars": 23322,
    "preview": "(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)ret"
  },
  {
    "path": "docs/sitemap.xml",
    "chars": 5500,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n    <url>\n        <l"
  },
  {
    "path": "docs/test.html",
    "chars": 929,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <title>Title</title>\n  <link rel=\"stylesheet\" href=\"c"
  },
  {
    "path": "ed-grid.scss",
    "chars": 28,
    "preview": "@import \"src/scss/ed-grid\";\n"
  },
  {
    "path": "gulpfile.babel.js",
    "chars": 5786,
    "preview": "import gulp from 'gulp'\nimport sass from 'gulp-sass'\nimport plumber from 'gulp-plumber'\nimport postcss from 'gulp-postcs"
  },
  {
    "path": "index.js",
    "chars": 104,
    "preview": "import { getScrollBarWidth } from './src/js/modules/scrollBarWIdth'\n\nmodule.exports = getScrollBarWidth\n"
  },
  {
    "path": "package.json",
    "chars": 1611,
    "preview": "{\n  \"name\": \"ed-grid\",\n  \"version\": \"3.0.2\",\n  \"description\": \"EDgrid (aka ed-grid) is a minimalist Sass/CSS library for"
  },
  {
    "path": "src/css/ed-grid.css",
    "chars": 129562,
    "preview": "@charset \"UTF-8\";\n/*\n* $names - Lista de nombres que usaremos para nombrar nuestras clases.\n*          Recorremos una li"
  },
  {
    "path": "src/data/casos-de-exito.json",
    "chars": 4738,
    "preview": "{\n  \"casos\": [\n    {\n      \"img\": \"/assets/img/ed-team-web.jpg\",\n      \"title\": \"EDteam\",\n      \"subtitle\": \"Web oficial"
  },
  {
    "path": "src/js/index.js",
    "chars": 20126,
    "preview": "// import menu from './modules/menu'\n// import migrate from './modules/migrate'\n//\n// export default { menu, migrate }\n\n"
  },
  {
    "path": "src/js/modules/activeMenu.js",
    "chars": 350,
    "preview": "const activeMenu = menuId => {\n  const menu = document.getElementById(menuId)\n  if(!menu) return\n  const links = [...men"
  },
  {
    "path": "src/js/modules/menu.js",
    "chars": 314,
    "preview": "const openMenu = (navId, toggleId) => {\n  const nav = document.getElementById(navId)\n  const toggle = document.getElemen"
  },
  {
    "path": "src/js/modules/scrollBarWIdth.js",
    "chars": 224,
    "preview": "const getScrollBarWidth = () => window.innerWidth - document.documentElement.getBoundingClientRect().width\n\ndocument.doc"
  },
  {
    "path": "src/md/alineacion.md",
    "chars": 7153,
    "preview": "# Alineación\n<!-- TOC -->\n- [Alineación de contenido](#alineación-de-contenido)\n- [Alineación de bloques](#alineación-de"
  },
  {
    "path": "src/md/base.md",
    "chars": 336,
    "preview": "# Estilos base\nLos estilos base normalizan los elementos HTML para Responsive Web Design.\n\n```scss\n*,\n*:before,\n*:after "
  },
  {
    "path": "src/md/breakpoints.md",
    "chars": 1846,
    "preview": "# Breakpoints\n<!-- TOC -->\n\n- [Mobile first](#mobile-first)\n- [Cambiar los breakpoints (Sass)](#cambiar-los-breakpoints-"
  },
  {
    "path": "src/md/cards.md",
    "chars": 4976,
    "preview": "# Cards\n\n<!-- TOC -->\n- [Card básico](#card-basico)\n- [Card horizontal](#card-horizontal)\n<!-- /TOC -->\n\n---\n\nRecuerde q"
  },
  {
    "path": "src/md/distribucion.md",
    "chars": 3610,
    "preview": "# Distribución\n<!-- TOC -->\n\n- [Order](#order)\n- [Alineación en vertical y horizontal de elementos hijos](#alineaci%C3%B"
  },
  {
    "path": "src/md/docs/botones.md",
    "chars": 1497,
    "preview": "# Botones (Sass/CSS)\nAunque ed-grid no pretende incluir elementos de UI (que se incluirán en el futuro proyecto ed-ui), "
  },
  {
    "path": "src/md/docs/flexbox.md",
    "chars": 5361,
    "preview": "# Flexbox (CSS/Sass)\n\nEl core de ed-grid está construido con flexbox, cero floats, display:table, inline-blocks u otros "
  },
  {
    "path": "src/md/docs/menu.md",
    "chars": 1642,
    "preview": "# Menus \nCon EDgrid puede crear menus responsive fácilmente. Basta con crear una lista `ul` y los enlaces dentro de cada"
  },
  {
    "path": "src/md/docs/offset.md",
    "chars": 1081,
    "preview": "# Offset (Sass/CSS)\n\nSe conoce como offset al movimiento de un elemento respecto a la posición que se supone deberia ten"
  },
  {
    "path": "src/md/docs/videos.md",
    "chars": 702,
    "preview": "# Videos responsive (Sass/CSS)\nEDgrid le permite insertar videos responsive con la proporcion 16:9 en cualquier breakpoi"
  },
  {
    "path": "src/md/estructura.md",
    "chars": 4470,
    "preview": "# Estructura de archivos\n\n<!-- TOC -->\n\n- [Etructura general del repositotio](#etructura-general-del-repositotio)\n- [Arc"
  },
  {
    "path": "src/md/funciones.md",
    "chars": 406,
    "preview": "# Funciones (Sass)\nEDgrid incluye dos funciones útiles en el RWD: `em($px)` y `rem($px)`\nEstas funciones convierten un n"
  },
  {
    "path": "src/md/grids.md",
    "chars": 2143,
    "preview": "# Grids (cuadrículas)\n\nCon EDgrid puede crear cuadrículas fácilmente.\n\n\n## Grids con CSS\nEn CSS EDgrid cuenta con dos gr"
  },
  {
    "path": "src/md/helpers.md",
    "chars": 3038,
    "preview": "# Helpers\n\nArchivo `helpers.scss`\n\nLos helpers son ayudas al trabajo a través de clases.\n\n## Ancho de elementos\n\nPuede u"
  },
  {
    "path": "src/md/layout-css-grid.md",
    "chars": 6160,
    "preview": "# Sistema de filas y columnas con CSS Grid\n\nLa versión 3 de EDgrid incluye la creación de layouts con CSS Grid, la que o"
  },
  {
    "path": "src/md/layout-flexbox.md",
    "chars": 7176,
    "preview": "# Sistema de columnas con flexbox\n<!-- TOC -->\n\n- [ed-container y ed-item](#ed-container-y-ed-item)\n- [Ancho de los ed-c"
  },
  {
    "path": "src/md/layout.md",
    "chars": 7113,
    "preview": "# Layout\n\n<!-- TOC -->\n\n- [Secciones](#secciones)\n    - [Anular espaciado entre secciones](#anular-espaciado-entre-secci"
  },
  {
    "path": "src/md/mediaqueries.md",
    "chars": 1380,
    "preview": "# Mediaqueries (Sass)\n\nEDgrid incluye mixins para crear mediaqueries fácilmente: \n\n1. `from($bp)`\\\nPara tamaños mayores "
  },
  {
    "path": "src/md/menu-responsive.md",
    "chars": 6936,
    "preview": "# Menú responsive\n\nUn menú responsive es un buen ejemplo de cómo podemos integrar EDgrid con código ajeno a la librería."
  },
  {
    "path": "src/md/modo-dev.md",
    "chars": 2291,
    "preview": "# Modo dev\n\nEl modo dev es una característica de EDgrid que nos permite saber el breakpoint actual y los componentes del"
  },
  {
    "path": "src/md/personalizar.md",
    "chars": 2394,
    "preview": "# Personalizar EDgrid con Sass\n\nEDgrid es altamente personalizable pues sus variables de configuración pueden ser sobree"
  },
  {
    "path": "src/md/prototipado-avanzado.md",
    "chars": 3221,
    "preview": "# Prototipado avanzado\n\nYa vio qué es EDgrid y todo lo que es capaz de hacer, pero tal vez no sea suficiente en ciertos "
  },
  {
    "path": "src/md/prototipado.md",
    "chars": 5466,
    "preview": "# Prototipado\n\n<!-- TOC -->\n\n- [Botones](#botones)\n- [Bordes](#bordes)\n- [Esquinas redondeadas](#esquinas-redondeadas)\n-"
  },
  {
    "path": "src/md/ratios.md",
    "chars": 3155,
    "preview": "# Ratios e imágenes\n\n<!-- TOC -->\n\n- [Ratios](#ratios)\n- [Imágenes](#imagenes)\n\n<!-- /TOC -->\n\n---\n\nCon los ratios puede"
  },
  {
    "path": "src/md/skeleton.md",
    "chars": 2255,
    "preview": "# Skeleton\n\nLos componenentes skeleton son una vista previa del contenido que se muestra antes de que se carguen los dat"
  },
  {
    "path": "src/md/visibilidad.md",
    "chars": 1292,
    "preview": "# Visibilidad\nEl componente visibilidad permite definir los breakpoints en los que un elemento se mostrará y los breakpo"
  },
  {
    "path": "src/pug/config/config.pug",
    "chars": 238,
    "preview": "- var title = \"EDgrid | Inicio\"\n- var description = \"Descripcion de la pagina\"\n- var ogUrl = \"index.html\"\n- let docsMenu"
  },
  {
    "path": "src/pug/config/template.pug",
    "chars": 2067,
    "preview": "block config\n  include config\n\ndoctype html\nhtml(lang=\"es\")\n  head\n    title= title\n    meta(charset=\"utf-8\")\n    meta(n"
  },
  {
    "path": "src/pug/includes/banner.pug",
    "chars": 920,
    "preview": "mixin banner(img, title, description, clase, boton, botonClass, botonUrl, botonText, botones)\n  .main-banner.background."
  },
  {
    "path": "src/pug/includes/cards.pug",
    "chars": 771,
    "preview": "mixin card(cardImage, cardTitle, cardSub, cardText, cardlink, user, imageUser,  linkuser)\n  .testimony-card.s-column.s-b"
  },
  {
    "path": "src/pug/includes/collaborator.pug",
    "chars": 287,
    "preview": "mixin collaborator(name, job, url, photo)\n  article.s-mb-0.s-column.s-cross-center.s-pxy-2\n    a(href=url target=\"_blank"
  },
  {
    "path": "src/pug/includes/docs-menu.pug",
    "chars": 2043,
    "preview": "mixin sidebar-section(title)\n  section.s-mb-2.m-mb-3\n    p.t5.s-mb-1= title\n    block\n\nmixin sidebar-link(value, url)\n  "
  },
  {
    "path": "src/pug/includes/feature-item.pug",
    "chars": 142,
    "preview": "mixin main-feature(img, title, text)\n  .main-feature.s-pxy-2\n    .main-feature__img\n      img(src=img)\n    h3= title\n   "
  },
  {
    "path": "src/pug/includes/footer.pug",
    "chars": 1048,
    "preview": "footer.main-footer(role=\"contentinfo\" itemscope itemtype=\"http://schema.org/WPFooter\")\n  .ed-container.main-footer--cont"
  },
  {
    "path": "src/pug/includes/header.pug",
    "chars": 570,
    "preview": "header(itemscope itemtype=\"http://schema.org/WPHeader\").main-header\n  .ed-grid.s-grid-5.cols-lg-10\n    .s-cols-2.s-cross"
  },
  {
    "path": "src/pug/includes/main-banner.pug",
    "chars": 998,
    "preview": "mixin main-banner\n  .main-banner.background.grey-800.l-section\n    .ed-grid.lg-grid-2.row-gap.s-gap-2.m-gap-4\n      .s-c"
  },
  {
    "path": "src/pug/includes/main-menu.pug",
    "chars": 439,
    "preview": "block link-section\n  - var active = 'Documentación';\n\n- var menu = { 'Documentación': '/documentacion/instalacion.html',"
  },
  {
    "path": "src/pug/pages/casos-de-exito/index.pug",
    "chars": 1388,
    "preview": "extends ../../config/template\ninclude ../../includes/banner\ninclude ../../includes/cards\nappend config\n  -title = \"Casos"
  },
  {
    "path": "src/pug/pages/changelog/index.pug",
    "chars": 3120,
    "preview": "extends ../../config/template\ninclude ../../includes/banner\nappend config\n  -title = \"EDgrid | Changelog\"\n  -description"
  },
  {
    "path": "src/pug/pages/creditos/index.pug",
    "chars": 2423,
    "preview": "extends ../../config/template\ninclude ../../includes/banner\ninclude ../../includes/collaborator\nappend config\n  -title ="
  },
  {
    "path": "src/pug/pages/documentacion/alineacion.pug",
    "chars": 345,
    "preview": "extends /src/pug/config/template\nappend config\n  -title = \"EDgrid | Base (CSS/Sass)\"\n  -description = \"Los estilos base "
  },
  {
    "path": "src/pug/pages/documentacion/banner.pug",
    "chars": 2270,
    "preview": "extends ../../config/template\ninclude ../../includes/main-banner\nappend config\n  -title = \"EDgrid | Banner\"\n  -descripti"
  },
  {
    "path": "src/pug/pages/documentacion/base.pug",
    "chars": 339,
    "preview": "extends /src/pug/config/template\nappend config\n  -title = \"EDgrid | Base (CSS/Sass)\"\n  -description = \"Los estilos base "
  },
  {
    "path": "src/pug/pages/documentacion/breakpoints.pug",
    "chars": 673,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | CSS\"\n  -description = \"La principal diferencia de ed-gr"
  },
  {
    "path": "src/pug/pages/documentacion/cards.pug",
    "chars": 321,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Cards (Sass/CSS)\"\n  -description = \"Componente card cre"
  },
  {
    "path": "src/pug/pages/documentacion/distribucion.pug",
    "chars": 323,
    "preview": "extends /src/pug/config/template\nappend config\n  -title = \"EDgrid | Distribucion\"\n  -description = \"Distrubción y direcc"
  },
  {
    "path": "src/pug/pages/documentacion/estructura.pug",
    "chars": 462,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Estructura\"\n  -description = \"La siguiente es la estruc"
  },
  {
    "path": "src/pug/pages/documentacion/flexbox-helpers.pug",
    "chars": 647,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Flexbox (CSS/Sass)\"\n  -description = \"El core de ed-gri"
  },
  {
    "path": "src/pug/pages/documentacion/funciones.pug",
    "chars": 512,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Funciones (Sass)\"\n  -description = \"ed-grid incluye dos"
  },
  {
    "path": "src/pug/pages/documentacion/grids.pug",
    "chars": 659,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Grid (CSS/Sass)\"\n  -description = \"La principal diferen"
  },
  {
    "path": "src/pug/pages/documentacion/helpers.pug",
    "chars": 684,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Helpers (CSS/Sass)\"\n  -description = \"Los helpers son a"
  },
  {
    "path": "src/pug/pages/documentacion/index.pug",
    "chars": 1147,
    "preview": "extends ../../config/template\ninclude ../../includes/banner\nappend config\n  -title = \"EDgrid | Documentación\"\n  -descrip"
  },
  {
    "path": "src/pug/pages/documentacion/instalacion.pug",
    "chars": 1943,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Base (CSS/Sass)\"\n  -description = \"Los estilos base nor"
  },
  {
    "path": "src/pug/pages/documentacion/layout-css-grid.pug",
    "chars": 571,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Flujo de trabajo (CSS/Sass)\"\n  -description = \"Sass o C"
  },
  {
    "path": "src/pug/pages/documentacion/layout-flexbox.pug",
    "chars": 566,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Flujo de trabajo (CSS/Sass)\"\n  -description = \"Sass o C"
  },
  {
    "path": "src/pug/pages/documentacion/layout.pug",
    "chars": 342,
    "preview": "extends /src/pug/config/template\nappend config\n  -title = \"EDgrid | Base (CSS/Sass)\"\n  -description = \"Los estilos base "
  },
  {
    "path": "src/pug/pages/documentacion/mediaqueries.pug",
    "chars": 673,
    "preview": "extends /src/pug/config/template\nappend config\n  -title = \"EDgrid | Mediaqueries (Sass)\"\n  -description = \"Con ed-grid e"
  },
  {
    "path": "src/pug/pages/documentacion/menu-responsive.pug",
    "chars": 344,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Menú responsive (Sass/CSS)\"\n  -description = \"Component"
  },
  {
    "path": "src/pug/pages/documentacion/menus.pug",
    "chars": 650,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Uso con CSS (cssCore)\"\n  -description = \"Con ed-grid pu"
  },
  {
    "path": "src/pug/pages/documentacion/modo-dev.pug",
    "chars": 754,
    "preview": "extends /src/pug/config/template\nappend config\n  -title = \"EDgrid | Modo dev\"\n  -description = \"El modo dev (modo desarr"
  },
  {
    "path": "src/pug/pages/documentacion/offset.pug",
    "chars": 743,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Offset (Sass/CSS)\"\n  -description = \"Se conoce como off"
  },
  {
    "path": "src/pug/pages/documentacion/personalizar.pug",
    "chars": 550,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Configurar (Sass)\"\n  -description = \"Si va a trabajar c"
  },
  {
    "path": "src/pug/pages/documentacion/prototipado-avanzado.pug",
    "chars": 383,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Prototipado avanzado (Sass/CSS)\"\n  -description = \"Cree"
  },
  {
    "path": "src/pug/pages/documentacion/prototipado.pug",
    "chars": 346,
    "preview": "extends /src/pug/config/template\nappend config\n  -title = \"EDgrid | Base (CSS/Sass)\"\n  -description = \"Los estilos base "
  },
  {
    "path": "src/pug/pages/documentacion/ratios.pug",
    "chars": 354,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Ratios (Sass/CSS)\"\n  -description = \"Con los ratios pue"
  },
  {
    "path": "src/pug/pages/documentacion/sass.pug",
    "chars": 1669,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Sass\"\n  -description = \"Si va a trabajar con Sass, teng"
  },
  {
    "path": "src/pug/pages/documentacion/skeleton.pug",
    "chars": 334,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Skeleton (Sass/CSS)\"\n  -description = \"Componente skele"
  },
  {
    "path": "src/pug/pages/documentacion/videos.pug",
    "chars": 608,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Videos responsive (Sass/CSS)\"\n  -description = \"ed-grid"
  },
  {
    "path": "src/pug/pages/documentacion/visibilidad.pug",
    "chars": 716,
    "preview": "extends ../../config/template\nappend config\n  -title = \"EDgrid | Visibilidad\"\n  -description = \"El componente visibilida"
  },
  {
    "path": "src/pug/pages/index.pug",
    "chars": 2376,
    "preview": "extends ../config/template\ninclude ../includes/banner\ninclude  ../includes/main-banner\ninclude ../includes/feature-item\n"
  },
  {
    "path": "src/scss/ed-grid/components/_alignment.scss",
    "chars": 3261,
    "preview": "/* Alineación de contenido */\n// Recorrer los breakpoints\n@each $size in $sizes {\n  // Lista de alineaciones\n  $aligns :"
  },
  {
    "path": "src/scss/ed-grid/components/_base.scss",
    "chars": 269,
    "preview": "// RWD Bases\n*,\n*:before,\n*:after {\n  box-sizing: border-box;\n}\n\nbody {\n  margin      : 0;\n  font-family : sans-serif;\n}"
  },
  {
    "path": "src/scss/ed-grid/components/_core-flexbox.scss",
    "chars": 2883,
    "preview": "// placeholder para ed-container\n%ed-container {\n  display      : flex;\n  flex-wrap    : wrap;\n  max-width    : var(--ma"
  },
  {
    "path": "src/scss/ed-grid/components/_core-grid.scss",
    "chars": 3772,
    "preview": "// Calcula ancho de cada columna\n@mixin grid-column-width($i) {\n  // La cantidad de gaps es igual a la cantidad de colum"
  },
  {
    "path": "src/scss/ed-grid/components/_dev.scss",
    "chars": 2624,
    "preview": "// altura de los pseudoelementos que imprimiran clases\n$info-height    : rem(20px);\n$info-font-size : $info-height * 0.6"
  },
  {
    "path": "src/scss/ed-grid/components/_layout.scss",
    "chars": 3286,
    "preview": "// SEPARACIONES\n// Use las siguientes clases para crear separaciones verticales armoniosas\n// Las clases cancel-l- cance"
  },
  {
    "path": "src/scss/ed-grid/components/_media-queries.scss",
    "chars": 5692,
    "preview": "/// Devuelve true si el breakpoint es parte del core\n/// @group mq\n/// @author  Alvaro Felipe\n/// @param   {number} $bp "
  },
  {
    "path": "src/scss/ed-grid/components/_prototype.scss",
    "chars": 3485,
    "preview": "@mixin ratio($h, $v) {\n  $width: 100%;\n  width: $width;\n  height: 0;\n  overflow: hidden;\n  padding-bottom: $width * ($v/"
  },
  {
    "path": "src/scss/ed-grid/components/_video.scss",
    "chars": 262,
    "preview": ".ed-video {\n  height         : 0;\n  overflow       : hidden;\n  padding-bottom : 56.25%;\n  position       : relative;\n  >"
  },
  {
    "path": "src/scss/ed-grid/components/_visibility.scss",
    "chars": 1402,
    "preview": "/// Muestra un elemento a partir del breakpoint especificado\n/// @group   visibility\n/// @author  Alvaro Felipe\n/// @par"
  },
  {
    "path": "src/scss/ed-grid/helpers/_functions.scss",
    "chars": 1053,
    "preview": "/// Transforma un valor en pixeles a em.\n/// @group   functions\n/// @author  Alvaro Felipe\n/// @param   {number} $el - e"
  },
  {
    "path": "src/scss/ed-grid/helpers/_mixins.scss",
    "chars": 2293,
    "preview": "// Recorre cada uno de los breakpoints que hay en las variables por defecto\n@mixin breakpoints {\n  @each $size in $sizes"
  },
  {
    "path": "src/scss/ed-grid/legacy/_ed-menu.scss",
    "chars": 7044,
    "preview": "// estilo default del menu\n/// Aplica un estilo por defecto al menu.\n/// @group   menu\n/// @author  Alvaro Felipe\n@mixin"
  },
  {
    "path": "src/scss/ed-grid/legacy/_grid.scss",
    "chars": 3326,
    "preview": "// returns grid-item width based on columns number and gutter\n// retorna el ancho del grid-item basado en el número de c"
  },
  {
    "path": "src/scss/ed-grid/legacy/_legacy.scss",
    "chars": 3560,
    "preview": "@mixin padding($numero:1) {\n  padding-left  : $gap * $numero;\n  padding-right : $gap * $numero;\n}\n\n@mixin noPaddingConta"
  },
  {
    "path": "src/scss/ed-grid/legacy/_offset.scss",
    "chars": 2134,
    "preview": "@mixin cssOffset {\n  @each $size, $screen-size in $breakpoints{\n\n    @if $size == s {\n      @for $i from 1 through 20 {\n"
  },
  {
    "path": "src/scss/ed-grid-css.scss",
    "chars": 139,
    "preview": "// Esta configuración se usa solamente para compilar la versión CSS\n$cssCore : true !default;\n$buttons : true !default;\n"
  },
  {
    "path": "src/scss/ed-grid.scss",
    "chars": 1932,
    "preview": "// Configuraciones\n$prototype        : true !default;\n$dev              : false !default;\n$dev-hover        : false !def"
  },
  {
    "path": "src/scss/styles.scss",
    "chars": 1427,
    "preview": "// Use este archivo para escribir los estilos de la página de documentación\n$legacy: false;\n@import \"ed-grid\";\n@import \""
  },
  {
    "path": "src/scss/web-styles/base/base.scss",
    "chars": 92,
    "preview": "*,\n*::before,\n*:after {\n  box-sizing: border-box;\n}\n\nbody {\n  font-size: fontSize(small);\n}\n"
  },
  {
    "path": "src/scss/web-styles/components/_buttons.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/scss/web-styles/components/_demo.scss",
    "chars": 1348,
    "preview": ".ed-grid-demo {\n  // border: 1px solid var(--dark-color);\n  margin-bottom: var(--vertical-block-space);\n  background: va"
  },
  {
    "path": "src/scss/web-styles/components/_main-features.scss",
    "chars": 442,
    "preview": "// Features de EDgrid que aparecen en el home\n.main-features {\n  text-align  : center;\n}\n\n// Imágenes de cada feature\n.m"
  },
  {
    "path": "src/scss/web-styles/components/_menu-responsive.scss",
    "chars": 1294,
    "preview": "// Este es el verdadero código, pero para la demostración no podemos usar posicionamiento fijo\n/*\n.ed-menu {\n  position "
  },
  {
    "path": "src/scss/web-styles/components/_menus.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/scss/web-styles/config/_functions.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "src/scss/web-styles/config/_variables.scss",
    "chars": 42,
    "preview": "// Typography\n$font-family: 'sans-serif';\n"
  },
  {
    "path": "src/scss/web-styles/hacks/_hacks.scss",
    "chars": 1214,
    "preview": "@include to(lg) {\n  .vertical-menu {\n    background : var(--blue-900);\n\n    &::before {\n      color : var(--grey-200);\n "
  },
  {
    "path": "src/scss/web-styles/layout/_layout.scss",
    "chars": 255,
    "preview": ".main-features{\n  .main-features__content{\n    .main-features__img{\n      display: block;\n      margin: 0 auto .5em;\n   "
  },
  {
    "path": "src/scss/web-styles/libraries/_prism.scss",
    "chars": 3936,
    "preview": "/* PrismJS 1.9.0\nhttp://prismjs.com/download.html?themes=prism-okaidia&languages=markup+css+clike+javascript+scss&plugin"
  },
  {
    "path": "src/scss/web-styles/theme/_banner.scss",
    "chars": 135,
    "preview": ".main-banner {\n  @include to(l) {\n    .center [class*=\"button\"] {\n      font-size: fontSize(smaller);\n      margin : .5e"
  },
  {
    "path": "src/scss/web-styles/theme/_footer.scss",
    "chars": 127,
    "preview": ".main-footer {\n  padding :  2rem 0;\n  p {\n    opacity : .6;\n    margin : 0;\n  }\n\n  a:hover {\n    text-decoration : none;"
  },
  {
    "path": "src/scss/web-styles/theme/_icons.scss",
    "chars": 1626,
    "preview": "@charset \"UTF-8\";\n\n@font-face {\n  font-family : \"edgrid-website\";\n  src         : url(\"../fonts/edgrid-website.eot\");\n  "
  },
  {
    "path": "src/scss/web-styles/theme/_typography.scss",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "test.html",
    "chars": 913,
    "preview": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <title>Title</title>\n  <link rel=\"stylesheet\" href=\"c"
  }
]

// ... and 1 more files (download for full content)

About this extraction

This page contains the full source code of the escueladigital/EDgrid GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 168 files (994.3 KB), approximately 317.2k tokens, and a symbol index with 5 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!