.was-validated .form-control:valid,
.was-validated .form-control:invalid {
    background-image: none;
}
.invalid-feedback {
    font-size: 10px;
}

.form-control::-webkit-file-upload-button {
    height: 36px;
}

body {
    font-family: 'Roboto', sans-serif;
}

i.material-icons {
    vertical-align: bottom;
}

.login-button i.material-icons {
    vertical-align: middle;
}

@keyframes roll {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
# ELEMENTS BASE
========================================================================== */
/**
* Description:
  Custom settings for base elements
*/

html,
body {
    height: 100%;
}

html {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    overflow-x: hidden;
    color: #424242;
    background-color: #ececec;
}

figure {
    margin: 0;
}

hr {
    border: 0;
    border-top: 1px solid rgba(64, 68, 71, 0.2);
    margin: 1em 0;
}

.disabled,
*:disabled,
[disabled] {
    cursor: default;
    opacity: 0.5;
    pointer-events: none;
}

input,
select {
    height: 30px;
    padding: 6px 8px;
    box-sizing: border-box;
    border-radius: 2px;
    background: #f6f8fb;
    border: 1px solid #c1c9d7;
    width: 100%;
    font-size: 12px;
}

input:focus,
input[type='file']:focus,
textarea:focus,
select:focus {
    outline: none;
}

input[type='text'],
input[type='number'] {
    font-size: 12px;
}

input[type='checkbox'] {
    width: 16px;
    height: 16px;
}

label {
    font-weight: 600;
    font-size: 11px;
    line-height: 16px;
    color: #353f52;
}

/* This is to remove the arrow of select element in IE */
select::-ms-expand {
    display: none;
}

select {
    cursor: pointer;
}

button {
    border: none;
    cursor: pointer;
}

caption {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #9e9e9e;
    text-align: left;
}

button {
    -webkit-appearance: button;
    outline: none;
    border: none;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    margin-bottom: 8px;
}

.logo img {
    width: 140px;
    height: 14.12px;
    margin: 8px 10px;
}

.logo span {
    font-size: 16px;
    color: #212121;
    border-left: 1px solid #bdbdbd;
    float: left;
    line-height: 24px;
    margin: 8px 10px;
    padding-left: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #212121;
}

h1,
.h1 {
    font-size: 22px;
}

h2,
.h2 {
    font-size: 18px;
}

h3,
.h3 {
    font-size: 16px;
}

h4,
.h4,
.lead {
    font-size: 14px;
}

h5,
.h5 {
    font-size: 12px;
}

h6,
.h6 {
    font-size: 11px;
}

p {
    font-size: 13px;
}

/*.auth-container {
    height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ebeff7;
}
.row {
    width: auto;
}*/

/* ==========================================================================
# CARD
========================================================================== */
/**
* Description:
  Contain app-header content and actions in a single component.
  Custom version of Bootstrap panel or Material Card.
  Card app-header and content content can be used in side-panel ect
*/

.c-card {
    display: flex;
    flex-direction: column;
    border-radius: 2px 2px 4px 4px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    overflow: auto;
}

.c-card__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
}

.c-card__actions button {
    margin-left: 4px;
}

.c-card__header {
    display: flex;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 16px;
    align-items: center;
    color: #212121;
    border-bottom: 1px solid #e0e0e0;
    top: 0;
    z-index: 1;
    background-color: #fff;
}

.c-card__header.info {
    background-color: #1976d2;
    color: #fff;
}

.c-card__header.success {
    background-color: #388e3c;
    color: #fff;
}

.c-card__header.warning {
    background-color: #ff6f00;
    color: #fff;
}

.c-card__header.error {
    background-color: #d32f2f;
    color: #fff;
}

.c-card__header .c-card__title {
    line-height: 48px;
    align-items: center;
    display: flex;
}

.c-card__header .c-card__title i {
    margin-right: 4px;
}

.c-card__header--sm {
    min-height: 40px;
}

.c-card__content {
    background-color: transparent;
    padding: 16px;
    flex-grow: 1;
    background-color: #fff;
}

.c-card__no-padding {
    padding: 0;
}

.c-card__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px;
    border-top: 1px solid #e0e0e0;
    background-color: #fff;
}

.c-card__footer button:not(last-of-type) {
    margin-left: 8px;
}

/* ==========================================================================
# BUTTON
========================================================================== */
/**
* Description: Action buttons
*/

.c-btn {
    display: inline-block;
    padding: 0 8px;
    border-radius: 2px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    line-height: 28px;
    transition: background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
        color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    will-change: background-color, color;
    font-weight: 600;
    text-decoration: none !important;
    position: relative;
}

.c-btn i {
    height: 16px;
    width: 16px;
    font-size: 15px;
}

.c-btn.lg {
    line-height: 32px;
    padding: 0 16px;
}

.c-btn.md {
    line-height: 28px;
    padding: 0 8px;
}

.c-btn.sm {
    line-height: 24px;
}

.c-btn--primary {
    background-color: #1976d2;
    color: #fff;
}

.c-btn--primary:hover {
    background-color: #176cc0;
    color: #fff;
}

.c-btn--primary:focus {
    background-color: #0d47a1;
}

.c-btn--secondary {
    background-color: #ebeff7;
    color: #212121;
}

.c-btn--secondary:hover {
    background-color: #dce3f1;
    color: #212121;
}

.c-btn--secondary:focus {
    background-color: #c5d1e7;
    color: #212121;
}

.c-btn--critical {
    background-color: #d32f2f;
    color: #212121;
}

.c-btn--critical:hover,
.c-btn--critical:focus {
    background-color: #c42929;
    color: #212121;
}

.c-btn--critical:focus {
    background-color: #b32626;
    color: #212121;
}

.c-btn-text,
.c-btn-text--primary,
.c-btn-text--secondary,
.c-btn-text--critical {
    background-color: transparent;
    display: inline-block;
    padding: 0 8px;
    border-radius: 2px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    line-height: 28px;
    transition: background-color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955),
        color 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    text-decoration: none !important;
}

.c-btn-text:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.c-btn-text:hover,
c-btn-text--primary:hover,
.c-btn-text--secondary:hover,
.c-btn-text--critical:hover {
    text-decoration: none;
}

.c-btn-text i,
.c-btn-text--primary i,
.c-btn-text--secondary i,
.c-btn-text--critical i {
    height: 16px;
    width: 16px;
    font-size: 15px;
}

.c-btn-text.lg,
.lg.c-btn-text--primary,
.lg.c-btn-text--secondary,
.lg.c-btn-text--critical {
    line-height: 32px;
}

.c-btn-text.md,
.md.c-btn-text--primary,
.md.c-btn-text--secondary,
.md.c-btn-text--critical {
    line-height: 28px;
}

.c-btn-text.sm,
.sm.c-btn-text--primary,
.sm.c-btn-text--secondary,
.sm.c-btn-text--critical {
    line-height: 24px;
}

.c-btn-text--primary {
    color: #1976d2;
}

.c-btn-text--primary:hover {
    color: #1562ae;
    background-color: #e8edf5;
}

.c-btn-text--primary:focus {
    color: #0d47a1;
    background-color: #e2e8f3;
}

.c-btn-text--secondary {
    color: #212121;
}

.c-btn-text--secondary:hover {
    color: #171717;
    background-color: #e8edf5;
}

.c-btn-text--secondary:focus {
    background-color: #e2e8f3;
}

.c-btn-text--critical {
    color: #d32f2f;
}

.c-btn-text--critical:hover {
    color: #f6f8fb;
    background-color: #ffcdd2;
}

.c-btn-text--critical:focus {
    background-color: #ffa4ad;
}

.c-btn .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
}

.c-btn .progress-bar {
    height: 3px;
}

/* ==========================================================================
# Message box
========================================================================== */

.c-message,
.c-message--default,
.c-message--default-info,
.c-message--info,
.c-message--success,
.c-message--warning,
.c-message--error {
    border-radius: 2px;
    padding: 16px;
    border-left: 4px solid #9e9e9e;
    background-color: #ebeff7;
    color: #212121;
    margin-bottom: 16px;
}

.c-message--default {
    background-color: #ebeff7;
    border-left-color: #9e9e9e;
}

.c-message--default-info {
    background-color: #ebeff7;
    border-left-color: #1976d2;
}

.c-message--default-info i {
    color: #1976d2;
}

.c-message--info {
    background-color: #bbdefb;
    border-left-color: #1976d2;
}

.c-message--info i {
    color: #1976d2;
}

.c-message--success {
    background-color: #c8e6c9;
    border-left-color: #388e3c;
}

.c-message--success i {
    color: #388e3c;
}

.c-message--warning {
    background-color: #ffe082;
    border-left-color: #ff6f00;
}

.c-message--warning i {
    color: #ff6f00;
}

.c-message--error {
    background-color: #ffcdd2;
    border-left-color: #d32f2f;
}

.c-message--error i {
    color: #d32f2f;
}

.c-message__title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.c-message__title i {
    margin: 0 4px 2px 0;
    font-size: 16px;
}

.c-message__content {
    font-size: 12px;
}

.c-message__link {
    text-decoration: underline;
}

.c-message__space {
    display: block;
}

.c-message i {
    margin-bottom: 4px;
}

/* ==========================================================================
# FORMS
========================================================================== */
/**
* Description:
  Form group & field wrapper styles
*/

.c-form-group,
.c-form-field,
.c-form__field {
    position: relative;
}

.c-form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}
.c-form-group mat-button-toggle {
    align-self: flex-start;
}

.c-form__input-group {
    display: flex;
    align-content: center;
}
.c-form__input-group .c-form__input {
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
}
.c-form__input-group button,
.c-form__input-group .mat-bar-button {
    border-radius: 0 2px 2px 0;
    min-height: 32px;
}

.c-form__slider-group {
    display: flex;
    align-content: center;
    margin-bottom: 8px;
}
.c-form__slider-group .c-form__input {
    max-width: 80px;
    margin-left: 8px;
}

.c-form__label {
    font-weight: 500;
    font-size: 11px;
    color: #121212;
    margin: 0 0 4px 0;
    white-space: nowrap;
}

.c-form__required:after {
    color: #ef5350;
    content: ' *';
}

.c-form__input,
.c-form__select {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 36px;
    border: 1px solid #9e9e9e;
    background-color: #fff;
    color: #121212;
    font-size: 12px;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.c-form__input::placeholder,
.c-form__select::placeholder {
    color: #424242;
}
.c-form__input:disabled,
.c-form__input[readonly],
.c-form__input[disabled='true'],
.c-form__select:disabled,
.c-form__select[readonly],
.c-form__select[disabled='true'] {
    background-color: #f6f8fb;
    color: #9e9e9e;
    border: none;
    opacity: 1;
    user-focus: none;
    pointer-events: none;
    cursor: not-allowed;
}
.c-form__input::-ms-expand,
.c-form__select::-ms-expand {
    background-color: transparent;
    border: 0;
}
.c-form__input input,
.c-form__select input {
    border: none;
    background-color: #fff;
}
.has-error .c-form__input,
.has-error .c-form__select {
    border-color: #ef5350 !important;
}
.has-error .c-form__input:focus,
.has-error .c-form__select:focus {
    border-color: #ef5350;
}
.c-form__input:focus,
.c-form__input.focus,
.c-form__input:focus-within,
.c-form__select:focus,
.c-form__select.focus,
.c-form__select:focus-within {
    border-color: #0052cc;
}

.c-form__dropdown {
    -webkit-appearance: menulist !important;
}

.c-form__icon {
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 16px !important;
    user-select: none;
    color: #9e9e9e;
    pointer-events: none;
}

.form-error-message,
.c-form__error-message {
    display: inherit;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 8px;
    color: #d32f2f;
}

.c-form__warning-message {
    display: inherit;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 8px;
    color: #ff6f00;
}

.c-form__desc,
.c-form__hint {
    display: inherit;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 8px;
    color: #424242;
}

/* ==========================================================================
# LOGIN BUTTON
========================================================================== */

.login-button {
    position: relative;
}

.button-loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background-color: #cfd8ea;
    position: relative;
}

.button-loading-bar:after {
    display: block;
    content: '';
    width: 0;
    height: 4px;
    background-color: #0052cc;
    -webkit-animation: button-loading-bar 2s linear infinite;
    -o-animation: button-loading-bar 2s linear infinite;
    animation: button-loading-bar 2s linear infinite;
}

@-webkit-keyframes button-loading-bar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes button-loading-bar {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* ==========================================================================
# DIVIDER
========================================================================== */

.c-divider,
.c-divider--line,
.c-divider--arrow .c-divider:after {
    height: 16px;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 16px;
}

.c-divider--arrow .c-divider--line:after,
.c-divider--arrow .c-divider:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1px 1px 0 1px;
    border-color: #e0e0e0 transparent transparent transparent;
}

/* ==========================================================================
# UTILS
========================================================================== */

.u-bg--primary {
    background-color: #0052cc;
}

.u-bg--white {
    background-color: #ffffff;
}

.u-bg--surface1 {
    background-color: #f6f8fb;
}

.u-bg--surface2 {
    background-color: #ebeff7;
}

.u-bg--surface3 {
    background-color: #e2e8f3;
}

.u-bg--surface4 {
    background-color: #dae2ef;
}

.u-bg--surface5 {
    background-color: #cfd8ea;
}

.u-bg--disabled {
    background-color: #e0e0e0;
}

.u-bg--normal {
    background-color: #388e3c;
}

.u-bg--success {
    background-color: #388e3c;
}

.u-bg--abnormal {
    background-color: #ff6f00;
}

.u-bg--warning {
    background-color: #ff6f00;
}

.u-bg--alert {
    background-color: #d32f2f;
}

.u-bg--critical {
    background-color: #d32f2f;
}

.u-bg--critical-light {
    background-color: #d32f2f;
}

.u-bg--unmanaged {
    background-color: #1976d2;
}

.u-bg--selected {
    background-color: #1976d2;
}

.u-mt--0 {
    margin-top: 0px !important;
}

.mt--0 {
    margin-top: 0px !important;
}

.u-pt--0 {
    padding-top: 0px !important;
}

.pt--0 {
    padding-top: 0px !important;
}

.u-mb--0 {
    margin-bottom: 0px !important;
}

.mb--0 {
    margin-bottom: 0px !important;
}

.u-pb--0 {
    padding-bottom: 0px !important;
}

.pb--0 {
    padding-bottom: 0px !important;
}

.u-ml--0 {
    margin-left: 0px !important;
}

.ml--0 {
    margin-left: 0px !important;
}

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

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

.u-mr--0 {
    margin-right: 0px !important;
}

.mr--0 {
    margin-right: 0px !important;
}

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

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

.u-mt--4 {
    margin-top: 4px !important;
}

.mt--4 {
    margin-top: 4px !important;
}

.u-pt--4 {
    padding-top: 4px !important;
}

.pt--4 {
    padding-top: 4px !important;
}

.u-mb--4 {
    margin-bottom: 4px !important;
}

.mb--4 {
    margin-bottom: 4px !important;
}

.u-pb--4 {
    padding-bottom: 4px !important;
}

.pb--4 {
    padding-bottom: 4px !important;
}

.u-ml--4 {
    margin-left: 4px !important;
}

.ml--4 {
    margin-left: 4px !important;
}

.u-pl--4 {
    padding-left: 4px !important;
}

.pl--4 {
    padding-left: 4px !important;
}

.u-mr--4 {
    margin-right: 4px !important;
}

.mr--4 {
    margin-right: 4px !important;
}

.u-pr--4 {
    padding-right: 4px !important;
}

.pr--4 {
    padding-right: 4px !important;
}

.u-mt--8 {
    margin-top: 8px !important;
}

.mt--8 {
    margin-top: 8px !important;
}

.u-pt--8 {
    padding-top: 8px !important;
}

.pt--8 {
    padding-top: 8px !important;
}

.u-mb--8 {
    margin-bottom: 8px !important;
}

.mb--8 {
    margin-bottom: 8px !important;
}

.u-pb--8 {
    padding-bottom: 8px !important;
}

.pb--8 {
    padding-bottom: 8px !important;
}

.u-ml--8 {
    margin-left: 8px !important;
}

.ml--8 {
    margin-left: 8px !important;
}

.u-pl--8 {
    padding-left: 8px !important;
}

.pl--8 {
    padding-left: 8px !important;
}

.u-mr--8 {
    margin-right: 8px !important;
}

.mr--8 {
    margin-right: 8px !important;
}

.u-pr--8 {
    padding-right: 8px !important;
}

.pr--8 {
    padding-right: 8px !important;
}

.u-mt--12 {
    margin-top: 12px !important;
}

.mt--12 {
    margin-top: 12px !important;
}

.u-pt--12 {
    padding-top: 12px !important;
}

.pt--12 {
    padding-top: 12px !important;
}

.u-mb--12 {
    margin-bottom: 12px !important;
}

.mb--12 {
    margin-bottom: 12px !important;
}

.u-pb--12 {
    padding-bottom: 12px !important;
}

.pb--12 {
    padding-bottom: 12px !important;
}

.u-ml--12 {
    margin-left: 12px !important;
}

.ml--12 {
    margin-left: 12px !important;
}

.u-pl--12 {
    padding-left: 12px !important;
}

.pl--12 {
    padding-left: 12px !important;
}

.u-mr--12 {
    margin-right: 12px !important;
}

.mr--12 {
    margin-right: 12px !important;
}

.u-pr--12 {
    padding-right: 12px !important;
}

.pr--12 {
    padding-right: 12px !important;
}

.u-mt--16 {
    margin-top: 16px !important;
}

.mt--16 {
    margin-top: 16px !important;
}

.u-pt--16 {
    padding-top: 16px !important;
}

.pt--16 {
    padding-top: 16px !important;
}

.u-mb--16 {
    margin-bottom: 16px !important;
}

.mb--16 {
    margin-bottom: 16px !important;
}

.u-pb--16 {
    padding-bottom: 16px !important;
}

.pb--16 {
    padding-bottom: 16px !important;
}

.u-ml--16 {
    margin-left: 16px !important;
}

.ml--16 {
    margin-left: 16px !important;
}

.u-pl--16 {
    padding-left: 16px !important;
}

.pl--16 {
    padding-left: 16px !important;
}

.u-mr--16 {
    margin-right: 16px !important;
}

.mr--16 {
    margin-right: 16px !important;
}

.u-pr--16 {
    padding-right: 16px !important;
}

.pr--16 {
    padding-right: 16px !important;
}

.u-mt--20 {
    margin-top: 20px !important;
}

.mt--20 {
    margin-top: 20px !important;
}

.u-pt--20 {
    padding-top: 20px !important;
}

.pt--20 {
    padding-top: 20px !important;
}

.u-mb--20 {
    margin-bottom: 20px !important;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.u-pb--20 {
    padding-bottom: 20px !important;
}

.pb--20 {
    padding-bottom: 20px !important;
}

.u-ml--20 {
    margin-left: 20px !important;
}

.ml--20 {
    margin-left: 20px !important;
}

.u-pl--20 {
    padding-left: 20px !important;
}

.pl--20 {
    padding-left: 20px !important;
}

.u-mr--20 {
    margin-right: 20px !important;
}

.mr--20 {
    margin-right: 20px !important;
}

.u-pr--20 {
    padding-right: 20px !important;
}

.pr--20 {
    padding-right: 20px !important;
}

.u-mt--24 {
    margin-top: 24px !important;
}

.mt--24 {
    margin-top: 24px !important;
}

.u-pt--24 {
    padding-top: 24px !important;
}

.pt--24 {
    padding-top: 24px !important;
}

.u-mb--24 {
    margin-bottom: 24px !important;
}

.mb--24 {
    margin-bottom: 24px !important;
}

.u-pb--24 {
    padding-bottom: 24px !important;
}

.pb--24 {
    padding-bottom: 24px !important;
}

.u-ml--24 {
    margin-left: 24px !important;
}

.ml--24 {
    margin-left: 24px !important;
}

.u-pl--24 {
    padding-left: 24px !important;
}

.pl--24 {
    padding-left: 24px !important;
}

.u-mr--24 {
    margin-right: 24px !important;
}

.mr--24 {
    margin-right: 24px !important;
}

.u-pr--24 {
    padding-right: 24px !important;
}

.pr--24 {
    padding-right: 24px !important;
}

.u-mt--32 {
    margin-top: 32px !important;
}

.mt--32 {
    margin-top: 32px !important;
}

.u-pt--32 {
    padding-top: 32px !important;
}

.pt--32 {
    padding-top: 32px !important;
}

.u-mb--32 {
    margin-bottom: 32px !important;
}

.mb--32 {
    margin-bottom: 32px !important;
}

.u-pb--32 {
    padding-bottom: 32px !important;
}

.pb--32 {
    padding-bottom: 32px !important;
}

.u-ml--32 {
    margin-left: 32px !important;
}

.ml--32 {
    margin-left: 32px !important;
}

.u-pl--32 {
    padding-left: 32px !important;
}

.pl--32 {
    padding-left: 32px !important;
}

.u-mr--32 {
    margin-right: 32px !important;
}

.mr--32 {
    margin-right: 32px !important;
}

.u-pr--32 {
    padding-right: 32px !important;
}

.pr--32 {
    padding-right: 32px !important;
}

.u-mt--40 {
    margin-top: 40px !important;
}

.mt--40 {
    margin-top: 40px !important;
}

.u-pt--40 {
    padding-top: 40px !important;
}

.pt--40 {
    padding-top: 40px !important;
}

.u-mb--40 {
    margin-bottom: 40px !important;
}

.mb--40 {
    margin-bottom: 40px !important;
}

.u-pb--40 {
    padding-bottom: 40px !important;
}

.pb--40 {
    padding-bottom: 40px !important;
}

.u-ml--40 {
    margin-left: 40px !important;
}

.ml--40 {
    margin-left: 40px !important;
}

.u-pl--40 {
    padding-left: 40px !important;
}

.pl--40 {
    padding-left: 40px !important;
}

.u-mr--40 {
    margin-right: 40px !important;
}

.mr--40 {
    margin-right: 40px !important;
}

.u-pr--40 {
    padding-right: 40px !important;
}

.pr--40 {
    padding-right: 40px !important;
}

.u-mt--48 {
    margin-top: 48px !important;
}

.mt--48 {
    margin-top: 48px !important;
}

.u-pt--48 {
    padding-top: 48px !important;
}

.pt--48 {
    padding-top: 48px !important;
}

.u-mb--48 {
    margin-bottom: 48px !important;
}

.mb--48 {
    margin-bottom: 48px !important;
}

.u-pb--48 {
    padding-bottom: 48px !important;
}

.pb--48 {
    padding-bottom: 48px !important;
}

.u-ml--48 {
    margin-left: 48px !important;
}

.ml--48 {
    margin-left: 48px !important;
}

.u-pl--48 {
    padding-left: 48px !important;
}

.pl--48 {
    padding-left: 48px !important;
}

.u-mr--48 {
    margin-right: 48px !important;
}

.mr--48 {
    margin-right: 48px !important;
}

.u-pr--48 {
    padding-right: 48px !important;
}

.pr--48 {
    padding-right: 48px !important;
}

.u-mt--64 {
    margin-top: 64px !important;
}

.mt--64 {
    margin-top: 64px !important;
}

.u-pt--64 {
    padding-top: 64px !important;
}

.pt--64 {
    padding-top: 64px !important;
}

.u-mb--64 {
    margin-bottom: 64px !important;
}

.mb--64 {
    margin-bottom: 64px !important;
}

.u-pb--64 {
    padding-bottom: 64px !important;
}

.pb--64 {
    padding-bottom: 64px !important;
}

.u-ml--64 {
    margin-left: 64px !important;
}

.ml--64 {
    margin-left: 64px !important;
}

.u-pl--64 {
    padding-left: 64px !important;
}

.pl--64 {
    padding-left: 64px !important;
}

.u-mr--64 {
    margin-right: 64px !important;
}

.mr--64 {
    margin-right: 64px !important;
}

.u-pr--64 {
    padding-right: 64px !important;
}

.pr--64 {
    padding-right: 64px !important;
}

.u-mt--72 {
    margin-top: 72px !important;
}

.mt--72 {
    margin-top: 72px !important;
}

.u-pt--72 {
    padding-top: 72px !important;
}

.pt--72 {
    padding-top: 72px !important;
}

.u-mb--72 {
    margin-bottom: 72px !important;
}

.mb--72 {
    margin-bottom: 72px !important;
}

.u-pb--72 {
    padding-bottom: 72px !important;
}

.pb--72 {
    padding-bottom: 72px !important;
}

.u-ml--72 {
    margin-left: 72px !important;
}

.ml--72 {
    margin-left: 72px !important;
}

.u-pl--72 {
    padding-left: 72px !important;
}

.pl--72 {
    padding-left: 72px !important;
}

.u-mr--72 {
    margin-right: 72px !important;
}

.mr--72 {
    margin-right: 72px !important;
}

.u-pr--72 {
    padding-right: 72px !important;
}

.pr--72 {
    padding-right: 72px !important;
}

.u-mt--80 {
    margin-top: 80px !important;
}

.mt--80 {
    margin-top: 80px !important;
}

.u-pt--80 {
    padding-top: 80px !important;
}

.pt--80 {
    padding-top: 80px !important;
}

.u-mb--80 {
    margin-bottom: 80px !important;
}

.mb--80 {
    margin-bottom: 80px !important;
}

.u-pb--80 {
    padding-bottom: 80px !important;
}

.pb--80 {
    padding-bottom: 80px !important;
}

.u-ml--80 {
    margin-left: 80px !important;
}

.ml--80 {
    margin-left: 80px !important;
}

.u-pl--80 {
    padding-left: 80px !important;
}

.pl--80 {
    padding-left: 80px !important;
}

.u-mr--80 {
    margin-right: 80px !important;
}

.mr--80 {
    margin-right: 80px !important;
}

.u-pr--80 {
    padding-right: 80px !important;
}

.pr--80 {
    padding-right: 80px !important;
}

.u-fs--h1 {
    font-size: 22px !important;
}

.u-fs--h2 {
    font-size: 18px !important;
}

.u-fs--h3 {
    font-size: 16px !important;
}

.u-fs--h5 {
    font-size: 14px !important;
}

.u-fs--h6 {
    font-size: 11px !important;
}

.u-fs--xl {
    font-size: 22px !important;
}

.u-fs--lg {
    font-size: 16px !important;
}

.u-fs--sm {
    font-size: 12px !important;
}

.u-fs--xs {
    font-size: 10px !important;
}

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

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

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

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

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

.justify-content-around {
    display: flex !important;
    justify-content: space-around !important;
}

.justify-content-even {
    display: flex !important;
    justify-content: space-evenly !important;
}

.dialog-content {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.u-d--flex {
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex;
}
