﻿@charset "UTF-8";

/* Color vars for corporate logins */
/**
 * Function defining the difference between 2 colors
 *
 * @param {Color} $a - first color
 * @param {Color} $b - second color
 *
 * @return {Map}  The color operations to do in order to find $b from $a where keys are the color functions to apply and values are the values to pass to these functions
 */
/**
 * Compute the diff for each color from the initial palette
 *
 * @param {Map} $palette - palette
 *
 * @requires {function} color-diff
 *
 * @return {List} list of diffs
 */
/**
 * Initial palette used to define the diff between the base color and each color from the palette. There can be as many colors as one wants.
 *
 * @Link https://ton.twitter.com/i/ton/data/dm/487926326314418176/487926326322823168/8M2k8xOp.png Initial color palette
 *
 * @type Map
 */
/**
 * Palette diffs
 * Same length as colors key from map-palette
 *
 * @type List
 */
/**
 * Apply differences returned from `color-diff` function to a color in order to retrieve the second color
 *
 * @param {Color} $color - color to transform
 * @param {Map} $diff - diff map
 *
 * @return {Color} transformed color
 */
/**
 * Create a palette from a base color
 *
 * @param {Color} $base-color - base color for the palette
 *
 * @requires {function} palette-diff
 * @requires {function} apply-diff
 * @requires {variable} $base-palette
 *
 * @return {List} list of colors
 */
/**
 * Create a list of colors from the base color
 * then turn in into a map with explicit keys
 *
 * @param {Color} $base-color - base color for the palette
 *
 * @requires {function} create-palette
 *
 * @return {Map}
 */
/**
 * Create and apply a palette
 *
 * @param {Color} $base-color - base color
 *
 * @requires {function} create-palette
 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
}

.page-title {
    display: none;
}

@-ms-viewport {
    width: device-width;
}

article, aside, details, dialog, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

progress {
    vertical-align: baseline;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

    a:not([href]):not([tabindex]) {
        color: inherit;
        text-decoration: none;
    }

        a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
            color: inherit;
            text-decoration: none;
        }

        a:not([href]):not([tabindex]):focus {
            outline: 0;
        }

[tabindex="-1"]:focus {
    outline: 0 !important;
}

abbr[title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
}

b,
strong {
    font-weight: inherit;
}

b,
strong {
    font-weight: bolder;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 0.8571rem;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

figure {
    margin: 0;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

pre,
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button {
    border-radius: 0;
}

    button:focus {
        outline: 0;
    }

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

optgroup {
    font-weight: bold;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

textarea {
    overflow: auto;
    resize: vertical;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
    cursor: pointer;
}

[disabled] {
    cursor: not-allowed;
}

button,
html [type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

    button::-moz-focus-inner,
    input::-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;
}

[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;
}

html {
    font-size: 14px;
    line-height: 1.1;
}

body {
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #343A40;
    text-align: left;
    background-color: #F1F1F1;
}

a {
    color: #292E33;
    text-decoration: underline;
}

    a:hover {
        color: #d80000;
        text-decoration: underline;
    }

    a:focus, a:active {
        outline: 0;
    }

p {
    margin-top: 0;
    margin-bottom: 0;
}

address {
    margin-bottom: 0;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 0;
}

    ol ol,
    ul ul,
    ol ul,
    ul ol {
        margin-bottom: 0;
    }

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0;
    margin-left: 0;
}

blockquote {
    margin: 0;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #989898;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

hr {
    border-width: 1px;
}

.full-width {
    width: 100%;
}

.row-flex-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gg-ok:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-ko:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.container {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 384px) {
    .container {
        max-width: 364px;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 556px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 738px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1160px;
    }
}

@media (min-width: 1360px) {
    .container {
        max-width: 1300px;
    }
}

@media (min-width: 1680px) {
    .container {
        max-width: 1600px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters > .col,
    .no-gutters > [class*=col-] {
        padding-right: 0;
        padding-left: 0;
    }

.col-xxxl,
.col-xxxl-auto, .col-xxxl-12, .col-xxxl-11, .col-xxxl-10, .col-xxxl-9, .col-xxxl-8, .col-xxxl-7, .col-xxxl-6, .col-xxxl-5, .col-xxxl-4, .col-xxxl-3, .col-xxxl-2, .col-xxxl-1, .col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs,
.col-xs-auto, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    -ms-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}

.col-2 {
    -ms-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.col-5 {
    -ms-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
}

.col-8 {
    -ms-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
}

.col-11 {
    -ms-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-left: 8.3333333333%;
}

.offset-2 {
    margin-left: 16.6666666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.3333333333%;
}

.offset-5 {
    margin-left: 41.6666666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.3333333333%;
}

.offset-8 {
    margin-left: 66.6666666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.3333333333%;
}

.offset-11 {
    margin-left: 91.6666666667%;
}

@media (min-width: 384px) {
    .col-xs {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xs-auto {
        -moz-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xs-1 {
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-xs-2 {
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-xs-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xs-4 {
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-xs-5 {
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xs-7 {
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-xs-8 {
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-xs-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xs-10 {
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-xs-11 {
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-xs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xs-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xs-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xs-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xs-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xs-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xs-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xs-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xs-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xs-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xs-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xs-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xs-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xs-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xs-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xs-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xs-0 {
        margin-left: 0;
    }

    .offset-xs-1 {
        margin-left: 8.3333333333%;
    }

    .offset-xs-2 {
        margin-left: 16.6666666667%;
    }

    .offset-xs-3 {
        margin-left: 25%;
    }

    .offset-xs-4 {
        margin-left: 33.3333333333%;
    }

    .offset-xs-5 {
        margin-left: 41.6666666667%;
    }

    .offset-xs-6 {
        margin-left: 50%;
    }

    .offset-xs-7 {
        margin-left: 58.3333333333%;
    }

    .offset-xs-8 {
        margin-left: 66.6666666667%;
    }

    .offset-xs-9 {
        margin-left: 75%;
    }

    .offset-xs-10 {
        margin-left: 83.3333333333%;
    }

    .offset-xs-11 {
        margin-left: 91.6666666667%;
    }
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        -moz-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-sm-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-sm-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.3333333333%;
    }

    .offset-sm-2 {
        margin-left: 16.6666666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.3333333333%;
    }

    .offset-sm-5 {
        margin-left: 41.6666666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.3333333333%;
    }

    .offset-sm-8 {
        margin-left: 66.6666666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.3333333333%;
    }

    .offset-sm-11 {
        margin-left: 91.6666666667%;
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        -moz-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-md-2 {
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-md-5 {
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-md-8 {
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-md-11 {
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-md-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-md-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-md-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-md-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-md-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-md-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-md-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-md-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-md-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-md-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-md-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.3333333333%;
    }

    .offset-md-2 {
        margin-left: 16.6666666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.3333333333%;
    }

    .offset-md-5 {
        margin-left: 41.6666666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.3333333333%;
    }

    .offset-md-8 {
        margin-left: 66.6666666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.3333333333%;
    }

    .offset-md-11 {
        margin-left: 91.6666666667%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -moz-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-lg-2 {
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.3333333333%;
    }

    .offset-lg-2 {
        margin-left: 16.6666666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.3333333333%;
    }

    .offset-lg-5 {
        margin-left: 41.6666666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.3333333333%;
    }

    .offset-lg-8 {
        margin-left: 66.6666666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.3333333333%;
    }

    .offset-lg-11 {
        margin-left: 91.6666666667%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        -moz-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-xl-2 {
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.3333333333%;
    }

    .offset-xl-2 {
        margin-left: 16.6666666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.3333333333%;
    }

    .offset-xl-5 {
        margin-left: 41.6666666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.3333333333%;
    }

    .offset-xl-8 {
        margin-left: 66.6666666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.3333333333%;
    }

    .offset-xl-11 {
        margin-left: 91.6666666667%;
    }
}

@media (min-width: 1360px) {
    .col-xxl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xxl-auto {
        -moz-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xxl-1 {
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-xxl-2 {
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-xxl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxl-4 {
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-xxl-5 {
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-xxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxl-7 {
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-xxl-8 {
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-xxl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxl-10 {
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-xxl-11 {
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-xxl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xxl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xxl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xxl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xxl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xxl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xxl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xxl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xxl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xxl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xxl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xxl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xxl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xxl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xxl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xxl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.3333333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.6666666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.3333333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.6666666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.3333333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.6666666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.3333333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.6666666667%;
    }
}

@media (min-width: 1680px) {
    .col-xxxl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xxxl-auto {
        -moz-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-xxxl-1 {
        -ms-flex: 0 0 8.3333333333%;
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .col-xxxl-2 {
        -ms-flex: 0 0 16.6666666667%;
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .col-xxxl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xxxl-4 {
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .col-xxxl-5 {
        -ms-flex: 0 0 41.6666666667%;
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .col-xxxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xxxl-7 {
        -ms-flex: 0 0 58.3333333333%;
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

    .col-xxxl-8 {
        -ms-flex: 0 0 66.6666666667%;
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .col-xxxl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xxxl-10 {
        -ms-flex: 0 0 83.3333333333%;
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

    .col-xxxl-11 {
        -ms-flex: 0 0 91.6666666667%;
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .col-xxxl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xxxl-first {
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xxxl-last {
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xxxl-0 {
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xxxl-1 {
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xxxl-2 {
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xxxl-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xxxl-4 {
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xxxl-5 {
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xxxl-6 {
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xxxl-7 {
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xxxl-8 {
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xxxl-9 {
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xxxl-10 {
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xxxl-11 {
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xxxl-12 {
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xxxl-0 {
        margin-left: 0;
    }

    .offset-xxxl-1 {
        margin-left: 8.3333333333%;
    }

    .offset-xxxl-2 {
        margin-left: 16.6666666667%;
    }

    .offset-xxxl-3 {
        margin-left: 25%;
    }

    .offset-xxxl-4 {
        margin-left: 33.3333333333%;
    }

    .offset-xxxl-5 {
        margin-left: 41.6666666667%;
    }

    .offset-xxxl-6 {
        margin-left: 50%;
    }

    .offset-xxxl-7 {
        margin-left: 58.3333333333%;
    }

    .offset-xxxl-8 {
        margin-left: 66.6666666667%;
    }

    .offset-xxxl-9 {
        margin-left: 75%;
    }

    .offset-xxxl-10 {
        margin-left: 83.3333333333%;
    }

    .offset-xxxl-11 {
        margin-left: 91.6666666667%;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #292E33;
    margin-bottom: 0;
    margin-top: 0;
}

h1, .h1 {
    font-size: 2.571rem;
    line-height: 3.8565rem;
}

h1, .h1 {
    font-size: 2.571rem;
    line-height: 3.8565rem;
}

h2, .h2 {
    font-size: 2.143rem;
    line-height: 3.2145rem;
}

h2, .h2 {
    font-size: 2.143rem;
    line-height: 3.2145rem;
}

h3, .h3 {
    font-size: 1.714rem;
    line-height: 2.571rem;
}

h3, .h3 {
    font-size: 1.714rem;
    line-height: 2.571rem;
}

h4, .h4 {
    font-size: 1.286rem;
    line-height: 1.929rem;
}

h4, .h4 {
    font-size: 1.286rem;
    line-height: 1.929rem;
}

h5, .h5 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 700;
}

h5, .h5 {
    font-size: 1rem;
    line-height: 1.5rem;
}

h6, .h6 {
    font-size: 0.8571rem;
    line-height: 1.28565rem;
}

h6, .h6 {
    font-size: 0.8571rem;
    line-height: 1.28565rem;
}

.display1 {
    font-size: 6rem;
    line-height: 9rem;
}

.display2 {
    font-size: 5.5rem;
    line-height: 8.25rem;
}

.display3 {
    font-size: 4.5rem;
    line-height: 6.75rem;
}

.display4 {
    font-size: 3.5rem;
    line-height: 5.25rem;
}

.meso1 {
    font-size: 1.571rem;
    line-height: 2.3565rem;
    font-weight: 700;
}

.meso2 {
    font-size: 1.428rem;
    line-height: 2.142rem;
}

.meso3 {
    font-size: 1.143rem;
    line-height: 1.7145rem;
}

.meso4 {
    font-size: 1.071rem;
    line-height: 1.6065rem;
}

.micro1 {
    font-size: 0.9286rem;
    line-height: 1.3929rem;
}

.micro2 {
    font-size: 0.7857rem;
    line-height: 1.17855rem;
}

.micro3 {
    font-size: 0.7143rem;
    line-height: 1.07145rem;
}

.micro4 {
    font-size: 0.6429rem;
    line-height: 0.96435rem;
}

.small {
    font-size: 0.8571rem;
    line-height: 1.28565rem;
}

.lead {
    font-size: 1.5rem;
    line-height: 2.25rem;
}

.btn-sm, .btn-lg, .btn {
    font-weight: 400;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .btn-sm:active, .btn-lg:active, .btn:active, .active.btn-sm, .active.btn-lg, .active.btn, .btn-sm:hover, .btn-lg:hover, .btn:hover, .hover.btn-sm, .hover.btn-lg, .hover.btn, .btn-sm:focus, .btn-lg:focus, .btn:focus, .focus.btn-sm, .focus.btn-lg, .focus.btn {
        outline-style: none;
        outline: 0;
        text-decoration: none;
    }

    .disabled.btn-sm, .disabled.btn-lg, .disabled.btn, .btn-sm:disabled, .btn-lg:disabled, .btn:disabled {
        cursor: not-allowed;
        opacity: 0.65;
    }

    .btn-sm:not(:disabled):not(.disabled), .btn-lg:not(:disabled):not(.disabled), .btn:not(:disabled):not(.disabled) {
        cursor: pointer;
    }

    .btn-sm::-moz-focus-inner, .btn-lg::-moz-focus-inner, .btn::-moz-focus-inner {
        border: 0;
    }

.btn {
    border: 1px solid transparent;
    padding: 0.375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    min-width: 120px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    .btn.no-min-width {
        min-width: auto;
    }

    .btn.disabled,
    a.btn.disabled,
    fieldset:disabled a.btn {
        pointer-events: none;
    }

.btn-primary {
    color: #FFFFFF;
    background-color: #d80000;
    border-color: #d80000;
}

    .btn-primary:hover, .btn-primary.hover {
        background-color: #b50000;
        border-color: #b50000;
    }

    .btn-primary:active, .btn-primary.active, .btn-primary:focus, .btn-primary.focus {
        background-color: #aa0000;
        border-color: #aa0000;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        background-color: #d80000;
        border-color: #d80000;
        opacity: 0.65;
        filter: alpha(opacity=0.65);
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
        background-color: #aa0000;
        border-color: #aa0000;
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
            background-color: #aa0000;
            border-color: #aa0000;
        }

.btn-secondary {
    color: #FFFFFF;
    background-color: #000000;
    border-color: #000000;
}

    .btn-secondary:hover, .btn-secondary.hover {
        background-color: #333333;
        border-color: #333333;
    }

    .btn-secondary:active, .btn-secondary.active, .btn-secondary:focus, .btn-secondary.focus {
        background-color: #666666;
        border-color: #666666;
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        background-color: #000000;
        border-color: #000000;
        opacity: 0.65;
        filter: alpha(opacity=0.65);
    }

    .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
        background-color: #666666;
        border-color: #666666;
    }

        .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
            background-color: #666666;
            border-color: #666666;
        }

.btn-accent {
    color: #FFFFFF;
    background-color: #fab100;
    border-color: #fab100;
}

    .btn-accent:hover, .btn-accent.hover {
        background-color: #f29130;
        border-color: #f29130;
    }

    .btn-accent:active, .btn-accent.active, .btn-accent:focus, .btn-accent.focus {
        background-color: #fa8532;
        border-color: #fa8532;
    }

    .btn-accent.disabled, .btn-accent:disabled {
        background-color: #fab100;
        border-color: #fab100;
        opacity: 0.65;
        filter: alpha(opacity=0.65);
    }

    .btn-accent:not(:disabled):not(.disabled):active, .btn-accent:not(:disabled):not(.disabled).active, .show > .btn-accent.dropdown-toggle {
        background-color: #fa8532;
        border-color: #fa8532;
    }

        .btn-accent:not(:disabled):not(.disabled):active:focus, .btn-accent:not(:disabled):not(.disabled).active:focus, .show > .btn-accent.dropdown-toggle:focus {
            background-color: #fa8532;
            border-color: #fa8532;
        }

.btn-success {
    color: #FFFFFF;
    background-color: #28a745;
    border-color: #28a745;
}

    .btn-success:hover, .btn-success.hover {
        background-color: #228c3a;
        border-color: #228c3a;
    }

    .btn-success:active, .btn-success.active, .btn-success:focus, .btn-success.focus {
        background-color: #208437;
        border-color: #208437;
    }

    .btn-success.disabled, .btn-success:disabled {
        background-color: #28a745;
        border-color: #28a745;
        opacity: 0.65;
        filter: alpha(opacity=0.65);
    }

    .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
        background-color: #208437;
        border-color: #208437;
    }

        .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
            background-color: #208437;
            border-color: #208437;
        }

.btn-info {
    color: #FFFFFF;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

    .btn-info:hover, .btn-info.hover {
        background-color: #13889b;
        border-color: #13889b;
    }

    .btn-info:active, .btn-info.active, .btn-info:focus, .btn-info.focus {
        background-color: #128294;
        border-color: #128294;
    }

    .btn-info.disabled, .btn-info:disabled {
        background-color: #17a2b8;
        border-color: #17a2b8;
        opacity: 0.65;
        filter: alpha(opacity=0.65);
    }

    .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
        background-color: #128294;
        border-color: #128294;
    }

        .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
            background-color: #128294;
            border-color: #128294;
        }

.btn-warning {
    color: #FFFFFF;
    background-color: #ffc107;
    border-color: #ffc107;
}

    .btn-warning:hover, .btn-warning.hover {
        background-color: #e6ac00;
        border-color: #e6ac00;
    }

    .btn-warning:active, .btn-warning.active, .btn-warning:focus, .btn-warning.focus {
        background-color: #dba400;
        border-color: #dba400;
    }

    .btn-warning.disabled, .btn-warning:disabled {
        background-color: #ffc107;
        border-color: #ffc107;
        opacity: 0.65;
        filter: alpha(opacity=0.65);
    }

    .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
        background-color: #dba400;
        border-color: #dba400;
    }

        .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
            background-color: #dba400;
            border-color: #dba400;
        }

.btn-danger {
    color: #FFFFFF;
    background-color: #dc3545;
    border-color: #dc3545;
}

    .btn-danger:hover, .btn-danger.hover {
        background-color: #cd2334;
        border-color: #cd2334;
    }

    .btn-danger:active, .btn-danger.active, .btn-danger:focus, .btn-danger.focus {
        background-color: #c42232;
        border-color: #c42232;
    }

    .btn-danger.disabled, .btn-danger:disabled {
        background-color: #dc3545;
        border-color: #dc3545;
        opacity: 0.65;
        filter: alpha(opacity=0.65);
    }

    .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
        background-color: #c42232;
        border-color: #c42232;
    }

        .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
            background-color: #c42232;
            border-color: #c42232;
        }

.btn-light {
    color: #343A40;
    background-color: #F8F9FA;
    border-color: #F8F9FA;
}

    .btn-light:hover, .btn-light.hover {
        background-color: #e4e4e4;
        border-color: #e4e4e4;
    }

    .btn-light:active, .btn-light.active, .btn-light:focus, .btn-light.focus {
        background-color: #cbcbcb;
        border-color: #cbcbcb;
    }

    .btn-light.disabled, .btn-light:disabled {
        background-color: #F8F9FA;
        border-color: #F8F9FA;
        opacity: 0.65;
        filter: alpha(opacity=0.65);
    }

    .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
        background-color: #cbcbcb;
        border-color: #cbcbcb;
    }

        .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
            background-color: #cbcbcb;
            border-color: #cbcbcb;
        }

.btn-dark {
    color: #FFFFFF;
    background-color: #343A40;
    border-color: #343A40;
}

    .btn-dark:hover, .btn-dark.hover {
        background-color: #56606a;
        border-color: #56606a;
    }

    .btn-dark:active, .btn-dark.active, .btn-dark:focus, .btn-dark.focus {
        background-color: #7a8793;
        border-color: #7a8793;
    }

    .btn-dark.disabled, .btn-dark:disabled {
        background-color: #343A40;
        border-color: #343A40;
        opacity: 0.65;
        filter: alpha(opacity=0.65);
    }

    .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
        background-color: #7a8793;
        border-color: #7a8793;
    }

        .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
            background-color: #7a8793;
            border-color: #7a8793;
        }

.btn-outline-primary {
    color: #d80000;
    background-color: transparent;
    background-image: none;
    border-color: #d80000;
}

    .btn-outline-primary:hover {
        color: #d80000;
        background-color: rgba(216, 0, 0, 0.1);
        border-color: #d80000;
    }

    .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary:focus, .btn-outline-primary.focus {
        background-color: rgba(216, 0, 0, 0.2);
        border-color: #d80000;
        color: #d80000;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
        color: #d80000;
        background-color: transparent;
        opacity: 0.3;
        filter: alpha(opacity=0.3);
    }

    .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
        background-color: rgba(216, 0, 0, 0.2);
        border-color: #d80000;
        color: #d80000;
    }

        .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.btn-outline-secondary {
    color: #000000;
    background-color: transparent;
    background-image: none;
    border-color: #000000;
}

    .btn-outline-secondary:hover {
        color: #000000;
        background-color: rgba(0, 0, 0, 0.1);
        border-color: #000000;
    }

    .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary:focus, .btn-outline-secondary.focus {
        background-color: rgba(0, 0, 0, 0.2);
        border-color: #000000;
        color: #000000;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
        color: #000000;
        background-color: transparent;
        opacity: 0.3;
        filter: alpha(opacity=0.3);
    }

    .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
        background-color: rgba(0, 0, 0, 0.2);
        border-color: #000000;
        color: #000000;
    }

        .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.btn-outline-accent {
    color: #fab100;
    background-color: transparent;
    background-image: none;
    border-color: #fab100;
}

    .btn-outline-accent:hover {
        color: #fab100;
        background-color: rgba(250, 177, 0, 0.1);
        border-color: #fab100;
    }

    .btn-outline-accent:active, .btn-outline-accent.active, .btn-outline-accent:focus, .btn-outline-accent.focus {
        background-color: rgba(250, 177, 0, 0.2);
        border-color: #fab100;
        color: #fab100;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-outline-accent.disabled, .btn-outline-accent:disabled {
        color: #fab100;
        background-color: transparent;
        opacity: 0.3;
        filter: alpha(opacity=0.3);
    }

    .btn-outline-accent:not(:disabled):not(.disabled):active, .btn-outline-accent:not(:disabled):not(.disabled).active, .show > .btn-outline-accent.dropdown-toggle {
        background-color: rgba(250, 177, 0, 0.2);
        border-color: #fab100;
        color: #fab100;
    }

        .btn-outline-accent:not(:disabled):not(.disabled):active:focus, .btn-outline-accent:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-accent.dropdown-toggle:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
}

    .btn-outline-success:hover {
        color: #28a745;
        background-color: rgba(40, 167, 69, 0.1);
        border-color: #28a745;
    }

    .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success:focus, .btn-outline-success.focus {
        background-color: rgba(40, 167, 69, 0.2);
        border-color: #28a745;
        color: #28a745;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-outline-success.disabled, .btn-outline-success:disabled {
        color: #28a745;
        background-color: transparent;
        opacity: 0.3;
        filter: alpha(opacity=0.3);
    }

    .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
        background-color: rgba(40, 167, 69, 0.2);
        border-color: #28a745;
        color: #28a745;
    }

        .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8;
}

    .btn-outline-info:hover {
        color: #17a2b8;
        background-color: rgba(23, 162, 184, 0.1);
        border-color: #17a2b8;
    }

    .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info:focus, .btn-outline-info.focus {
        background-color: rgba(23, 162, 184, 0.2);
        border-color: #17a2b8;
        color: #17a2b8;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-outline-info.disabled, .btn-outline-info:disabled {
        color: #17a2b8;
        background-color: transparent;
        opacity: 0.3;
        filter: alpha(opacity=0.3);
    }

    .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
        background-color: rgba(23, 162, 184, 0.2);
        border-color: #17a2b8;
        color: #17a2b8;
    }

        .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107;
}

    .btn-outline-warning:hover {
        color: #ffc107;
        background-color: rgba(255, 193, 7, 0.1);
        border-color: #ffc107;
    }

    .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning:focus, .btn-outline-warning.focus {
        background-color: rgba(255, 193, 7, 0.2);
        border-color: #ffc107;
        color: #ffc107;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-outline-warning.disabled, .btn-outline-warning:disabled {
        color: #ffc107;
        background-color: transparent;
        opacity: 0.3;
        filter: alpha(opacity=0.3);
    }

    .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
        background-color: rgba(255, 193, 7, 0.2);
        border-color: #ffc107;
        color: #ffc107;
    }

        .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
}

    .btn-outline-danger:hover {
        color: #dc3545;
        background-color: rgba(220, 53, 69, 0.1);
        border-color: #dc3545;
    }

    .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger:focus, .btn-outline-danger.focus {
        background-color: rgba(220, 53, 69, 0.2);
        border-color: #dc3545;
        color: #dc3545;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-outline-danger.disabled, .btn-outline-danger:disabled {
        color: #dc3545;
        background-color: transparent;
        opacity: 0.3;
        filter: alpha(opacity=0.3);
    }

    .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
        background-color: rgba(220, 53, 69, 0.2);
        border-color: #dc3545;
        color: #dc3545;
    }

        .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.btn-outline-light {
    color: #F8F9FA;
    background-color: transparent;
    background-image: none;
    border-color: #F8F9FA;
}

    .btn-outline-light:hover {
        color: #F8F9FA;
        background-color: rgba(248, 249, 250, 0.1);
        border-color: #F8F9FA;
    }

    .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light:focus, .btn-outline-light.focus {
        background-color: rgba(248, 249, 250, 0.2);
        border-color: #F8F9FA;
        color: #F8F9FA;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-outline-light.disabled, .btn-outline-light:disabled {
        color: #F8F9FA;
        background-color: #949494;
        opacity: 0.3;
        filter: alpha(opacity=0.3);
    }

    .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
        background-color: rgba(248, 249, 250, 0.2);
        border-color: #F8F9FA;
        color: #F8F9FA;
    }

        .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.btn-outline-dark {
    color: #343A40;
    background-color: transparent;
    background-image: none;
    border-color: #343A40;
}

    .btn-outline-dark:hover {
        color: #343A40;
        background-color: rgba(52, 58, 64, 0.1);
        border-color: #343A40;
    }

    .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark:focus, .btn-outline-dark.focus {
        background-color: rgba(52, 58, 64, 0.2);
        border-color: #343A40;
        color: #343A40;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .btn-outline-dark.disabled, .btn-outline-dark:disabled {
        color: #343A40;
        background-color: #343A40;
        opacity: 0.3;
        filter: alpha(opacity=0.3);
    }

    .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
        background-color: rgba(52, 58, 64, 0.2);
        border-color: #343A40;
        color: #343A40;
    }

        .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }

.btn-link {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #7e7e7e;
    background-color: transparent;
}

    .btn-link:hover {
        color: #d80000;
        text-decoration: underline;
        background-color: transparent;
        border-color: transparent;
    }

    .btn-link:active, .btn-link.active, .btn-link:focus, .btn-link.focus {
        color: #aa0000;
        text-decoration: underline;
        border-color: transparent;
        box-shadow: none;
    }

    .btn-link:disabled, .btn-link.disabled {
        color: #989898;
        pointer-events: none;
    }

.btn-lg {
    border: 1px solid transparent;
    padding: 1.0714285714rem 1.0714285714rem;
    font-size: 1.5rem;
    line-height: 1.5;
    min-width: 120px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.btn-sm {
    border: 1px solid transparent;
    padding: 0.5rem 0.5rem;
    font-size: 0.8571rem;
    line-height: 1.5;
    min-width: 120px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.btn-block {
    display: block;
    width: 100%;
}

    .btn-block + .btn-block {
        margin-top: 0.5rem;
    }

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
    width: 100%;
}

.nav-link-primary {
    color: #FFFFFF;
    border: 1px solid transparent;
    background-color: transparent;
}

    .nav-link-primary:hover {
        color: #d80000;
    }

    .nav-link-primary:active, .nav-link-primary.active, .nav-link-primary:focus, .nav-link-primary.focus, .nav-link-primary:not(:disabled):not(.disabled):active, .nav-link-primary:not(:disabled):not(.disabled).active {
        background-color: #d80000;
        border: 1px solid #d80000;
        color: #FFFFFF;
    }

.nav-link-secondary {
    color: #FFFFFF;
    border: 1px solid transparent;
    background-color: transparent;
}

    .nav-link-secondary:hover {
        color: #000000;
    }

    .nav-link-secondary:active, .nav-link-secondary.active, .nav-link-secondary:focus, .nav-link-secondary.focus, .nav-link-secondary:not(:disabled):not(.disabled):active, .nav-link-secondary:not(:disabled):not(.disabled).active {
        background-color: #000000;
        border: 1px solid #000000;
        color: #FFFFFF;
    }

.nav-link-accent {
    color: #343A40;
    border: 1px solid transparent;
    background-color: transparent;
}

    .nav-link-accent:hover {
        color: #fab100;
    }

    .nav-link-accent:active, .nav-link-accent.active, .nav-link-accent:focus, .nav-link-accent.focus, .nav-link-accent:not(:disabled):not(.disabled):active, .nav-link-accent:not(:disabled):not(.disabled).active {
        background-color: #fab100;
        border: 1px solid #fab100;
        color: #343A40;
    }

.nav-link-success {
    color: #343A40;
    border: 1px solid transparent;
    background-color: transparent;
}

    .nav-link-success:hover {
        color: #28a745;
    }

    .nav-link-success:active, .nav-link-success.active, .nav-link-success:focus, .nav-link-success.focus, .nav-link-success:not(:disabled):not(.disabled):active, .nav-link-success:not(:disabled):not(.disabled).active {
        background-color: #28a745;
        border: 1px solid #28a745;
        color: #343A40;
    }

.nav-link-info {
    color: #343A40;
    border: 1px solid transparent;
    background-color: transparent;
}

    .nav-link-info:hover {
        color: #17a2b8;
    }

    .nav-link-info:active, .nav-link-info.active, .nav-link-info:focus, .nav-link-info.focus, .nav-link-info:not(:disabled):not(.disabled):active, .nav-link-info:not(:disabled):not(.disabled).active {
        background-color: #17a2b8;
        border: 1px solid #17a2b8;
        color: #343A40;
    }

.nav-link-warning {
    color: #343A40;
    border: 1px solid transparent;
    background-color: transparent;
}

    .nav-link-warning:hover {
        color: #ffc107;
    }

    .nav-link-warning:active, .nav-link-warning.active, .nav-link-warning:focus, .nav-link-warning.focus, .nav-link-warning:not(:disabled):not(.disabled):active, .nav-link-warning:not(:disabled):not(.disabled).active {
        background-color: #ffc107;
        border: 1px solid #ffc107;
        color: #343A40;
    }

.nav-link-danger {
    color: #343A40;
    border: 1px solid transparent;
    background-color: transparent;
}

    .nav-link-danger:hover {
        color: #dc3545;
    }

    .nav-link-danger:active, .nav-link-danger.active, .nav-link-danger:focus, .nav-link-danger.focus, .nav-link-danger:not(:disabled):not(.disabled):active, .nav-link-danger:not(:disabled):not(.disabled).active {
        background-color: #dc3545;
        border: 1px solid #dc3545;
        color: #343A40;
    }

.nav-link-light {
    color: #343A40;
    border: 1px solid transparent;
    background-color: transparent;
}

    .nav-link-light:hover {
        color: #F8F9FA;
    }

    .nav-link-light:active, .nav-link-light.active, .nav-link-light:focus, .nav-link-light.focus, .nav-link-light:not(:disabled):not(.disabled):active, .nav-link-light:not(:disabled):not(.disabled).active {
        background-color: #F8F9FA;
        border: 1px solid #F8F9FA;
        color: #343A40;
    }

.nav-link-dark {
    color: #FFFFFF;
    border: 1px solid transparent;
    background-color: transparent;
}

    .nav-link-dark:hover {
        color: #343A40;
    }

    .nav-link-dark:active, .nav-link-dark.active, .nav-link-dark:focus, .nav-link-dark.focus, .nav-link-dark:not(:disabled):not(.disabled):active, .nav-link-dark:not(:disabled):not(.disabled).active {
        background-color: #343A40;
        border: 1px solid #343A40;
        color: #FFFFFF;
    }

.grouped-fields .grouped-inputs .input-default.btn {
    padding: 0.7142857143rem;
}

    .grouped-fields .grouped-inputs .input-default.btn:not(.active) {
        background-color: #e4e4e4;
        color: #989898;
    }

.input-radio-check, .input-default,
.input-default + .select2 {
    font-size: 1rem;
    line-height: 1.5;
    color: #343A40;
    background-color: #FFFFFF;
}

    .input-radio-check:focus, .input-default:focus,
    .input-default + .select2:focus {
        outline: none;
    }

.grouped-fields .grouped-labels .grouped-label, *[class^=input-group-block] label {
    font-size: 0.8571rem;
    position: relative;
    font-weight: normal;
}

.valid.grouped-fields label, .valid[class^=input-group-block] label {
    color: #28a745;
}

.valid.grouped-fields:valid .validate-field-icon, .valid[class^=input-group-block]:valid .validate-field-icon {
    color: #28a745;
}

.valid.grouped-fields .validate-field-message, .valid[class^=input-group-block] .validate-field-message {
    color: #28a745;
    visibility: hidden;
}

.invalid.grouped-fields label, .invalid[class^=input-group-block] label {
    color: #dc3545;
}

.invalid.grouped-fields:invalid .validate-field-icon, .invalid[class^=input-group-block]:invalid .validate-field-icon {
    color: #dc3545;
}

.invalid.grouped-fields .validate-field-message, .invalid[class^=input-group-block] .validate-field-message {
    visibility: visible;
}

.valid .validate-field-icon:after, .valid + .validate-field-icon:after, .valid *:valid:required + .validate-field-icon:after,
.valid .input-default:required + .validate-field-icon:after,
.valid.touched *:valid:required + .validate-field-icon:after,
.valid.touched .input-default:required + .validate-field-icon:after {
    font-family: "giza-glyphicons";
    content: "";
    color: #28a745;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.valid .validate-field-icon:before, .valid + .validate-field-icon:before, .valid *:valid:required + .validate-field-icon:before,
.valid .input-default:required + .validate-field-icon:before,
.valid.touched *:valid:required + .validate-field-icon:before,
.valid.touched .input-default:required + .validate-field-icon:before {
    content: none;
}

.invalid .validate-field-icon:after, .invalid + .validate-field-icon:after, .invalid *:invalid + .validate-field-icon:after {
    font-family: "giza-glyphicons";
    content: "";
    color: #dc3545;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.invalid .validate-field-icon:before, .invalid + .validate-field-icon:before, .invalid *:invalid + .validate-field-icon:before {
    content: none;
}

.input-group-block {
    display: block;
    position: relative;
}

.inputs-flex-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.input-group-flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
}

.input-group-inline {
    display: inline-flex;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
}

*[class^=input-group-block] label {
    margin-bottom: 0.3571428571rem;
    display: inline-block;
    width: 100%;
}

    *[class^=input-group-block] label .info-label {
        position: absolute;
        right: 0;
    }

    *[class^=input-group-block] label.label-inline {
        margin-bottom: 0;
    }

.valid *:valid,
.valid .input-default,
.valid.touched *:valid,
.valid.touched .input-default {
    position: relative;
    border-color: #28a745;
}

    .valid *:valid:required + .validate-field-icon,
    .valid .input-default:required + .validate-field-icon,
    .valid.touched *:valid:required + .validate-field-icon,
    .valid.touched .input-default:required + .validate-field-icon {
        display: block;
    }

    .valid *:valid:focus,
    .valid .input-default:focus,
    .valid.touched *:valid:focus,
    .valid.touched .input-default:focus {
        box-shadow: 0 0 0.5rem rgba(32, 132, 55, 0.95);
        border-color: #28a745;
    }

.invalid *:invalid {
    position: relative;
    border-color: #dc3545;
}

    .invalid *:invalid + .validate-field-icon {
        display: block;
    }

    .invalid *:invalid:focus {
        box-shadow: 0 0 0.5rem rgba(196, 34, 50, 0.95);
        border-color: #dc3545;
    }

.input-default.valid {
    border-color: #28a745;
}

    .input-default.valid:focus {
        border-color: #28a745;
        box-shadow: 0 0 0.5rem rgba(32, 132, 55, 0.95);
    }

.valid + .validate-field-icon {
    display: block;
}

.input-default.invalid {
    border-color: #dc3545;
}

    .input-default.invalid:focus {
        box-shadow: 0 0 0.5rem rgba(196, 34, 50, 0.95);
        border-color: #dc3545;
    }

.invalid + .validate-field-icon {
    display: block;
}

.label-inline {
    margin-bottom: 0;
}

.optional-label {
    font-size: 0.8571rem;
    color: #989898;
    display: inline-block;
    font-style: italic;
    margin-left: 0.3571428571rem;
    margin-right: 0.3571428571rem;
}

    .optional-label:before {
        content: "(";
        font-style: italic;
    }

    .optional-label:after {
        content: ")";
        font-style: italic;
    }

.info-label,
.validate-field-icon {
    font-family: "giza-glyphicons";
}

.info-label {
    font-size: 0.8571rem;
}

    .info-label:after {
        font-family: "giza-glyphicons";
        content: "";
        color: #17a2b8;
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px;
    }

    .info-label:before {
        content: none;
    }

.validate-field-icon {
    display: none;
    position: absolute;
    right: 1.0714285714rem;
    top: 9.49955px;
}

.validate-field-message,
.optional-message {
    margin-top: 0.3571428571rem;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
}

.validate-field-message {
    font-size: 0.5rem;
    color: #dc3545;
    visibility: hidden;
}

.optional-message {
    font-size: 0.8571rem;
    color: #989898;
    font-style: italic;
}

.input-default,
.input-default + .select2 {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0.7142857143rem 2.0714285714rem 0.7142857143rem 0.7142857143rem;
    background-clip: padding-box;
    border: 1px solid #cbcbcb;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-transition: box-shadow 0.15s ease-in-out;
    -o-transition: box-shadow 0.15s ease-in-out;
    -webkit-transition: box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out;
    /*&:valid {
    position: relative;
    border-color: $input-valid-color;

    &:required + .validate-field-icon {
      display: block;
      @extend %valid-icon
    }

    &:focus {
      box-shadow: $input-valid-box-shadow;
    }
  }

  &:invalid {
    position: relative;
    border-color: $input-invalid-color;

    & + .validate-field-icon {
      display: block;
      @extend %invalid-icon;
    }

    &:focus {
      box-shadow: $input-invalid-box-shadow;
    }
  }*/
}

    .input-default::-ms-expand,
    .input-default + .select2::-ms-expand {
        background-color: transparent;
        border: 0;
    }

    .input-default:focus,
    .input-default + .select2:focus {
        color: #343A40;
        background-color: #FFFFFF;
        border-color: rgba(23, 162, 184, 0.5);
        outline: 0;
        box-shadow: 0 0 0.5rem rgba(18, 130, 148, 0.55);
    }

    .input-default::placeholder,
    .input-default + .select2::placeholder {
        color: #7e7e7e;
        opacity: 1;
    }

    .input-default:disabled, .input-default[readonly],
    .input-default + .select2:disabled,
    .input-default + .select2[readonly] {
        background-color: #e4e4e4;
        color: #989898;
        opacity: 1;
    }

select.input-default + .validate-field-icon {
    right: 25px;
}

.input-default:not(textarea) {
    height: calc(2.9285714286rem - 2px);
}

.input-radio-check {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
}

input[type=checkbox] + label,
input[type=radio] + label {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
    width: auto;
    max-width: calc(100% - 25px);
}

input[type=checkbox]:disabled + label,
input[type=radio]:disabled + label {
    color: #989898;
}

.input-icon-group {
    display: block;
    position: relative;
}

.mandatory:after {
    content: "*";
    color: red;
    font-size: 12px;
}

.inline-form-options label {
    display: block;
}

.inline-form-options .options {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
}

.grouped-fields {
    position: relative;
    width: 100%;
}

    .grouped-fields .grouped-inputs {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
    }

        .grouped-fields .grouped-inputs > .input-default,
        .grouped-fields .grouped-inputs > .select-custom-field,
        .grouped-fields .grouped-inputs > .file-custom-field {
            position: relative;
            flex: 1 1 auto;
            width: 1%;
            margin-bottom: 0;
        }

            .grouped-fields .grouped-inputs > .input-default.two-fields,
            .grouped-fields .grouped-inputs > .select-custom-field.two-fields,
            .grouped-fields .grouped-inputs > .file-custom-field.two-fields {
                flex: 0 0 50%;
            }

            .grouped-fields .grouped-inputs > .input-default:focus,
            .grouped-fields .grouped-inputs > .select-custom-field:focus,
            .grouped-fields .grouped-inputs > .file-custom-field:focus {
                z-index: 3;
            }

            .grouped-fields .grouped-inputs > .input-default + .input-default,
            .grouped-fields .grouped-inputs > .input-default + .select-custom-field,
            .grouped-fields .grouped-inputs > .input-default + .file-custom-field,
            .grouped-fields .grouped-inputs > .select-custom-field + .input-default,
            .grouped-fields .grouped-inputs > .select-custom-field + .select-custom-field,
            .grouped-fields .grouped-inputs > .select-custom-field + .file-custom-field,
            .grouped-fields .grouped-inputs > .file-custom-field + .input-default,
            .grouped-fields .grouped-inputs > .file-custom-field + .select-custom-field,
            .grouped-fields .grouped-inputs > .file-custom-field + .file-custom-field {
                margin-left: -1px;
            }

            .grouped-fields .grouped-inputs > .input-default:not(:last-child):not(:last-of-type),
            .grouped-fields .grouped-inputs > .select-custom-field:not(:last-child):not(:last-of-type),
            .grouped-fields .grouped-inputs > .input-group-block:not(:last-child):not(:last-of-type) {
                -webkit-border-top-right-radius: 0;
                -moz-border-top-right-radius: 0;
                border-top-right-radius: 0;
                -webkit-border-bottom-right-radius: 0;
                -moz-border-bottom-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .grouped-fields .grouped-inputs > .input-default:not(:last-child):not(:last-of-type) > input, .grouped-fields .grouped-inputs > .input-default:not(:last-child):not(:last-of-type) > select,
                .grouped-fields .grouped-inputs > .select-custom-field:not(:last-child):not(:last-of-type) > input,
                .grouped-fields .grouped-inputs > .select-custom-field:not(:last-child):not(:last-of-type) > select,
                .grouped-fields .grouped-inputs > .input-group-block:not(:last-child):not(:last-of-type) > input,
                .grouped-fields .grouped-inputs > .input-group-block:not(:last-child):not(:last-of-type) > select {
                    -webkit-border-top-right-radius: 0;
                    -moz-border-top-right-radius: 0;
                    border-top-right-radius: 0;
                    -webkit-border-bottom-right-radius: 0;
                    -moz-border-bottom-right-radius: 0;
                    border-bottom-right-radius: 0;
                }

            .grouped-fields .grouped-inputs > .input-default:not(:first-child):not(:last-of-type),
            .grouped-fields .grouped-inputs > .select-custom-field:not(:first-child):not(:last-of-type),
            .grouped-fields .grouped-inputs > .input-group-block:not(:first-child):not(:last-of-type) {
                -webkit-border-bottom-left-radius: 0;
                -moz-border-bottom-left-radius: 0;
                border-bottom-left-radius: 0;
                -webkit-border-top-left-radius: 0;
                -moz-border-top-left-radius: 0;
                border-top-left-radius: 0;
            }

                .grouped-fields .grouped-inputs > .input-default:not(:first-child):not(:last-of-type) > input, .grouped-fields .grouped-inputs > .input-default:not(:first-child):not(:last-of-type) > select,
                .grouped-fields .grouped-inputs > .select-custom-field:not(:first-child):not(:last-of-type) > input,
                .grouped-fields .grouped-inputs > .select-custom-field:not(:first-child):not(:last-of-type) > select,
                .grouped-fields .grouped-inputs > .input-group-block:not(:first-child):not(:last-of-type) > input,
                .grouped-fields .grouped-inputs > .input-group-block:not(:first-child):not(:last-of-type) > select {
                    -webkit-border-bottom-left-radius: 0;
                    -moz-border-bottom-left-radius: 0;
                    border-bottom-left-radius: 0;
                    -webkit-border-top-left-radius: 0;
                    -moz-border-top-left-radius: 0;
                    border-top-left-radius: 0;
                }

            .grouped-fields .grouped-inputs > .input-default:last-child, .grouped-fields .grouped-inputs > .input-default:last-of-type,
            .grouped-fields .grouped-inputs > .select-custom-field:last-child,
            .grouped-fields .grouped-inputs > .select-custom-field:last-of-type,
            .grouped-fields .grouped-inputs > .input-group-block:last-child,
            .grouped-fields .grouped-inputs > .input-group-block:last-of-type {
                -webkit-border-bottom-left-radius: 0;
                -moz-border-bottom-left-radius: 0;
                border-bottom-left-radius: 0;
                -webkit-border-top-left-radius: 0;
                -moz-border-top-left-radius: 0;
                border-top-left-radius: 0;
            }

                .grouped-fields .grouped-inputs > .input-default:last-child > input, .grouped-fields .grouped-inputs > .input-default:last-child > select, .grouped-fields .grouped-inputs > .input-default:last-of-type > input, .grouped-fields .grouped-inputs > .input-default:last-of-type > select,
                .grouped-fields .grouped-inputs > .select-custom-field:last-child > input,
                .grouped-fields .grouped-inputs > .select-custom-field:last-child > select,
                .grouped-fields .grouped-inputs > .select-custom-field:last-of-type > input,
                .grouped-fields .grouped-inputs > .select-custom-field:last-of-type > select,
                .grouped-fields .grouped-inputs > .input-group-block:last-child > input,
                .grouped-fields .grouped-inputs > .input-group-block:last-child > select,
                .grouped-fields .grouped-inputs > .input-group-block:last-of-type > input,
                .grouped-fields .grouped-inputs > .input-group-block:last-of-type > select {
                    -webkit-border-bottom-left-radius: 0;
                    -moz-border-bottom-left-radius: 0;
                    border-bottom-left-radius: 0;
                    -webkit-border-top-left-radius: 0;
                    -moz-border-top-left-radius: 0;
                    border-top-left-radius: 0;
                }

        .grouped-fields .grouped-inputs > .file-custom-field {
            display: flex;
            align-items: center;
        }

            .grouped-fields .grouped-inputs > .file-custom-field:not(:last-child) .file-custom-field-label, .grouped-fields .grouped-inputs > .file-custom-field:not(:last-child) .file-custom-field-label::before {
                -webkit-border-top-right-radius: 0;
                -moz-border-top-right-radius: 0;
                border-top-right-radius: 0;
                -webkit-border-bottom-right-radius: 0;
                -moz-border-bottom-right-radius: 0;
                border-bottom-right-radius: 0;
            }

            .grouped-fields .grouped-inputs > .file-custom-field:not(:first-child) .file-custom-field-label, .grouped-fields .grouped-inputs > .file-custom-field:not(:first-child) .file-custom-field-label::before {
                -webkit-border-bottom-left-radius: 0;
                -moz-border-bottom-left-radius: 0;
                border-bottom-left-radius: 0;
                -webkit-border-top-left-radius: 0;
                -moz-border-top-left-radius: 0;
                border-top-left-radius: 0;
            }

        .grouped-fields .grouped-inputs > .input-default:last-of-type:not(:last-child) {
            -webkit-border-bottom-left-radius: 0;
            -moz-border-bottom-left-radius: 0;
            border-bottom-left-radius: 0;
            -webkit-border-top-left-radius: 0;
            -moz-border-top-left-radius: 0;
            border-top-left-radius: 0;
            -webkit-border-top-right-radius: 4px;
            -moz-border-top-right-radius: 4px;
            border-top-right-radius: 4px;
            -webkit-border-bottom-right-radius: 4px;
            -moz-border-bottom-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .grouped-fields .grouped-inputs > .input-default:last-of-type + .validate-field-icon {
            display: block;
            z-index: 4;
        }

    .grouped-fields .grouped-labels {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
        line-height: 1.7;
        margin-bottom: 0.3571428571rem;
    }

        .grouped-fields .grouped-labels .grouped-label {
            margin-bottom: 0;
            flex: 1 1 auto;
            width: 1%;
        }

.grouped-fields-prepend,
.grouped-fields-append {
    display: flex;
}

    .grouped-fields-prepend .btn,
    .grouped-fields-append .btn {
        position: relative;
        z-index: 2;
    }

        .grouped-fields-prepend .btn + .btn,
        .grouped-fields-prepend .btn + .grouped-fields-text,
        .grouped-fields-prepend .grouped-fields-text + .grouped-fields-text,
        .grouped-fields-prepend .grouped-fields-text + .btn,
        .grouped-fields-append .btn + .btn,
        .grouped-fields-append .btn + .grouped-fields-text,
        .grouped-fields-append .grouped-fields-text + .grouped-fields-text,
        .grouped-fields-append .grouped-fields-text + .btn {
            margin-left: -1px;
        }

.grouped-fields-prepend {
    margin-right: -1px;
}

.grouped-fields-append {
    margin-left: -1px;
}

.grouped-fields-text {
    display: flex;
    align-items: center;
    padding: 0.7142857143rem 0.7142857143rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #343A40;
    text-align: center;
    white-space: nowrap;
    background-color: #FFFFFF;
    border: 1px solid #cbcbcb;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

    .grouped-fields-text input[type=radio],
    .grouped-fields-text input[type=checkbox] {
        margin-top: 0;
    }

.grouped-inputs > .grouped-fields-prepend > .btn,
.grouped-inputs > .grouped-fields-prepend > .grouped-fields-text,
.grouped-inputs > .grouped-fields-append:not(:last-child) > .btn,
.grouped-inputs > .grouped-fields-append:not(:last-child) > .grouped-fields-text,
.grouped-inputs > .grouped-fields-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.grouped-inputs > .grouped-fields-append:last-child > .grouped-fields-text:not(:last-child) {
    -webkit-border-top-right-radius: 0;
    -moz-border-top-right-radius: 0;
    border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
}

.grouped-inputs > .grouped-fields-append > .btn,
.grouped-inputs > .grouped-fields-append > .grouped-fields-text,
.grouped-inputs > .grouped-fields-prepend:not(:first-child) > .btn,
.grouped-inputs > .grouped-fields-prepend:not(:first-child) > .grouped-fields-text,
.grouped-inputs > .grouped-fields-prepend:first-child > .btn:not(:first-child),
.grouped-inputs > .grouped-fields-prepend:first-child > .grouped-fields-text:not(:first-child) {
    -webkit-border-bottom-left-radius: 0;
    -moz-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -moz-border-top-left-radius: 0;
    border-top-left-radius: 0;
}

.valid .validate-field-icon {
    display: block;
}

.invalid .validate-field-icon {
    display: block;
}

[class^=gg-],
[class*=" gg-"] {
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: "giza-glyphicons";
    src: url("../fonts/giza-glyphicons.eot?adl0cg");
    src: url("../fonts/giza-glyphicons.eot?adl0cg#iefix") format("embedded-opentype"), url("../fonts/giza-glyphicons.woff?adl0cg") format("woff"), url("../fonts/giza-glyphicons.ttf?adl0cg") format("truetype"), url("../fonts/giza-glyphicons.svg?adl0cg#giza-glyphicons") format("svg");
    font-weight: normal;
    font-style: normal;
}

.gg-phone:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-mail:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-headphones:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-moving-mail:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-angle-down:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-angle-left:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-angle-right:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-angle-up:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-eraser:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-printer:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-pencil:before {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.gg-eraser:after {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.gg-eraser:before {
    content: none;
}

.section-bordered, .section-unbordered-featured-dark, .section-unbordered-featured-light, .section-featured-dark, .section-featured-light, .section {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    background-clip: border-box;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0;
    margin-top: 0;
}

.titlebar-root {
    padding-top: 20px;
    padding-bottom: 20px;
}

.titlebar-d1 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.titlebar-d2 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.titlebar-bottom-hr.h1,
.titlebar-with-bg.h1 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.titlebar-bottom-hr.h2,
.titlebar-with-bg.h2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.titlebar-bottom-hr.h3,
.titlebar-with-bg.h3 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.titlebar-bottom-hr.h4,
.titlebar-with-bg.h4 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.titlebar-bottom-hr.h5,
.titlebar-with-bg.h5 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.titlebar-bottom-hr.h6,
.titlebar-with-bg.h6 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.titlebar-primary {
    color: #c90000;
    background-color: #ffbfbf;
}

.titlebar-secondary {
    color: black;
    background-color: #737373;
}

.titlebar-accent {
    color: #eba600;
    background-color: #fff6e1;
}

.titlebar-success {
    color: #259b40;
    background-color: #c4f1ce;
}

.titlebar-info {
    color: #1596aa;
    background-color: #beeff7;
}

.titlebar-warning {
    color: #f7b900;
    background-color: #fffaed;
}

.titlebar-danger {
    color: #da2839;
    background-color: #fef9f9;
}

.titlebar-pure-white {
    color: #f7f7f7;
    background-color: white;
}

.titlebar-light-grey {
    color: #e9e9e9;
    background-color: white;
}

.titlebar-dark-grey {
    color: #22262b;
    background-color: #97a1ab;
}

.titlebar-dark {
    color: #2d3238;
    background-color: #a4adb5;
}

.titlebar-dark {
    color: #FFFFFF;
    background-color: #343A40;
}

.titlebar-light {
    color: #343A40;
    background-color: #FFFFFF;
}

.titlebar-bottom-hr {
    color: #292E33;
    border-bottom-style: solid;
    border-bottom-color: #cbcbcb;
    border-bottom-width: 1px;
}

.titlebar-nor-bg-nor-hr {
    padding-top: 20px;
    padding-bottom: 0px;
}

.titlebar-closed:after {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.titlebar-closed:before {
    content: none;
}

.titlebar-opened:after {
    font-family: "giza-glyphicons";
    content: "";
    color: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.titlebar-opened:before {
    content: none;
}

.titlebar-opened,
.titlebar-closed {
    cursor: pointer;
    position: relative;
}

    .titlebar-opened:after,
    .titlebar-closed:after {
        font-family: "giza-glyphicons";
        display: inline-block;
        right: 15px;
        position: absolute;
    }

.container-root {
    margin-bottom: 20px;
}

.container-inset-root {
    padding-bottom: 20px;
}

.container-d1 {
    margin-bottom: 15px;
}

.container-inset-d1 {
    padding-bottom: 15px;
}

.container-d2 {
    margin-bottom: 10px;
}

.container-inset-d2 {
    padding-bottom: 10px;
}

.content-hull {
    margin-right: 15px;
    margin-left: 15px;
}

.titlebar-inset,
.content-hull-inset,
.section-inset {
    padding-right: 15px;
    padding-left: 15px;
}

.section-body-root {
    padding-top: 20px;
    padding-bottom: 20px;
}

.section-body-d1 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.section-body-d2 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.section-featured-light {
    box-sizing: border-box;
    background: #FFFFFF;
    color: #343A40;
    border: 1px solid #cbcbcb;
}

.section-featured-dark {
    box-sizing: border-box;
    background: #F1F1F1;
    color: #FFFFFF;
    border: 1px solid #cbcbcb;
}

.section-unbordered-featured-light {
    box-sizing: border-box;
    background: #FFFFFF;
    color: #343A40;
    border: 0 solid #cbcbcb;
}

.section-unbordered-featured-dark {
    box-sizing: border-box;
    background: #F1F1F1;
    color: #FFFFFF;
    border: 0 solid #cbcbcb;
}

.section-bordered {
    border: 1px solid #cbcbcb;
}

.section-rounded {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.section-hr {
    border-bottom: 1px solid #cbcbcb;
}

.hr {
    border-top: 1px solid #cbcbcb;
}

.clearfix::after {
    clear: both;
    content: "";
    display: block;
}

.scrollable-content {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

    .scrollable-content::-webkit-scrollbar {
        display: none;
    }

.color-primary {
    color: #d80000;
}

.gf-bg-color-primary {
    background-color: #d80000;
}

.color-secondary {
    color: #000000;
}

.gf-bg-color-secondary {
    background-color: #000000;
}

.color-accent {
    color: #fab100;
}

.gf-bg-color-accent {
    background-color: #fab100;
}

.color-success {
    color: #28a745;
}

.gf-bg-color-success {
    background-color: #28a745;
}

.color-info {
    color: #17a2b8;
}

.gf-bg-color-info {
    background-color: #17a2b8;
}

.color-warning {
    color: #ffc107;
}

.gf-bg-color-warning {
    background-color: #ffc107;
}

.color-danger {
    color: #dc3545;
}

.gf-bg-color-danger {
    background-color: #dc3545;
}

.color-pure-white {
    color: #FFFFFF;
}

.gf-bg-color-pure-white {
    background-color: #FFFFFF;
}

.color-light-grey {
    color: #F1F1F1;
}

.gf-bg-color-light-grey {
    background-color: #F1F1F1;
}

.color-dark-grey {
    color: #292E33;
}

.gf-bg-color-dark-grey {
    background-color: #292E33;
}

.color-dark {
    color: #343A40;
}

.gf-bg-color-dark {
    background-color: #343A40;
}

.color-default {
    color: #343A40 !important;
}

.color-transparent {
    color: transparent !important;
}

.gf-bg-color-default {
    background-color: #F1F1F1;
}

.gf-bg-none {
    background-color: transparent;
}

.display-none {
    display: none !important;
}

.display-inline {
    display: inline !important;
}

.display-inline-block {
    display: inline-block !important;
}

.display-block {
    display: block !important;
}

.display-table {
    display: table !important;
}

.display-table-row {
    display: table-row !important;
}

.display-table-cell {
    display: table-cell !important;
}

.display-flex {
    display: flex !important;
}

.display-inline-flex {
    display: inline-flex !important;
}

.display-none {
    display: none !important;
}

.display-inline {
    display: inline !important;
}

.display-inline-block {
    display: inline-block !important;
}

.display-block {
    display: block !important;
}

.display-table {
    display: table !important;
}

.display-table-row {
    display: table-row !important;
}

.display-table-cell {
    display: table-cell !important;
}

.display-flex {
    display: flex !important;
}

.display-inline-flex {
    display: inline-flex !important;
}

@media (min-width: 384px) {
    .display-xs-none {
        display: none !important;
    }

    .display-xs-inline {
        display: inline !important;
    }

    .display-xs-inline-block {
        display: inline-block !important;
    }

    .display-xs-block {
        display: block !important;
    }

    .display-xs-table {
        display: table !important;
    }

    .display-xs-table-row {
        display: table-row !important;
    }

    .display-xs-table-cell {
        display: table-cell !important;
    }

    .display-xs-flex {
        display: flex !important;
    }

    .display-xs-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 576px) {
    .display-sm-none {
        display: none !important;
    }

    .display-sm-inline {
        display: inline !important;
    }

    .display-sm-inline-block {
        display: inline-block !important;
    }

    .display-sm-block {
        display: block !important;
    }

    .display-sm-table {
        display: table !important;
    }

    .display-sm-table-row {
        display: table-row !important;
    }

    .display-sm-table-cell {
        display: table-cell !important;
    }

    .display-sm-flex {
        display: flex !important;
    }

    .display-sm-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .display-md-none {
        display: none !important;
    }

    .display-md-inline {
        display: inline !important;
    }

    .display-md-inline-block {
        display: inline-block !important;
    }

    .display-md-block {
        display: block !important;
    }

    .display-md-table {
        display: table !important;
    }

    .display-md-table-row {
        display: table-row !important;
    }

    .display-md-table-cell {
        display: table-cell !important;
    }

    .display-md-flex {
        display: flex !important;
    }

    .display-md-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .display-lg-none {
        display: none !important;
    }

    .display-lg-inline {
        display: inline !important;
    }

    .display-lg-inline-block {
        display: inline-block !important;
    }

    .display-lg-block {
        display: block !important;
    }

    .display-lg-table {
        display: table !important;
    }

    .display-lg-table-row {
        display: table-row !important;
    }

    .display-lg-table-cell {
        display: table-cell !important;
    }

    .display-lg-flex {
        display: flex !important;
    }

    .display-lg-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .display-xl-none {
        display: none !important;
    }

    .display-xl-inline {
        display: inline !important;
    }

    .display-xl-inline-block {
        display: inline-block !important;
    }

    .display-xl-block {
        display: block !important;
    }

    .display-xl-table {
        display: table !important;
    }

    .display-xl-table-row {
        display: table-row !important;
    }

    .display-xl-table-cell {
        display: table-cell !important;
    }

    .display-xl-flex {
        display: flex !important;
    }

    .display-xl-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 1360px) {
    .display-xxl-none {
        display: none !important;
    }

    .display-xxl-inline {
        display: inline !important;
    }

    .display-xxl-inline-block {
        display: inline-block !important;
    }

    .display-xxl-block {
        display: block !important;
    }

    .display-xxl-table {
        display: table !important;
    }

    .display-xxl-table-row {
        display: table-row !important;
    }

    .display-xxl-table-cell {
        display: table-cell !important;
    }

    .display-xxl-flex {
        display: flex !important;
    }

    .display-xxl-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 1680px) {
    .display-xxxl-none {
        display: none !important;
    }

    .display-xxxl-inline {
        display: inline !important;
    }

    .display-xxxl-inline-block {
        display: inline-block !important;
    }

    .display-xxxl-block {
        display: block !important;
    }

    .display-xxxl-table {
        display: table !important;
    }

    .display-xxxl-table-row {
        display: table-row !important;
    }

    .display-xxxl-table-cell {
        display: table-cell !important;
    }

    .display-xxxl-flex {
        display: flex !important;
    }

    .display-xxxl-inline-flex {
        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: flex !important;
    }

    .d-print-inline-flex {
        display: inline-flex !important;
    }
}

.flex-row {
    -moz-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -moz-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -moz-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -moz-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -moz-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -moz-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -moz-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -moz-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    -moz-flex-grow: 0 !important;
    -ms-flex-grow: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    -moz-flex-grow: 1 !important;
    -ms-flex-grow: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    -moz-flex-shrink: 0 !important;
    -ms-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    -moz-flex-shrink: 1 !important;
    -ms-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -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 {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -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: 384px) {
    .flex-xs-row {
        -moz-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xs-column {
        -moz-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xs-row-reverse {
        -moz-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xs-column-reverse {
        -moz-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xs-wrap {
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xs-nowrap {
        -moz-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xs-wrap-reverse {
        -moz-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xs-fill {
        -moz-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xs-grow-0 {
        -ms-flex-positive: 0 !important;
        -moz-flex-grow: 0 !important;
        -ms-flex-grow: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xs-grow-1 {
        -ms-flex-positive: 1 !important;
        -moz-flex-grow: 1 !important;
        -ms-flex-grow: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xs-shrink-0 {
        -ms-flex-negative: 0 !important;
        -moz-flex-shrink: 0 !important;
        -ms-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xs-shrink-1 {
        -ms-flex-negative: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-shrink: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xs-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xs-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xs-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xs-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xs-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xs-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xs-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xs-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xs-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xs-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xs-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xs-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xs-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xs-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xs-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xs-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xs-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xs-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xs-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xs-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xs-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xs-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 576px) {
    .flex-sm-row {
        -moz-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -moz-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -moz-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -moz-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -moz-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -moz-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        -moz-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        -moz-flex-grow: 0 !important;
        -ms-flex-grow: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        -moz-flex-grow: 1 !important;
        -ms-flex-grow: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        -moz-flex-shrink: 0 !important;
        -ms-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-shrink: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -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 {
        -moz-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -moz-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -moz-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -moz-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -moz-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -moz-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        -moz-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        -moz-flex-grow: 0 !important;
        -ms-flex-grow: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        -moz-flex-grow: 1 !important;
        -ms-flex-grow: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        -moz-flex-shrink: 0 !important;
        -ms-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-shrink: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -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 {
        -moz-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -moz-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -moz-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -moz-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -moz-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -moz-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        -moz-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        -moz-flex-grow: 0 !important;
        -ms-flex-grow: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        -moz-flex-grow: 1 !important;
        -ms-flex-grow: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        -moz-flex-shrink: 0 !important;
        -ms-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-shrink: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -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 {
        -moz-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -moz-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -moz-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -moz-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -moz-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -moz-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        -moz-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        -moz-flex-grow: 0 !important;
        -ms-flex-grow: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        -moz-flex-grow: 1 !important;
        -ms-flex-grow: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        -moz-flex-shrink: 0 !important;
        -ms-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-shrink: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -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;
    }
}

@media (min-width: 1360px) {
    .flex-xxl-row {
        -moz-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xxl-column {
        -moz-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xxl-row-reverse {
        -moz-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xxl-column-reverse {
        -moz-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xxl-wrap {
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xxl-nowrap {
        -moz-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xxl-wrap-reverse {
        -moz-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xxl-fill {
        -moz-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xxl-grow-0 {
        -ms-flex-positive: 0 !important;
        -moz-flex-grow: 0 !important;
        -ms-flex-grow: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xxl-grow-1 {
        -ms-flex-positive: 1 !important;
        -moz-flex-grow: 1 !important;
        -ms-flex-grow: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xxl-shrink-0 {
        -ms-flex-negative: 0 !important;
        -moz-flex-shrink: 0 !important;
        -ms-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xxl-shrink-1 {
        -ms-flex-negative: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-shrink: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xxl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xxl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xxl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xxl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xxl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xxl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xxl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xxl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xxl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xxl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xxl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xxl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xxl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xxl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

@media (min-width: 1680px) {
    .flex-xxxl-row {
        -moz-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xxxl-column {
        -moz-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xxxl-row-reverse {
        -moz-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xxxl-column-reverse {
        -moz-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xxxl-wrap {
        -moz-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xxxl-nowrap {
        -moz-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xxxl-wrap-reverse {
        -moz-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xxxl-fill {
        -moz-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xxxl-grow-0 {
        -ms-flex-positive: 0 !important;
        -moz-flex-grow: 0 !important;
        -ms-flex-grow: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xxxl-grow-1 {
        -ms-flex-positive: 1 !important;
        -moz-flex-grow: 1 !important;
        -ms-flex-grow: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xxxl-shrink-0 {
        -ms-flex-negative: 0 !important;
        -moz-flex-shrink: 0 !important;
        -ms-flex-shrink: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xxxl-shrink-1 {
        -ms-flex-negative: 1 !important;
        -moz-flex-shrink: 1 !important;
        -ms-flex-shrink: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xxxl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xxxl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xxxl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xxxl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xxxl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xxxl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xxxl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xxxl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xxxl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xxxl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xxxl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xxxl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xxxl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xxxl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xxxl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xxxl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xxxl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xxxl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xxxl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xxxl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xxxl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xxxl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}

.text-justify {
    text-align: justify !important;
}

.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: 384px) {
    .text-xs-left {
        text-align: left !important;
    }

    .text-xs-right {
        text-align: right !important;
    }

    .text-xs-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;
    }
}

@media (min-width: 1360px) {
    .text-xxl-left {
        text-align: left !important;
    }

    .text-xxl-right {
        text-align: right !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }
}

@media (min-width: 1680px) {
    .text-xxxl-left {
        text-align: left !important;
    }

    .text-xxxl-right {
        text-align: right !important;
    }

    .text-xxxl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 200 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-medium-bold {
    font-weight: 500 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #FFFFFF !important;
}

.text-muted {
    color: #989898 !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

/*
  Login component
 */
.login-page {
    background: #f1f1f1;
}

.page-login #template_header,
.page-login #template_header #template_header_logo {
    height: 52px;
    line-height: 55px;
}

#template_header, body.page-login #template_header + main {
    width: 100% !important;
}

.container-fluid.login-container,
#template_header .template_header_content {
    width: 90%;
}

.login-container {
    font-family: "Roboto","Open Sans",sans-serif;
    align-items: center;
    height: 78vh;
    justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

    .login-container .login-box {
        background-color: #FFFFFF;
        color: #949494;
        justify-content: center;
        min-height: 85%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        order: 1;
    }

@media screen and (max-width: 670px) {
    .login-container .login-box {
        min-height: 40%;
        order: 2;
    }
}

.login-container .login-image {
    background-color: #F8F9FA;
    background-image: url("./../images/login_bg.svg");
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85%;
    order: 2;
}

@media screen and (max-width: 670px) {
    .login-container .login-image {
        background-size: 45%;
        min-height: 15%;
        order: 1;
        display: none;
    }
}

@media screen and (max-width: 670px) and (orientation: landscape) {
    .login-container .login-image {
        display: none;
    }
}

@media screen and (max-width: 670px) {
    .login-container {
        align-items: initial;
        height: 80vh;
        margin-top: 15px;
    }
}

.login-box {
    color: #949494;
}

    .login-box .login {
        align-items: center;
        -moz-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        flex-grow: 1;
        justify-content: start;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

        .login-box .login a {
            color: #7e7e7e;
        }

            .login-box .login a:hover {
                color: #d80000;
            }

    .login-box .login-title {
        margin-top: 80px;
        margin-bottom: 60px;
        color: #949494;
        font-size: 28px;
        line-height: 38px;
        text-align: center;
    }

@media screen and (max-width: 670px) {
    .login-box .login-title {
        font-size: 22px;
        line-height: 28px;
    }
}

.login-box .login-fields {
    width: 300px;
}

.login-box .login-fields-big {
    width: 400px;
}

@media screen and (max-width: 420px) {
    .login-box .login-fields-big {
        width: initial;
    }
}

@media screen and (max-width: 320px) {
    .login-box .login-fields {
        width: initial;
    }
}

.login-buttons-center {
    display: block;
}
    .login-buttons-center > a {
        order: 1;
    }

    .login-buttons-center {
        order: 2;
    }

.login-pass-recovery {
    float: left;
    cursor: pointer;
    background: none !important;
    border: none;
    padding: 0 !important;
    font-size: 0.8571rem;
    font-weight: normal;
    color: #949494;
}

    .login-pass-recovery:hover {
        color: #b50000;
    }

    .login-button {
        float: right
    }

.login-box .login-buttons {
    display: block;
    text-align: right;
}

    .login-box .login-buttons > a {
        order: 1;
    }

    .login-box .login-buttons button {
        order: 2;
    }

@media screen and (max-width: 380px) {
    .login-box .login-buttons {
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .login-box .login-buttons > a {
            order: 2;
        }

        .login-box .login-buttons button {
            order: 1;
            margin-bottom: 20px;
        }
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #CBCBCB;
}

.separator:not(:empty)::before {
    margin-right: .25em;
}

.separator:not(:empty)::after {
    margin-left: .25em;
}

.LoginGoogle {
    width: 100%;
    color: #7E8C93;
    border: 1px solid #D3D3D3;
    padding: 8px 12px;
    height: 41px;
    margin-top: 20px;
    border-radius: 2px;
    background-color: white;
    border-radius: 4px;
    text-decoration: none !important;
    display: block;
}
.LoginGoogle:hover {
    border-color: rgba(23, 162, 184, 0.5);
    box-shadow: 0 0 0.5rem rgba(18, 130, 148, 0.55);
    outline: none;
}

.iconGoogle {
    padding-right: 25px;
    height: 25px;
}

.AD-text {
    font-size: 15px;
    color: #5E5E5E;
    vertical-align: -10%;
    font-weight: 500;
}

.qrcode-container {
    display: flex;
    justify-content: center;
    text-align: center;
}

#qrcode {
    width: 150px;
    height: 150px;
    margin: 0px 0px 20px 0px;
}

/*# sourceMappingURL=login.css.map */
