/*!
 * Valkyrie v2.0.0 (https://codemonkey.com.mx/valkyrie-framework)
 * Copyright 2020 CodeMonkey Authors
 * Licensed under MIT (https://github.com/cm-valkyrie/Framework/blob/master/LICENSE)
 */

:root {
    --white: 255, 255, 255;
    --gray: 158, 158, 158;
    --primary: 80, 138, 235;
    --secondary: 108, 117, 125;
    --success: 84, 204, 150;
    --info: 120, 206, 255;
    --warning: 255, 190, 78;
    --danger: 255, 85, 96;
    --light: 248, 249, 250;
    --dark: 10, 24, 50;
    --muted: 112, 112, 112;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Generales
------------------------------------------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
    outline: none;
}

html, body {
    font-size: 13px;
    width: 100%;
    min-height: 100vh;
    font-family: sans-serif;
    line-height: 1.15;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: var(--font-family-sans-serif);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(var(--dark), 1);
    text-align: left;
    width: 100%;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 600;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

dfn {
    font-style: italic;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    color: rgba(var(--primary), 1);
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a:hover:not(.btn) {
    color: rgba(var(--dark), 0.5);
    text-decoration: underline;
}

a:not([href]):not([tabindex]) {
    text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

a[href="#"],
a[href=""] {
    pointer-events: none;
}

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: rgba(var(--secondary), 1);
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

button {
    border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.2;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    padding: 10px 20px;
    background-color: rgba(var(--light), 1);
    border-left: 4px solid #dddddd;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: rgba(var(--secondary), 1);
}

.blockquote-footer::before {
    content: "\2014 \00A0";
}

.blockquote-reverse {
    border-left: 0;
    border-right: 4px solid #dddddd;
    text-align: right;
}

code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
    font-size: 87.5%;
    color: rgba(var(--danger), 1);
    word-break: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 87.5%;
    color: rgba(var(--white), 1);
    background-color: rgba(var(--dark), 1);
    border-radius: 0.2rem;
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}

pre {
    display: block;
    font-size: 87.5%;
    color: rgba(var(--dark), 1);
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

/* Contenedores
------------------------------------------------------------------------------*/
.container {
    width: 90%;
}

.container-fluid {
    width: 100%;
}

.container,
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Grid
------------------------------------------------------------------------------*/
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-left: 8.333333%;
}

.offset-2 {
    margin-left: 16.666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.333333%;
}

.offset-5 {
    margin-left: 41.666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.333333%;
}

.offset-8 {
    margin-left: 66.666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.333333%;
}

.offset-11 {
    margin-left: 91.666667%;
}

.suffix-1 {
    margin-right: 8.333333%;
}

.suffix-2 {
    margin-right: 16.666667%;
}

.suffix-3 {
    margin-right: 25%;
}

.suffix-4 {
    margin-right: 33.333333%;
}

.suffix-5 {
    margin-right: 41.666667%;
}

.suffix-6 {
    margin-right: 50%;
}

.suffix-7 {
    margin-right: 58.333333%;
}

.suffix-8 {
    margin-right: 66.666667%;
}

.suffix-9 {
    margin-right: 75%;
}

.suffix-10 {
    margin-right: 83.333333%;
}

.suffix-11 {
    margin-right: 91.666667%;
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.333333%;
    }

    .offset-sm-2 {
        margin-left: 16.666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.333333%;
    }

    .offset-sm-5 {
        margin-left: 41.666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.333333%;
    }

    .offset-sm-8 {
        margin-left: 66.666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.333333%;
    }

    .offset-sm-11 {
        margin-left: 91.666667%;
    }

    .suffix-sm-0 {
        margin-right: 0;
    }

    .suffix-sm-1 {
        margin-right: 8.333333%;
    }

    .suffix-sm-2 {
        margin-right: 16.666667%;
    }

    .suffix-sm-3 {
        margin-right: 25%;
    }

    .suffix-sm-4 {
        margin-right: 33.333333%;
    }

    .suffix-sm-5 {
        margin-right: 41.666667%;
    }

    .suffix-sm-6 {
        margin-right: 50%;
    }

    .suffix-sm-7 {
        margin-right: 58.333333%;
    }

    .suffix-sm-8 {
        margin-right: 66.666667%;
    }

    .suffix-sm-9 {
        margin-right: 75%;
    }

    .suffix-sm-10 {
        margin-right: 83.333333%;
    }

    .suffix-sm-11 {
        margin-right: 91.666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.333333%;
    }

    .offset-md-2 {
        margin-left: 16.666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.333333%;
    }

    .offset-md-5 {
        margin-left: 41.666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.333333%;
    }

    .offset-md-8 {
        margin-left: 66.666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.333333%;
    }

    .offset-md-11 {
        margin-left: 91.666667%;
    }

    .suffix-md-0 {
        margin-right: 0;
    }

    .suffix-md-1 {
        margin-right: 8.333333%;
    }

    .suffix-md-2 {
        margin-right: 16.666667%;
    }

    .suffix-md-3 {
        margin-right: 25%;
    }

    .suffix-md-4 {
        margin-right: 33.333333%;
    }

    .suffix-md-5 {
        margin-right: 41.666667%;
    }

    .suffix-md-6 {
        margin-right: 50%;
    }

    .suffix-md-7 {
        margin-right: 58.333333%;
    }

    .suffix-md-8 {
        margin-right: 66.666667%;
    }

    .suffix-md-9 {
        margin-right: 75%;
    }

    .suffix-md-10 {
        margin-right: 83.333333%;
    }

    .suffix-md-11 {
        margin-right: 91.666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.333333%;
    }

    .offset-lg-2 {
        margin-left: 16.666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.333333%;
    }

    .offset-lg-5 {
        margin-left: 41.666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.333333%;
    }

    .offset-lg-8 {
        margin-left: 66.666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.333333%;
    }

    .offset-lg-11 {
        margin-left: 91.666667%;
    }

    .suffix-lg-0 {
        margin-right: 0;
    }

    .suffix-lg-1 {
        margin-right: 8.333333%;
    }

    .suffix-lg-2 {
        margin-right: 16.666667%;
    }

    .suffix-lg-3 {
        margin-right: 25%;
    }

    .suffix-lg-4 {
        margin-right: 33.333333%;
    }

    .suffix-lg-5 {
        margin-right: 41.666667%;
    }

    .suffix-lg-6 {
        margin-right: 50%;
    }

    .suffix-lg-7 {
        margin-right: 58.333333%;
    }

    .suffix-lg-8 {
        margin-right: 66.666667%;
    }

    .suffix-lg-9 {
        margin-right: 75%;
    }

    .suffix-lg-10 {
        margin-right: 83.333333%;
    }

    .suffix-lg-11 {
        margin-right: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.333333%;
    }

    .offset-xl-2 {
        margin-left: 16.666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.333333%;
    }

    .offset-xl-5 {
        margin-left: 41.666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.333333%;
    }

    .offset-xl-8 {
        margin-left: 66.666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.333333%;
    }

    .offset-xl-11 {
        margin-left: 91.666667%;
    }

    .suffix-xl-0 {
        margin-right: 0;
    }

    .suffix-xl-1 {
        margin-right: 8.333333%;
    }

    .suffix-xl-2 {
        margin-right: 16.666667%;
    }

    .suffix-xl-3 {
        margin-right: 25%;
    }

    .suffix-xl-4 {
        margin-right: 33.333333%;
    }

    .suffix-xl-5 {
        margin-right: 41.666667%;
    }

    .suffix-xl-6 {
        margin-right: 50%;
    }

    .suffix-xl-7 {
        margin-right: 58.333333%;
    }

    .suffix-xl-8 {
        margin-right: 66.666667%;
    }

    .suffix-xl-9 {
        margin-right: 75%;
    }

    .suffix-xl-10 {
        margin-right: 83.333333%;
    }

    .suffix-xl-11 {
        margin-right: 91.666667%;
    }
}

/* Displays
------------------------------------------------------------------------------*/
.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }

    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

/* Flex
------------------------------------------------------------------------------*/
.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

@media (min-width: 576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

/* Ocultar y quitar animaciones y scroll a elementos
------------------------------------------------------------------------------*/
.notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.invisible {
    visibility: hidden;
}

.noscroll {
    overflow: hidden!important;
}

/* Visibles
------------------------------------------------------------------------------*/
.visible-phone,
.visible-tablet,
.visible-desktop,
.visible-desktop-large {
    display: none !important;
}

/* Extra small devices: Phones (< 768px)  */
/* Portrait and landscape  */
@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hide-phone {
        display: none !important;
    }
}

/* Landscape */
/* @media only screen and (min-width: 480px) and (max-width: 767px) {} */

/* Small devices: Tablets (>= 768px) */
@media (min-width: 768px) and (max-width: 991px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hide-tablet {
        display: none !important;
    }
}

/* Medium devices: Desktops (>= 992px ) */
@media (min-width: 992px) and (max-width: 1199px) {
    .visible-desktop {
        display: inherit !important;
    }

    .hide-desktop {
        display: none !important;
    }
}

/* Large devices: Desktops (>= 1200px ) */
@media (min-width: 1200px) {
    .visible-desktop-large {
        display: inherit !important;
    }

    .hide-desktop-large {
        display: none !important;
    }
}

/* Botoneria
------------------------------------------------------------------------------*/
.btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    padding: 0.8rem 1.5rem;
    border: 1px solid;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    overflow: hidden;
    line-height: 1.5;
    box-sizing: border-box;
    font-size: 1rem;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease-out, background-color 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out;
    transition: opacity 0.3s ease-out, background-color 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a.btn:not([href]) {
    cursor: default;
}

.btn:hover:not([disabled]) {
    opacity: 0.8;
}

.btn[disabled] {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.btn.btn-sm {
    padding: .25rem .5rem;
    font-size: .775rem;
}

.btn.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.btn.btn-block {
    display: block;
    width: 100%;
}

.btn.btn-b-none {
    border: none;
    outline: 0;
    box-shadow: none;
}

.btn.btn-link {
    border-color: transparent !important;
    color: rgba(var(--dark), 1);
    background-color: transparent !important;
}

.btn.btn-link.focus,
.btn.btn-link:focus {
    text-decoration: underline;
    border-color: transparent !important;
    box-shadow: none !important;
}

.btn.btn-link:hover {
    opacity: 1;
    text-decoration: underline;
    color: rgba(var(--primary), 1);
}

.btn,
.btn.btn-primary,
.btn.btn-outline.btn-primary:hover {
    border-color: rgba(var(--primary), 1);
    background-color: rgba(var(--primary), 1);
    color: rgba(var(--white), 1);
}

.btn.focus,
.btn:focus,
.btn.btn-primary.focus,
.btn.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--primary), 0.5);
}

.btn.btn-outline.btn-primary {
    color: rgba(var(--primary), 1);
    background-color: transparent;
}

.btn.btn-secondary,
.btn.btn-outline.btn-secondary:hover {
    border-color: rgba(var(--secondary), 1);
    background-color: rgba(var(--secondary), 1);
    color: rgba(var(--white), 1);
}

.btn.btn-secondary.focus,
.btn.btn-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--secondary), 0.5);
}

.btn.btn-outline.btn-secondary {
    color: rgba(var(--secondary), 1);
    background-color: transparent;
}

.btn.btn-success,
.btn.btn-outline.btn-success:hover {
    border-color: rgba(var(--success), 1);
    background-color: rgba(var(--success), 1);
    color: rgba(var(--white), 1);
}

.btn.btn-success.focus,
.btn.btn-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--success), 0.5);
}

.btn.btn-outline.btn-success {
    color: rgba(var(--success), 1);
    background-color: transparent;
}

.btn.btn-info,
.btn.btn-outline.btn-info:hover {
    border-color: rgba(var(--info), 1);
    background-color: rgba(var(--info), 1);
    color: rgba(var(--white), 1);
}

.btn.btn-info.focus,
.btn.btn-info:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--info), 0.5);
}

.btn.btn-outline.btn-info {
    color: rgba(var(--info), 1);
    background-color: transparent;
}

.btn.btn-warning,
.btn.btn-outline.btn-warning:hover {
    border-color: rgba(var(--warning), 1);
    background-color: rgba(var(--warning), 1);
    color: rgba(var(--white), 1);
}

.btn.btn-warning.focus,
.btn.btn-warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--warning), 0.5);
}

.btn.btn-outline.btn-warning {
    color: rgba(var(--warning), 1);
    background-color: transparent;
}

.btn.btn-danger,
.btn.btn-outline.btn-danger:hover {
    border-color: rgba(var(--danger), 1);
    background-color: rgba(var(--danger), 1);
    color: rgba(var(--white), 1);
}

.btn.btn-danger.focus,
.btn.btn-danger:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--danger), 0.5);
}

.btn.btn-outline.btn-danger {
    color: rgba(var(--danger), 1);
    background-color: transparent;
}

.btn.btn-light,
.btn.btn-outline.btn-light:hover {
    border-color: rgba(var(--light), 1);
    background-color: rgba(var(--light), 1);
    color: rgba(var(--dark), 1);
}

.btn.btn-light.btn-link {
    color: rgba(var(--light), 1);
}

.btn.btn-light.focus,
.btn.btn-light:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--light), 0.5);
}

.btn.btn-outline.btn-light {
    color: rgba(var(--light), 1);
    background-color: transparent;
}

.btn.btn-dark,
.btn.btn-outline.btn-dark:hover {
    border-color: rgba(var(--dark), 1);
    background-color: rgba(var(--dark), 1);
    color: rgba(var(--white), 1);
}

.btn.btn-dark.focus,
.btn.btn-dark:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--dark), 0.5);
}

.btn.btn-outline.btn-dark {
    color: rgba(var(--dark), 1);
    background-color: transparent;
}

.button-items {
    margin-bottom: -8px;
}

.button-items .btn {
    margin-bottom: 8px;
    margin-right: 5px;
}

.button-items.text-right .btn {
    margin-right: 0px;
    margin-left: 5px;
}

.button-items.text-center .btn {
    margin-right: 2.5px;
    margin-left: 2.5px;
}

.button-items .btn.btn-block {
    margin-right: 0px;
}

/* Dropmenu
------------------------------------------------------------------------------*/
div.dropmenu {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    position: relative;
}

.button-items div.dropmenu {
    margin-bottom: 8px;
    margin-right: 5px;
}

.button-items div.dropmenu .btn {
    margin-bottom: 0px;
    margin-right: 0px;
}

div.dropmenu > button {
    width: 100%;
    height: 100%;
}

div.dropmenu > div.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background-color: rgba(var(--white), 1);
    text-align: left;
    min-width: 200px;
    min-height: 50px;
    border-radius: 2px;
    overflow: hidden;
    overflow-y: auto;
    padding: 10px 0;
    z-index: 5;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),
    0 3px 1px -2px rgba(0,0,0,.2),
    0 1px 5px 0 rgba(0,0,0,.12);
    -moz-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),
    0 3px 1px -2px rgba(0,0,0,.2),
    0 1px 5px 0 rgba(0,0,0,.12);
    -ms-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),
    0 3px 1px -2px rgba(0,0,0,.2),
    0 1px 5px 0 rgba(0,0,0,.12);
    -o-box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),
    0 3px 1px -2px rgba(0,0,0,.2),
    0 1px 5px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),
    0 3px 1px -2px rgba(0,0,0,.2),
    0 1px 5px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),
    0 3px 1px -2px rgba(0,0,0,.2),
    0 1px 5px 0 rgba(0,0,0,.12);
}

div.dropmenu.active > div.dropdown {
    display: block;
}

div.dropmenu.menu-right > div.dropdown {
    left: inherit;
    right: 0px;
}

div.dropmenu.dropup > div.dropdown {
    top: initial;
    bottom: calc(100% + 0px);
}

div.dropmenu.dropleft > div.dropdown {
    top: 0px;
    left: initial;
    right: calc(100% + 0px);
}

div.dropmenu.dropright > div.dropdown {
    top: 0px;
    left: calc(100% + 0px);
    right: initial;
}

div.dropmenu > div.dropdown > a {
    position: relative;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #5f5f5f;
    font-size: 14px;
    opacity: 0.5;
    font-weight: 500;
}

div.dropmenu.with-icon > div.dropdown > a,
div.dropmenu > div.dropdown > a.with-icon {
    padding-left: 40px;
}

div.dropmenu > div.dropdown > a[href],
div.dropmenu > div.dropdown > a[data-button-modal] {
    opacity: 1;
}

div.dropmenu > div.dropdown > a[href]:hover,
div.dropmenu > div.dropdown > a[data-button-modal]:hover {
    background-color: rgba(var(--light), 1);
}

div.dropmenu > div.dropdown > a > i[class^="icon"] {
    position: absolute;
    top: 0;
    left: 15px;
    bottom: 0;
    margin: auto;
    color: rgba(var(--gray), 1);
    width: 1em;
    height: 1em;
    line-height: 1.3;
}

div.dropmenu > div.dropdown > span.space {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(var(--gray), 1);
    opacity: 0.2;
    margin: 10px 0;
}

/* Inputs
------------------------------------------------------------------------------*/
div.label {
    position: relative;
    display: block;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

div.label:last-child {
    margin-bottom: 0;
}

div.label label {
    display: block;
    position: relative;
    margin-top: 20px;
}

div.label label:first-child {
    margin-top: 0px;
}

div.label label > p {
    margin: 0;
    font-size: 17px;
    margin-bottom: 10px;
    padding: 0 10px;
}

div.label label.error > p:not(.description) {
    color: rgba(var(--danger), 1);
}

div.label label input,
div.label label select,
div.label label textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    padding: 0 10px;
    border: 1px solid rgba(var(--light), 1);
    background-color: rgba(var(--light), 1);
    border-radius: 2px;
    padding-top: 13.5px;
    padding-bottom: 13.5px;
}

div.label label input:focus,
div.label label select:focus,
div.label label textarea:focus {
    border-color: rgba(var(--secondary), 1);
}

div.label label input[readonly],
div.label label select[readonly],
div.label label textarea[readonly] {
    cursor: default;
}

div.label label input[readonly]:focus,
div.label label select[readonly]:focus,
div.label label textarea[readonly]:focus {
    border-color: rgba(var(--light), 1);
}

div.label label input.input-success,
div.label label select.select-success,
div.label label textarea.textarea-success {
    border-color: rgba(var(--success), 1);
}

div.label label input.input-warning,
div.label label select.select-warning,
div.label label textarea.textarea-warning {
    border-color: rgba(var(--warning), 1);
}

div.label label input.input-danger,
div.label label select.select-danger,
div.label label textarea.textarea-danger {
    border-color: rgba(var(--danger), 1);
}

div.label label.error input,
div.label label.error select,
div.label label.error textarea {
    border-color: rgba(var(--danger), 1) !important;
}

div.label label textarea {
    padding: 10px;
    height: 150px;
    resize: none;
}

div.label label > p.description,
div.label label > p.error {
    font-size: 12px;
    margin: 10px 0 0;
}

div.label label > p.error {
    color: rgba(var(--danger), 1);
}

div.label label.checkbox,
div.label label.radio {
    position: relative;
    padding-left: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.label label.checkbox input[type="checkbox"],
div.label label.radio input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

div.label label.checkbox input[type="checkbox"]:disabled,
div.label label.radio input[type="radio"]:disabled {
    cursor: default;
}

div.label label.checkbox .checkbox_indicator,
div.label label.radio .radio_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: rgba(var(--light), 1);
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div.label label.radio .radio_indicator {
    border-radius: 50%;
}

div.label label.checkbox input:disabled ~ .checkbox_indicator,
div.label label.radio input:disabled ~ .radio_indicator {
    opacity: 0.6;
    pointer-events: none;
}

div.label label.checkbox input:checked ~ .checkbox_indicator,
div.label label.radio input:checked ~ .radio_indicator {
    background: rgba(var(--primary), 1);
}

div.label label.checkbox input.input-primary:checked ~ .checkbox_indicator,
div.label label.radio input.input-primary:checked ~ .radio_indicator {
    background: rgba(var(--primary), 1);
}

div.label label.checkbox input.input-secondary:checked ~ .checkbox_indicator,
div.label label.radio input.input-secondary:checked ~ .radio_indicator {
    background: rgba(var(--secondary), 1);
}

div.label label.checkbox input.input-success:checked ~ .checkbox_indicator,
div.label label.radio input.input-success:checked ~ .radio_indicator {
    background: rgba(var(--success), 1);
}

div.label label.checkbox input.input-info:checked ~ .checkbox_indicator,
div.label label.radio input.input-info:checked ~ .radio_indicator {
    background: rgba(var(--info), 1);
}

div.label label.checkbox input.input-warning:checked ~ .checkbox_indicator,
div.label label.radio input.input-warning:checked ~ .radio_indicator {
    background: rgba(var(--warning), 1);
}

div.label label.checkbox input.input-danger:checked ~ .checkbox_indicator,
div.label label.radio input.input-danger:checked ~ .radio_indicator {
    background: rgba(var(--danger), 1);
}

div.label label.checkbox input.input-light:checked ~ .checkbox_indicator,
div.label label.radio input.input-light:checked ~ .radio_indicator {
    background: rgba(var(--light), 1);
}

div.label label.checkbox input.input-dark:checked ~ .checkbox_indicator,
div.label label.radio input.input-dark:checked ~ .radio_indicator {
    background: rgba(var(--dark), 1);
}

div.label label.checkbox input:focus ~ .checkbox_indicator,
div.label label.radio input:focus ~ .radio_indicator,
div.label label.checkbox input.input-primary:focus ~ .checkbox_indicator,
div.label label.radio input.input-primary:focus ~ .radio_indicator {
    box-shadow: 0 0 0 1px rgba(var(--white), 1), 0 0 0 0.2rem rgba(var(--primary), 0.5);
}

div.label label.checkbox input.input-secondary:focus ~ .checkbox_indicator,
div.label label.radio input.input-secondary:focus ~ .radio_indicator {
    box-shadow: 0 0 0 1px rgba(var(--white), 1), 0 0 0 0.2rem rgba(var(--secondary), 0.5);
}

div.label label.checkbox input.input-success:focus ~ .checkbox_indicator,
div.label label.radio input.input-success:focus ~ .radio_indicator {
    box-shadow: 0 0 0 1px rgba(var(--white), 1), 0 0 0 0.2rem rgba(var(--success), 0.5);
}

div.label label.checkbox input.input-info:focus ~ .checkbox_indicator,
div.label label.radio input.input-info:focus ~ .radio_indicator {
    box-shadow: 0 0 0 1px rgba(var(--white), 1), 0 0 0 0.2rem rgba(var(--info), 0.5);
}

div.label label.checkbox input.input-warning:focus ~ .checkbox_indicator,
div.label label.radio input.input-warning:focus ~ .radio_indicator {
    box-shadow: 0 0 0 1px rgba(var(--white), 1), 0 0 0 0.2rem rgba(var(--warning), 0.5);
}

div.label label.checkbox input.input-danger:focus ~ .checkbox_indicator,
div.label label.radio input.input-danger:focus ~ .radio_indicator {
    box-shadow: 0 0 0 1px rgba(var(--white), 1), 0 0 0 0.2rem rgba(var(--danger), 0.5);
}

div.label label.checkbox input.input-light:focus ~ .checkbox_indicator,
div.label label.radio input.input-light:focus ~ .radio_indicator {
    box-shadow: 0 0 0 1px rgba(var(--white), 1), 0 0 0 0.2rem rgba(var(--light), 0.5);
}

div.label label.checkbox input.input-dark:focus ~ .checkbox_indicator,
div.label label.radio input.input-dark:focus ~ .radio_indicator {
    box-shadow: 0 0 0 1px rgba(var(--white), 1), 0 0 0 0.2rem rgba(var(--dark), 0.5);
}

div.label label.checkbox .checkbox_indicator::after,
div.label label.radio .radio_indicator::after {
    content: "";
    display: none;
    position: relative;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
}

div.label label.checkbox input:checked ~ .checkbox_indicator::after,
div.label label.radio input:checked ~ .radio_indicator::after {
    display: block;
}

div.label label.checkbox .checkbox_indicator::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

div.label label.radio .radio_indicator::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.group-labels {
    margin-bottom: -8px !important;
}

.group-labels label {
    display: inline-block !important;
    margin-top: 0px !important;
    margin-bottom: 8px;
    margin-right: 5px;
}


/* Lists
------------------------------------------------------------------------------*/
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.list-group-item:hover, .list-group-item:focus {
    z-index: 1;
    text-decoration: none;
}

.list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    background-color: #fff;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0;
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #004085;
    background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085;
}

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #383d41;
    background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41;
}

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #155724;
    background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724;
}

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #0c5460;
    background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460;
}

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #856404;
    background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404;
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #721c24;
    background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24;
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #818182;
    background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182;
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #1b1e21;
    background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}

/* Backgrounds
------------------------------------------------------------------------------*/
.bg-primary {
    background-color: rgba(var(--primary), 1) !important;
}

.bg-secondary {
    background-color: rgba(var(--secondary), 1) !important;
}

.bg-success {
    background-color: rgba(var(--success), 1) !important;
}

.bg-info {
    background-color: rgba(var(--info), 1) !important;
}

.bg-warning {
    background-color: rgba(var(--warning), 1) !important;
}

.bg-danger {
    background-color: rgba(var(--danger), 1) !important;
}

.bg-light {
    background-color: rgba(var(--light), 1) !important;
}

.bg-dark {
    background-color: rgba(var(--dark), 1) !important;
}

/* Modal
------------------------------------------------------------------------------*/
[data-button-modal] {
    cursor: pointer !important;
}

section.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.75);
    overflow: hidden;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    display: grid;
    flex-direction: column;
    align-items: flex-start;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -ms-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

section.modal.view {
    visibility: visible;
    opacity: 1;
}

section.modal.centered {
    align-items: center;
}

section.modal > div.content {
    width: 90%;
    max-width: 600px;
    background-color: rgba(var(--white), 1);
    margin-top: 50px;
    margin-bottom: 50px;
    justify-self: center;
    -webkit-transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -ms-transition: 0.2s ease all;
    -o-transition: 0.2s ease all;
    transition: 0.2s ease all;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

section.modal.view > div.content {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}

section.modal.size-big > div.content,
section.modal.fullscreen > div.content {
    max-width: initial;
}

section.modal.size-small > div.content {
    max-width: 400px;
}

section.modal.fullscreen > div.content {
    width: 100%;
    max-width: inherit;
    height: 100vh;
    margin: 0px;
    align-self: stretch;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section.modal > div.content > header,
section.modal > div.content > main,
section.modal > div.content > footer {
    position: relative;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

section.modal > div.content > header {
    background-color: rgba(var(--primary), 1);
    color: rgba(var(--white), 1);
}

section.modal > div.content > header > h3 {
    margin: 0;
    color: inherit;
    font-size: 20px;
    font-weight: 300;
}

section.modal.fullscreen > div.content > main {
    height: 100%;
    overflow-y: auto;
}

section.modal > div.content > footer {
    border-top: 1px solid #e8e8e8;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.modal > div.content > footer > div.action-buttons {
    position: relative;
    text-align: right;
}

section.modal > div.content > footer > div.action-buttons .btn,
section.modal > div.content > footer > div.action-buttons button {
    cursor: pointer;
}

/* Toggle
------------------------------------------------------------------------------*/
section.toggles {
    position: relative;
    display: block;
    background-color: rgba(var(--white), 1);
    border-radius: 5px;
    overflow: hidden;
}

section.toggles > section.toggle {
    position: relative;
}

section.toggles > section.toggle > h3 {
    position: relative;
    padding: 20px 50px 20px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.5;
    background-color: rgba(var(--light), 1);
    color: rgba(var(--dark), 1);
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section.toggles > section.toggle.view > h3 {
    background-color: #e8e8e8;
}

section.toggles > section.toggle > h3:before,
section.toggles > section.toggle > h3:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    height: 15px;
    margin: auto;
    background-color: rgba(var(--gray), 1);
    transition: all 200ms linear;
}

section.toggles > section.toggle > h3:before {
    transform: translateX(-30px);
}

section.toggles > section.toggle.view > h3:before {
    display: none;
}

section.toggles > section.toggle > h3:after {
    transform: rotate(90deg) translateY(30px);
}

section.toggles > section.toggle > div {
    position: relative;
    padding: 30px;
    display: none;
    font-size: 0.9rem;
}

section.toggles > section.toggle > div > *:last-child {
    margin-bottom: 0px;
}

/* Multi-Tabs
------------------------------------------------------------------------------*/
.tabs {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.tabs > ul {
    position: relative;
    display: -webkit-box;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    list-style: none;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    z-index: 1;
    padding: 0;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tabs > ul > li {
    display: block;
    line-height: 50px;
    padding: 0 30px;
    cursor: pointer;
    background-color: rgba(var(--light), 1);
    font-size: 12px;
    color: rgba(var(--gray), 1);
    font-weight: 500;
}

.tabs > ul > li:hover {
    background-color: #dddddd;
    color: rgba(var(--dark), 1);
}

.tabs > ul > li.view {
    background-color: #e8e8e8;
    color: rgba(var(--dark), 1);
    opacity: 1 !important;
}

.tabs > ul > li[disabled] {
    opacity: 0.3;
    pointer-events: none;
}

.tabs > ul > li[disabled]:hover {
    background-color: rgba(var(--light), 1);
    color: rgba(var(--gray), 1);
}

.tabs > .tab {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 30px;
    display: none;
    background-color: rgba(var(--light), 1);
    z-index: 0;
}

/* Tables
------------------------------------------------------------------------------*/
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border-collapse: separate;
    border-spacing: 0px;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-top-width: 0px;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 15px 12px;
}

.table > thead > tr > td:first-of-type,
.table > tbody > tr > td:first-of-type,
.table > tfoot > tr > td:first-of-type {
    border-left-width: 2px;
}

.table > thead > tr > td:last-of-type,
.table > tbody > tr > td:last-of-type,
.table > tfoot > tr > td:last-of-type {
    border-right-width: 2px;
}

.table-hover tbody tr:hover,
.table-striped tbody tr:nth-of-type(odd),
.thead-default th {
    background-color: #eff3f6;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
    border-right: 0px;
    border-left: 0px;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table-bordered th:first-of-type,
.table-bordered td:first-of-type {
    border-left-width: 2px;
}

.table-bordered th:last-of-type,
.table-bordered td:last-of-type {
    border-right-width: 2px;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-dark,
.table-dark > th,
.table-dark > td {
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
    background-color: #b9bbbe;
}

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table-dark {
    color: #fff;
    background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
    border-color: #32383e;
}

.table-dark.table-bordered {
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
    .table-box-responsive-sm > table.table-bordered {
        border: 0;
    }

    .table-box-responsive-sm > table,
    .table-box-responsive-sm > table thead,
    .table-box-responsive-sm > table tbody,
    .table-box-responsive-sm > table th,
    .table-box-responsive-sm > table td,
    .table-box-responsive-sm > table tr {
        display: block;
        background-color: #FFF;
    }

    .table-box-responsive-sm > table.table-dark td,
    .table-box-responsive-sm > table.table-dark tr {
        background-color: #212529;
        border-color: #32383e;
    }

    .table-box-responsive-sm > table tr {
        margin-bottom: 10px;
        border: 1px solid #dee2e6;
    }

    .table-box-responsive-sm > table tbody > tr > td:last-of-type {
        border: none;
    }

    .table-box-responsive-sm > table thead {
        display: none;
    }

    .table-box-responsive-sm > table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        white-space: normal;
        text-align:left;
        display: -webkit-box;
        display: flex;
        align-items: flex-start;
        width: 100% !important;
    }

    .table-box-responsive-sm > table td::before {
        content: attr(data-title);
        width: 50%;
        padding-right: 10px;
        padding-left: 10px;
        white-space: pre;
        text-align:left;
        font-weight: bold;
    }

    .table-box-responsive-sm > table td > .content-cell {
        display: block;
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .table-box-responsive-md > table.table-bordered {
        border: 0;
    }

    .table-box-responsive-md > table,
    .table-box-responsive-md > table thead,
    .table-box-responsive-md > table tbody,
    .table-box-responsive-md > table th,
    .table-box-responsive-md > table td,
    .table-box-responsive-md > table tr {
        display: block;
        background-color: #FFF;
    }

    .table-box-responsive-md > table.table-dark td,
    .table-box-responsive-md > table.table-dark tr {
        background-color: #212529;
        border-color: #32383e;
    }

    .table-box-responsive-md > table tr {
        margin-bottom: 10px;
        border: 1px solid #dee2e6;
    }

    .table-box-responsive-md > table tbody > tr > td:last-of-type {
        border: none;
    }

    .table-box-responsive-md > table thead {
        display: none;
    }

    .table-box-responsive-md > table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        white-space: normal;
        text-align:left;
        display: -webkit-box;
        display: flex;
        align-items: flex-start;
        width: 100% !important;
    }

    .table-box-responsive-md > table td::before {
        content: attr(data-title);
        width: 50%;
        padding-right: 10px;
        padding-left: 10px;
        white-space: pre;
        text-align:left;
        font-weight: bold;
    }

    .table-box-responsive-md > table td > .content-cell {
        display: block;
        width: 50%;
    }
}

@media (max-width: 991.98px) {
    .table-box-responsive-lg > table.table-bordered {
        border: 0;
    }

    .table-box-responsive-lg > table,
    .table-box-responsive-lg > table thead,
    .table-box-responsive-lg > table tbody,
    .table-box-responsive-lg > table th,
    .table-box-responsive-lg > table td,
    .table-box-responsive-lg > table tr {
        display: block;
        background-color: #FFF;
    }

    .table-box-responsive-lg > table.table-dark td,
    .table-box-responsive-lg > table.table-dark tr {
        background-color: #212529;
        border-color: #32383e;
    }

    .table-box-responsive-lg > table tr {
        margin-bottom: 10px;
        border: 1px solid #dee2e6;
    }

    .table-box-responsive-lg > table tbody > tr > td:last-of-type {
        border: none;
    }

    .table-box-responsive-lg > table thead {
        display: none;
    }

    .table-box-responsive-lg > table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        white-space: normal;
        text-align:left;
        display: -webkit-box;
        display: flex;
        align-items: flex-start;
        width: 100% !important;
    }

    .table-box-responsive-lg > table td::before {
        content: attr(data-title);
        width: 50%;
        padding-right: 10px;
        padding-left: 10px;
        white-space: pre;
        text-align:left;
        font-weight: bold;
    }

    .table-box-responsive-lg > table td > .content-cell {
        display: block;
        width: 50%;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* Cards
------------------------------------------------------------------------------*/
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.card > hr {
    margin-right: 0;
    margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img {
    width: 100%;
    border-radius: calc(0.25rem - 1px);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}

.card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .card-group > .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group > .card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group > .card:first-child .card-img-top,
    .card-group > .card:first-child .card-header {
        border-top-right-radius: 0;
    }
    .card-group > .card:first-child .card-img-bottom,
    .card-group > .card:first-child .card-footer {
        border-bottom-right-radius: 0;
    }
    .card-group > .card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group > .card:last-child .card-img-top,
    .card-group > .card:last-child .card-header {
        border-top-left-radius: 0;
    }
    .card-group > .card:last-child .card-img-bottom,
    .card-group > .card:last-child .card-footer {
        border-bottom-left-radius: 0;
    }
    .card-group > .card:only-child {
        border-radius: 0.25rem;
    }
    .card-group > .card:only-child .card-img-top,
    .card-group > .card:only-child .card-header {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }
    .card-group > .card:only-child .card-img-bottom,
    .card-group > .card:only-child .card-footer {
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0;
    }
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
        border-radius: 0;
    }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}

/* Helpers
------------------------------------------------------------------------------*/
.no-border {
    border: none !important;
}

.bx-shadow {
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--light), 1);
    border-radius: 0.25rem;
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.figure-caption {
    font-size: 90%;
    color: rgba(var(--secondary), 1);
}

.figure-cover,
.img-cover,
.elm-stretched {
    width: 100%;
    height: 100%;
}

.img-cover {
    object-fit: cover;
}

.thumb-sm {
    height: 32px;
    width: 32px;
}

.thumb-md {
    height: 48px;
    width: 48px;
}

.thumb-lg {
    height: 88px;
    width: 88px;
}

.fixed::after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

/* Paddings
------------------------------------------------------------------------------*/
.p-0 {
    padding: 0px !important;
}

.p-5 {
    padding: 5px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-50 {
    padding: 50px !important;
}

.p-lr-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.p-lr-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.p-lr-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.p-lr-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.p-lr-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.p-lr-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.p-lr-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.p-lr-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.p-l-0 {
    padding-left: 0px !important;
}

.p-l-5 {
    padding-left: 5px !important;
}

.p-l-10 {
    padding-left: 10px !important;
}

.p-l-15 {
    padding-left: 15px !important;
}

.p-l-20 {
    padding-left: 20px !important;
}

.p-l-30 {
    padding-left: 30px !important;
}

.p-l-40 {
    padding-left: 40px !important;
}

.p-l-50 {
    padding-left: 50px !important;
}

.p-r-0 {
    padding-right: 0px !important;
}

.p-r-5 {
    padding-right: 5px !important;
}

.p-r-10 {
    padding-right: 10px !important;
}

.p-r-15 {
    padding-right: 15px !important;
}

.p-r-20 {
    padding-right: 20px !important;
}

.p-r-30 {
    padding-right: 30px !important;
}

.p-r-40 {
    padding-right: 40px !important;
}

.p-r-50 {
    padding-right: 50px !important;
}

.p-tb-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.p-tb-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.p-tb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.p-tb-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.p-tb-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.p-tb-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.p-tb-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.p-tb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.p-t-0 {
    padding-top: 0px !important;
}

.p-t-5 {
    padding-top: 5px !important;
}

.p-t-10 {
    padding-top: 10px !important;
}

.p-t-15 {
    padding-top: 15px !important;
}

.p-t-20 {
    padding-top: 20px !important;
}

.p-t-30 {
    padding-top: 30px !important;
}

.p-t-40 {
    padding-top: 40px !important;
}

.p-t-50 {
    padding-top: 50px !important;
}

.p-b-0 {
    padding-bottom: 0px !important;
}

.p-b-5 {
    padding-bottom: 5px !important;
}

.p-b-10 {
    padding-bottom: 10px !important;
}

.p-b-15 {
    padding-bottom: 15px !important;
}

.p-b-20 {
    padding-bottom: 20px !important;
}

.p-b-30 {
    padding-bottom: 30px !important;
}

.p-b-40 {
    padding-bottom: 40px !important;
}

.p-b-50 {
    padding-bottom: 50px !important;
}

@media (min-width: 576px) {
    .p-sm-0 {
        padding: 0px !important;
    }

    .p-sm-5 {
        padding: 5px !important;
    }

    .p-sm-10 {
        padding: 10px !important;
    }

    .p-sm-15 {
        padding: 15px !important;
    }

    .p-sm-20 {
        padding: 20px !important;
    }

    .p-sm-30 {
        padding: 30px !important;
    }

    .p-sm-40 {
        padding: 40px !important;
    }

    .p-sm-50 {
        padding: 50px !important;
    }

    .p-lr-sm-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .p-lr-sm-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .p-lr-sm-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .p-lr-sm-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .p-lr-sm-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .p-lr-sm-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .p-lr-sm-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .p-lr-sm-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .p-l-sm-0 {
        padding-left: 0px !important;
    }

    .p-l-sm-5 {
        padding-left: 5px !important;
    }

    .p-l-sm-10 {
        padding-left: 10px !important;
    }

    .p-l-sm-15 {
        padding-left: 15px !important;
    }

    .p-l-sm-20 {
        padding-left: 20px !important;
    }

    .p-l-sm-30 {
        padding-left: 30px !important;
    }

    .p-l-sm-40 {
        padding-left: 40px !important;
    }

    .p-l-sm-50 {
        padding-left: 50px !important;
    }

    .p-r-sm-0 {
        padding-right: 0px !important;
    }

    .p-r-sm-5 {
        padding-right: 5px !important;
    }

    .p-r-sm-10 {
        padding-right: 10px !important;
    }

    .p-r-sm-15 {
        padding-right: 15px !important;
    }

    .p-r-sm-20 {
        padding-right: 20px !important;
    }

    .p-r-sm-30 {
        padding-right: 30px !important;
    }

    .p-r-sm-40 {
        padding-right: 40px !important;
    }

    .p-r-sm-50 {
        padding-right: 50px !important;
    }

    .p-tb-sm-0 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .p-tb-sm-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .p-tb-sm-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .p-tb-sm-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .p-tb-sm-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .p-tb-sm-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .p-tb-sm-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .p-tb-sm-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .p-t-sm-0 {
        padding-top: 0px !important;
    }

    .p-t-sm-5 {
        padding-top: 5px !important;
    }

    .p-t-sm-10 {
        padding-top: 10px !important;
    }

    .p-t-sm-15 {
        padding-top: 15px !important;
    }

    .p-t-sm-20 {
        padding-top: 20px !important;
    }

    .p-t-sm-30 {
        padding-top: 30px !important;
    }

    .p-t-sm-40 {
        padding-top: 40px !important;
    }

    .p-t-sm-50 {
        padding-top: 50px !important;
    }

    .p-b-sm-0 {
        padding-bottom: 0px !important;
    }

    .p-b-sm-5 {
        padding-bottom: 5px !important;
    }

    .p-b-sm-10 {
        padding-bottom: 10px !important;
    }

    .p-b-sm-15 {
        padding-bottom: 15px !important;
    }

    .p-b-sm-20 {
        padding-bottom: 20px !important;
    }

    .p-b-sm-30 {
        padding-bottom: 30px !important;
    }

    .p-b-sm-40 {
        padding-bottom: 40px !important;
    }

    .p-b-sm-50 {
        padding-bottom: 50px !important;
    }
}

@media (min-width: 768px) {
    .p-md-0 {
        padding: 0px !important;
    }

    .p-md-5 {
        padding: 5px !important;
    }

    .p-md-10 {
        padding: 10px !important;
    }

    .p-md-15 {
        padding: 15px !important;
    }

    .p-md-20 {
        padding: 20px !important;
    }

    .p-md-30 {
        padding: 30px !important;
    }

    .p-md-40 {
        padding: 40px !important;
    }

    .p-md-50 {
        padding: 50px !important;
    }

    .p-lr-md-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .p-lr-md-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .p-lr-md-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .p-lr-md-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .p-lr-md-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .p-lr-md-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .p-lr-md-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .p-lr-md-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .p-l-md-0 {
        padding-left: 0px !important;
    }

    .p-l-md-5 {
        padding-left: 5px !important;
    }

    .p-l-md-10 {
        padding-left: 10px !important;
    }

    .p-l-md-15 {
        padding-left: 15px !important;
    }

    .p-l-md-20 {
        padding-left: 20px !important;
    }

    .p-l-md-30 {
        padding-left: 30px !important;
    }

    .p-l-md-40 {
        padding-left: 40px !important;
    }

    .p-l-md-50 {
        padding-left: 50px !important;
    }

    .p-r-md-0 {
        padding-right: 0px !important;
    }

    .p-r-md-5 {
        padding-right: 5px !important;
    }

    .p-r-md-10 {
        padding-right: 10px !important;
    }

    .p-r-md-15 {
        padding-right: 15px !important;
    }

    .p-r-md-20 {
        padding-right: 20px !important;
    }

    .p-r-md-30 {
        padding-right: 30px !important;
    }

    .p-r-md-40 {
        padding-right: 40px !important;
    }

    .p-r-md-50 {
        padding-right: 50px !important;
    }

    .p-tb-md-0 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .p-tb-md-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .p-tb-md-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .p-tb-md-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .p-tb-md-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .p-tb-md-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .p-tb-md-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .p-tb-md-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .p-t-md-0 {
        padding-top: 0px !important;
    }

    .p-t-md-5 {
        padding-top: 5px !important;
    }

    .p-t-md-10 {
        padding-top: 10px !important;
    }

    .p-t-md-15 {
        padding-top: 15px !important;
    }

    .p-t-md-20 {
        padding-top: 20px !important;
    }

    .p-t-md-30 {
        padding-top: 30px !important;
    }

    .p-t-md-40 {
        padding-top: 40px !important;
    }

    .p-t-md-50 {
        padding-top: 50px !important;
    }

    .p-b-md-0 {
        padding-bottom: 0px !important;
    }

    .p-b-md-5 {
        padding-bottom: 5px !important;
    }

    .p-b-md-10 {
        padding-bottom: 10px !important;
    }

    .p-b-md-15 {
        padding-bottom: 15px !important;
    }

    .p-b-md-20 {
        padding-bottom: 20px !important;
    }

    .p-b-md-30 {
        padding-bottom: 30px !important;
    }

    .p-b-md-40 {
        padding-bottom: 40px !important;
    }

    .p-b-md-50 {
        padding-bottom: 50px !important;
    }
}

@media (min-width: 992px) {
    .p-lg-0 {
        padding: 0px !important;
    }

    .p-lg-5 {
        padding: 5px !important;
    }

    .p-lg-10 {
        padding: 10px !important;
    }

    .p-lg-15 {
        padding: 15px !important;
    }

    .p-lg-20 {
        padding: 20px !important;
    }

    .p-lg-30 {
        padding: 30px !important;
    }

    .p-lg-40 {
        padding: 40px !important;
    }

    .p-lg-50 {
        padding: 50px !important;
    }

    .p-lr-lg-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .p-lr-lg-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .p-lr-lg-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .p-lr-lg-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .p-lr-lg-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .p-lr-lg-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .p-lr-lg-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .p-lr-lg-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .p-l-lg-0 {
        padding-left: 0px !important;
    }

    .p-l-lg-5 {
        padding-left: 5px !important;
    }

    .p-l-lg-10 {
        padding-left: 10px !important;
    }

    .p-l-lg-15 {
        padding-left: 15px !important;
    }

    .p-l-lg-20 {
        padding-left: 20px !important;
    }

    .p-l-lg-30 {
        padding-left: 30px !important;
    }

    .p-l-lg-40 {
        padding-left: 40px !important;
    }

    .p-l-lg-50 {
        padding-left: 50px !important;
    }

    .p-r-lg-0 {
        padding-right: 0px !important;
    }

    .p-r-lg-5 {
        padding-right: 5px !important;
    }

    .p-r-lg-10 {
        padding-right: 10px !important;
    }

    .p-r-lg-15 {
        padding-right: 15px !important;
    }

    .p-r-lg-20 {
        padding-right: 20px !important;
    }

    .p-r-lg-30 {
        padding-right: 30px !important;
    }

    .p-r-lg-40 {
        padding-right: 40px !important;
    }

    .p-r-lg-50 {
        padding-right: 50px !important;
    }

    .p-tb-lg-0 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .p-tb-lg-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .p-tb-lg-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .p-tb-lg-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .p-tb-lg-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .p-tb-lg-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .p-tb-lg-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .p-tb-lg-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .p-t-lg-0 {
        padding-top: 0px !important;
    }

    .p-t-lg-5 {
        padding-top: 5px !important;
    }

    .p-t-lg-10 {
        padding-top: 10px !important;
    }

    .p-t-lg-15 {
        padding-top: 15px !important;
    }

    .p-t-lg-20 {
        padding-top: 20px !important;
    }

    .p-t-lg-30 {
        padding-top: 30px !important;
    }

    .p-t-lg-40 {
        padding-top: 40px !important;
    }

    .p-t-lg-50 {
        padding-top: 50px !important;
    }

    .p-b-lg-0 {
        padding-bottom: 0px !important;
    }

    .p-b-lg-5 {
        padding-bottom: 5px !important;
    }

    .p-b-lg-10 {
        padding-bottom: 10px !important;
    }

    .p-b-lg-15 {
        padding-bottom: 15px !important;
    }

    .p-b-lg-20 {
        padding-bottom: 20px !important;
    }

    .p-b-lg-30 {
        padding-bottom: 30px !important;
    }

    .p-b-lg-40 {
        padding-bottom: 40px !important;
    }

    .p-b-lg-50 {
        padding-bottom: 50px !important;
    }
}

@media (min-width: 1200px) {
    .p-xl-0 {
        padding: 0px !important;
    }

    .p-xl-5 {
        padding: 5px !important;
    }

    .p-xl-10 {
        padding: 10px !important;
    }

    .p-xl-15 {
        padding: 15px !important;
    }

    .p-xl-20 {
        padding: 20px !important;
    }

    .p-xl-30 {
        padding: 30px !important;
    }

    .p-xl-40 {
        padding: 40px !important;
    }

    .p-xl-50 {
        padding: 50px !important;
    }

    .p-lr-xl-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .p-lr-xl-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .p-lr-xl-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .p-lr-xl-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .p-lr-xl-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .p-lr-xl-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .p-lr-xl-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .p-lr-xl-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .p-l-xl-0 {
        padding-left: 0px !important;
    }

    .p-l-xl-5 {
        padding-left: 5px !important;
    }

    .p-l-xl-10 {
        padding-left: 10px !important;
    }

    .p-l-xl-15 {
        padding-left: 15px !important;
    }

    .p-l-xl-20 {
        padding-left: 20px !important;
    }

    .p-l-xl-30 {
        padding-left: 30px !important;
    }

    .p-l-xl-40 {
        padding-left: 40px !important;
    }

    .p-l-xl-50 {
        padding-left: 50px !important;
    }

    .p-r-xl-0 {
        padding-right: 0px !important;
    }

    .p-r-xl-5 {
        padding-right: 5px !important;
    }

    .p-r-xl-10 {
        padding-right: 10px !important;
    }

    .p-r-xl-15 {
        padding-right: 15px !important;
    }

    .p-r-xl-20 {
        padding-right: 20px !important;
    }

    .p-r-xl-30 {
        padding-right: 30px !important;
    }

    .p-r-xl-40 {
        padding-right: 40px !important;
    }

    .p-r-xl-50 {
        padding-right: 50px !important;
    }

    .p-tb-xl-0 {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .p-tb-xl-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .p-tb-xl-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .p-tb-xl-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .p-tb-xl-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .p-tb-xl-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .p-tb-xl-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .p-tb-xl-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .p-t-xl-0 {
        padding-top: 0px !important;
    }

    .p-t-xl-5 {
        padding-top: 5px !important;
    }

    .p-t-xl-10 {
        padding-top: 10px !important;
    }

    .p-t-xl-15 {
        padding-top: 15px !important;
    }

    .p-t-xl-20 {
        padding-top: 20px !important;
    }

    .p-t-xl-30 {
        padding-top: 30px !important;
    }

    .p-t-xl-40 {
        padding-top: 40px !important;
    }

    .p-t-xl-50 {
        padding-top: 50px !important;
    }

    .p-b-xl-0 {
        padding-bottom: 0px !important;
    }

    .p-b-xl-5 {
        padding-bottom: 5px !important;
    }

    .p-b-xl-10 {
        padding-bottom: 10px !important;
    }

    .p-b-xl-15 {
        padding-bottom: 15px !important;
    }

    .p-b-xl-20 {
        padding-bottom: 20px !important;
    }

    .p-b-xl-30 {
        padding-bottom: 30px !important;
    }

    .p-b-xl-40 {
        padding-bottom: 40px !important;
    }

    .p-b-xl-50 {
        padding-bottom: 50px !important;
    }
}

/* Margins
------------------------------------------------------------------------------*/
.m-auto {
    margin: auto !important;
}

.m-0 {
    margin: 0px !important;
}

.m-5 {
    margin: 5px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-30 {
    margin: 30px !important;
}

.m-40 {
    margin: 40px !important;
}

.m-50 {
    margin: 50px !important;
}

.m-lr-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.m-lr-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.m-lr-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.m-lr-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.m-lr-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.m-lr-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.m-lr-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.m-lr-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.m-lr-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

.m-l-auto {
    margin-left: auto !important;
}

.m-l-0 {
    margin-left: 0px !important;
}

.m-l-5 {
    margin-left: 5px !important;
}

.m-l-10 {
    margin-left: 10px !important;
}

.m-l-15 {
    margin-left: 15px !important;
}

.m-l-20 {
    margin-left: 20px !important;
}

.m-l-30 {
    margin-left: 30px !important;
}

.m-l-40 {
    margin-left: 40px !important;
}

.m-l-50 {
    margin-left: 50px !important;
}

.m-r-auto {
    margin-right: auto !important;
}

.m-r-0 {
    margin-right: 0px !important;
}

.m-r-5 {
    margin-right: 5px !important;
}

.m-r-10 {
    margin-right: 10px !important;
}

.m-r-15 {
    margin-right: 15px !important;
}

.m-r-20 {
    margin-right: 20px !important;
}

.m-r-30 {
    margin-right: 30px !important;
}

.m-r-40 {
    margin-right: 40px !important;
}

.m-r-50 {
    margin-right: 50px !important;
}

.m-tb-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.m-tb-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.m-tb-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.m-tb-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.m-tb-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.m-tb-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.m-tb-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.m-tb-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.m-tb-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.m-t-auto {
    margin-top: auto !important;
}

.m-t-0 {
    margin-top: 0px !important;
}

.m-t-5 {
    margin-top: 5px !important;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-t-15 {
    margin-top: 15px !important;
}

.m-t-20 {
    margin-top: 20px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-t-40 {
    margin-top: 40px !important;
}

.m-t-50 {
    margin-top: 50px !important;
}

.m-b-auto {
    margin-bottom: auto !important;
}

.m-b-0 {
    margin-bottom: 0px !important;
}

.m-b-5 {
    margin-bottom: 5px !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.m-b-15 {
    margin-bottom: 15px !important;
}

.m-b-20 {
    margin-bottom: 20px !important;
}

.m-b-30 {
    margin-bottom: 30px !important;
}

.m-b-40 {
    margin-bottom: 40px !important;
}

.m-b-50 {
    margin-bottom: 50px !important;
}

@media (min-width: 576px) {
    .m-sm-auto {
        margin: auto !important;
    }

    .m-sm-0 {
        margin: 0px !important;
    }

    .m-sm-5 {
        margin: 5px !important;
    }

    .m-sm-10 {
        margin: 10px !important;
    }

    .m-sm-15 {
        margin: 15px !important;
    }

    .m-sm-20 {
        margin: 20px !important;
    }

    .m-sm-30 {
        margin: 30px !important;
    }

    .m-sm-40 {
        margin: 40px !important;
    }

    .m-sm-50 {
        margin: 50px !important;
    }

    .m-lr-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .m-lr-sm-0 {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .m-lr-sm-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .m-lr-sm-10 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .m-lr-sm-15 {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .m-lr-sm-20 {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .m-lr-sm-30 {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .m-lr-sm-40 {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .m-lr-sm-50 {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .m-l-sm-auto {
        margin-left: auto !important;
    }

    .m-l-sm-0 {
        margin-left: 0px !important;
    }

    .m-l-sm-5 {
        margin-left: 5px !important;
    }

    .m-l-sm-10 {
        margin-left: 10px !important;
    }

    .m-l-sm-15 {
        margin-left: 15px !important;
    }

    .m-l-sm-20 {
        margin-left: 20px !important;
    }

    .m-l-sm-30 {
        margin-left: 30px !important;
    }

    .m-l-sm-40 {
        margin-left: 40px !important;
    }

    .m-l-sm-50 {
        margin-left: 50px !important;
    }

    .m-r-sm-auto {
        margin-right: auto !important;
    }

    .m-r-sm-0 {
        margin-right: 0px !important;
    }

    .m-r-sm-5 {
        margin-right: 5px !important;
    }

    .m-r-sm-10 {
        margin-right: 10px !important;
    }

    .m-r-sm-15 {
        margin-right: 15px !important;
    }

    .m-r-sm-20 {
        margin-right: 20px !important;
    }

    .m-r-sm-30 {
        margin-right: 30px !important;
    }

    .m-r-sm-40 {
        margin-right: 40px !important;
    }

    .m-r-sm-50 {
        margin-right: 50px !important;
    }

    .m-tb-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .m-tb-sm-0 {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .m-tb-sm-5 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .m-tb-sm-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .m-tb-sm-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .m-tb-sm-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .m-tb-sm-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .m-tb-sm-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .m-tb-sm-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .m-t-sm-auto {
        margin-top: auto !important;
    }

    .m-t-sm-0 {
        margin-top: 0px !important;
    }

    .m-t-sm-5 {
        margin-top: 5px !important;
    }

    .m-t-sm-10 {
        margin-top: 10px !important;
    }

    .m-t-sm-15 {
        margin-top: 15px !important;
    }

    .m-t-sm-20 {
        margin-top: 20px !important;
    }

    .m-t-sm-30 {
        margin-top: 30px !important;
    }

    .m-t-sm-40 {
        margin-top: 40px !important;
    }

    .m-t-sm-50 {
        margin-top: 50px !important;
    }

    .m-b-sm-auto {
        margin-bottom: auto !important;
    }

    .m-b-sm-0 {
        margin-bottom: 0px !important;
    }

    .m-b-sm-5 {
        margin-bottom: 5px !important;
    }

    .m-b-sm-10 {
        margin-bottom: 10px !important;
    }

    .m-b-sm-15 {
        margin-bottom: 15px !important;
    }

    .m-b-sm-20 {
        margin-bottom: 20px !important;
    }

    .m-b-sm-30 {
        margin-bottom: 30px !important;
    }

    .m-b-sm-40 {
        margin-bottom: 40px !important;
    }

    .m-b-sm-50 {
        margin-bottom: 50px !important;
    }
}

@media (min-width: 768px) {
    .m-md-auto {
        margin: auto !important;
    }

    .m-md-0 {
        margin: 0px !important;
    }

    .m-md-5 {
        margin: 5px !important;
    }

    .m-md-10 {
        margin: 10px !important;
    }

    .m-md-15 {
        margin: 15px !important;
    }

    .m-md-20 {
        margin: 20px !important;
    }

    .m-md-30 {
        margin: 30px !important;
    }

    .m-md-40 {
        margin: 40px !important;
    }

    .m-md-50 {
        margin: 50px !important;
    }

    .m-lr-md-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .m-lr-md-0 {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .m-lr-md-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .m-lr-md-10 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .m-lr-md-15 {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .m-lr-md-20 {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .m-lr-md-30 {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .m-lr-md-40 {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .m-lr-md-50 {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .m-l-md-auto {
        margin-left: auto !important;
    }

    .m-l-md-0 {
        margin-left: 0px !important;
    }

    .m-l-md-5 {
        margin-left: 5px !important;
    }

    .m-l-md-10 {
        margin-left: 10px !important;
    }

    .m-l-md-15 {
        margin-left: 15px !important;
    }

    .m-l-md-20 {
        margin-left: 20px !important;
    }

    .m-l-md-30 {
        margin-left: 30px !important;
    }

    .m-l-md-40 {
        margin-left: 40px !important;
    }

    .m-l-md-50 {
        margin-left: 50px !important;
    }

    .m-r-md-auto {
        margin-right: auto !important;
    }

    .m-r-md-0 {
        margin-right: 0px !important;
    }

    .m-r-md-5 {
        margin-right: 5px !important;
    }

    .m-r-md-10 {
        margin-right: 10px !important;
    }

    .m-r-md-15 {
        margin-right: 15px !important;
    }

    .m-r-md-20 {
        margin-right: 20px !important;
    }

    .m-r-md-30 {
        margin-right: 30px !important;
    }

    .m-r-md-40 {
        margin-right: 40px !important;
    }

    .m-r-md-50 {
        margin-right: 50px !important;
    }

    .m-tb-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .m-tb-md-0 {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .m-tb-md-5 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .m-tb-md-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .m-tb-md-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .m-tb-md-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .m-tb-md-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .m-tb-md-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .m-tb-md-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .m-t-md-auto {
        margin-top: auto !important;
    }

    .m-t-md-0 {
        margin-top: 0px !important;
    }

    .m-t-md-5 {
        margin-top: 5px !important;
    }

    .m-t-md-10 {
        margin-top: 10px !important;
    }

    .m-t-md-15 {
        margin-top: 15px !important;
    }

    .m-t-md-20 {
        margin-top: 20px !important;
    }

    .m-t-md-30 {
        margin-top: 30px !important;
    }

    .m-t-md-40 {
        margin-top: 40px !important;
    }

    .m-t-md-50 {
        margin-top: 50px !important;
    }

    .m-b-md-auto {
        margin-bottom: auto !important;
    }

    .m-b-md-0 {
        margin-bottom: 0px !important;
    }

    .m-b-md-5 {
        margin-bottom: 5px !important;
    }

    .m-b-md-10 {
        margin-bottom: 10px !important;
    }

    .m-b-md-15 {
        margin-bottom: 15px !important;
    }

    .m-b-md-20 {
        margin-bottom: 20px !important;
    }

    .m-b-md-30 {
        margin-bottom: 30px !important;
    }

    .m-b-md-40 {
        margin-bottom: 40px !important;
    }

    .m-b-md-50 {
        margin-bottom: 50px !important;
    }
}

@media (min-width: 992px) {
    .m-lg-auto {
        margin: auto !important;
    }

    .m-lg-0 {
        margin: 0px !important;
    }

    .m-lg-5 {
        margin: 5px !important;
    }

    .m-lg-10 {
        margin: 10px !important;
    }

    .m-lg-15 {
        margin: 15px !important;
    }

    .m-lg-20 {
        margin: 20px !important;
    }

    .m-lg-30 {
        margin: 30px !important;
    }

    .m-lg-40 {
        margin: 40px !important;
    }

    .m-lg-50 {
        margin: 50px !important;
    }

    .m-lr-lg-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .m-lr-lg-0 {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .m-lr-lg-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .m-lr-lg-10 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .m-lr-lg-15 {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .m-lr-lg-20 {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .m-lr-lg-30 {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .m-lr-lg-40 {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .m-lr-lg-50 {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .m-l-lg-auto {
        margin-left: auto !important;
    }

    .m-l-lg-0 {
        margin-left: 0px !important;
    }

    .m-l-lg-5 {
        margin-left: 5px !important;
    }

    .m-l-lg-10 {
        margin-left: 10px !important;
    }

    .m-l-lg-15 {
        margin-left: 15px !important;
    }

    .m-l-lg-20 {
        margin-left: 20px !important;
    }

    .m-l-lg-30 {
        margin-left: 30px !important;
    }

    .m-l-lg-40 {
        margin-left: 40px !important;
    }

    .m-l-lg-50 {
        margin-left: 50px !important;
    }

    .m-r-lg-auto {
        margin-right: auto !important;
    }

    .m-r-lg-0 {
        margin-right: 0px !important;
    }

    .m-r-lg-5 {
        margin-right: 5px !important;
    }

    .m-r-lg-10 {
        margin-right: 10px !important;
    }

    .m-r-lg-15 {
        margin-right: 15px !important;
    }

    .m-r-lg-20 {
        margin-right: 20px !important;
    }

    .m-r-lg-30 {
        margin-right: 30px !important;
    }

    .m-r-lg-40 {
        margin-right: 40px !important;
    }

    .m-r-lg-50 {
        margin-right: 50px !important;
    }

    .m-tb-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .m-tb-lg-0 {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .m-tb-lg-5 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .m-tb-lg-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .m-tb-lg-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .m-tb-lg-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .m-tb-lg-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .m-tb-lg-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .m-tb-lg-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .m-t-lg-auto {
        margin-top: auto !important;
    }

    .m-t-lg-0 {
        margin-top: 0px !important;
    }

    .m-t-lg-5 {
        margin-top: 5px !important;
    }

    .m-t-lg-10 {
        margin-top: 10px !important;
    }

    .m-t-lg-15 {
        margin-top: 15px !important;
    }

    .m-t-lg-20 {
        margin-top: 20px !important;
    }

    .m-t-lg-30 {
        margin-top: 30px !important;
    }

    .m-t-lg-40 {
        margin-top: 40px !important;
    }

    .m-t-lg-50 {
        margin-top: 50px !important;
    }

    .m-b-lg-auto {
        margin-bottom: auto !important;
    }

    .m-b-lg-0 {
        margin-bottom: 0px !important;
    }

    .m-b-lg-5 {
        margin-bottom: 5px !important;
    }

    .m-b-lg-10 {
        margin-bottom: 10px !important;
    }

    .m-b-lg-15 {
        margin-bottom: 15px !important;
    }

    .m-b-lg-20 {
        margin-bottom: 20px !important;
    }

    .m-b-lg-30 {
        margin-bottom: 30px !important;
    }

    .m-b-lg-40 {
        margin-bottom: 40px !important;
    }

    .m-b-lg-50 {
        margin-bottom: 50px !important;
    }
}

@media (min-width: 1200px) {
    .m-xl-auto {
        margin: auto !important;
    }

    .m-xl-0 {
        margin: 0px !important;
    }

    .m-xl-5 {
        margin: 5px !important;
    }

    .m-xl-10 {
        margin: 10px !important;
    }

    .m-xl-15 {
        margin: 15px !important;
    }

    .m-xl-20 {
        margin: 20px !important;
    }

    .m-xl-30 {
        margin: 30px !important;
    }

    .m-xl-40 {
        margin: 40px !important;
    }

    .m-xl-50 {
        margin: 50px !important;
    }

    .m-lr-xl-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .m-lr-xl-0 {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .m-lr-xl-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .m-lr-xl-10 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .m-lr-xl-15 {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .m-lr-xl-20 {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .m-lr-xl-30 {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .m-lr-xl-40 {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .m-lr-xl-50 {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .m-l-xl-auto {
        margin-left: auto !important;
    }

    .m-l-xl-0 {
        margin-left: 0px !important;
    }

    .m-l-xl-5 {
        margin-left: 5px !important;
    }

    .m-l-xl-10 {
        margin-left: 10px !important;
    }

    .m-l-xl-15 {
        margin-left: 15px !important;
    }

    .m-l-xl-20 {
        margin-left: 20px !important;
    }

    .m-l-xl-30 {
        margin-left: 30px !important;
    }

    .m-l-xl-40 {
        margin-left: 40px !important;
    }

    .m-l-xl-50 {
        margin-left: 50px !important;
    }

    .m-r-xl-auto {
        margin-right: auto !important;
    }

    .m-r-xl-0 {
        margin-right: 0px !important;
    }

    .m-r-xl-5 {
        margin-right: 5px !important;
    }

    .m-r-xl-10 {
        margin-right: 10px !important;
    }

    .m-r-xl-15 {
        margin-right: 15px !important;
    }

    .m-r-xl-20 {
        margin-right: 20px !important;
    }

    .m-r-xl-30 {
        margin-right: 30px !important;
    }

    .m-r-xl-40 {
        margin-right: 40px !important;
    }

    .m-r-xl-50 {
        margin-right: 50px !important;
    }

    .m-tb-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .m-tb-xl-0 {
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }

    .m-tb-xl-5 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .m-tb-xl-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .m-tb-xl-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .m-tb-xl-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .m-tb-xl-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .m-tb-xl-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .m-tb-xl-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .m-t-xl-auto {
        margin-top: auto !important;
    }

    .m-t-xl-0 {
        margin-top: 0px !important;
    }

    .m-t-xl-5 {
        margin-top: 5px !important;
    }

    .m-t-xl-10 {
        margin-top: 10px !important;
    }

    .m-t-xl-15 {
        margin-top: 15px !important;
    }

    .m-t-xl-20 {
        margin-top: 20px !important;
    }

    .m-t-xl-30 {
        margin-top: 30px !important;
    }

    .m-t-xl-40 {
        margin-top: 40px !important;
    }

    .m-t-xl-50 {
        margin-top: 50px !important;
    }

    .m-b-xl-auto {
        margin-bottom: auto !important;
    }

    .m-b-xl-0 {
        margin-bottom: 0px !important;
    }

    .m-b-xl-5 {
        margin-bottom: 5px !important;
    }

    .m-b-xl-10 {
        margin-bottom: 10px !important;
    }

    .m-b-xl-15 {
        margin-bottom: 15px !important;
    }

    .m-b-xl-20 {
        margin-bottom: 20px !important;
    }

    .m-b-xl-30 {
        margin-bottom: 30px !important;
    }

    .m-b-xl-40 {
        margin-bottom: 40px !important;
    }

    .m-b-xl-50 {
        margin-bottom: 50px !important;
    }
}

/* Tipografia
------------------------------------------------------------------------------*/
.font-14 {
    font-size: 14px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-20 {
    font-size: 20px !important;
}

.font-32 {
    font-size: 32px !important;
}

.font-40 {
    font-size: 40px !important;
}

/* Texto
------------------------------------------------------------------------------*/
.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-justify {
    text-align: justify !important;
}

.text-justified-center {
    text-align: justify;
    text-align-last: center;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }
    .text-lg-right {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }
    .text-xl-right {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-muted {
    color: rgba(var(--muted), 1) !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.text-white {
    color: #FFFFFF;
}

.text-primary {
    color: rgba(var(--primary), 1);
}

.text-secondary {
    color: rgba(var(--secondary), 1);
}

.text-success {
    color: rgba(var(--success), 1);
}

.text-info {
    color: rgba(var(--info), 1);
}

.text-warning {
    color: rgba(var(--warning), 1);
}

.text-danger {
    color: rgba(var(--danger), 1);
}

.text-light {
    color: rgba(var(--light), 1);
}

.text-dark {
    color: rgba(var(--dark), 1);
}

@media print {
    *,
    *::before,
    *::after {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    a:not(.btn) {
        text-decoration: underline;
    }
    abbr[title]::after {
        content: " (" attr(title) ")";
    }
    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    @page {
        size: a3;
        margin: 0;
    }
    body {
        min-width: var(--breakpoint-lg) !important;
    }
    .container {
        min-width: var(--breakpoint-lg) !important;
    }
    .navbar {
        display: none;
    }
    .badge {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
    .table-responsive {
        overflow-x: inherit;
    }
}

/* Positions
------------------------------------------------------------------------------*/
.pos-unset {
    position: unset;
}

.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

.pos-fixed {
    position: fixed;
}

.pos-static {
    position: static;
}

.pos-sticky {
    position: sticky;
}

.pos-inherit {
    position: inherit;
}
