:root {
    --color-1: #D73323;
    --color-2: #F9C22C;
    --color-2-o: #c79715;
    --color-3: #F08127;
    --color-d: #333;
    --color-n1: #666;
    --color-n2: #999;
    --color-n3: #ccc;
    --color-n4: #F1F3F4;
    --color-l: #fff;
    --font-titulos: font-family: "Kapra Neue",
        sans-serif;
    --font-cuerpo: font-family: "Roboto Condensed",
        sans-serif;
    --font-bold: bold;
    --redondeado: 10px;
    font-size: 18px;
}

::-moz-selection {
    color: var(--color-l);
    background: var(--color-1);
}

::selection {
    color: var(--color-l);
    background: var(--color-1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a:focus {
    outline: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

.ed-bold {
    font-weight: var(--font-bold);
}

.ed-b-dashed-bottom {
    border-bottom: dashed 2px var(--color-n3);
}

.ed-b-sombra-color-2 {
    border: solid var(--color-2) 6px;
    box-shadow: 6px 4px 0px 0px var(--color-2-o);
}

.ed-b-redondo {
    border-radius: 1.4em;
}

.ed-b-radius {
    border-radius: var(--redondeado);
}

.ed-bt-radius {
    border-top-right-radius: var(--redondeado);
    border-top-left-radius: var(--redondeado);
}

.ed-bb-radius {
    border-bottom-right-radius: var(--redondeado);
    border-bottom-left-radius: var(--redondeado);
}

.ed-bl-radius {
    border-top-left-radius: var(--redondeado);
    border-bottom-left-radius: var(--redondeado);
}

.ed-br-radius {
    border-top-right-radius: var(--redondeado);
    border-bottom-right-radius: var(--redondeado);
}


/* Fondos */

.ed-bg-1 {
    background-color: var(--color-1)
}

.ed-bg-2 {
    background-color: var(--color-2)
}

.ed-bg-3 {
    background-color: var(--color-3)
}

.ed-bg-n3 {
    background-color: var(--color-n3)
}

.ed-bg-n4 {
    background-color: var(--color-n4)
}

.ed-bg-l {
    background-color: var(--color-l)
}

.ed-fondo-rayas {
    background-color: var(--color-n4);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, .5) 20px, rgba(255, 255, 255, .5) 40px)
}

.ed-pdf {
    width: 100%;
    height: 85vh;
}


/* Fin fodos*/

.ed-font-family-titulo {
    font-family: var(--font-titulos);
}

.ed-font-family-cuerpo {
    font-family: var(--font-cuerpo);
}

.ed-h1 {
    font-family: var(--font-titulos);
    font-weight: var(--font-bold);
    color: var(--color-1);
}

.ed-h2 {
    font-family: var(--font-titulos);
    font-weight: var(--font-bold);
    color: var(--color-2);
}

.ed-h3 {
    font-family: var(--font-titulos);
    font-weight: var(--font-bold);
    color: var(--color-2);
}

.ed-h4 {
    font-family: var(--font-titulos);
    font-weight: var(--font-bold);
    color: var(--color-3);
}

.ed-h5 {
    font-family: var(--font-titulos);
    font-weight: var(--font-bold);
    color: var(--color-3);
}

.ed-h6 {
    font-family: var(--font-titulos);
    font-weight: var(--font-bold);
    color: var(--color-3);
}

.ed-t-color-1 {
    color: var(--color-1);
}

.ed-t-color-2 {
    color: var(--color-2);
}

.ed-t-color-3 {
    color: var(--color-3);
}

.ed-t-color-l {
    color: var(--color-l);
}

.ed-t-grande {
    font-size: 2rem;
}

.ed-t-medium {
    font-size: 1.5rem;
}

.ed-t-normal {
    font-size: 1rem;
}

.ed-t-pequeno {
    font-size: .8rem;
}


/*--- tablas ---*/

.ed-tabla-responsive {
    width: 100%;
    overflow-x: auto;
}

.ed-tablas {
    width: 100%;
}

.ed-tablas td {
    padding: 10px 5px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    word-break: normal;
    border-color: var(--color-n3);
    background-color: var(--color-l)
}

.ed-tablas th {
    border-style: solid;
    border-width: 2px;
    overflow: hidden;
    word-break: normal;
    border-color: var(--color-2-o);
    border-top: none;
    border-bottom: none;
}

.ed-tablas th:first-child {
    border-left: none;
}

.ed-tablas th:last-child {
    border-right: none;
}


/*--- fin tablas ---*/


/*--- TABS ---*/

.ed-tab-activo,
.ed-tab-activo:focus {
    color: var(--color-1);
    font-weight: var(--font-bold);
}

.ed-tab-contenido {
    display: none;
}

.ed-tab-contenido.ed-tab-contenido-activo {
    display: block;
}


/*--- FIN TABS ---*/

.ed-w-75 {
    width: 75%;
}

.ed-w-100 {
    width: 100%;
}

.ed-video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.ed-video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*=== GRID (BS4 modificado) ===*/


/*!
 * Bootstrap Grid v4.1.0 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

@-ms-viewport {
    width: device-width;
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.ed-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .ed-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .ed-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .ed-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .ed-container {
        max-width: 1140px;
    }
}

.ed-container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.ed-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.ed-no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.ed-no-gutters>.ed-col,
.ed-no-gutters>[class*="ed-col-"] {
    padding-right: 0;
    padding-left: 0;
}

.ed-col-1,
.ed-col-2,
.ed-col-3,
.ed-col-4,
.ed-col-5,
.ed-col-6,
.ed-col-7,
.ed-col-8,
.ed-col-9,
.ed-col-10,
.ed-col-11,
.ed-col-12,
.ed-col,
.ed-col-auto,
.ed-col-sm-1,
.ed-col-sm-2,
.ed-col-sm-3,
.ed-col-sm-4,
.ed-col-sm-5,
.ed-col-sm-6,
.ed-col-sm-7,
.ed-col-sm-8,
.ed-col-sm-9,
.ed-col-sm-10,
.ed-col-sm-11,
.ed-col-sm-12,
.ed-col-sm,
.ed-col-sm-auto,
.ed-col-md-1,
.ed-col-md-2,
.ed-col-md-3,
.ed-col-md-4,
.ed-col-md-5,
.ed-col-md-6,
.ed-col-md-7,
.ed-col-md-8,
.ed-col-md-9,
.ed-col-md-10,
.ed-col-md-11,
.ed-col-md-12,
.ed-col-md,
.ed-col-md-auto,
.ed-col-lg-1,
.ed-col-lg-2,
.ed-col-lg-3,
.ed-col-lg-4,
.ed-col-lg-5,
.ed-col-lg-6,
.ed-col-lg-7,
.ed-col-lg-8,
.ed-col-lg-9,
.ed-col-lg-10,
.ed-col-lg-11,
.ed-col-lg-12,
.ed-col-lg,
.ed-col-lg-auto,
.ed-col-xl-1,
.ed-col-xl-2,
.ed-col-xl-3,
.ed-col-xl-4,
.ed-col-xl-5,
.ed-col-xl-6,
.ed-col-xl-7,
.ed-col-xl-8,
.ed-col-xl-9,
.ed-col-xl-10,
.ed-col-xl-11,
.ed-col-xl-12,
.ed-col-xl,
.ed-col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.ed-col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.ed-col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.ed-col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.ed-col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.ed-col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.ed-col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.ed-col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.ed-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.ed-col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.ed-col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.ed-col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.ed-col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.ed-col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.ed-col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.ed-order-first {
    -ms-flex-order: -1;
    order: -1;
}

.ed-order-last {
    -ms-flex-order: 13;
    order: 13;
}

.ed-order-0 {
    -ms-flex-order: 0;
    order: 0;
}

.ed-order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.ed-order-2 {
    -ms-flex-order: 2;
    order: 2;
}

.ed-order-3 {
    -ms-flex-order: 3;
    order: 3;
}

.ed-order-4 {
    -ms-flex-order: 4;
    order: 4;
}

.ed-order-5 {
    -ms-flex-order: 5;
    order: 5;
}

.ed-order-6 {
    -ms-flex-order: 6;
    order: 6;
}

.ed-order-7 {
    -ms-flex-order: 7;
    order: 7;
}

.ed-order-8 {
    -ms-flex-order: 8;
    order: 8;
}

.ed-order-9 {
    -ms-flex-order: 9;
    order: 9;
}

.ed-order-10 {
    -ms-flex-order: 10;
    order: 10;
}

.ed-order-11 {
    -ms-flex-order: 11;
    order: 11;
}

.ed-order-12 {
    -ms-flex-order: 12;
    order: 12;
}

.ed-offset-1 {
    margin-left: 8.333333%;
}

.ed-offset-2 {
    margin-left: 16.666667%;
}

.ed-offset-3 {
    margin-left: 25%;
}

.ed-offset-4 {
    margin-left: 33.333333%;
}

.ed-offset-5 {
    margin-left: 41.666667%;
}

.ed-offset-6 {
    margin-left: 50%;
}

.ed-offset-7 {
    margin-left: 58.333333%;
}

.ed-offset-8 {
    margin-left: 66.666667%;
}

.ed-offset-9 {
    margin-left: 75%;
}

.ed-offset-10 {
    margin-left: 83.333333%;
}

.ed-offset-11 {
    margin-left: 91.666667%;
}

@media (min-width: 576px) {
    .ed-col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .ed-col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .ed-col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .ed-col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .ed-col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .ed-col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .ed-col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .ed-col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ed-col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .ed-col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .ed-col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .ed-col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .ed-col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .ed-col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ed-order-sm-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .ed-order-sm-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .ed-order-sm-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .ed-order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .ed-order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .ed-order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .ed-order-sm-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .ed-order-sm-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .ed-order-sm-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .ed-order-sm-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .ed-order-sm-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .ed-order-sm-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .ed-order-sm-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .ed-order-sm-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .ed-order-sm-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .ed-offset-sm-0 {
        margin-left: 0;
    }

    .ed-offset-sm-1 {
        margin-left: 8.333333%;
    }

    .ed-offset-sm-2 {
        margin-left: 16.666667%;
    }

    .ed-offset-sm-3 {
        margin-left: 25%;
    }

    .ed-offset-sm-4 {
        margin-left: 33.333333%;
    }

    .ed-offset-sm-5 {
        margin-left: 41.666667%;
    }

    .ed-offset-sm-6 {
        margin-left: 50%;
    }

    .ed-offset-sm-7 {
        margin-left: 58.333333%;
    }

    .ed-offset-sm-8 {
        margin-left: 66.666667%;
    }

    .ed-offset-sm-9 {
        margin-left: 75%;
    }

    .ed-offset-sm-10 {
        margin-left: 83.333333%;
    }

    .ed-offset-sm-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 768px) {
    .ed-col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .ed-col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .ed-col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .ed-col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .ed-col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .ed-col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .ed-col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .ed-col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ed-col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .ed-col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .ed-col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .ed-col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .ed-col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .ed-col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ed-order-md-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .ed-order-md-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .ed-order-md-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .ed-order-md-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .ed-order-md-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .ed-order-md-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .ed-order-md-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .ed-order-md-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .ed-order-md-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .ed-order-md-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .ed-order-md-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .ed-order-md-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .ed-order-md-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .ed-order-md-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .ed-order-md-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .ed-offset-md-0 {
        margin-left: 0;
    }

    .ed-offset-md-1 {
        margin-left: 8.333333%;
    }

    .ed-offset-md-2 {
        margin-left: 16.666667%;
    }

    .ed-offset-md-3 {
        margin-left: 25%;
    }

    .ed-offset-md-4 {
        margin-left: 33.333333%;
    }

    .ed-offset-md-5 {
        margin-left: 41.666667%;
    }

    .ed-offset-md-6 {
        margin-left: 50%;
    }

    .ed-offset-md-7 {
        margin-left: 58.333333%;
    }

    .ed-offset-md-8 {
        margin-left: 66.666667%;
    }

    .ed-offset-md-9 {
        margin-left: 75%;
    }

    .ed-offset-md-10 {
        margin-left: 83.333333%;
    }

    .ed-offset-md-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 992px) {
    .ed-col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .ed-col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .ed-col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .ed-col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .ed-col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .ed-col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .ed-col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .ed-col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ed-col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .ed-col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .ed-col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .ed-col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .ed-col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .ed-col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ed-order-lg-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .ed-order-lg-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .ed-order-lg-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .ed-order-lg-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .ed-order-lg-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .ed-order-lg-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .ed-order-lg-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .ed-order-lg-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .ed-order-lg-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .ed-order-lg-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .ed-order-lg-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .ed-order-lg-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .ed-order-lg-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .ed-order-lg-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .ed-order-lg-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .ed-offset-lg-0 {
        margin-left: 0;
    }

    .ed-offset-lg-1 {
        margin-left: 8.333333%;
    }

    .ed-offset-lg-2 {
        margin-left: 16.666667%;
    }

    .ed-offset-lg-3 {
        margin-left: 25%;
    }

    .ed-offset-lg-4 {
        margin-left: 33.333333%;
    }

    .ed-offset-lg-5 {
        margin-left: 41.666667%;
    }

    .ed-offset-lg-6 {
        margin-left: 50%;
    }

    .ed-offset-lg-7 {
        margin-left: 58.333333%;
    }

    .ed-offset-lg-8 {
        margin-left: 66.666667%;
    }

    .ed-offset-lg-9 {
        margin-left: 75%;
    }

    .ed-offset-lg-10 {
        margin-left: 83.333333%;
    }

    .ed-offset-lg-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .ed-col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .ed-col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .ed-col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .ed-col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .ed-col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .ed-col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .ed-col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .ed-col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ed-col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .ed-col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .ed-col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .ed-col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .ed-col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .ed-col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ed-order-xl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .ed-order-xl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .ed-order-xl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .ed-order-xl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .ed-order-xl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .ed-order-xl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .ed-order-xl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .ed-order-xl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .ed-order-xl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .ed-order-xl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .ed-order-xl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .ed-order-xl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .ed-order-xl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .ed-order-xl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .ed-order-xl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .ed-offset-xl-0 {
        margin-left: 0;
    }

    .ed-offset-xl-1 {
        margin-left: 8.333333%;
    }

    .ed-offset-xl-2 {
        margin-left: 16.666667%;
    }

    .ed-offset-xl-3 {
        margin-left: 25%;
    }

    .ed-offset-xl-4 {
        margin-left: 33.333333%;
    }

    .ed-offset-xl-5 {
        margin-left: 41.666667%;
    }

    .ed-offset-xl-6 {
        margin-left: 50%;
    }

    .ed-offset-xl-7 {
        margin-left: 58.333333%;
    }

    .ed-offset-xl-8 {
        margin-left: 66.666667%;
    }

    .ed-offset-xl-9 {
        margin-left: 75%;
    }

    .ed-offset-xl-10 {
        margin-left: 83.333333%;
    }

    .ed-offset-xl-11 {
        margin-left: 91.666667%;
    }
}

.ed-d-none {
    display: none !important;
}

.ed-d-inline {
    display: inline !important;
}

.ed-d-inline-block {
    display: inline-block !important;
}

.ed-d-block {
    display: block !important;
}

.ed-d-table {
    display: table !important;
}

.ed-d-table-row {
    display: table-row !important;
}

.ed-d-table-cell {
    display: table-cell !important;
}

.ed-d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
    flex-wrap: wrap;
}

.ed-d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .ed-d-sm-none {
        display: none !important;
    }

    .ed-d-sm-inline {
        display: inline !important;
    }

    .ed-d-sm-inline-block {
        display: inline-block !important;
    }

    .ed-d-sm-block {
        display: block !important;
    }

    .ed-d-sm-table {
        display: table !important;
    }

    .ed-d-sm-table-row {
        display: table-row !important;
    }

    .ed-d-sm-table-cell {
        display: table-cell !important;
    }

    .ed-d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .ed-d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .ed-d-md-none {
        display: none !important;
    }

    .ed-d-md-inline {
        display: inline !important;
    }

    .ed-d-md-inline-block {
        display: inline-block !important;
    }

    .ed-d-md-block {
        display: block !important;
    }

    .ed-d-md-table {
        display: table !important;
    }

    .ed-d-md-table-row {
        display: table-row !important;
    }

    .ed-d-md-table-cell {
        display: table-cell !important;
    }

    .ed-d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .ed-d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .ed-d-lg-none {
        display: none !important;
    }

    .ed-d-lg-inline {
        display: inline !important;
    }

    .ed-d-lg-inline-block {
        display: inline-block !important;
    }

    .ed-d-lg-block {
        display: block !important;
    }

    .ed-d-lg-table {
        display: table !important;
    }

    .ed-d-lg-table-row {
        display: table-row !important;
    }

    .ed-d-lg-table-cell {
        display: table-cell !important;
    }

    .ed-d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .ed-d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .ed-d-xl-none {
        display: none !important;
    }

    .ed-d-xl-inline {
        display: inline !important;
    }

    .ed-d-xl-inline-block {
        display: inline-block !important;
    }

    .ed-d-xl-block {
        display: block !important;
    }

    .ed-d-xl-table {
        display: table !important;
    }

    .ed-d-xl-table-row {
        display: table-row !important;
    }

    .ed-d-xl-table-cell {
        display: table-cell !important;
    }

    .ed-d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .ed-d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media print {
    .ed-d-print-none {
        display: none !important;
    }

    .ed-d-print-inline {
        display: inline !important;
    }

    .ed-d-print-inline-block {
        display: inline-block !important;
    }

    .ed-d-print-block {
        display: block !important;
    }

    .ed-d-print-table {
        display: table !important;
    }

    .ed-d-print-table-row {
        display: table-row !important;
    }

    .ed-d-print-table-cell {
        display: table-cell !important;
    }

    .ed-d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .ed-d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.ed-flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.ed-flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.ed-flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.ed-flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.ed-flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.ed-flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.ed-flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.ed-flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.ed-flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.ed-flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.ed-flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.ed-flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.ed-justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.ed-justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.ed-justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.ed-justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.ed-justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.ed-align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.ed-align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.ed-align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.ed-align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.ed-align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.ed-align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.ed-align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.ed-align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.ed-align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.ed-align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.ed-align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.ed-align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.ed-align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.ed-align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.ed-align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.ed-align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.ed-align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .ed-flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .ed-flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .ed-flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .ed-flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .ed-flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .ed-flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .ed-flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .ed-flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .ed-flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .ed-flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .ed-flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .ed-flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .ed-justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .ed-justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .ed-justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .ed-justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .ed-justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .ed-align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .ed-align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .ed-align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .ed-align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .ed-align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .ed-align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .ed-align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .ed-align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .ed-align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .ed-align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .ed-align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .ed-align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .ed-align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .ed-align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .ed-align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .ed-align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .ed-align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .ed-flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .ed-flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .ed-flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .ed-flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .ed-flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .ed-flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .ed-flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .ed-flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .ed-flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .ed-flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .ed-flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .ed-flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .ed-justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .ed-justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .ed-justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .ed-justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .ed-justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .ed-align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .ed-align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .ed-align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .ed-align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .ed-align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .ed-align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .ed-align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .ed-align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .ed-align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .ed-align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .ed-align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .ed-align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .ed-align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .ed-align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .ed-align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .ed-align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .ed-align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .ed-flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .ed-flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .ed-flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .ed-flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .ed-flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .ed-flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .ed-flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .ed-flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .ed-flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .ed-flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .ed-flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .ed-flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .ed-justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .ed-justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .ed-justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .ed-justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .ed-justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .ed-align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .ed-align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .ed-align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .ed-align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .ed-align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .ed-align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .ed-align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .ed-align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .ed-align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .ed-align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .ed-align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .ed-align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .ed-align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .ed-align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .ed-align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .ed-align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .ed-align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .ed-flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .ed-flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .ed-flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .ed-flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .ed-flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .ed-flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .ed-flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .ed-flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .ed-flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .ed-flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .ed-flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .ed-flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .ed-justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .ed-justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .ed-justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .ed-justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .ed-justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .ed-align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .ed-align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .ed-align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .ed-align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .ed-align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .ed-align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .ed-align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .ed-align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .ed-align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .ed-align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .ed-align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .ed-align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .ed-align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .ed-align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .ed-align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .ed-align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .ed-align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}


/*# sourceMappingURL=bootstrap-grid.ed-css.ed-map */


/*=== FIN GRID ===*/


/*=== MARGIN y PADDING ===*/

.ed-m-0 {
    margin: 0 !important;
}

.ed-mt-0,
.ed-my-0 {
    margin-top: 0 !important;
}

.ed-mr-0,
.ed-mx-0 {
    margin-right: 0 !important;
}

.ed-mb-0,
.ed-my-0 {
    margin-bottom: 0 !important;
}

.ed-ml-0,
.ed-mx-0 {
    margin-left: 0 !important;
}

.ed-m-1 {
    margin: 0.25rem !important;
}

.ed-mt-1,
.ed-my-1 {
    margin-top: 0.25rem !important;
}

.ed-mr-1,
.ed-mx-1 {
    margin-right: 0.25rem !important;
}

.ed-mb-1,
.ed-my-1 {
    margin-bottom: 0.25rem !important;
}

.ed-ml-1,
.ed-mx-1 {
    margin-left: 0.25rem !important;
}

.ed-m-2 {
    margin: 0.5rem !important;
}

.ed-mt-2,
.ed-my-2 {
    margin-top: 0.5rem !important;
}

.ed-mr-2,
.ed-mx-2 {
    margin-right: 0.5rem !important;
}

.ed-mb-2,
.ed-my-2 {
    margin-bottom: 0.5rem !important;
}

.ed-ml-2,
.ed-mx-2 {
    margin-left: 0.5rem !important;
}

.ed-m-3 {
    margin: 1rem !important;
}

.ed-mt-3,
.ed-my-3 {
    margin-top: 1rem !important;
}

.ed-mr-3,
.ed-mx-3 {
    margin-right: 1rem !important;
}

.ed-mb-3,
.ed-my-3 {
    margin-bottom: 1rem !important;
}

.ed-ml-3,
.ed-mx-3 {
    margin-left: 1rem !important;
}

.ed-m-4 {
    margin: 1.5rem !important;
}

.ed-mt-4,
.ed-my-4 {
    margin-top: 1.5rem !important;
}

.ed-mr-4,
.ed-mx-4 {
    margin-right: 1.5rem !important;
}

.ed-mb-4,
.ed-my-4 {
    margin-bottom: 1.5rem !important;
}

.ed-ml-4,
.ed-mx-4 {
    margin-left: 1.5rem !important;
}

.ed-m-5 {
    margin: 3rem !important;
}

.ed-mt-5,
.ed-my-5 {
    margin-top: 3rem !important;
}

.ed-mr-5,
.ed-mx-5 {
    margin-right: 3rem !important;
}

.ed-mb-5,
.ed-my-5 {
    margin-bottom: 3rem !important;
}

.ed-ml-5,
.ed-mx-5 {
    margin-left: 3rem !important;
}

.ed-p-0 {
    padding: 0 !important;
}

.ed-pt-0,
.ed-py-0 {
    padding-top: 0 !important;
}

.ed-pr-0,
.ed-px-0 {
    padding-right: 0 !important;
}

.ed-pb-0,
.ed-py-0 {
    padding-bottom: 0 !important;
}

.ed-pl-0,
.ed-px-0 {
    padding-left: 0 !important;
}

.ed-p-1 {
    padding: 0.25rem !important;
}

.ed-pt-1,
.ed-py-1 {
    padding-top: 0.25rem !important;
}

.ed-pr-1,
.ed-px-1 {
    padding-right: 0.25rem !important;
}

.ed-pb-1,
.ed-py-1 {
    padding-bottom: 0.25rem !important;
}

.ed-pl-1,
.ed-px-1 {
    padding-left: 0.25rem !important;
}

.ed-p-2 {
    padding: 0.5rem !important;
}

.ed-pt-2,
.ed-py-2 {
    padding-top: 0.5rem !important;
}

.ed-pr-2,
.ed-px-2 {
    padding-right: 0.5rem !important;
}

.ed-pb-2,
.ed-py-2 {
    padding-bottom: 0.5rem !important;
}

.ed-pl-2,
.ed-px-2 {
    padding-left: 0.5rem !important;
}

.ed-p-3 {
    padding: 1rem !important;
}

.ed-pt-3,
.ed-py-3 {
    padding-top: 1rem !important;
}

.ed-pr-3,
.ed-px-3 {
    padding-right: 1rem !important;
}

.ed-pb-3,
.ed-py-3 {
    padding-bottom: 1rem !important;
}

.ed-pl-3,
.ed-px-3 {
    padding-left: 1rem !important;
}

.ed-p-4 {
    padding: 1.5rem !important;
}

.ed-pt-4,
.ed-py-4 {
    padding-top: 1.5rem !important;
}

.ed-pr-4,
.ed-px-4 {
    padding-right: 1.5rem !important;
}

.ed-pb-4,
.ed-py-4 {
    padding-bottom: 1.5rem !important;
}

.ed-pl-4,
.ed-px-4 {
    padding-left: 1.5rem !important;
}

.ed-p-5 {
    padding: 3rem !important;
}

.ed-pt-5,
.ed-py-5 {
    padding-top: 3rem !important;
}

.ed-pr-5,
.ed-px-5 {
    padding-right: 3rem !important;
}

.ed-pb-5,
.ed-py-5 {
    padding-bottom: 3rem !important;
}

.ed-pl-5,
.ed-px-5 {
    padding-left: 3rem !important;
}

.ed-m-auto {
    margin: auto !important;
}

.ed-mt-auto,
.ed-my-auto {
    margin-top: auto !important;
}

.ed-mr-auto,
.ed-mx-auto {
    margin-right: auto !important;
}

.ed-mb-auto,
.ed-my-auto {
    margin-bottom: auto !important;
}

.ed-ml-auto,
.ed-mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .ed-m-sm-0 {
        margin: 0 !important;
    }

    .ed-mt-sm-0,
    .ed-my-sm-0 {
        margin-top: 0 !important;
    }

    .ed-mr-sm-0,
    .ed-mx-sm-0 {
        margin-right: 0 !important;
    }

    .ed-mb-sm-0,
    .ed-my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ed-ml-sm-0,
    .ed-mx-sm-0 {
        margin-left: 0 !important;
    }

    .ed-m-sm-1 {
        margin: 0.25rem !important;
    }

    .ed-mt-sm-1,
    .ed-my-sm-1 {
        margin-top: 0.25rem !important;
    }

    .ed-mr-sm-1,
    .ed-mx-sm-1 {
        margin-right: 0.25rem !important;
    }

    .ed-mb-sm-1,
    .ed-my-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .ed-ml-sm-1,
    .ed-mx-sm-1 {
        margin-left: 0.25rem !important;
    }

    .ed-m-sm-2 {
        margin: 0.5rem !important;
    }

    .ed-mt-sm-2,
    .ed-my-sm-2 {
        margin-top: 0.5rem !important;
    }

    .ed-mr-sm-2,
    .ed-mx-sm-2 {
        margin-right: 0.5rem !important;
    }

    .ed-mb-sm-2,
    .ed-my-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .ed-ml-sm-2,
    .ed-mx-sm-2 {
        margin-left: 0.5rem !important;
    }

    .ed-m-sm-3 {
        margin: 1rem !important;
    }

    .ed-mt-sm-3,
    .ed-my-sm-3 {
        margin-top: 1rem !important;
    }

    .ed-mr-sm-3,
    .ed-mx-sm-3 {
        margin-right: 1rem !important;
    }

    .ed-mb-sm-3,
    .ed-my-sm-3 {
        margin-bottom: 1rem !important;
    }

    .ed-ml-sm-3,
    .ed-mx-sm-3 {
        margin-left: 1rem !important;
    }

    .ed-m-sm-4 {
        margin: 1.5rem !important;
    }

    .ed-mt-sm-4,
    .ed-my-sm-4 {
        margin-top: 1.5rem !important;
    }

    .ed-mr-sm-4,
    .ed-mx-sm-4 {
        margin-right: 1.5rem !important;
    }

    .ed-mb-sm-4,
    .ed-my-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .ed-ml-sm-4,
    .ed-mx-sm-4 {
        margin-left: 1.5rem !important;
    }

    .ed-m-sm-5 {
        margin: 3rem !important;
    }

    .ed-mt-sm-5,
    .ed-my-sm-5 {
        margin-top: 3rem !important;
    }

    .ed-mr-sm-5,
    .ed-mx-sm-5 {
        margin-right: 3rem !important;
    }

    .ed-mb-sm-5,
    .ed-my-sm-5 {
        margin-bottom: 3rem !important;
    }

    .ed-ml-sm-5,
    .ed-mx-sm-5 {
        margin-left: 3rem !important;
    }

    .ed-p-sm-0 {
        padding: 0 !important;
    }

    .ed-pt-sm-0,
    .ed-py-sm-0 {
        padding-top: 0 !important;
    }

    .ed-pr-sm-0,
    .ed-px-sm-0 {
        padding-right: 0 !important;
    }

    .ed-pb-sm-0,
    .ed-py-sm-0 {
        padding-bottom: 0 !important;
    }

    .ed-pl-sm-0,
    .ed-px-sm-0 {
        padding-left: 0 !important;
    }

    .ed-p-sm-1 {
        padding: 0.25rem !important;
    }

    .ed-pt-sm-1,
    .ed-py-sm-1 {
        padding-top: 0.25rem !important;
    }

    .ed-pr-sm-1,
    .ed-px-sm-1 {
        padding-right: 0.25rem !important;
    }

    .ed-pb-sm-1,
    .ed-py-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .ed-pl-sm-1,
    .ed-px-sm-1 {
        padding-left: 0.25rem !important;
    }

    .ed-p-sm-2 {
        padding: 0.5rem !important;
    }

    .ed-pt-sm-2,
    .ed-py-sm-2 {
        padding-top: 0.5rem !important;
    }

    .ed-pr-sm-2,
    .ed-px-sm-2 {
        padding-right: 0.5rem !important;
    }

    .ed-pb-sm-2,
    .ed-py-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .ed-pl-sm-2,
    .ed-px-sm-2 {
        padding-left: 0.5rem !important;
    }

    .ed-p-sm-3 {
        padding: 1rem !important;
    }

    .ed-pt-sm-3,
    .ed-py-sm-3 {
        padding-top: 1rem !important;
    }

    .ed-pr-sm-3,
    .ed-px-sm-3 {
        padding-right: 1rem !important;
    }

    .ed-pb-sm-3,
    .ed-py-sm-3 {
        padding-bottom: 1rem !important;
    }

    .ed-pl-sm-3,
    .ed-px-sm-3 {
        padding-left: 1rem !important;
    }

    .ed-p-sm-4 {
        padding: 1.5rem !important;
    }

    .ed-pt-sm-4,
    .ed-py-sm-4 {
        padding-top: 1.5rem !important;
    }

    .ed-pr-sm-4,
    .ed-px-sm-4 {
        padding-right: 1.5rem !important;
    }

    .ed-pb-sm-4,
    .ed-py-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .ed-pl-sm-4,
    .ed-px-sm-4 {
        padding-left: 1.5rem !important;
    }

    .ed-p-sm-5 {
        padding: 3rem !important;
    }

    .ed-pt-sm-5,
    .ed-py-sm-5 {
        padding-top: 3rem !important;
    }

    .ed-pr-sm-5,
    .ed-px-sm-5 {
        padding-right: 3rem !important;
    }

    .ed-pb-sm-5,
    .ed-py-sm-5 {
        padding-bottom: 3rem !important;
    }

    .ed-pl-sm-5,
    .ed-px-sm-5 {
        padding-left: 3rem !important;
    }

    .ed-m-sm-auto {
        margin: auto !important;
    }

    .ed-mt-sm-auto,
    .ed-my-sm-auto {
        margin-top: auto !important;
    }

    .ed-mr-sm-auto,
    .ed-mx-sm-auto {
        margin-right: auto !important;
    }

    .ed-mb-sm-auto,
    .ed-my-sm-auto {
        margin-bottom: auto !important;
    }

    .ed-ml-sm-auto,
    .ed-mx-sm-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 768px) {
    .ed-m-md-0 {
        margin: 0 !important;
    }

    .ed-mt-md-0,
    .ed-my-md-0 {
        margin-top: 0 !important;
    }

    .ed-mr-md-0,
    .ed-mx-md-0 {
        margin-right: 0 !important;
    }

    .ed-mb-md-0,
    .ed-my-md-0 {
        margin-bottom: 0 !important;
    }

    .ed-ml-md-0,
    .ed-mx-md-0 {
        margin-left: 0 !important;
    }

    .ed-m-md-1 {
        margin: 0.25rem !important;
    }

    .ed-mt-md-1,
    .ed-my-md-1 {
        margin-top: 0.25rem !important;
    }

    .ed-mr-md-1,
    .ed-mx-md-1 {
        margin-right: 0.25rem !important;
    }

    .ed-mb-md-1,
    .ed-my-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .ed-ml-md-1,
    .ed-mx-md-1 {
        margin-left: 0.25rem !important;
    }

    .ed-m-md-2 {
        margin: 0.5rem !important;
    }

    .ed-mt-md-2,
    .ed-my-md-2 {
        margin-top: 0.5rem !important;
    }

    .ed-mr-md-2,
    .ed-mx-md-2 {
        margin-right: 0.5rem !important;
    }

    .ed-mb-md-2,
    .ed-my-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .ed-ml-md-2,
    .ed-mx-md-2 {
        margin-left: 0.5rem !important;
    }

    .ed-m-md-3 {
        margin: 1rem !important;
    }

    .ed-mt-md-3,
    .ed-my-md-3 {
        margin-top: 1rem !important;
    }

    .ed-mr-md-3,
    .ed-mx-md-3 {
        margin-right: 1rem !important;
    }

    .ed-mb-md-3,
    .ed-my-md-3 {
        margin-bottom: 1rem !important;
    }

    .ed-ml-md-3,
    .ed-mx-md-3 {
        margin-left: 1rem !important;
    }

    .ed-m-md-4 {
        margin: 1.5rem !important;
    }

    .ed-mt-md-4,
    .ed-my-md-4 {
        margin-top: 1.5rem !important;
    }

    .ed-mr-md-4,
    .ed-mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .ed-mb-md-4,
    .ed-my-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ed-ml-md-4,
    .ed-mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .ed-m-md-5 {
        margin: 3rem !important;
    }

    .ed-mt-md-5,
    .ed-my-md-5 {
        margin-top: 3rem !important;
    }

    .ed-mr-md-5,
    .ed-mx-md-5 {
        margin-right: 3rem !important;
    }

    .ed-mb-md-5,
    .ed-my-md-5 {
        margin-bottom: 3rem !important;
    }

    .ed-ml-md-5,
    .ed-mx-md-5 {
        margin-left: 3rem !important;
    }

    .ed-p-md-0 {
        padding: 0 !important;
    }

    .ed-pt-md-0,
    .ed-py-md-0 {
        padding-top: 0 !important;
    }

    .ed-pr-md-0,
    .ed-px-md-0 {
        padding-right: 0 !important;
    }

    .ed-pb-md-0,
    .ed-py-md-0 {
        padding-bottom: 0 !important;
    }

    .ed-pl-md-0,
    .ed-px-md-0 {
        padding-left: 0 !important;
    }

    .ed-p-md-1 {
        padding: 0.25rem !important;
    }

    .ed-pt-md-1,
    .ed-py-md-1 {
        padding-top: 0.25rem !important;
    }

    .ed-pr-md-1,
    .ed-px-md-1 {
        padding-right: 0.25rem !important;
    }

    .ed-pb-md-1,
    .ed-py-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .ed-pl-md-1,
    .ed-px-md-1 {
        padding-left: 0.25rem !important;
    }

    .ed-p-md-2 {
        padding: 0.5rem !important;
    }

    .ed-pt-md-2,
    .ed-py-md-2 {
        padding-top: 0.5rem !important;
    }

    .ed-pr-md-2,
    .ed-px-md-2 {
        padding-right: 0.5rem !important;
    }

    .ed-pb-md-2,
    .ed-py-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .ed-pl-md-2,
    .ed-px-md-2 {
        padding-left: 0.5rem !important;
    }

    .ed-p-md-3 {
        padding: 1rem !important;
    }

    .ed-pt-md-3,
    .ed-py-md-3 {
        padding-top: 1rem !important;
    }

    .ed-pr-md-3,
    .ed-px-md-3 {
        padding-right: 1rem !important;
    }

    .ed-pb-md-3,
    .ed-py-md-3 {
        padding-bottom: 1rem !important;
    }

    .ed-pl-md-3,
    .ed-px-md-3 {
        padding-left: 1rem !important;
    }

    .ed-p-md-4 {
        padding: 1.5rem !important;
    }

    .ed-pt-md-4,
    .ed-py-md-4 {
        padding-top: 1.5rem !important;
    }

    .ed-pr-md-4,
    .ed-px-md-4 {
        padding-right: 1.5rem !important;
    }

    .ed-pb-md-4,
    .ed-py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .ed-pl-md-4,
    .ed-px-md-4 {
        padding-left: 1.5rem !important;
    }

    .ed-p-md-5 {
        padding: 3rem !important;
    }

    .ed-pt-md-5,
    .ed-py-md-5 {
        padding-top: 3rem !important;
    }

    .ed-pr-md-5,
    .ed-px-md-5 {
        padding-right: 3rem !important;
    }

    .ed-pb-md-5,
    .ed-py-md-5 {
        padding-bottom: 3rem !important;
    }

    .ed-pl-md-5,
    .ed-px-md-5 {
        padding-left: 3rem !important;
    }

    .ed-m-md-auto {
        margin: auto !important;
    }

    .ed-mt-md-auto,
    .ed-my-md-auto {
        margin-top: auto !important;
    }

    .ed-mr-md-auto,
    .ed-mx-md-auto {
        margin-right: auto !important;
    }

    .ed-mb-md-auto,
    .ed-my-md-auto {
        margin-bottom: auto !important;
    }

    .ed-ml-md-auto,
    .ed-mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .ed-m-lg-0 {
        margin: 0 !important;
    }

    .ed-mt-lg-0,
    .ed-my-lg-0 {
        margin-top: 0 !important;
    }

    .ed-mr-lg-0,
    .ed-mx-lg-0 {
        margin-right: 0 !important;
    }

    .ed-mb-lg-0,
    .ed-my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ed-ml-lg-0,
    .ed-mx-lg-0 {
        margin-left: 0 !important;
    }

    .ed-m-lg-1 {
        margin: 0.25rem !important;
    }

    .ed-mt-lg-1,
    .ed-my-lg-1 {
        margin-top: 0.25rem !important;
    }

    .ed-mr-lg-1,
    .ed-mx-lg-1 {
        margin-right: 0.25rem !important;
    }

    .ed-mb-lg-1,
    .ed-my-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .ed-ml-lg-1,
    .ed-mx-lg-1 {
        margin-left: 0.25rem !important;
    }

    .ed-m-lg-2 {
        margin: 0.5rem !important;
    }

    .ed-mt-lg-2,
    .ed-my-lg-2 {
        margin-top: 0.5rem !important;
    }

    .ed-mr-lg-2,
    .ed-mx-lg-2 {
        margin-right: 0.5rem !important;
    }

    .ed-mb-lg-2,
    .ed-my-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .ed-ml-lg-2,
    .ed-mx-lg-2 {
        margin-left: 0.5rem !important;
    }

    .ed-m-lg-3 {
        margin: 1rem !important;
    }

    .ed-mt-lg-3,
    .ed-my-lg-3 {
        margin-top: 1rem !important;
    }

    .ed-mr-lg-3,
    .ed-mx-lg-3 {
        margin-right: 1rem !important;
    }

    .ed-mb-lg-3,
    .ed-my-lg-3 {
        margin-bottom: 1rem !important;
    }

    .ed-ml-lg-3,
    .ed-mx-lg-3 {
        margin-left: 1rem !important;
    }

    .ed-m-lg-4 {
        margin: 1.5rem !important;
    }

    .ed-mt-lg-4,
    .ed-my-lg-4 {
        margin-top: 1.5rem !important;
    }

    .ed-mr-lg-4,
    .ed-mx-lg-4 {
        margin-right: 1.5rem !important;
    }

    .ed-mb-lg-4,
    .ed-my-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .ed-ml-lg-4,
    .ed-mx-lg-4 {
        margin-left: 1.5rem !important;
    }

    .ed-m-lg-5 {
        margin: 3rem !important;
    }

    .ed-mt-lg-5,
    .ed-my-lg-5 {
        margin-top: 3rem !important;
    }

    .ed-mr-lg-5,
    .ed-mx-lg-5 {
        margin-right: 3rem !important;
    }

    .ed-mb-lg-5,
    .ed-my-lg-5 {
        margin-bottom: 3rem !important;
    }

    .ed-ml-lg-5,
    .ed-mx-lg-5 {
        margin-left: 3rem !important;
    }

    .ed-p-lg-0 {
        padding: 0 !important;
    }

    .ed-pt-lg-0,
    .ed-py-lg-0 {
        padding-top: 0 !important;
    }

    .ed-pr-lg-0,
    .ed-px-lg-0 {
        padding-right: 0 !important;
    }

    .ed-pb-lg-0,
    .ed-py-lg-0 {
        padding-bottom: 0 !important;
    }

    .ed-pl-lg-0,
    .ed-px-lg-0 {
        padding-left: 0 !important;
    }

    .ed-p-lg-1 {
        padding: 0.25rem !important;
    }

    .ed-pt-lg-1,
    .ed-py-lg-1 {
        padding-top: 0.25rem !important;
    }

    .ed-pr-lg-1,
    .ed-px-lg-1 {
        padding-right: 0.25rem !important;
    }

    .ed-pb-lg-1,
    .ed-py-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .ed-pl-lg-1,
    .ed-px-lg-1 {
        padding-left: 0.25rem !important;
    }

    .ed-p-lg-2 {
        padding: 0.5rem !important;
    }

    .ed-pt-lg-2,
    .ed-py-lg-2 {
        padding-top: 0.5rem !important;
    }

    .ed-pr-lg-2,
    .ed-px-lg-2 {
        padding-right: 0.5rem !important;
    }

    .ed-pb-lg-2,
    .ed-py-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .ed-pl-lg-2,
    .ed-px-lg-2 {
        padding-left: 0.5rem !important;
    }

    .ed-p-lg-3 {
        padding: 1rem !important;
    }

    .ed-pt-lg-3,
    .ed-py-lg-3 {
        padding-top: 1rem !important;
    }

    .ed-pr-lg-3,
    .ed-px-lg-3 {
        padding-right: 1rem !important;
    }

    .ed-pb-lg-3,
    .ed-py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .ed-pl-lg-3,
    .ed-px-lg-3 {
        padding-left: 1rem !important;
    }

    .ed-p-lg-4 {
        padding: 1.5rem !important;
    }

    .ed-pt-lg-4,
    .ed-py-lg-4 {
        padding-top: 1.5rem !important;
    }

    .ed-pr-lg-4,
    .ed-px-lg-4 {
        padding-right: 1.5rem !important;
    }

    .ed-pb-lg-4,
    .ed-py-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .ed-pl-lg-4,
    .ed-px-lg-4 {
        padding-left: 1.5rem !important;
    }

    .ed-p-lg-5 {
        padding: 3rem !important;
    }

    .ed-pt-lg-5,
    .ed-py-lg-5 {
        padding-top: 3rem !important;
    }

    .ed-pr-lg-5,
    .ed-px-lg-5 {
        padding-right: 3rem !important;
    }

    .ed-pb-lg-5,
    .ed-py-lg-5 {
        padding-bottom: 3rem !important;
    }

    .ed-pl-lg-5,
    .ed-px-lg-5 {
        padding-left: 3rem !important;
    }

    .ed-m-lg-auto {
        margin: auto !important;
    }

    .ed-mt-lg-auto,
    .ed-my-lg-auto {
        margin-top: auto !important;
    }

    .ed-mr-lg-auto,
    .ed-mx-lg-auto {
        margin-right: auto !important;
    }

    .ed-mb-lg-auto,
    .ed-my-lg-auto {
        margin-bottom: auto !important;
    }

    .ed-ml-lg-auto,
    .ed-mx-lg-auto {
        margin-left: auto !important;
    }
}

/*=== FIN MARGIN y PADDING ===*/

/*=== Lanzadores ===*/

.section .activity {
    margin-top: 10px;
    background-color: #efefef;
    padding: 8px 8px 11px !important;
    border-radius: 50em;
}

.section>.activity .activityinstance [href*="/mod/"]:not(.cm-edit-action):not(.close) {
    background-color: #F08127;
    padding: 10px 15px 10px 10px;
    border-radius: 50em;
    color: #fff;
    transition: top .3s;
    box-shadow: 0 4px 0 #E05822;
    display: inline-block;
}

.section>.activity .activityinstance [href*="/mod/"]:hover:not(.cm-edit-action):not(.close) {
    text-decoration: none;
    background-color: #F9C22C;
    color: #fff;
    box-shadow: 0 2px 0 #c79715;
    top: 2px;
    position: relative;
}

.section>.activity .activityinstance [href*="/mod/"] img.iconlarge {
    width: 30px;
    height: auto;
    background-color: rgba(255, 255, 255, .9);
    padding: 4px;
    border-radius: 50%;
    margin-right: 8px;
    margin-bottom: -2px;
}

/*=== FIN LANZADORES ===*/