@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
/* line 1, app/assets/stylesheets/custom.css.erb */
body {
  padding-top: 32px;
}

/* Code for animation -- to change direction of chevron just change -40px to 40px and vice versa */
/* line 4, app/assets/stylesheets/custom.css.erb */
[data-toggle="collapse"] .fa:before {
  content: "\f078";
}

/* line 8, app/assets/stylesheets/custom.css.erb */
.collapsed[data-toggle="collapse"] .fa:before {
  content: "\f054";
}

/* line 12, app/assets/stylesheets/custom.css.erb */
.bg-edit {
  background-color: #fd7e14 !important;
}

/* special classes to allow the user to differentiate between fields they can edit (in edit mode) and fields they cannot */
/* line 17, app/assets/stylesheets/custom.css.erb */
.disabled-form-control {
  background-color: #eeeeee !important;
}

/* line 21, app/assets/stylesheets/custom.css.erb */
.enabled-form-control {
  border-bottom: 1px solid #9090ff !important;
}

/* line 26, app/assets/stylesheets/custom.css.erb */
.butlink a {
  color: #2196F3;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/* line 33, app/assets/stylesheets/custom.css.erb */
.butlink a:hover {
  color: #0a6ebd;
  text-decoration: underline;
}

/* line 38, app/assets/stylesheets/custom.css.erb */
.butlink a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

/* line 43, app/assets/stylesheets/custom.css.erb */
.butlink {
  color: #2196F3;
}

/* line 48, app/assets/stylesheets/custom.css.erb */
.disbutlink a {
  color: #666666;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/* line 55, app/assets/stylesheets/custom.css.erb */
.disbutlink a:hover {
  color: #0a6ebd;
  text-decoration: underline;
}

/* line 60, app/assets/stylesheets/custom.css.erb */
.disbutlink a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

/* line 65, app/assets/stylesheets/custom.css.erb */
.disbutlink {
  color: #666666;
}

/* line 69, app/assets/stylesheets/custom.css.erb */
.nounderline a:hover {
  text-decoration: none;
}

@-webkit-keyframes c-inline-spinner-kf {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes c-inline-spinner-kf {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* line 82, app/assets/stylesheets/custom.css.erb */
.c-inline-spinner,
.c-inline-spinner:before {
  display: inline-block;
  width: 11px;
  height: 11px;
  transform-origin: 50%;
  border: 2px solid transparent;
  border-color: #74a8d0 #74a8d0 transparent transparent;
  border-radius: 50%;
  content: "";
  -webkit-animation: linear c-inline-spinner-kf 900ms infinite;
          animation: linear c-inline-spinner-kf 900ms infinite;
  position: relative;
  vertical-align: inherit;
  line-height: inherit;
}

/* line 97, app/assets/stylesheets/custom.css.erb */
.c-inline-spinner {
  top: 3px;
  margin: 0 3px;
}

/* line 101, app/assets/stylesheets/custom.css.erb */
.c-inline-spinner:before {
  border-color: #74a8d0 #74a8d0 transparent transparent;
  position: absolute;
  left: -2px;
  top: -2px;
  border-style: solid;
}

/* line 109, app/assets/stylesheets/custom.css.erb */
.errorBorderClass {
  border-color: red;
  border-width: 1px;
  border-style: solid;
  padding: 4px 4px 4px 4px;
  background-color: lightpink;
}

/* line 117, app/assets/stylesheets/custom.css.erb */
.signature_image {
  width: 120px;
}

/* line 121, app/assets/stylesheets/custom.css.erb */
.findparam {
  font-style: italic;
  color: blue;
}

/*
*
* ===============================================================================
* CUSTOM UTIL CLASSES - https://bootstrapious.com/p/bootstrap-multilevel-dropdown
* ===============================================================================
*
*/
/* line 134, app/assets/stylesheets/custom.css.erb */
.dropdown-submenu {
  position: relative;
}

/* line 138, app/assets/stylesheets/custom.css.erb */
.dropdown-submenu > a:after {
  content: "\f0da";
  float: right;
  border: none;
  font-family: 'FontAwesome';
}

/* line 145, app/assets/stylesheets/custom.css.erb */
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: 0px;
  margin-left: 0px;
}

/* line 152, app/assets/stylesheets/custom.css.erb */
.spinner {
  display: inline-block;
  opacity: 0;
  max-width: 0;
  transition: opacity 0.25s, max-width 0.45s;
  /* Duration fixed since we animate additional hidden width */
}

/* line 163, app/assets/stylesheets/custom.css.erb */
.has-spinner.active {
  cursor: progress;
}

/* line 167, app/assets/stylesheets/custom.css.erb */
.badge-hover {
  cursor: pointer;
}

/* line 171, app/assets/stylesheets/custom.css.erb */
.has-spinner.active .spinner {
  opacity: 1;
  max-width: 50px;
  /* More than it will ever come, notice that this affects on animation duration */
}

/* line 177, app/assets/stylesheets/custom.css.erb */
.active_spinner {
  opacity: 1;
  max-width: 50px;
}

/* line 182, app/assets/stylesheets/custom.css.erb */
hr.fat {
  border: 1px solid black;
}

/* line 186, app/assets/stylesheets/custom.css.erb */
hr.tight {
  -webkit-margin-before: 0.25em;
          margin-block-start: 0.25em;
  -webkit-margin-after: 0.25em;
          margin-block-end: 0.25em;
}

/* line 191, app/assets/stylesheets/custom.css.erb */
.badge-outline {
  color: black;
  border: 1px solid #999;
  background-color: transparent;
}

/* line 197, app/assets/stylesheets/custom.css.erb */
.badge-outline.badge-default {
  border-color: #9C27B0;
  color: #9C27B0;
}

/* line 202, app/assets/stylesheets/custom.css.erb */
.dashboard-row {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 3px;
  padding-top: 3px;
  margin-bottom: 3px;
  padding-bottom: 3px;
}

/* line 211, app/assets/stylesheets/custom.css.erb */
.dashboard-link a {
  color: black;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/* line 218, app/assets/stylesheets/custom.css.erb */
.dashboard-link a:hover {
  color: slategray;
  text-decoration: underline;
}

/* line 223, app/assets/stylesheets/custom.css.erb */
.dashboard-link a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

/* line 228, app/assets/stylesheets/custom.css.erb */
.dashboard-link {
  color: slategray;
}

/* line 232, app/assets/stylesheets/custom.css.erb */
.borderedrow {
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid lightgray;
}

/* line 239, app/assets/stylesheets/custom.css.erb */
.validation {
  color: #D63301;
  background-color: #FFCCBA;
  background-image: url("/assets/error-e3bbd686a123ce4c9a94bcc308de9d156310ef2f4227c7798f781fa95d20677e.png");
}

/* if you want to place text/buttons next to selectize */
/* line 246, app/assets/stylesheets/custom.css.erb */
.selectize-inline-control {
  display: inline-block;
  vertical-align: middle;
}

/* line 251, app/assets/stylesheets/custom.css.erb */
.hidden_row {
  display: none;
}

/*!
 * Bootswatch v4.6.2
 * Homepage: https://bootswatch.com
 * Copyright 2012-2022 Thomas Park
 * Licensed under MIT
 * Based on Bootstrap
*/
/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
/* line 15, app/assets/stylesheets/materia46.css */
:root {
  --blue: #2196f3;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #e51c23;
  --orange: #fd7e14;
  --yellow: #ff9800;
  --green: #4caf50;
  --teal: #20c997;
  --cyan: #9c27b0;
  --white: #fff;
  --gray: #666;
  --gray-dark: #222;
  --primary: #2196f3;
  --secondary: #fff;
  --success: #4caf50;
  --info: #9c27b0;
  --warning: #ff9800;
  --danger: #e51c23;
  --light: #fff;
  --dark: #222;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* line 46, app/assets/stylesheets/materia46.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* line 52, app/assets/stylesheets/materia46.css */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 59, app/assets/stylesheets/materia46.css */
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* line 63, app/assets/stylesheets/materia46.css */
body {
  margin: 0;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
  text-align: left;
  background-color: #fff;
}

/* line 74, app/assets/stylesheets/materia46.css */
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

/* line 78, app/assets/stylesheets/materia46.css */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/* line 84, app/assets/stylesheets/materia46.css */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 89, app/assets/stylesheets/materia46.css */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 94, app/assets/stylesheets/materia46.css */
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

/* line 105, app/assets/stylesheets/materia46.css */
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* line 111, app/assets/stylesheets/materia46.css */
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 118, app/assets/stylesheets/materia46.css */
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/* line 125, app/assets/stylesheets/materia46.css */
dt {
  font-weight: 700;
}

/* line 129, app/assets/stylesheets/materia46.css */
dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

/* line 134, app/assets/stylesheets/materia46.css */
blockquote {
  margin: 0 0 1rem;
}

/* line 138, app/assets/stylesheets/materia46.css */
b,
strong {
  font-weight: bolder;
}

/* line 143, app/assets/stylesheets/materia46.css */
small {
  font-size: 80%;
}

/* line 147, app/assets/stylesheets/materia46.css */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 155, app/assets/stylesheets/materia46.css */
sub {
  bottom: -.25em;
}

/* line 159, app/assets/stylesheets/materia46.css */
sup {
  top: -.5em;
}

/* line 163, app/assets/stylesheets/materia46.css */
a {
  color: #2196f3;
  text-decoration: none;
  background-color: transparent;
}

/* line 169, app/assets/stylesheets/materia46.css */
a:hover {
  color: #0a6ebd;
  text-decoration: underline;
}

/* line 174, app/assets/stylesheets/materia46.css */
a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

/* line 179, app/assets/stylesheets/materia46.css */
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

/* line 184, app/assets/stylesheets/materia46.css */
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

/* line 192, app/assets/stylesheets/materia46.css */
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

/* line 199, app/assets/stylesheets/materia46.css */
figure {
  margin: 0 0 1rem;
}

/* line 203, app/assets/stylesheets/materia46.css */
img {
  vertical-align: middle;
  border-style: none;
}

/* line 208, app/assets/stylesheets/materia46.css */
svg {
  overflow: hidden;
  vertical-align: middle;
}

/* line 213, app/assets/stylesheets/materia46.css */
table {
  border-collapse: collapse;
}

/* line 217, app/assets/stylesheets/materia46.css */
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #666;
  text-align: left;
  caption-side: bottom;
}

/* line 225, app/assets/stylesheets/materia46.css */
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

/* line 230, app/assets/stylesheets/materia46.css */
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* line 235, app/assets/stylesheets/materia46.css */
button {
  border-radius: 0;
}

/* line 239, app/assets/stylesheets/materia46.css */
button:focus:not(:focus-visible) {
  outline: 0;
}

/* line 243, app/assets/stylesheets/materia46.css */
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 254, app/assets/stylesheets/materia46.css */
button,
input {
  overflow: visible;
}

/* line 259, app/assets/stylesheets/materia46.css */
button,
select {
  text-transform: none;
}

/* line 264, app/assets/stylesheets/materia46.css */
[role="button"] {
  cursor: pointer;
}

/* line 268, app/assets/stylesheets/materia46.css */
select {
  word-wrap: normal;
}

/* line 272, app/assets/stylesheets/materia46.css */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* line 279, app/assets/stylesheets/materia46.css */
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

/* line 286, app/assets/stylesheets/materia46.css */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* line 294, app/assets/stylesheets/materia46.css */
input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 300, app/assets/stylesheets/materia46.css */
textarea {
  overflow: auto;
  resize: vertical;
}

/* line 305, app/assets/stylesheets/materia46.css */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 312, app/assets/stylesheets/materia46.css */
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

/* line 324, app/assets/stylesheets/materia46.css */
progress {
  vertical-align: baseline;
}

/* line 328, app/assets/stylesheets/materia46.css */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 333, app/assets/stylesheets/materia46.css */
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

/* line 338, app/assets/stylesheets/materia46.css */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 342, app/assets/stylesheets/materia46.css */
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* line 347, app/assets/stylesheets/materia46.css */
output {
  display: inline-block;
}

/* line 351, app/assets/stylesheets/materia46.css */
summary {
  display: list-item;
  cursor: pointer;
}

/* line 356, app/assets/stylesheets/materia46.css */
template {
  display: none;
}

/* line 360, app/assets/stylesheets/materia46.css */
[hidden] {
  display: none !important;
}

/* line 364, app/assets/stylesheets/materia46.css */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

/* line 371, app/assets/stylesheets/materia46.css */
h1, .h1 {
  font-size: 2.03125rem;
}

/* line 375, app/assets/stylesheets/materia46.css */
h2, .h2 {
  font-size: 1.625rem;
}

/* line 379, app/assets/stylesheets/materia46.css */
h3, .h3 {
  font-size: 1.421875rem;
}

/* line 383, app/assets/stylesheets/materia46.css */
h4, .h4 {
  font-size: 1.21875rem;
}

/* line 387, app/assets/stylesheets/materia46.css */
h5, .h5 {
  font-size: 1.015625rem;
}

/* line 391, app/assets/stylesheets/materia46.css */
h6, .h6 {
  font-size: 0.8125rem;
}

/* line 395, app/assets/stylesheets/materia46.css */
.lead {
  font-size: 1.015625rem;
  font-weight: 300;
}

/* line 400, app/assets/stylesheets/materia46.css */
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 406, app/assets/stylesheets/materia46.css */
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 412, app/assets/stylesheets/materia46.css */
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 418, app/assets/stylesheets/materia46.css */
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 424, app/assets/stylesheets/materia46.css */
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 431, app/assets/stylesheets/materia46.css */
small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

/* line 437, app/assets/stylesheets/materia46.css */
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

/* line 443, app/assets/stylesheets/materia46.css */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 448, app/assets/stylesheets/materia46.css */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 453, app/assets/stylesheets/materia46.css */
.list-inline-item {
  display: inline-block;
}

/* line 457, app/assets/stylesheets/materia46.css */
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

/* line 461, app/assets/stylesheets/materia46.css */
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 466, app/assets/stylesheets/materia46.css */
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.015625rem;
}

/* line 471, app/assets/stylesheets/materia46.css */
.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #666;
}

/* line 477, app/assets/stylesheets/materia46.css */
.blockquote-footer::before {
  content: "\2014\00A0";
}

/* line 481, app/assets/stylesheets/materia46.css */
.img-fluid, img {
  max-width: 100%;
  height: auto;
}

/* line 486, app/assets/stylesheets/materia46.css */
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  max-width: 100%;
  height: auto;
}

/* line 496, app/assets/stylesheets/materia46.css */
.figure {
  display: inline-block;
}

/* line 500, app/assets/stylesheets/materia46.css */
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* line 505, app/assets/stylesheets/materia46.css */
.figure-caption {
  font-size: 90%;
  color: #666;
}

/* line 510, app/assets/stylesheets/materia46.css */
code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

/* line 516, app/assets/stylesheets/materia46.css */
a > code {
  color: inherit;
}

/* line 520, app/assets/stylesheets/materia46.css */
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212121;
  border-radius: 0.2rem;
  box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25);
}

/* line 529, app/assets/stylesheets/materia46.css */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}

/* line 536, app/assets/stylesheets/materia46.css */
pre {
  display: block;
  font-size: 87.5%;
  color: #212121;
}

/* line 542, app/assets/stylesheets/materia46.css */
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

/* line 548, app/assets/stylesheets/materia46.css */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 553, app/assets/stylesheets/materia46.css */
.container, main,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  /* line 567, app/assets/stylesheets/materia46.css */
  .container, main, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 573, app/assets/stylesheets/materia46.css */
  .container, main, .container-sm, .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 579, app/assets/stylesheets/materia46.css */
  .container, main, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 585, app/assets/stylesheets/materia46.css */
  .container, main, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

/* line 590, app/assets/stylesheets/materia46.css */
.row, section {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* line 599, app/assets/stylesheets/materia46.css */
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 604, app/assets/stylesheets/materia46.css */
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 610, app/assets/stylesheets/materia46.css */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .form-centered, .form, .column, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 622, app/assets/stylesheets/materia46.css */
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

/* line 630, app/assets/stylesheets/materia46.css */
.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 636, app/assets/stylesheets/materia46.css */
.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 642, app/assets/stylesheets/materia46.css */
.row-cols-3 > * {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

/* line 648, app/assets/stylesheets/materia46.css */
.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 654, app/assets/stylesheets/materia46.css */
.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

/* line 660, app/assets/stylesheets/materia46.css */
.row-cols-6 > * {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

/* line 666, app/assets/stylesheets/materia46.css */
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

/* line 673, app/assets/stylesheets/materia46.css */
.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

/* line 679, app/assets/stylesheets/materia46.css */
.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

/* line 685, app/assets/stylesheets/materia46.css */
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 691, app/assets/stylesheets/materia46.css */
.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

/* line 697, app/assets/stylesheets/materia46.css */
.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

/* line 703, app/assets/stylesheets/materia46.css */
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 709, app/assets/stylesheets/materia46.css */
.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

/* line 715, app/assets/stylesheets/materia46.css */
.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

/* line 721, app/assets/stylesheets/materia46.css */
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

/* line 727, app/assets/stylesheets/materia46.css */
.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

/* line 733, app/assets/stylesheets/materia46.css */
.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

/* line 739, app/assets/stylesheets/materia46.css */
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 745, app/assets/stylesheets/materia46.css */
.order-first {
  order: -1;
}

/* line 750, app/assets/stylesheets/materia46.css */
.order-last {
  order: 13;
}

/* line 755, app/assets/stylesheets/materia46.css */
.order-0 {
  order: 0;
}

/* line 760, app/assets/stylesheets/materia46.css */
.order-1 {
  order: 1;
}

/* line 765, app/assets/stylesheets/materia46.css */
.order-2 {
  order: 2;
}

/* line 770, app/assets/stylesheets/materia46.css */
.order-3 {
  order: 3;
}

/* line 775, app/assets/stylesheets/materia46.css */
.order-4 {
  order: 4;
}

/* line 780, app/assets/stylesheets/materia46.css */
.order-5 {
  order: 5;
}

/* line 785, app/assets/stylesheets/materia46.css */
.order-6 {
  order: 6;
}

/* line 790, app/assets/stylesheets/materia46.css */
.order-7 {
  order: 7;
}

/* line 795, app/assets/stylesheets/materia46.css */
.order-8 {
  order: 8;
}

/* line 800, app/assets/stylesheets/materia46.css */
.order-9 {
  order: 9;
}

/* line 805, app/assets/stylesheets/materia46.css */
.order-10 {
  order: 10;
}

/* line 810, app/assets/stylesheets/materia46.css */
.order-11 {
  order: 11;
}

/* line 815, app/assets/stylesheets/materia46.css */
.order-12 {
  order: 12;
}

/* line 820, app/assets/stylesheets/materia46.css */
.offset-1 {
  margin-left: 8.333333%;
}

/* line 824, app/assets/stylesheets/materia46.css */
.offset-2 {
  margin-left: 16.666667%;
}

/* line 828, app/assets/stylesheets/materia46.css */
.offset-3 {
  margin-left: 25%;
}

/* line 832, app/assets/stylesheets/materia46.css */
.offset-4 {
  margin-left: 33.333333%;
}

/* line 836, app/assets/stylesheets/materia46.css */
.offset-5 {
  margin-left: 41.666667%;
}

/* line 840, app/assets/stylesheets/materia46.css */
.offset-6 {
  margin-left: 50%;
}

/* line 844, app/assets/stylesheets/materia46.css */
.offset-7 {
  margin-left: 58.333333%;
}

/* line 848, app/assets/stylesheets/materia46.css */
.offset-8 {
  margin-left: 66.666667%;
}

/* line 852, app/assets/stylesheets/materia46.css */
.offset-9 {
  margin-left: 75%;
}

/* line 856, app/assets/stylesheets/materia46.css */
.offset-10 {
  margin-left: 83.333333%;
}

/* line 860, app/assets/stylesheets/materia46.css */
.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  /* line 865, app/assets/stylesheets/materia46.css */
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 872, app/assets/stylesheets/materia46.css */
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 877, app/assets/stylesheets/materia46.css */
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 882, app/assets/stylesheets/materia46.css */
  .row-cols-sm-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 887, app/assets/stylesheets/materia46.css */
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 892, app/assets/stylesheets/materia46.css */
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 897, app/assets/stylesheets/materia46.css */
  .row-cols-sm-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 902, app/assets/stylesheets/materia46.css */
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 908, app/assets/stylesheets/materia46.css */
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  /* line 913, app/assets/stylesheets/materia46.css */
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 918, app/assets/stylesheets/materia46.css */
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 923, app/assets/stylesheets/materia46.css */
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 928, app/assets/stylesheets/materia46.css */
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  /* line 933, app/assets/stylesheets/materia46.css */
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 938, app/assets/stylesheets/materia46.css */
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  /* line 943, app/assets/stylesheets/materia46.css */
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  /* line 948, app/assets/stylesheets/materia46.css */
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 953, app/assets/stylesheets/materia46.css */
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  /* line 958, app/assets/stylesheets/materia46.css */
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  /* line 963, app/assets/stylesheets/materia46.css */
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 968, app/assets/stylesheets/materia46.css */
  .order-sm-first {
    order: -1;
  }
  /* line 972, app/assets/stylesheets/materia46.css */
  .order-sm-last {
    order: 13;
  }
  /* line 976, app/assets/stylesheets/materia46.css */
  .order-sm-0 {
    order: 0;
  }
  /* line 980, app/assets/stylesheets/materia46.css */
  .order-sm-1 {
    order: 1;
  }
  /* line 984, app/assets/stylesheets/materia46.css */
  .order-sm-2 {
    order: 2;
  }
  /* line 988, app/assets/stylesheets/materia46.css */
  .order-sm-3 {
    order: 3;
  }
  /* line 992, app/assets/stylesheets/materia46.css */
  .order-sm-4 {
    order: 4;
  }
  /* line 996, app/assets/stylesheets/materia46.css */
  .order-sm-5 {
    order: 5;
  }
  /* line 1000, app/assets/stylesheets/materia46.css */
  .order-sm-6 {
    order: 6;
  }
  /* line 1004, app/assets/stylesheets/materia46.css */
  .order-sm-7 {
    order: 7;
  }
  /* line 1008, app/assets/stylesheets/materia46.css */
  .order-sm-8 {
    order: 8;
  }
  /* line 1012, app/assets/stylesheets/materia46.css */
  .order-sm-9 {
    order: 9;
  }
  /* line 1016, app/assets/stylesheets/materia46.css */
  .order-sm-10 {
    order: 10;
  }
  /* line 1020, app/assets/stylesheets/materia46.css */
  .order-sm-11 {
    order: 11;
  }
  /* line 1024, app/assets/stylesheets/materia46.css */
  .order-sm-12 {
    order: 12;
  }
  /* line 1028, app/assets/stylesheets/materia46.css */
  .offset-sm-0 {
    margin-left: 0;
  }
  /* line 1031, app/assets/stylesheets/materia46.css */
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  /* line 1034, app/assets/stylesheets/materia46.css */
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  /* line 1037, app/assets/stylesheets/materia46.css */
  .offset-sm-3 {
    margin-left: 25%;
  }
  /* line 1040, app/assets/stylesheets/materia46.css */
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  /* line 1043, app/assets/stylesheets/materia46.css */
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  /* line 1046, app/assets/stylesheets/materia46.css */
  .offset-sm-6 {
    margin-left: 50%;
  }
  /* line 1049, app/assets/stylesheets/materia46.css */
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  /* line 1052, app/assets/stylesheets/materia46.css */
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  /* line 1055, app/assets/stylesheets/materia46.css */
  .offset-sm-9 {
    margin-left: 75%;
  }
  /* line 1058, app/assets/stylesheets/materia46.css */
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  /* line 1061, app/assets/stylesheets/materia46.css */
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  /* line 1067, app/assets/stylesheets/materia46.css */
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 1074, app/assets/stylesheets/materia46.css */
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 1079, app/assets/stylesheets/materia46.css */
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 1084, app/assets/stylesheets/materia46.css */
  .row-cols-md-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 1089, app/assets/stylesheets/materia46.css */
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 1094, app/assets/stylesheets/materia46.css */
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 1099, app/assets/stylesheets/materia46.css */
  .row-cols-md-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 1104, app/assets/stylesheets/materia46.css */
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 1110, app/assets/stylesheets/materia46.css */
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  /* line 1115, app/assets/stylesheets/materia46.css */
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 1120, app/assets/stylesheets/materia46.css */
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 1125, app/assets/stylesheets/materia46.css */
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 1130, app/assets/stylesheets/materia46.css */
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  /* line 1135, app/assets/stylesheets/materia46.css */
  .col-md-6, .form-centered, .form, .column {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 1140, app/assets/stylesheets/materia46.css */
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  /* line 1145, app/assets/stylesheets/materia46.css */
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  /* line 1150, app/assets/stylesheets/materia46.css */
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 1155, app/assets/stylesheets/materia46.css */
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  /* line 1160, app/assets/stylesheets/materia46.css */
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  /* line 1165, app/assets/stylesheets/materia46.css */
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 1170, app/assets/stylesheets/materia46.css */
  .order-md-first {
    order: -1;
  }
  /* line 1174, app/assets/stylesheets/materia46.css */
  .order-md-last {
    order: 13;
  }
  /* line 1178, app/assets/stylesheets/materia46.css */
  .order-md-0 {
    order: 0;
  }
  /* line 1182, app/assets/stylesheets/materia46.css */
  .order-md-1 {
    order: 1;
  }
  /* line 1186, app/assets/stylesheets/materia46.css */
  .order-md-2 {
    order: 2;
  }
  /* line 1190, app/assets/stylesheets/materia46.css */
  .order-md-3 {
    order: 3;
  }
  /* line 1194, app/assets/stylesheets/materia46.css */
  .order-md-4 {
    order: 4;
  }
  /* line 1198, app/assets/stylesheets/materia46.css */
  .order-md-5 {
    order: 5;
  }
  /* line 1202, app/assets/stylesheets/materia46.css */
  .order-md-6 {
    order: 6;
  }
  /* line 1206, app/assets/stylesheets/materia46.css */
  .order-md-7 {
    order: 7;
  }
  /* line 1210, app/assets/stylesheets/materia46.css */
  .order-md-8 {
    order: 8;
  }
  /* line 1214, app/assets/stylesheets/materia46.css */
  .order-md-9 {
    order: 9;
  }
  /* line 1218, app/assets/stylesheets/materia46.css */
  .order-md-10 {
    order: 10;
  }
  /* line 1222, app/assets/stylesheets/materia46.css */
  .order-md-11 {
    order: 11;
  }
  /* line 1226, app/assets/stylesheets/materia46.css */
  .order-md-12 {
    order: 12;
  }
  /* line 1230, app/assets/stylesheets/materia46.css */
  .offset-md-0 {
    margin-left: 0;
  }
  /* line 1233, app/assets/stylesheets/materia46.css */
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  /* line 1236, app/assets/stylesheets/materia46.css */
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  /* line 1239, app/assets/stylesheets/materia46.css */
  .offset-md-3 {
    margin-left: 25%;
  }
  /* line 1242, app/assets/stylesheets/materia46.css */
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  /* line 1245, app/assets/stylesheets/materia46.css */
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  /* line 1248, app/assets/stylesheets/materia46.css */
  .offset-md-6 {
    margin-left: 50%;
  }
  /* line 1251, app/assets/stylesheets/materia46.css */
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  /* line 1254, app/assets/stylesheets/materia46.css */
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  /* line 1257, app/assets/stylesheets/materia46.css */
  .offset-md-9 {
    margin-left: 75%;
  }
  /* line 1260, app/assets/stylesheets/materia46.css */
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  /* line 1263, app/assets/stylesheets/materia46.css */
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  /* line 1269, app/assets/stylesheets/materia46.css */
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 1276, app/assets/stylesheets/materia46.css */
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 1281, app/assets/stylesheets/materia46.css */
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 1286, app/assets/stylesheets/materia46.css */
  .row-cols-lg-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 1291, app/assets/stylesheets/materia46.css */
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 1296, app/assets/stylesheets/materia46.css */
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 1301, app/assets/stylesheets/materia46.css */
  .row-cols-lg-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 1306, app/assets/stylesheets/materia46.css */
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 1312, app/assets/stylesheets/materia46.css */
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  /* line 1317, app/assets/stylesheets/materia46.css */
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 1322, app/assets/stylesheets/materia46.css */
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 1327, app/assets/stylesheets/materia46.css */
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 1332, app/assets/stylesheets/materia46.css */
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  /* line 1337, app/assets/stylesheets/materia46.css */
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 1342, app/assets/stylesheets/materia46.css */
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  /* line 1347, app/assets/stylesheets/materia46.css */
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  /* line 1352, app/assets/stylesheets/materia46.css */
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 1357, app/assets/stylesheets/materia46.css */
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  /* line 1362, app/assets/stylesheets/materia46.css */
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  /* line 1367, app/assets/stylesheets/materia46.css */
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 1372, app/assets/stylesheets/materia46.css */
  .order-lg-first {
    order: -1;
  }
  /* line 1376, app/assets/stylesheets/materia46.css */
  .order-lg-last {
    order: 13;
  }
  /* line 1380, app/assets/stylesheets/materia46.css */
  .order-lg-0 {
    order: 0;
  }
  /* line 1384, app/assets/stylesheets/materia46.css */
  .order-lg-1 {
    order: 1;
  }
  /* line 1388, app/assets/stylesheets/materia46.css */
  .order-lg-2 {
    order: 2;
  }
  /* line 1392, app/assets/stylesheets/materia46.css */
  .order-lg-3 {
    order: 3;
  }
  /* line 1396, app/assets/stylesheets/materia46.css */
  .order-lg-4 {
    order: 4;
  }
  /* line 1400, app/assets/stylesheets/materia46.css */
  .order-lg-5 {
    order: 5;
  }
  /* line 1404, app/assets/stylesheets/materia46.css */
  .order-lg-6 {
    order: 6;
  }
  /* line 1408, app/assets/stylesheets/materia46.css */
  .order-lg-7 {
    order: 7;
  }
  /* line 1412, app/assets/stylesheets/materia46.css */
  .order-lg-8 {
    order: 8;
  }
  /* line 1416, app/assets/stylesheets/materia46.css */
  .order-lg-9 {
    order: 9;
  }
  /* line 1420, app/assets/stylesheets/materia46.css */
  .order-lg-10 {
    order: 10;
  }
  /* line 1424, app/assets/stylesheets/materia46.css */
  .order-lg-11 {
    order: 11;
  }
  /* line 1428, app/assets/stylesheets/materia46.css */
  .order-lg-12 {
    order: 12;
  }
  /* line 1432, app/assets/stylesheets/materia46.css */
  .offset-lg-0 {
    margin-left: 0;
  }
  /* line 1435, app/assets/stylesheets/materia46.css */
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  /* line 1438, app/assets/stylesheets/materia46.css */
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  /* line 1441, app/assets/stylesheets/materia46.css */
  .offset-lg-3 {
    margin-left: 25%;
  }
  /* line 1444, app/assets/stylesheets/materia46.css */
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  /* line 1447, app/assets/stylesheets/materia46.css */
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  /* line 1450, app/assets/stylesheets/materia46.css */
  .offset-lg-6 {
    margin-left: 50%;
  }
  /* line 1453, app/assets/stylesheets/materia46.css */
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  /* line 1456, app/assets/stylesheets/materia46.css */
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  /* line 1459, app/assets/stylesheets/materia46.css */
  .offset-lg-9 {
    margin-left: 75%;
  }
  /* line 1462, app/assets/stylesheets/materia46.css */
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  /* line 1465, app/assets/stylesheets/materia46.css */
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  /* line 1471, app/assets/stylesheets/materia46.css */
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 1478, app/assets/stylesheets/materia46.css */
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 1483, app/assets/stylesheets/materia46.css */
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 1488, app/assets/stylesheets/materia46.css */
  .row-cols-xl-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 1493, app/assets/stylesheets/materia46.css */
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 1498, app/assets/stylesheets/materia46.css */
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 1503, app/assets/stylesheets/materia46.css */
  .row-cols-xl-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 1508, app/assets/stylesheets/materia46.css */
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 1514, app/assets/stylesheets/materia46.css */
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  /* line 1519, app/assets/stylesheets/materia46.css */
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 1524, app/assets/stylesheets/materia46.css */
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 1529, app/assets/stylesheets/materia46.css */
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 1534, app/assets/stylesheets/materia46.css */
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  /* line 1539, app/assets/stylesheets/materia46.css */
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 1544, app/assets/stylesheets/materia46.css */
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  /* line 1549, app/assets/stylesheets/materia46.css */
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  /* line 1554, app/assets/stylesheets/materia46.css */
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 1559, app/assets/stylesheets/materia46.css */
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  /* line 1564, app/assets/stylesheets/materia46.css */
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  /* line 1569, app/assets/stylesheets/materia46.css */
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 1574, app/assets/stylesheets/materia46.css */
  .order-xl-first {
    order: -1;
  }
  /* line 1578, app/assets/stylesheets/materia46.css */
  .order-xl-last {
    order: 13;
  }
  /* line 1582, app/assets/stylesheets/materia46.css */
  .order-xl-0 {
    order: 0;
  }
  /* line 1586, app/assets/stylesheets/materia46.css */
  .order-xl-1 {
    order: 1;
  }
  /* line 1590, app/assets/stylesheets/materia46.css */
  .order-xl-2 {
    order: 2;
  }
  /* line 1594, app/assets/stylesheets/materia46.css */
  .order-xl-3 {
    order: 3;
  }
  /* line 1598, app/assets/stylesheets/materia46.css */
  .order-xl-4 {
    order: 4;
  }
  /* line 1602, app/assets/stylesheets/materia46.css */
  .order-xl-5 {
    order: 5;
  }
  /* line 1606, app/assets/stylesheets/materia46.css */
  .order-xl-6 {
    order: 6;
  }
  /* line 1610, app/assets/stylesheets/materia46.css */
  .order-xl-7 {
    order: 7;
  }
  /* line 1614, app/assets/stylesheets/materia46.css */
  .order-xl-8 {
    order: 8;
  }
  /* line 1618, app/assets/stylesheets/materia46.css */
  .order-xl-9 {
    order: 9;
  }
  /* line 1622, app/assets/stylesheets/materia46.css */
  .order-xl-10 {
    order: 10;
  }
  /* line 1626, app/assets/stylesheets/materia46.css */
  .order-xl-11 {
    order: 11;
  }
  /* line 1630, app/assets/stylesheets/materia46.css */
  .order-xl-12 {
    order: 12;
  }
  /* line 1634, app/assets/stylesheets/materia46.css */
  .offset-xl-0 {
    margin-left: 0;
  }
  /* line 1637, app/assets/stylesheets/materia46.css */
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  /* line 1640, app/assets/stylesheets/materia46.css */
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  /* line 1643, app/assets/stylesheets/materia46.css */
  .offset-xl-3 {
    margin-left: 25%;
  }
  /* line 1646, app/assets/stylesheets/materia46.css */
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  /* line 1649, app/assets/stylesheets/materia46.css */
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  /* line 1652, app/assets/stylesheets/materia46.css */
  .offset-xl-6 {
    margin-left: 50%;
  }
  /* line 1655, app/assets/stylesheets/materia46.css */
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  /* line 1658, app/assets/stylesheets/materia46.css */
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  /* line 1661, app/assets/stylesheets/materia46.css */
  .offset-xl-9 {
    margin-left: 75%;
  }
  /* line 1664, app/assets/stylesheets/materia46.css */
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  /* line 1667, app/assets/stylesheets/materia46.css */
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

/* line 1672, app/assets/stylesheets/materia46.css */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #444;
}

/* line 1678, app/assets/stylesheets/materia46.css */
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

/* line 1685, app/assets/stylesheets/materia46.css */
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

/* line 1690, app/assets/stylesheets/materia46.css */
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* line 1694, app/assets/stylesheets/materia46.css */
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

/* line 1699, app/assets/stylesheets/materia46.css */
.table-bordered {
  border: 1px solid #dee2e6;
}

/* line 1703, app/assets/stylesheets/materia46.css */
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

/* line 1708, app/assets/stylesheets/materia46.css */
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

/* line 1713, app/assets/stylesheets/materia46.css */
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

/* line 1720, app/assets/stylesheets/materia46.css */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 1724, app/assets/stylesheets/materia46.css */
.table-hover tbody tr:hover {
  color: #444;
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 1729, app/assets/stylesheets/materia46.css */
.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #c1e2fc;
}

/* line 1735, app/assets/stylesheets/materia46.css */
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #8cc8f9;
}

/* line 1742, app/assets/stylesheets/materia46.css */
.table-hover .table-primary:hover {
  background-color: #a9d7fb;
}

/* line 1746, app/assets/stylesheets/materia46.css */
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #a9d7fb;
}

/* line 1751, app/assets/stylesheets/materia46.css */
.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: white;
}

/* line 1757, app/assets/stylesheets/materia46.css */
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: white;
}

/* line 1764, app/assets/stylesheets/materia46.css */
.table-hover .table-secondary:hover {
  background-color: #f2f2f2;
}

/* line 1768, app/assets/stylesheets/materia46.css */
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #f2f2f2;
}

/* line 1773, app/assets/stylesheets/materia46.css */
.table-success,
.table-success > th,
.table-success > td {
  background-color: #cde9ce;
}

/* line 1779, app/assets/stylesheets/materia46.css */
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #a2d5a4;
}

/* line 1786, app/assets/stylesheets/materia46.css */
.table-hover .table-success:hover {
  background-color: #bbe1bd;
}

/* line 1790, app/assets/stylesheets/materia46.css */
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #bbe1bd;
}

/* line 1795, app/assets/stylesheets/materia46.css */
.table-info,
.table-info > th,
.table-info > td {
  background-color: #e3c3e9;
}

/* line 1801, app/assets/stylesheets/materia46.css */
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #cc8fd6;
}

/* line 1808, app/assets/stylesheets/materia46.css */
.table-hover .table-info:hover {
  background-color: #dab0e2;
}

/* line 1812, app/assets/stylesheets/materia46.css */
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #dab0e2;
}

/* line 1817, app/assets/stylesheets/materia46.css */
.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffe2b8;
}

/* line 1823, app/assets/stylesheets/materia46.css */
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffc97a;
}

/* line 1830, app/assets/stylesheets/materia46.css */
.table-hover .table-warning:hover {
  background-color: #ffd89f;
}

/* line 1834, app/assets/stylesheets/materia46.css */
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffd89f;
}

/* line 1839, app/assets/stylesheets/materia46.css */
.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f8bfc1;
}

/* line 1845, app/assets/stylesheets/materia46.css */
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #f1898d;
}

/* line 1852, app/assets/stylesheets/materia46.css */
.table-hover .table-danger:hover {
  background-color: #f5a8ab;
}

/* line 1856, app/assets/stylesheets/materia46.css */
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f5a8ab;
}

/* line 1861, app/assets/stylesheets/materia46.css */
.table-light,
.table-light > th,
.table-light > td {
  background-color: white;
}

/* line 1867, app/assets/stylesheets/materia46.css */
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: white;
}

/* line 1874, app/assets/stylesheets/materia46.css */
.table-hover .table-light:hover {
  background-color: #f2f2f2;
}

/* line 1878, app/assets/stylesheets/materia46.css */
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #f2f2f2;
}

/* line 1883, app/assets/stylesheets/materia46.css */
.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c1c1c1;
}

/* line 1889, app/assets/stylesheets/materia46.css */
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #8c8c8c;
}

/* line 1896, app/assets/stylesheets/materia46.css */
.table-hover .table-dark:hover {
  background-color: #b4b4b4;
}

/* line 1900, app/assets/stylesheets/materia46.css */
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b4b4b4;
}

/* line 1905, app/assets/stylesheets/materia46.css */
.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 1911, app/assets/stylesheets/materia46.css */
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 1915, app/assets/stylesheets/materia46.css */
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 1920, app/assets/stylesheets/materia46.css */
.table .thead-dark th {
  color: #fff;
  background-color: #222;
  border-color: #353535;
}

/* line 1926, app/assets/stylesheets/materia46.css */
.table .thead-light th {
  color: #444;
  background-color: #eee;
  border-color: #dee2e6;
}

/* line 1932, app/assets/stylesheets/materia46.css */
.table-dark {
  color: #fff;
  background-color: #222;
}

/* line 1937, app/assets/stylesheets/materia46.css */
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #353535;
}

/* line 1943, app/assets/stylesheets/materia46.css */
.table-dark.table-bordered {
  border: 0;
}

/* line 1947, app/assets/stylesheets/materia46.css */
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 1951, app/assets/stylesheets/materia46.css */
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  /* line 1957, app/assets/stylesheets/materia46.css */
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 1963, app/assets/stylesheets/materia46.css */
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  /* line 1969, app/assets/stylesheets/materia46.css */
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 1975, app/assets/stylesheets/materia46.css */
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  /* line 1981, app/assets/stylesheets/materia46.css */
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 1987, app/assets/stylesheets/materia46.css */
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  /* line 1993, app/assets/stylesheets/materia46.css */
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 1999, app/assets/stylesheets/materia46.css */
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

/* line 2004, app/assets/stylesheets/materia46.css */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 2011, app/assets/stylesheets/materia46.css */
.table-responsive > .table-bordered {
  border: 0;
}

/* line 2015, app/assets/stylesheets/materia46.css */
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 2rem);
  padding: 1rem 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  background-color: transparent;
  background-clip: padding-box;
  border: 0 solid transparent;
  border-radius: 0;
  box-shadow: inset 0 -1px 0 #dddddd;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 2033, app/assets/stylesheets/materia46.css */
  .form-control {
    transition: none;
  }
}

/* line 2038, app/assets/stylesheets/materia46.css */
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 2043, app/assets/stylesheets/materia46.css */
.form-control:focus {
  color: #666;
  background-color: transparent;
  border-color: #9acffa;
  outline: 0;
  box-shadow: inset 0 -1px 0 #dddddd, inset 0 -2px 0 #2196f3;
}

/* line 2051, app/assets/stylesheets/materia46.css */
.form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

/* line 2056, app/assets/stylesheets/materia46.css */
.form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

/* line 2061, app/assets/stylesheets/materia46.css */
.form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

/* line 2066, app/assets/stylesheets/materia46.css */
.form-control::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

/* line 2071, app/assets/stylesheets/materia46.css */
.form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
.form-control::placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

/* line 2076, app/assets/stylesheets/materia46.css */
.form-control:disabled, .form-control[readonly] {
  background-color: transparent;
  opacity: 1;
}

/* line 2081, app/assets/stylesheets/materia46.css */
input.form-control[type="date"],
input.form-control[type="time"],
input.form-control[type="datetime-local"],
input.form-control[type="month"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 2090, app/assets/stylesheets/materia46.css */
select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #666;
}

/* line 2095, app/assets/stylesheets/materia46.css */
select.form-control:focus::-ms-value {
  color: #666;
  background-color: transparent;
}

/* line 2100, app/assets/stylesheets/materia46.css */
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

/* line 2106, app/assets/stylesheets/materia46.css */
.col-form-label {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

/* line 2114, app/assets/stylesheets/materia46.css */
.col-form-label-lg {
  padding-top: 1.015625rem;
  padding-bottom: 1.015625rem;
  font-size: 1.015625rem;
  line-height: 1.5;
}

/* line 2121, app/assets/stylesheets/materia46.css */
.col-form-label-sm {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.710938rem;
  line-height: 1.5;
}

/* line 2128, app/assets/stylesheets/materia46.css */
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 1rem 0;
  margin-bottom: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #444;
  background-color: transparent;
  border: solid transparent;
  border-width: 0 0;
}

/* line 2141, app/assets/stylesheets/materia46.css */
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

/* line 2146, app/assets/stylesheets/materia46.css */
.form-control-sm {
  height: 1.5em;
  padding: 0 0;
  font-size: 0.710938rem;
  line-height: 1.5;
  border-radius: 0;
}

/* line 2154, app/assets/stylesheets/materia46.css */
.form-control-lg {
  height: calc(1.5em + 2.03125rem);
  padding: 1.015625rem 0;
  font-size: 1.015625rem;
  line-height: 1.5;
  border-radius: 0;
}

/* line 2162, app/assets/stylesheets/materia46.css */
select.form-control[size], select.form-control[multiple] {
  height: auto;
}

/* line 2166, app/assets/stylesheets/materia46.css */
textarea.form-control {
  height: auto;
}

/* line 2170, app/assets/stylesheets/materia46.css */
.form-group {
  margin-bottom: 1rem;
}

/* line 2174, app/assets/stylesheets/materia46.css */
.form-text {
  display: block;
  margin-top: 0.25rem;
}

/* line 2179, app/assets/stylesheets/materia46.css */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

/* line 2188, app/assets/stylesheets/materia46.css */
.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

/* line 2194, app/assets/stylesheets/materia46.css */
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

/* line 2200, app/assets/stylesheets/materia46.css */
.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

/* line 2206, app/assets/stylesheets/materia46.css */
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #666;
}

/* line 2211, app/assets/stylesheets/materia46.css */
.form-check-label {
  margin-bottom: 0;
}

/* line 2215, app/assets/stylesheets/materia46.css */
.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

/* line 2224, app/assets/stylesheets/materia46.css */
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

/* line 2231, app/assets/stylesheets/materia46.css */
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #4caf50;
}

/* line 2239, app/assets/stylesheets/materia46.css */
.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.710938rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(76, 175, 80, 0.9);
  border-radius: 0.25rem;
}

/* line 2255, app/assets/stylesheets/materia46.css */
.form-row > .col > .valid-tooltip,
.form-row > [class*="col-"] > .valid-tooltip {
  left: 5px;
}

/* line 2260, app/assets/stylesheets/materia46.css */
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 2267, app/assets/stylesheets/materia46.css */
.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #4caf50;
  padding-right: calc(1.5em + 2rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%234caf50' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.5rem) center;
  background-size: calc(0.75em + 1rem) calc(0.75em + 1rem);
}

/* line 2276, app/assets/stylesheets/materia46.css */
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* line 2281, app/assets/stylesheets/materia46.css */
.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 0 !important;
  background-position: right 0 center;
}

/* line 2286, app/assets/stylesheets/materia46.css */
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 2rem);
  background-position: top calc(0.375em + 0.5rem) right calc(0.375em + 0.5rem);
}

/* line 2291, app/assets/stylesheets/materia46.css */
.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #4caf50;
  padding-right: calc(0.75em + 2.5rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23222' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0 center/8px 10px no-repeat, transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%234caf50' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1rem/calc(0.75em + 1rem) calc(0.75em + 1rem) no-repeat;
}

/* line 2297, app/assets/stylesheets/materia46.css */
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* line 2302, app/assets/stylesheets/materia46.css */
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #4caf50;
}

/* line 2306, app/assets/stylesheets/materia46.css */
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 2312, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #4caf50;
}

/* line 2316, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #4caf50;
}

/* line 2320, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #6ec071;
  background: #6ec071 linear-gradient(180deg, #84c987, #6ec071) repeat-x;
}

/* line 2325, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* line 2329, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #4caf50;
}

/* line 2333, app/assets/stylesheets/materia46.css */
.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #4caf50;
}

/* line 2337, app/assets/stylesheets/materia46.css */
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #4caf50;
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* line 2342, app/assets/stylesheets/materia46.css */
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #e51c23;
}

/* line 2350, app/assets/stylesheets/materia46.css */
.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.710938rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(229, 28, 35, 0.9);
  border-radius: 0.25rem;
}

/* line 2366, app/assets/stylesheets/materia46.css */
.form-row > .col > .invalid-tooltip,
.form-row > [class*="col-"] > .invalid-tooltip {
  left: 5px;
}

/* line 2371, app/assets/stylesheets/materia46.css */
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 2378, app/assets/stylesheets/materia46.css */
.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #e51c23;
  padding-right: calc(1.5em + 2rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e51c23' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e51c23' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.5rem) center;
  background-size: calc(0.75em + 1rem) calc(0.75em + 1rem);
}

/* line 2387, app/assets/stylesheets/materia46.css */
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #e51c23;
  box-shadow: 0 0 0 0.2rem rgba(229, 28, 35, 0.25);
}

/* line 2392, app/assets/stylesheets/materia46.css */
.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 0 !important;
  background-position: right 0 center;
}

/* line 2397, app/assets/stylesheets/materia46.css */
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 2rem);
  background-position: top calc(0.375em + 0.5rem) right calc(0.375em + 0.5rem);
}

/* line 2402, app/assets/stylesheets/materia46.css */
.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #e51c23;
  padding-right: calc(0.75em + 2.5rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23222' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0 center/8px 10px no-repeat, transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e51c23' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e51c23' stroke='none'/%3e%3c/svg%3e") center right 1rem/calc(0.75em + 1rem) calc(0.75em + 1rem) no-repeat;
}

/* line 2408, app/assets/stylesheets/materia46.css */
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #e51c23;
  box-shadow: 0 0 0 0.2rem rgba(229, 28, 35, 0.25);
}

/* line 2413, app/assets/stylesheets/materia46.css */
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #e51c23;
}

/* line 2417, app/assets/stylesheets/materia46.css */
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 2423, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #e51c23;
}

/* line 2427, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #e51c23;
}

/* line 2431, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #ea4a4f;
  background: #ea4a4f linear-gradient(180deg, #ed656a, #ea4a4f) repeat-x;
}

/* line 2436, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(229, 28, 35, 0.25);
}

/* line 2440, app/assets/stylesheets/materia46.css */
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #e51c23;
}

/* line 2444, app/assets/stylesheets/materia46.css */
.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #e51c23;
}

/* line 2448, app/assets/stylesheets/materia46.css */
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #e51c23;
  box-shadow: 0 0 0 0.2rem rgba(229, 28, 35, 0.25);
}

/* line 2453, app/assets/stylesheets/materia46.css */
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

/* line 2462, app/assets/stylesheets/materia46.css */
.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  /* line 2467, app/assets/stylesheets/materia46.css */
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  /* line 2476, app/assets/stylesheets/materia46.css */
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  /* line 2487, app/assets/stylesheets/materia46.css */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 2492, app/assets/stylesheets/materia46.css */
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  /* line 2495, app/assets/stylesheets/materia46.css */
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  /* line 2499, app/assets/stylesheets/materia46.css */
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  /* line 2509, app/assets/stylesheets/materia46.css */
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  /* line 2517, app/assets/stylesheets/materia46.css */
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  /* line 2523, app/assets/stylesheets/materia46.css */
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

/* line 2528, app/assets/stylesheets/materia46.css */
.btn, .submit {
  display: inline-block;
  font-weight: 400;
  color: #444;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.8rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 2548, app/assets/stylesheets/materia46.css */
  .btn, .submit {
    transition: none;
  }
}

/* line 2553, app/assets/stylesheets/materia46.css */
.btn:hover, .submit:hover {
  color: #444;
  text-decoration: none;
}

/* line 2558, app/assets/stylesheets/materia46.css */
.btn:focus, .submit:focus, .btn.focus, .focus.submit {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

/* line 2563, app/assets/stylesheets/materia46.css */
.btn.disabled, .disabled.submit, .btn:disabled, .submit:disabled {
  opacity: 0.65;
  box-shadow: none;
}

/* line 2568, app/assets/stylesheets/materia46.css */
.btn:not(:disabled):not(.disabled), .submit:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 2572, app/assets/stylesheets/materia46.css */
.btn:not(:disabled):not(.disabled):active, .submit:not(:disabled):not(.disabled):active, .btn.active:not(:disabled):not(.disabled), .submit.active:not(:disabled):not(.disabled) {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 2576, app/assets/stylesheets/materia46.css */
.btn:not(:disabled):not(.disabled):active:focus, .submit:not(:disabled):not(.disabled):active:focus, .btn.active:not(:disabled):not(.disabled):focus, .submit.active:not(:disabled):not(.disabled):focus {
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 2580, app/assets/stylesheets/materia46.css */
a.btn.disabled, a.disabled.submit,
fieldset:disabled a.btn,
fieldset:disabled a.submit {
  pointer-events: none;
}

/* line 2585, app/assets/stylesheets/materia46.css */
.btn-primary, .submit {
  color: #fff;
  background: #2196f3 linear-gradient(180deg, #42a6f5, #2196f3) repeat-x;
  border-color: #2196f3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 2592, app/assets/stylesheets/materia46.css */
.btn-primary:hover, .submit:hover {
  color: #fff;
  background: #0c83e2 linear-gradient(180deg, #3196e6, #0c83e2) repeat-x;
  border-color: #0c7cd5;
}

/* line 2598, app/assets/stylesheets/materia46.css */
.btn-primary:focus, .submit:focus, .btn-primary.focus, .focus.submit {
  color: #fff;
  background: #0c83e2 linear-gradient(180deg, #3196e6, #0c83e2) repeat-x;
  border-color: #0c7cd5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
}

/* line 2605, app/assets/stylesheets/materia46.css */
.btn-primary.disabled, .disabled.submit, .btn-primary:disabled, .submit:disabled {
  color: #fff;
  background-color: #2196f3;
  border-color: #2196f3;
  background-image: none;
}

/* line 2612, app/assets/stylesheets/materia46.css */
.btn-primary:not(:disabled):not(.disabled):active, .submit:not(:disabled):not(.disabled):active, .btn-primary.active:not(:disabled):not(.disabled), .submit.active:not(:disabled):not(.disabled),
.show > .btn-primary.dropdown-toggle,
.show > .dropdown-toggle.submit {
  color: #fff;
  background-color: #0c7cd5;
  background-image: none;
  border-color: #0b75c9;
}

/* line 2620, app/assets/stylesheets/materia46.css */
.btn-primary:not(:disabled):not(.disabled):active:focus, .submit:not(:disabled):not(.disabled):active:focus, .btn-primary.active:not(:disabled):not(.disabled):focus, .submit.active:not(:disabled):not(.disabled):focus,
.show > .btn-primary.dropdown-toggle:focus,
.show > .dropdown-toggle.submit:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(66, 166, 245, 0.5);
}

/* line 2625, app/assets/stylesheets/materia46.css */
.btn-secondary {
  color: #212121;
  background: #fff linear-gradient(180deg, white, #fff) repeat-x;
  border-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 2632, app/assets/stylesheets/materia46.css */
.btn-secondary:hover {
  color: #212121;
  background: #ececec linear-gradient(180deg, #efefef, #ececec) repeat-x;
  border-color: #e6e6e6;
}

/* line 2638, app/assets/stylesheets/materia46.css */
.btn-secondary:focus, .btn-secondary.focus {
  color: #212121;
  background: #ececec linear-gradient(180deg, #efefef, #ececec) repeat-x;
  border-color: #e6e6e6;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(222, 222, 222, 0.5);
}

/* line 2645, app/assets/stylesheets/materia46.css */
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #212121;
  background-color: #fff;
  border-color: #fff;
  background-image: none;
}

/* line 2652, app/assets/stylesheets/materia46.css */
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary.active:not(:disabled):not(.disabled),
.show > .btn-secondary.dropdown-toggle {
  color: #212121;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #dfdfdf;
}

/* line 2660, app/assets/stylesheets/materia46.css */
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary.active:not(:disabled):not(.disabled):focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(222, 222, 222, 0.5);
}

/* line 2665, app/assets/stylesheets/materia46.css */
.btn-success {
  color: #fff;
  background: #4caf50 linear-gradient(180deg, #67bb6a, #4caf50) repeat-x;
  border-color: #4caf50;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 2672, app/assets/stylesheets/materia46.css */
.btn-success:hover {
  color: #fff;
  background: #409444 linear-gradient(180deg, #5da460, #409444) repeat-x;
  border-color: #3d8b40;
}

/* line 2678, app/assets/stylesheets/materia46.css */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background: #409444 linear-gradient(180deg, #5da460, #409444) repeat-x;
  border-color: #3d8b40;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(103, 187, 106, 0.5);
}

/* line 2685, app/assets/stylesheets/materia46.css */
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #4caf50;
  border-color: #4caf50;
  background-image: none;
}

/* line 2692, app/assets/stylesheets/materia46.css */
.btn-success:not(:disabled):not(.disabled):active, .btn-success.active:not(:disabled):not(.disabled),
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #3d8b40;
  background-image: none;
  border-color: #39833c;
}

/* line 2700, app/assets/stylesheets/materia46.css */
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success.active:not(:disabled):not(.disabled):focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(103, 187, 106, 0.5);
}

/* line 2705, app/assets/stylesheets/materia46.css */
.btn-info {
  color: #fff;
  background: #9c27b0 linear-gradient(180deg, #ab47bc, #9c27b0) repeat-x;
  border-color: #9c27b0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 2712, app/assets/stylesheets/materia46.css */
.btn-info:hover {
  color: #fff;
  background: #802091 linear-gradient(180deg, #9342a1, #802091) repeat-x;
  border-color: #771e86;
}

/* line 2718, app/assets/stylesheets/materia46.css */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background: #802091 linear-gradient(180deg, #9342a1, #802091) repeat-x;
  border-color: #771e86;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(171, 71, 188, 0.5);
}

/* line 2725, app/assets/stylesheets/materia46.css */
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #9c27b0;
  border-color: #9c27b0;
  background-image: none;
}

/* line 2732, app/assets/stylesheets/materia46.css */
.btn-info:not(:disabled):not(.disabled):active, .btn-info.active:not(:disabled):not(.disabled),
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #771e86;
  background-image: none;
  border-color: #6e1b7c;
}

/* line 2740, app/assets/stylesheets/materia46.css */
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info.active:not(:disabled):not(.disabled):focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(171, 71, 188, 0.5);
}

/* line 2745, app/assets/stylesheets/materia46.css */
.btn-warning {
  color: #fff;
  background: #ff9800 linear-gradient(180deg, #ffa726, #ff9800) repeat-x;
  border-color: #ff9800;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 2752, app/assets/stylesheets/materia46.css */
.btn-warning:hover {
  color: #fff;
  background: #d98100 linear-gradient(180deg, #de9426, #d98100) repeat-x;
  border-color: #cc7a00;
}

/* line 2758, app/assets/stylesheets/materia46.css */
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background: #d98100 linear-gradient(180deg, #de9426, #d98100) repeat-x;
  border-color: #cc7a00;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(255, 167, 38, 0.5);
}

/* line 2765, app/assets/stylesheets/materia46.css */
.btn-warning.disabled, .btn-warning:disabled {
  color: #fff;
  background-color: #ff9800;
  border-color: #ff9800;
  background-image: none;
}

/* line 2772, app/assets/stylesheets/materia46.css */
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning.active:not(:disabled):not(.disabled),
.show > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #cc7a00;
  background-image: none;
  border-color: #bf7200;
}

/* line 2780, app/assets/stylesheets/materia46.css */
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning.active:not(:disabled):not(.disabled):focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(255, 167, 38, 0.5);
}

/* line 2785, app/assets/stylesheets/materia46.css */
.btn-danger {
  color: #fff;
  background: #e51c23 linear-gradient(180deg, #e93e44, #e51c23) repeat-x;
  border-color: #e51c23;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 2792, app/assets/stylesheets/materia46.css */
.btn-danger:hover {
  color: #fff;
  background: #c4161d linear-gradient(180deg, #cd393f, #c4161d) repeat-x;
  border-color: #b9151b;
}

/* line 2798, app/assets/stylesheets/materia46.css */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background: #c4161d linear-gradient(180deg, #cd393f, #c4161d) repeat-x;
  border-color: #b9151b;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(233, 62, 68, 0.5);
}

/* line 2805, app/assets/stylesheets/materia46.css */
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #e51c23;
  border-color: #e51c23;
  background-image: none;
}

/* line 2812, app/assets/stylesheets/materia46.css */
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger.active:not(:disabled):not(.disabled),
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b9151b;
  background-image: none;
  border-color: #ad1419;
}

/* line 2820, app/assets/stylesheets/materia46.css */
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger.active:not(:disabled):not(.disabled):focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(233, 62, 68, 0.5);
}

/* line 2825, app/assets/stylesheets/materia46.css */
.btn-light {
  color: #212121;
  background: #fff linear-gradient(180deg, white, #fff) repeat-x;
  border-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 2832, app/assets/stylesheets/materia46.css */
.btn-light:hover {
  color: #212121;
  background: #ececec linear-gradient(180deg, #efefef, #ececec) repeat-x;
  border-color: #e6e6e6;
}

/* line 2838, app/assets/stylesheets/materia46.css */
.btn-light:focus, .btn-light.focus {
  color: #212121;
  background: #ececec linear-gradient(180deg, #efefef, #ececec) repeat-x;
  border-color: #e6e6e6;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(222, 222, 222, 0.5);
}

/* line 2845, app/assets/stylesheets/materia46.css */
.btn-light.disabled, .btn-light:disabled {
  color: #212121;
  background-color: #fff;
  border-color: #fff;
  background-image: none;
}

/* line 2852, app/assets/stylesheets/materia46.css */
.btn-light:not(:disabled):not(.disabled):active, .btn-light.active:not(:disabled):not(.disabled),
.show > .btn-light.dropdown-toggle {
  color: #212121;
  background-color: #e6e6e6;
  background-image: none;
  border-color: #dfdfdf;
}

/* line 2860, app/assets/stylesheets/materia46.css */
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light.active:not(:disabled):not(.disabled):focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(222, 222, 222, 0.5);
}

/* line 2865, app/assets/stylesheets/materia46.css */
.btn-dark {
  color: #fff;
  background: #222 linear-gradient(180deg, #434343, #222) repeat-x;
  border-color: #222;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 2872, app/assets/stylesheets/materia46.css */
.btn-dark:hover {
  color: #fff;
  background: #0f0f0f linear-gradient(180deg, #333333, #0f0f0f) repeat-x;
  border-color: #090909;
}

/* line 2878, app/assets/stylesheets/materia46.css */
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background: #0f0f0f linear-gradient(180deg, #333333, #0f0f0f) repeat-x;
  border-color: #090909;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(67, 67, 67, 0.5);
}

/* line 2885, app/assets/stylesheets/materia46.css */
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #222;
  border-color: #222;
  background-image: none;
}

/* line 2892, app/assets/stylesheets/materia46.css */
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark.active:not(:disabled):not(.disabled),
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #090909;
  background-image: none;
  border-color: #020202;
}

/* line 2900, app/assets/stylesheets/materia46.css */
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark.active:not(:disabled):not(.disabled):focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(67, 67, 67, 0.5);
}

/* line 2905, app/assets/stylesheets/materia46.css */
.btn-outline-primary {
  color: #2196f3;
  border-color: #2196f3;
}

/* line 2910, app/assets/stylesheets/materia46.css */
.btn-outline-primary:hover {
  color: #fff;
  background-color: #2196f3;
  border-color: #2196f3;
}

/* line 2916, app/assets/stylesheets/materia46.css */
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}

/* line 2920, app/assets/stylesheets/materia46.css */
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #2196f3;
  background-color: transparent;
}

/* line 2925, app/assets/stylesheets/materia46.css */
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary.active:not(:disabled):not(.disabled),
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #2196f3;
  border-color: #2196f3;
}

/* line 2932, app/assets/stylesheets/materia46.css */
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary.active:not(:disabled):not(.disabled):focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}

/* line 2937, app/assets/stylesheets/materia46.css */
.btn-outline-secondary {
  color: #fff;
  border-color: #fff;
}

/* line 2942, app/assets/stylesheets/materia46.css */
.btn-outline-secondary:hover {
  color: #212121;
  background-color: #fff;
  border-color: #fff;
}

/* line 2948, app/assets/stylesheets/materia46.css */
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* line 2952, app/assets/stylesheets/materia46.css */
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #fff;
  background-color: transparent;
}

/* line 2957, app/assets/stylesheets/materia46.css */
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary.active:not(:disabled):not(.disabled),
.show > .btn-outline-secondary.dropdown-toggle {
  color: #212121;
  background-color: #fff;
  border-color: #fff;
}

/* line 2964, app/assets/stylesheets/materia46.css */
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary.active:not(:disabled):not(.disabled):focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* line 2969, app/assets/stylesheets/materia46.css */
.btn-outline-success {
  color: #4caf50;
  border-color: #4caf50;
}

/* line 2974, app/assets/stylesheets/materia46.css */
.btn-outline-success:hover {
  color: #fff;
  background-color: #4caf50;
  border-color: #4caf50;
}

/* line 2980, app/assets/stylesheets/materia46.css */
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}

/* line 2984, app/assets/stylesheets/materia46.css */
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #4caf50;
  background-color: transparent;
}

/* line 2989, app/assets/stylesheets/materia46.css */
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success.active:not(:disabled):not(.disabled),
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #4caf50;
  border-color: #4caf50;
}

/* line 2996, app/assets/stylesheets/materia46.css */
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success.active:not(:disabled):not(.disabled):focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}

/* line 3001, app/assets/stylesheets/materia46.css */
.btn-outline-info {
  color: #9c27b0;
  border-color: #9c27b0;
}

/* line 3006, app/assets/stylesheets/materia46.css */
.btn-outline-info:hover {
  color: #fff;
  background-color: #9c27b0;
  border-color: #9c27b0;
}

/* line 3012, app/assets/stylesheets/materia46.css */
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(156, 39, 176, 0.5);
}

/* line 3016, app/assets/stylesheets/materia46.css */
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #9c27b0;
  background-color: transparent;
}

/* line 3021, app/assets/stylesheets/materia46.css */
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info.active:not(:disabled):not(.disabled),
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #9c27b0;
  border-color: #9c27b0;
}

/* line 3028, app/assets/stylesheets/materia46.css */
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info.active:not(:disabled):not(.disabled):focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(156, 39, 176, 0.5);
}

/* line 3033, app/assets/stylesheets/materia46.css */
.btn-outline-warning {
  color: #ff9800;
  border-color: #ff9800;
}

/* line 3038, app/assets/stylesheets/materia46.css */
.btn-outline-warning:hover {
  color: #fff;
  background-color: #ff9800;
  border-color: #ff9800;
}

/* line 3044, app/assets/stylesheets/materia46.css */
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.5);
}

/* line 3048, app/assets/stylesheets/materia46.css */
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ff9800;
  background-color: transparent;
}

/* line 3053, app/assets/stylesheets/materia46.css */
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning.active:not(:disabled):not(.disabled),
.show > .btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #ff9800;
  border-color: #ff9800;
}

/* line 3060, app/assets/stylesheets/materia46.css */
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning.active:not(:disabled):not(.disabled):focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(255, 152, 0, 0.5);
}

/* line 3065, app/assets/stylesheets/materia46.css */
.btn-outline-danger {
  color: #e51c23;
  border-color: #e51c23;
}

/* line 3070, app/assets/stylesheets/materia46.css */
.btn-outline-danger:hover {
  color: #fff;
  background-color: #e51c23;
  border-color: #e51c23;
}

/* line 3076, app/assets/stylesheets/materia46.css */
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(229, 28, 35, 0.5);
}

/* line 3080, app/assets/stylesheets/materia46.css */
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #e51c23;
  background-color: transparent;
}

/* line 3085, app/assets/stylesheets/materia46.css */
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger.active:not(:disabled):not(.disabled),
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #e51c23;
  border-color: #e51c23;
}

/* line 3092, app/assets/stylesheets/materia46.css */
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger.active:not(:disabled):not(.disabled):focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(229, 28, 35, 0.5);
}

/* line 3097, app/assets/stylesheets/materia46.css */
.btn-outline-light {
  color: #fff;
  border-color: #fff;
}

/* line 3102, app/assets/stylesheets/materia46.css */
.btn-outline-light:hover {
  color: #212121;
  background-color: #fff;
  border-color: #fff;
}

/* line 3108, app/assets/stylesheets/materia46.css */
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* line 3112, app/assets/stylesheets/materia46.css */
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #fff;
  background-color: transparent;
}

/* line 3117, app/assets/stylesheets/materia46.css */
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light.active:not(:disabled):not(.disabled),
.show > .btn-outline-light.dropdown-toggle {
  color: #212121;
  background-color: #fff;
  border-color: #fff;
}

/* line 3124, app/assets/stylesheets/materia46.css */
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light.active:not(:disabled):not(.disabled):focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* line 3129, app/assets/stylesheets/materia46.css */
.btn-outline-dark {
  color: #222;
  border-color: #222;
}

/* line 3134, app/assets/stylesheets/materia46.css */
.btn-outline-dark:hover {
  color: #fff;
  background-color: #222;
  border-color: #222;
}

/* line 3140, app/assets/stylesheets/materia46.css */
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(34, 34, 34, 0.5);
}

/* line 3144, app/assets/stylesheets/materia46.css */
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #222;
  background-color: transparent;
}

/* line 3149, app/assets/stylesheets/materia46.css */
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark.active:not(:disabled):not(.disabled),
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #222;
  border-color: #222;
}

/* line 3156, app/assets/stylesheets/materia46.css */
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark.active:not(:disabled):not(.disabled):focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 0 0.2rem rgba(34, 34, 34, 0.5);
}

/* line 3161, app/assets/stylesheets/materia46.css */
.btn-link {
  font-weight: 400;
  color: #2196f3;
  text-decoration: none;
}

/* line 3167, app/assets/stylesheets/materia46.css */
.btn-link:hover {
  color: #0a6ebd;
  text-decoration: underline;
}

/* line 3172, app/assets/stylesheets/materia46.css */
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}

/* line 3176, app/assets/stylesheets/materia46.css */
.btn-link:disabled, .btn-link.disabled {
  color: #666;
  pointer-events: none;
}

/* line 3181, app/assets/stylesheets/materia46.css */
.btn-lg, .submit, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.015625rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 3188, app/assets/stylesheets/materia46.css */
.btn-sm, .btn-group-sm > .btn, .btn-group-sm > .submit {
  padding: 0.25rem 0.5rem;
  font-size: 0.710938rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 3195, app/assets/stylesheets/materia46.css */
.btn-block {
  display: block;
  width: 100%;
}

/* line 3200, app/assets/stylesheets/materia46.css */
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

/* line 3204, app/assets/stylesheets/materia46.css */
input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%;
}

/* line 3210, app/assets/stylesheets/materia46.css */
.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  /* line 3215, app/assets/stylesheets/materia46.css */
  .fade {
    transition: none;
  }
}

/* line 3220, app/assets/stylesheets/materia46.css */
.fade:not(.show) {
  opacity: 0;
}

/* line 3224, app/assets/stylesheets/materia46.css */
.collapse:not(.show) {
  display: none;
}

/* line 3228, app/assets/stylesheets/materia46.css */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 3236, app/assets/stylesheets/materia46.css */
  .collapsing {
    transition: none;
  }
}

/* line 3241, app/assets/stylesheets/materia46.css */
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 3248, app/assets/stylesheets/materia46.css */
  .collapsing.width {
    transition: none;
  }
}

/* line 3253, app/assets/stylesheets/materia46.css */
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

/* line 3260, app/assets/stylesheets/materia46.css */
.dropdown-toggle {
  white-space: nowrap;
}

/* line 3264, app/assets/stylesheets/materia46.css */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* line 3275, app/assets/stylesheets/materia46.css */
.dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 3279, app/assets/stylesheets/materia46.css */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 0.8125rem;
  color: #444;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

/* line 3300, app/assets/stylesheets/materia46.css */
.dropdown-menu-left {
  right: auto;
  left: 0;
}

/* line 3305, app/assets/stylesheets/materia46.css */
.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  /* line 3311, app/assets/stylesheets/materia46.css */
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  /* line 3315, app/assets/stylesheets/materia46.css */
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  /* line 3322, app/assets/stylesheets/materia46.css */
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  /* line 3326, app/assets/stylesheets/materia46.css */
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  /* line 3333, app/assets/stylesheets/materia46.css */
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  /* line 3337, app/assets/stylesheets/materia46.css */
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  /* line 3344, app/assets/stylesheets/materia46.css */
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  /* line 3348, app/assets/stylesheets/materia46.css */
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

/* line 3354, app/assets/stylesheets/materia46.css */
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

/* line 3361, app/assets/stylesheets/materia46.css */
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

/* line 3372, app/assets/stylesheets/materia46.css */
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 3376, app/assets/stylesheets/materia46.css */
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

/* line 3384, app/assets/stylesheets/materia46.css */
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

/* line 3395, app/assets/stylesheets/materia46.css */
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 3399, app/assets/stylesheets/materia46.css */
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

/* line 3403, app/assets/stylesheets/materia46.css */
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

/* line 3411, app/assets/stylesheets/materia46.css */
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

/* line 3418, app/assets/stylesheets/materia46.css */
.dropleft .dropdown-toggle::after {
  display: none;
}

/* line 3422, app/assets/stylesheets/materia46.css */
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

/* line 3432, app/assets/stylesheets/materia46.css */
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 3436, app/assets/stylesheets/materia46.css */
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

/* line 3440, app/assets/stylesheets/materia46.css */
.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

/* line 3445, app/assets/stylesheets/materia46.css */
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #eee;
}

/* line 3452, app/assets/stylesheets/materia46.css */
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212121;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

/* line 3465, app/assets/stylesheets/materia46.css */
.dropdown-item:hover, .dropdown-item:focus {
  color: #141414;
  text-decoration: none;
  background: #eee linear-gradient(180deg, #f1f1f1, #eee) repeat-x;
}

/* line 3471, app/assets/stylesheets/materia46.css */
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background: #2196f3 linear-gradient(180deg, #42a6f5, #2196f3) repeat-x;
}

/* line 3477, app/assets/stylesheets/materia46.css */
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #bbb;
  pointer-events: none;
  background-color: transparent;
  background-image: none;
}

/* line 3484, app/assets/stylesheets/materia46.css */
.dropdown-menu.show {
  display: block;
}

/* line 3488, app/assets/stylesheets/materia46.css */
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.710938rem;
  color: #666;
  white-space: nowrap;
}

/* line 3497, app/assets/stylesheets/materia46.css */
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212121;
}

/* line 3503, app/assets/stylesheets/materia46.css */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

/* line 3511, app/assets/stylesheets/materia46.css */
.btn-group > .btn, .btn-group > .submit,
.btn-group-vertical > .btn,
.btn-group-vertical > .submit {
  position: relative;
  flex: 1 1 auto;
}

/* line 3518, app/assets/stylesheets/materia46.css */
.btn-group > .btn:hover, .btn-group > .submit:hover,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .submit:hover {
  z-index: 1;
}

/* line 3523, app/assets/stylesheets/materia46.css */
.btn-group > .btn:focus, .btn-group > .submit:focus, .btn-group > .btn:active, .btn-group > .submit:active, .btn-group > .btn.active, .btn-group > .active.submit,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .submit:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .submit:active,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .active.submit {
  z-index: 1;
}

/* line 3530, app/assets/stylesheets/materia46.css */
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* line 3539, app/assets/stylesheets/materia46.css */
.btn-toolbar .input-group {
  width: auto;
}

/* line 3543, app/assets/stylesheets/materia46.css */
.btn-group > .btn:not(:first-child), .btn-group > .submit:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

/* line 3548, app/assets/stylesheets/materia46.css */
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .submit:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn-group:not(:last-child) > .submit {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3554, app/assets/stylesheets/materia46.css */
.btn-group > .btn:not(:first-child), .btn-group > .submit:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn-group:not(:first-child) > .submit {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3560, app/assets/stylesheets/materia46.css */
.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* line 3565, app/assets/stylesheets/materia46.css */
.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

/* line 3571, app/assets/stylesheets/materia46.css */
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

/* line 3575, app/assets/stylesheets/materia46.css */
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .btn-group-sm > .submit + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

/* line 3580, app/assets/stylesheets/materia46.css */
.btn-lg + .dropdown-toggle-split, .submit + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .btn-group-lg > .submit + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* line 3585, app/assets/stylesheets/materia46.css */
.btn-group.show .dropdown-toggle {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 3589, app/assets/stylesheets/materia46.css */
.btn-group.show .dropdown-toggle.btn-link {
  box-shadow: none;
}

/* line 3593, app/assets/stylesheets/materia46.css */
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* line 3602, app/assets/stylesheets/materia46.css */
.btn-group-vertical > .btn, .btn-group-vertical > .submit,
.btn-group-vertical > .btn-group {
  width: 100%;
}

/* line 3607, app/assets/stylesheets/materia46.css */
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .submit:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

/* line 3612, app/assets/stylesheets/materia46.css */
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .submit:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn-group:not(:last-child) > .submit {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3618, app/assets/stylesheets/materia46.css */
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .submit:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .submit {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 3624, app/assets/stylesheets/materia46.css */
.btn-group-toggle > .btn, .btn-group-toggle > .submit,
.btn-group-toggle > .btn-group > .btn,
.btn-group-toggle > .btn-group > .submit {
  margin-bottom: 0;
}

/* line 3629, app/assets/stylesheets/materia46.css */
.btn-group-toggle > .btn input[type="radio"], .btn-group-toggle > .submit input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .submit input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 3638, app/assets/stylesheets/materia46.css */
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

/* line 3649, app/assets/stylesheets/materia46.css */
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

/* line 3661, app/assets/stylesheets/materia46.css */
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: 0;
}

/* line 3676, app/assets/stylesheets/materia46.css */
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

/* line 3682, app/assets/stylesheets/materia46.css */
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

/* line 3686, app/assets/stylesheets/materia46.css */
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3692, app/assets/stylesheets/materia46.css */
.input-group > .custom-file {
  display: flex;
  align-items: center;
}

/* line 3699, app/assets/stylesheets/materia46.css */
.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3705, app/assets/stylesheets/materia46.css */
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3710, app/assets/stylesheets/materia46.css */
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3718, app/assets/stylesheets/materia46.css */
.input-group.has-validation > .form-control:nth-last-child(n + 3),
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3726, app/assets/stylesheets/materia46.css */
.input-group-prepend,
.input-group-append {
  display: flex;
}

/* line 3732, app/assets/stylesheets/materia46.css */
.input-group-prepend .btn, .input-group-prepend .submit,
.input-group-append .btn,
.input-group-append .submit {
  position: relative;
  z-index: 2;
}

/* line 3738, app/assets/stylesheets/materia46.css */
.input-group-prepend .btn:focus, .input-group-prepend .submit:focus,
.input-group-append .btn:focus,
.input-group-append .submit:focus {
  z-index: 3;
}

/* line 3743, app/assets/stylesheets/materia46.css */
.input-group-prepend .btn + .btn, .input-group-prepend .submit + .btn, .input-group-prepend .btn + .submit, .input-group-prepend .submit + .submit,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .submit + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .submit,
.input-group-append .btn + .btn,
.input-group-append .submit + .btn,
.input-group-append .btn + .submit,
.input-group-append .submit + .submit,
.input-group-append .btn + .input-group-text,
.input-group-append .submit + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .submit {
  margin-left: 0;
}

/* line 3754, app/assets/stylesheets/materia46.css */
.input-group-prepend {
  margin-right: 0;
}

/* line 3758, app/assets/stylesheets/materia46.css */
.input-group-append {
  margin-left: 0;
}

/* line 3762, app/assets/stylesheets/materia46.css */
.input-group-text {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  text-align: center;
  white-space: nowrap;
  background-color: transparent;
  border: 0 solid transparent;
  border-radius: 0;
}

/* line 3780, app/assets/stylesheets/materia46.css */
.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

/* line 3785, app/assets/stylesheets/materia46.css */
.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 2.03125rem);
}

/* line 3790, app/assets/stylesheets/materia46.css */
.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .submit,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .submit {
  padding: 1.015625rem 0;
  font-size: 1.015625rem;
  line-height: 1.5;
  border-radius: 0;
}

/* line 3802, app/assets/stylesheets/materia46.css */
.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: 1.5em;
}

/* line 3807, app/assets/stylesheets/materia46.css */
.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .submit,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .submit {
  padding: 0 0;
  font-size: 0.710938rem;
  line-height: 1.5;
  border-radius: 0;
}

/* line 3819, app/assets/stylesheets/materia46.css */
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1rem;
}

/* line 3824, app/assets/stylesheets/materia46.css */
.input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .submit,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .submit,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .submit,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .submit:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3836, app/assets/stylesheets/materia46.css */
.input-group > .input-group-append > .btn, .input-group > .input-group-append > .submit,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .submit,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .submit:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3846, app/assets/stylesheets/materia46.css */
.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.21875rem;
  padding-left: 3rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}

/* line 3857, app/assets/stylesheets/materia46.css */
.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

/* line 3863, app/assets/stylesheets/materia46.css */
.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1.25rem;
  height: 1.234375rem;
  opacity: 0;
}

/* line 3872, app/assets/stylesheets/materia46.css */
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #2196f3;
  background: #2196f3 linear-gradient(180deg, #42a6f5, #2196f3) repeat-x;
  box-shadow: 0;
}

/* line 3879, app/assets/stylesheets/materia46.css */
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: inset 0 -1px 0 #dddddd 0;
}

/* line 3883, app/assets/stylesheets/materia46.css */
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #9acffa;
}

/* line 3887, app/assets/stylesheets/materia46.css */
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #cae6fc;
  border-color: #cae6fc;
  box-shadow: 0;
}

/* line 3894, app/assets/stylesheets/materia46.css */
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #666;
}

/* line 3898, app/assets/stylesheets/materia46.css */
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #f8f9fa;
}

/* line 3902, app/assets/stylesheets/materia46.css */
.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

/* line 3908, app/assets/stylesheets/materia46.css */
.custom-control-label::before {
  position: absolute;
  top: -0.015625rem;
  left: -3rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 0 solid #bbb;
  box-shadow: inset 0 -1px 0 #dddddd;
}

/* line 3922, app/assets/stylesheets/materia46.css */
.custom-control-label::after {
  position: absolute;
  top: -0.015625rem;
  left: -3rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background: 50% / 50% 50% no-repeat;
}

/* line 3933, app/assets/stylesheets/materia46.css */
.custom-checkbox .custom-control-label::before {
  border-radius: 2px;
}

/* line 3937, app/assets/stylesheets/materia46.css */
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

/* line 3941, app/assets/stylesheets/materia46.css */
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #2196f3;
  background: #2196f3 linear-gradient(180deg, #42a6f5, #2196f3) repeat-x;
  box-shadow: 0;
}

/* line 3947, app/assets/stylesheets/materia46.css */
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

/* line 3951, app/assets/stylesheets/materia46.css */
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background: rgba(33, 150, 243, 0.5) linear-gradient(180deg, rgba(110, 186, 247, 0.575), rgba(33, 150, 243, 0.5)) repeat-x;
}

/* line 3955, app/assets/stylesheets/materia46.css */
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background: rgba(33, 150, 243, 0.5) linear-gradient(180deg, rgba(110, 186, 247, 0.575), rgba(33, 150, 243, 0.5)) repeat-x;
}

/* line 3959, app/assets/stylesheets/materia46.css */
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

/* line 3963, app/assets/stylesheets/materia46.css */
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='4' fill='%232196f3'/%3e%3c/svg%3e");
}

/* line 3967, app/assets/stylesheets/materia46.css */
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background: rgba(33, 150, 243, 0.5) linear-gradient(180deg, rgba(110, 186, 247, 0.575), rgba(33, 150, 243, 0.5)) repeat-x;
}

/* line 3971, app/assets/stylesheets/materia46.css */
.custom-switch {
  padding-left: 3.9375rem;
}

/* line 3975, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-label::before {
  left: -3.9375rem;
  width: 2.1875rem;
  pointer-events: all;
  border-radius: 0.625rem;
}

/* line 3982, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-label::after {
  top: -0.015625rem;
  left: -3.9375rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #bbb;
  border-radius: 0.625rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 3995, app/assets/stylesheets/materia46.css */
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

/* line 4000, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.9375rem);
}

/* line 4006, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background: rgba(33, 150, 243, 0.5) linear-gradient(180deg, rgba(110, 186, 247, 0.575), rgba(33, 150, 243, 0.5)) repeat-x;
}

/* line 4010, app/assets/stylesheets/materia46.css */
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 2rem);
  padding: 1rem 1rem 1rem 0;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  vertical-align: middle;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23222' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0 center/8px 10px no-repeat;
  border: 0 solid transparent;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 4029, app/assets/stylesheets/materia46.css */
.custom-select:focus {
  border-color: #9acffa;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

/* line 4035, app/assets/stylesheets/materia46.css */
.custom-select:focus::-ms-value {
  color: #666;
  background-color: transparent;
}

/* line 4040, app/assets/stylesheets/materia46.css */
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0;
  background-image: none;
}

/* line 4046, app/assets/stylesheets/materia46.css */
.custom-select:disabled {
  color: #666;
  background-color: #eee;
}

/* line 4051, app/assets/stylesheets/materia46.css */
.custom-select::-ms-expand {
  display: none;
}

/* line 4055, app/assets/stylesheets/materia46.css */
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #666;
}

/* line 4060, app/assets/stylesheets/materia46.css */
.custom-select-sm {
  height: 1.5em;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 0.710938rem;
}

/* line 4068, app/assets/stylesheets/materia46.css */
.custom-select-lg {
  height: calc(1.5em + 2.03125rem);
  padding-top: 1.015625rem;
  padding-bottom: 1.015625rem;
  padding-left: 0;
  font-size: 1.015625rem;
}

/* line 4076, app/assets/stylesheets/materia46.css */
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 2rem);
  margin-bottom: 0;
}

/* line 4084, app/assets/stylesheets/materia46.css */
.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 2rem);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

/* line 4094, app/assets/stylesheets/materia46.css */
.custom-file-input:focus ~ .custom-file-label {
  border-color: #9acffa;
  box-shadow: inset 0 -2px 0 #2196f3;
}

/* line 4099, app/assets/stylesheets/materia46.css */
.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: transparent;
}

/* line 4104, app/assets/stylesheets/materia46.css */
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

/* line 4108, app/assets/stylesheets/materia46.css */
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

/* line 4112, app/assets/stylesheets/materia46.css */
.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 2rem);
  padding: 1rem 0;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
  background-color: transparent;
  border: 0 solid transparent;
  border-radius: 0;
  box-shadow: inset 0 -1px 0 #dddddd;
}

/* line 4130, app/assets/stylesheets/materia46.css */
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 2rem);
  padding: 1rem 0;
  line-height: 1.5;
  color: #666;
  content: "Browse";
  background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent) repeat-x;
  border-left: inherit;
  border-radius: 0 0 0 0;
}

/* line 4147, app/assets/stylesheets/materia46.css */
.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 4157, app/assets/stylesheets/materia46.css */
.custom-range:focus {
  outline: 0;
}

/* line 4161, app/assets/stylesheets/materia46.css */
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, inset 0 -2px 0 #2196f3;
}

/* line 4165, app/assets/stylesheets/materia46.css */
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, inset 0 -2px 0 #2196f3;
}

/* line 4169, app/assets/stylesheets/materia46.css */
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, inset 0 -2px 0 #2196f3;
}

/* line 4173, app/assets/stylesheets/materia46.css */
.custom-range::-moz-focus-outer {
  border: 0;
}

/* line 4177, app/assets/stylesheets/materia46.css */
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background: #2196f3 linear-gradient(180deg, #42a6f5, #2196f3) repeat-x;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 4192, app/assets/stylesheets/materia46.css */
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

/* line 4198, app/assets/stylesheets/materia46.css */
.custom-range::-webkit-slider-thumb:active {
  background: #cae6fc linear-gradient(180deg, #d2eafd, #cae6fc) repeat-x;
}

/* line 4202, app/assets/stylesheets/materia46.css */
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

/* line 4213, app/assets/stylesheets/materia46.css */
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background: #2196f3 linear-gradient(180deg, #42a6f5, #2196f3) repeat-x;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 4227, app/assets/stylesheets/materia46.css */
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

/* line 4233, app/assets/stylesheets/materia46.css */
.custom-range::-moz-range-thumb:active {
  background: #cae6fc linear-gradient(180deg, #d2eafd, #cae6fc) repeat-x;
}

/* line 4237, app/assets/stylesheets/materia46.css */
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

/* line 4248, app/assets/stylesheets/materia46.css */
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background: #2196f3 linear-gradient(180deg, #42a6f5, #2196f3) repeat-x;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 4264, app/assets/stylesheets/materia46.css */
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

/* line 4270, app/assets/stylesheets/materia46.css */
.custom-range::-ms-thumb:active {
  background: #cae6fc linear-gradient(180deg, #d2eafd, #cae6fc) repeat-x;
}

/* line 4274, app/assets/stylesheets/materia46.css */
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}

/* line 4285, app/assets/stylesheets/materia46.css */
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 4290, app/assets/stylesheets/materia46.css */
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 4296, app/assets/stylesheets/materia46.css */
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #bbb;
}

/* line 4300, app/assets/stylesheets/materia46.css */
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

/* line 4304, app/assets/stylesheets/materia46.css */
.custom-range:disabled::-moz-range-thumb {
  background-color: #bbb;
}

/* line 4308, app/assets/stylesheets/materia46.css */
.custom-range:disabled::-moz-range-track {
  cursor: default;
}

/* line 4312, app/assets/stylesheets/materia46.css */
.custom-range:disabled::-ms-thumb {
  background-color: #bbb;
}

/* line 4316, app/assets/stylesheets/materia46.css */
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 4323, app/assets/stylesheets/materia46.css */
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

/* line 4330, app/assets/stylesheets/materia46.css */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 4340, app/assets/stylesheets/materia46.css */
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

/* line 4345, app/assets/stylesheets/materia46.css */
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

/* line 4349, app/assets/stylesheets/materia46.css */
.nav-link.disabled {
  color: #bbb;
  pointer-events: none;
  cursor: default;
}

/* line 4355, app/assets/stylesheets/materia46.css */
.nav-tabs {
  border-bottom: 1px solid transparent;
}

/* line 4359, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 4367, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #eee #eee transparent;
}

/* line 4372, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-link.disabled {
  color: #bbb;
  background-color: transparent;
  border-color: transparent;
}

/* line 4378, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #444;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

/* line 4385, app/assets/stylesheets/materia46.css */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 4391, app/assets/stylesheets/materia46.css */
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

/* line 4397, app/assets/stylesheets/materia46.css */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #2196f3;
}

/* line 4403, app/assets/stylesheets/materia46.css */
.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

/* line 4410, app/assets/stylesheets/materia46.css */
.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

/* line 4419, app/assets/stylesheets/materia46.css */
.tab-content > .tab-pane {
  display: none;
}

/* line 4423, app/assets/stylesheets/materia46.css */
.tab-content > .active {
  display: block;
}

/* line 4427, app/assets/stylesheets/materia46.css */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

/* line 4440, app/assets/stylesheets/materia46.css */
.navbar .container, .navbar main,
.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* line 4452, app/assets/stylesheets/materia46.css */
.navbar-brand {
  display: inline-block;
  padding-top: 0.347656rem;
  padding-bottom: 0.347656rem;
  margin-right: 1rem;
  font-size: 1.015625rem;
  line-height: inherit;
  white-space: nowrap;
}

/* line 4462, app/assets/stylesheets/materia46.css */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 4466, app/assets/stylesheets/materia46.css */
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 4476, app/assets/stylesheets/materia46.css */
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

/* line 4481, app/assets/stylesheets/materia46.css */
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

/* line 4486, app/assets/stylesheets/materia46.css */
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 4492, app/assets/stylesheets/materia46.css */
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

/* line 4501, app/assets/stylesheets/materia46.css */
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.015625rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* line 4510, app/assets/stylesheets/materia46.css */
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

/* line 4514, app/assets/stylesheets/materia46.css */
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat;
}

/* line 4523, app/assets/stylesheets/materia46.css */
.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  /* line 4529, app/assets/stylesheets/materia46.css */
  .navbar-expand-sm > .container, .navbar-expand-sm > main,
.navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  /* line 4537, app/assets/stylesheets/materia46.css */
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 4543, app/assets/stylesheets/materia46.css */
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  /* line 4547, app/assets/stylesheets/materia46.css */
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 4550, app/assets/stylesheets/materia46.css */
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 4554, app/assets/stylesheets/materia46.css */
  .navbar-expand-sm > .container, .navbar-expand-sm > main,
.navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  /* line 4559, app/assets/stylesheets/materia46.css */
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 4562, app/assets/stylesheets/materia46.css */
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 4568, app/assets/stylesheets/materia46.css */
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  /* line 4574, app/assets/stylesheets/materia46.css */
  .navbar-expand-md > .container, .navbar-expand-md > main,
.navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  /* line 4582, app/assets/stylesheets/materia46.css */
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 4588, app/assets/stylesheets/materia46.css */
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  /* line 4592, app/assets/stylesheets/materia46.css */
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 4595, app/assets/stylesheets/materia46.css */
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 4599, app/assets/stylesheets/materia46.css */
  .navbar-expand-md > .container, .navbar-expand-md > main,
.navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  /* line 4604, app/assets/stylesheets/materia46.css */
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 4607, app/assets/stylesheets/materia46.css */
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 4613, app/assets/stylesheets/materia46.css */
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  /* line 4619, app/assets/stylesheets/materia46.css */
  .navbar-expand-lg > .container, .navbar-expand-lg > main,
.navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  /* line 4627, app/assets/stylesheets/materia46.css */
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 4633, app/assets/stylesheets/materia46.css */
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  /* line 4637, app/assets/stylesheets/materia46.css */
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 4640, app/assets/stylesheets/materia46.css */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 4644, app/assets/stylesheets/materia46.css */
  .navbar-expand-lg > .container, .navbar-expand-lg > main,
.navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  /* line 4649, app/assets/stylesheets/materia46.css */
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 4652, app/assets/stylesheets/materia46.css */
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 4658, app/assets/stylesheets/materia46.css */
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  /* line 4664, app/assets/stylesheets/materia46.css */
  .navbar-expand-xl > .container, .navbar-expand-xl > main,
.navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  /* line 4672, app/assets/stylesheets/materia46.css */
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 4678, app/assets/stylesheets/materia46.css */
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  /* line 4682, app/assets/stylesheets/materia46.css */
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 4685, app/assets/stylesheets/materia46.css */
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 4689, app/assets/stylesheets/materia46.css */
  .navbar-expand-xl > .container, .navbar-expand-xl > main,
.navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  /* line 4694, app/assets/stylesheets/materia46.css */
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 4697, app/assets/stylesheets/materia46.css */
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 4703, app/assets/stylesheets/materia46.css */
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

/* line 4708, app/assets/stylesheets/materia46.css */
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

/* line 4715, app/assets/stylesheets/materia46.css */
.navbar-expand > .container, .navbar-expand > main,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

/* line 4721, app/assets/stylesheets/materia46.css */
.navbar-expand .navbar-nav {
  flex-direction: row;
}

/* line 4726, app/assets/stylesheets/materia46.css */
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

/* line 4730, app/assets/stylesheets/materia46.css */
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* line 4735, app/assets/stylesheets/materia46.css */
.navbar-expand > .container, .navbar-expand > main,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  flex-wrap: nowrap;
}

/* line 4741, app/assets/stylesheets/materia46.css */
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

/* line 4745, app/assets/stylesheets/materia46.css */
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

/* line 4752, app/assets/stylesheets/materia46.css */
.navbar-expand .navbar-toggler {
  display: none;
}

/* line 4756, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

/* line 4760, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 4764, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

/* line 4768, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

/* line 4772, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

/* line 4776, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

/* line 4783, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 4788, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 4792, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

/* line 4796, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

/* line 4800, app/assets/stylesheets/materia46.css */
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 4804, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-brand {
  color: #fff;
}

/* line 4808, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

/* line 4812, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.75);
}

/* line 4816, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: #fff;
}

/* line 4820, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

/* line 4824, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

/* line 4831, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 4836, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 4840, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.75);
}

/* line 4844, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-text a {
  color: #fff;
}

/* line 4848, app/assets/stylesheets/materia46.css */
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

/* line 4852, app/assets/stylesheets/materia46.css */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid transparent;
  border-radius: 0.25rem;
}

/* line 4866, app/assets/stylesheets/materia46.css */
.card > hr {
  margin-right: 0;
  margin-left: 0;
}

/* line 4871, app/assets/stylesheets/materia46.css */
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

/* line 4876, app/assets/stylesheets/materia46.css */
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 4882, app/assets/stylesheets/materia46.css */
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 4888, app/assets/stylesheets/materia46.css */
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

/* line 4893, app/assets/stylesheets/materia46.css */
.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

/* line 4900, app/assets/stylesheets/materia46.css */
.card-title {
  margin-bottom: 0.75rem;
}

/* line 4904, app/assets/stylesheets/materia46.css */
.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

/* line 4909, app/assets/stylesheets/materia46.css */
.card-text:last-child {
  margin-bottom: 0;
}

/* line 4913, app/assets/stylesheets/materia46.css */
.card-link:hover {
  text-decoration: none;
}

/* line 4917, app/assets/stylesheets/materia46.css */
.card-link + .card-link {
  margin-left: 1.25rem;
}

/* line 4921, app/assets/stylesheets/materia46.css */
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 0 solid transparent;
}

/* line 4928, app/assets/stylesheets/materia46.css */
.card-header:first-child {
  border-radius: 0.25rem 0.25rem 0 0;
}

/* line 4932, app/assets/stylesheets/materia46.css */
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 0 solid transparent;
}

/* line 4938, app/assets/stylesheets/materia46.css */
.card-footer:last-child {
  border-radius: 0 0 0.25rem 0.25rem;
}

/* line 4942, app/assets/stylesheets/materia46.css */
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

/* line 4949, app/assets/stylesheets/materia46.css */
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

/* line 4954, app/assets/stylesheets/materia46.css */
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: 0.25rem;
}

/* line 4964, app/assets/stylesheets/materia46.css */
.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

/* line 4972, app/assets/stylesheets/materia46.css */
.card-img,
.card-img-top {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 4978, app/assets/stylesheets/materia46.css */
.card-img,
.card-img-bottom {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 4984, app/assets/stylesheets/materia46.css */
.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 4989, app/assets/stylesheets/materia46.css */
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  /* line 4997, app/assets/stylesheets/materia46.css */
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

/* line 5006, app/assets/stylesheets/materia46.css */
.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 5011, app/assets/stylesheets/materia46.css */
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  /* line 5017, app/assets/stylesheets/materia46.css */
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  /* line 5022, app/assets/stylesheets/materia46.css */
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  /* line 5026, app/assets/stylesheets/materia46.css */
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* line 5030, app/assets/stylesheets/materia46.css */
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  /* line 5034, app/assets/stylesheets/materia46.css */
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  /* line 5038, app/assets/stylesheets/materia46.css */
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  /* line 5042, app/assets/stylesheets/materia46.css */
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  /* line 5046, app/assets/stylesheets/materia46.css */
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

/* line 5052, app/assets/stylesheets/materia46.css */
.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  /* line 5057, app/assets/stylesheets/materia46.css */
  .card-columns {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  /* line 5067, app/assets/stylesheets/materia46.css */
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

/* line 5073, app/assets/stylesheets/materia46.css */
.accordion {
  overflow-anchor: none;
}

/* line 5077, app/assets/stylesheets/materia46.css */
.accordion > .card {
  overflow: hidden;
}

/* line 5081, app/assets/stylesheets/materia46.css */
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 5087, app/assets/stylesheets/materia46.css */
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 5092, app/assets/stylesheets/materia46.css */
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: 0;
}

/* line 5097, app/assets/stylesheets/materia46.css */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eee;
  border-radius: 0.25rem;
}

/* line 5109, app/assets/stylesheets/materia46.css */
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

/* line 5113, app/assets/stylesheets/materia46.css */
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #666;
  content: "/";
}

/* line 5120, app/assets/stylesheets/materia46.css */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

/* line 5124, app/assets/stylesheets/materia46.css */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

/* line 5128, app/assets/stylesheets/materia46.css */
.breadcrumb-item.active {
  color: #666;
}

/* line 5132, app/assets/stylesheets/materia46.css */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

/* line 5140, app/assets/stylesheets/materia46.css */
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #2196f3;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

/* line 5151, app/assets/stylesheets/materia46.css */
.page-link:hover {
  z-index: 2;
  color: #0a6ebd;
  text-decoration: none;
  background-color: #eee;
  border-color: #dee2e6;
}

/* line 5159, app/assets/stylesheets/materia46.css */
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
}

/* line 5165, app/assets/stylesheets/materia46.css */
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 5171, app/assets/stylesheets/materia46.css */
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

/* line 5176, app/assets/stylesheets/materia46.css */
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #2196f3;
  border-color: #2196f3;
}

/* line 5183, app/assets/stylesheets/materia46.css */
.page-item.disabled .page-link {
  color: #666;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

/* line 5191, app/assets/stylesheets/materia46.css */
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.015625rem;
  line-height: 1.5;
}

/* line 5197, app/assets/stylesheets/materia46.css */
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

/* line 5202, app/assets/stylesheets/materia46.css */
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

/* line 5207, app/assets/stylesheets/materia46.css */
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.710938rem;
  line-height: 1.5;
}

/* line 5213, app/assets/stylesheets/materia46.css */
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

/* line 5218, app/assets/stylesheets/materia46.css */
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/* line 5223, app/assets/stylesheets/materia46.css */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 5237, app/assets/stylesheets/materia46.css */
  .badge {
    transition: none;
  }
}

/* line 5242, app/assets/stylesheets/materia46.css */
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

/* line 5246, app/assets/stylesheets/materia46.css */
.badge:empty {
  display: none;
}

/* line 5250, app/assets/stylesheets/materia46.css */
.btn .badge, .submit .badge {
  position: relative;
  top: -1px;
}

/* line 5255, app/assets/stylesheets/materia46.css */
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

/* line 5261, app/assets/stylesheets/materia46.css */
.badge-primary {
  color: #fff;
  background-color: #2196f3;
}

/* line 5266, app/assets/stylesheets/materia46.css */
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0c7cd5;
}

/* line 5271, app/assets/stylesheets/materia46.css */
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.5);
}

/* line 5276, app/assets/stylesheets/materia46.css */
.badge-secondary {
  color: #212121;
  background-color: #fff;
}

/* line 5281, app/assets/stylesheets/materia46.css */
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #212121;
  background-color: #e6e6e6;
}

/* line 5286, app/assets/stylesheets/materia46.css */
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* line 5291, app/assets/stylesheets/materia46.css */
.badge-success {
  color: #fff;
  background-color: #4caf50;
}

/* line 5296, app/assets/stylesheets/materia46.css */
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #3d8b40;
}

/* line 5301, app/assets/stylesheets/materia46.css */
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.5);
}

/* line 5306, app/assets/stylesheets/materia46.css */
.badge-info {
  color: #fff;
  background-color: #9c27b0;
}

/* line 5311, app/assets/stylesheets/materia46.css */
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #771e86;
}

/* line 5316, app/assets/stylesheets/materia46.css */
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(156, 39, 176, 0.5);
}

/* line 5321, app/assets/stylesheets/materia46.css */
.badge-warning {
  color: #fff;
  background-color: #ff9800;
}

/* line 5326, app/assets/stylesheets/materia46.css */
a.badge-warning:hover, a.badge-warning:focus {
  color: #fff;
  background-color: #cc7a00;
}

/* line 5331, app/assets/stylesheets/materia46.css */
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.5);
}

/* line 5336, app/assets/stylesheets/materia46.css */
.badge-danger {
  color: #fff;
  background-color: #e51c23;
}

/* line 5341, app/assets/stylesheets/materia46.css */
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #b9151b;
}

/* line 5346, app/assets/stylesheets/materia46.css */
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(229, 28, 35, 0.5);
}

/* line 5351, app/assets/stylesheets/materia46.css */
.badge-light {
  color: #212121;
  background-color: #fff;
}

/* line 5356, app/assets/stylesheets/materia46.css */
a.badge-light:hover, a.badge-light:focus {
  color: #212121;
  background-color: #e6e6e6;
}

/* line 5361, app/assets/stylesheets/materia46.css */
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

/* line 5366, app/assets/stylesheets/materia46.css */
.badge-dark {
  color: #fff;
  background-color: #222;
}

/* line 5371, app/assets/stylesheets/materia46.css */
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #090909;
}

/* line 5376, app/assets/stylesheets/materia46.css */
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(34, 34, 34, 0.5);
}

/* line 5381, app/assets/stylesheets/materia46.css */
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #eee;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  /* line 5389, app/assets/stylesheets/materia46.css */
  .jumbotron {
    padding: 4rem 2rem;
  }
}

/* line 5394, app/assets/stylesheets/materia46.css */
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

/* line 5400, app/assets/stylesheets/materia46.css */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* line 5408, app/assets/stylesheets/materia46.css */
.alert-heading {
  color: inherit;
}

/* line 5412, app/assets/stylesheets/materia46.css */
.alert-link {
  font-weight: 700;
}

/* line 5416, app/assets/stylesheets/materia46.css */
.alert-dismissible {
  padding-right: 4.625rem;
}

/* line 5420, app/assets/stylesheets/materia46.css */
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

/* line 5429, app/assets/stylesheets/materia46.css */
.alert-primary {
  color: #114e7e;
  background: #d3eafd linear-gradient(180deg, #daedfd, #d3eafd) repeat-x;
  border-color: #c1e2fc;
}

/* line 5435, app/assets/stylesheets/materia46.css */
.alert-primary hr {
  border-top-color: #a9d7fb;
}

/* line 5439, app/assets/stylesheets/materia46.css */
.alert-primary .alert-link {
  color: #0b3251;
}

/* line 5443, app/assets/stylesheets/materia46.css */
.alert-secondary {
  color: #858585;
  background: white linear-gradient(180deg, white, white) repeat-x;
  border-color: white;
}

/* line 5449, app/assets/stylesheets/materia46.css */
.alert-secondary hr {
  border-top-color: #f2f2f2;
}

/* line 5453, app/assets/stylesheets/materia46.css */
.alert-secondary .alert-link {
  color: #6c6c6c;
}

/* line 5457, app/assets/stylesheets/materia46.css */
.alert-success {
  color: #285b2a;
  background: #dbefdc linear-gradient(180deg, #e0f1e1, #dbefdc) repeat-x;
  border-color: #cde9ce;
}

/* line 5463, app/assets/stylesheets/materia46.css */
.alert-success hr {
  border-top-color: #bbe1bd;
}

/* line 5467, app/assets/stylesheets/materia46.css */
.alert-success .alert-link {
  color: #18381a;
}

/* line 5471, app/assets/stylesheets/materia46.css */
.alert-info {
  color: #51145c;
  background: #ebd4ef linear-gradient(180deg, #eedaf1, #ebd4ef) repeat-x;
  border-color: #e3c3e9;
}

/* line 5477, app/assets/stylesheets/materia46.css */
.alert-info hr {
  border-top-color: #dab0e2;
}

/* line 5481, app/assets/stylesheets/materia46.css */
.alert-info .alert-link {
  color: #2c0b32;
}

/* line 5485, app/assets/stylesheets/materia46.css */
.alert-warning {
  color: #854f00;
  background: #ffeacc linear-gradient(180deg, #ffedd4, #ffeacc) repeat-x;
  border-color: #ffe2b8;
}

/* line 5491, app/assets/stylesheets/materia46.css */
.alert-warning hr {
  border-top-color: #ffd89f;
}

/* line 5495, app/assets/stylesheets/materia46.css */
.alert-warning .alert-link {
  color: #523100;
}

/* line 5499, app/assets/stylesheets/materia46.css */
.alert-danger {
  color: #770f12;
  background: #fad2d3 linear-gradient(180deg, #fbd9da, #fad2d3) repeat-x;
  border-color: #f8bfc1;
}

/* line 5505, app/assets/stylesheets/materia46.css */
.alert-danger hr {
  border-top-color: #f5a8ab;
}

/* line 5509, app/assets/stylesheets/materia46.css */
.alert-danger .alert-link {
  color: #4a090b;
}

/* line 5513, app/assets/stylesheets/materia46.css */
.alert-light {
  color: #858585;
  background: white linear-gradient(180deg, white, white) repeat-x;
  border-color: white;
}

/* line 5519, app/assets/stylesheets/materia46.css */
.alert-light hr {
  border-top-color: #f2f2f2;
}

/* line 5523, app/assets/stylesheets/materia46.css */
.alert-light .alert-link {
  color: #6c6c6c;
}

/* line 5527, app/assets/stylesheets/materia46.css */
.alert-dark {
  color: #121212;
  background: lightgray linear-gradient(180deg, #dadada, lightgray) repeat-x;
  border-color: #c1c1c1;
}

/* line 5533, app/assets/stylesheets/materia46.css */
.alert-dark hr {
  border-top-color: #b4b4b4;
}

/* line 5537, app/assets/stylesheets/materia46.css */
.alert-dark .alert-link {
  color: black;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 0.375rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 0.375rem 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 5559, app/assets/stylesheets/materia46.css */
.progress {
  display: flex;
  height: 0.375rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.609375rem;
  background-color: #eee;
  border-radius: 0;
  box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

/* line 5571, app/assets/stylesheets/materia46.css */
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #2196f3;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 5587, app/assets/stylesheets/materia46.css */
  .progress-bar {
    transition: none;
  }
}

/* line 5592, app/assets/stylesheets/materia46.css */
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 0.375rem 0.375rem;
}

/* line 5597, app/assets/stylesheets/materia46.css */
.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  /* line 5603, app/assets/stylesheets/materia46.css */
  .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}

/* line 5609, app/assets/stylesheets/materia46.css */
.media {
  display: flex;
  align-items: flex-start;
}

/* line 5616, app/assets/stylesheets/materia46.css */
.media-body {
  flex: 1;
}

/* line 5621, app/assets/stylesheets/materia46.css */
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

/* line 5631, app/assets/stylesheets/materia46.css */
.list-group-item-action {
  width: 100%;
  color: #444;
  text-align: inherit;
}

/* line 5637, app/assets/stylesheets/materia46.css */
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #444;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 5644, app/assets/stylesheets/materia46.css */
.list-group-item-action:active {
  color: #444;
  background-color: #eee;
}

/* line 5649, app/assets/stylesheets/materia46.css */
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 5657, app/assets/stylesheets/materia46.css */
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

/* line 5662, app/assets/stylesheets/materia46.css */
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

/* line 5667, app/assets/stylesheets/materia46.css */
.list-group-item.disabled, .list-group-item:disabled {
  color: #666;
  pointer-events: none;
  background-color: #fff;
}

/* line 5673, app/assets/stylesheets/materia46.css */
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #2196f3;
  border-color: #2196f3;
}

/* line 5680, app/assets/stylesheets/materia46.css */
.list-group-item + .list-group-item {
  border-top-width: 0;
}

/* line 5684, app/assets/stylesheets/materia46.css */
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

/* line 5689, app/assets/stylesheets/materia46.css */
.list-group-horizontal {
  flex-direction: row;
}

/* line 5694, app/assets/stylesheets/materia46.css */
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

/* line 5699, app/assets/stylesheets/materia46.css */
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

/* line 5704, app/assets/stylesheets/materia46.css */
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

/* line 5708, app/assets/stylesheets/materia46.css */
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

/* line 5713, app/assets/stylesheets/materia46.css */
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  /* line 5719, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  /* line 5723, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 5727, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 5731, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  /* line 5734, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 5738, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  /* line 5745, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-md {
    flex-direction: row;
  }
  /* line 5749, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 5753, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 5757, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  /* line 5760, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 5764, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  /* line 5771, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  /* line 5775, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 5779, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 5783, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  /* line 5786, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 5790, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  /* line 5797, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  /* line 5801, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 5805, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 5809, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  /* line 5812, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 5816, app/assets/stylesheets/materia46.css */
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

/* line 5822, app/assets/stylesheets/materia46.css */
.list-group-flush {
  border-radius: 0;
}

/* line 5826, app/assets/stylesheets/materia46.css */
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

/* line 5830, app/assets/stylesheets/materia46.css */
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

/* line 5834, app/assets/stylesheets/materia46.css */
.list-group-item-primary {
  color: #114e7e;
  background-color: #c1e2fc;
}

/* line 5839, app/assets/stylesheets/materia46.css */
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #114e7e;
  background-color: #a9d7fb;
}

/* line 5844, app/assets/stylesheets/materia46.css */
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #114e7e;
  border-color: #114e7e;
}

/* line 5850, app/assets/stylesheets/materia46.css */
.list-group-item-secondary {
  color: #858585;
  background-color: white;
}

/* line 5855, app/assets/stylesheets/materia46.css */
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #858585;
  background-color: #f2f2f2;
}

/* line 5860, app/assets/stylesheets/materia46.css */
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #858585;
  border-color: #858585;
}

/* line 5866, app/assets/stylesheets/materia46.css */
.list-group-item-success {
  color: #285b2a;
  background-color: #cde9ce;
}

/* line 5871, app/assets/stylesheets/materia46.css */
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #285b2a;
  background-color: #bbe1bd;
}

/* line 5876, app/assets/stylesheets/materia46.css */
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #285b2a;
  border-color: #285b2a;
}

/* line 5882, app/assets/stylesheets/materia46.css */
.list-group-item-info {
  color: #51145c;
  background-color: #e3c3e9;
}

/* line 5887, app/assets/stylesheets/materia46.css */
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #51145c;
  background-color: #dab0e2;
}

/* line 5892, app/assets/stylesheets/materia46.css */
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #51145c;
  border-color: #51145c;
}

/* line 5898, app/assets/stylesheets/materia46.css */
.list-group-item-warning {
  color: #854f00;
  background-color: #ffe2b8;
}

/* line 5903, app/assets/stylesheets/materia46.css */
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #854f00;
  background-color: #ffd89f;
}

/* line 5908, app/assets/stylesheets/materia46.css */
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #854f00;
  border-color: #854f00;
}

/* line 5914, app/assets/stylesheets/materia46.css */
.list-group-item-danger {
  color: #770f12;
  background-color: #f8bfc1;
}

/* line 5919, app/assets/stylesheets/materia46.css */
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #770f12;
  background-color: #f5a8ab;
}

/* line 5924, app/assets/stylesheets/materia46.css */
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #770f12;
  border-color: #770f12;
}

/* line 5930, app/assets/stylesheets/materia46.css */
.list-group-item-light {
  color: #858585;
  background-color: white;
}

/* line 5935, app/assets/stylesheets/materia46.css */
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #858585;
  background-color: #f2f2f2;
}

/* line 5940, app/assets/stylesheets/materia46.css */
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #858585;
  border-color: #858585;
}

/* line 5946, app/assets/stylesheets/materia46.css */
.list-group-item-dark {
  color: #121212;
  background-color: #c1c1c1;
}

/* line 5951, app/assets/stylesheets/materia46.css */
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #121212;
  background-color: #b4b4b4;
}

/* line 5956, app/assets/stylesheets/materia46.css */
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #121212;
  border-color: #121212;
}

/* line 5962, app/assets/stylesheets/materia46.css */
.close {
  float: right;
  font-size: 2.125rem;
  font-weight: 300;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

/* line 5972, app/assets/stylesheets/materia46.css */
.close:hover {
  color: #000;
  text-decoration: none;
}

/* line 5977, app/assets/stylesheets/materia46.css */
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

/* line 5981, app/assets/stylesheets/materia46.css */
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

/* line 5987, app/assets/stylesheets/materia46.css */
a.close.disabled {
  pointer-events: none;
}

/* line 5991, app/assets/stylesheets/materia46.css */
.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

/* line 6004, app/assets/stylesheets/materia46.css */
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

/* line 6008, app/assets/stylesheets/materia46.css */
.toast.showing {
  opacity: 1;
}

/* line 6012, app/assets/stylesheets/materia46.css */
.toast.show {
  display: block;
  opacity: 1;
}

/* line 6017, app/assets/stylesheets/materia46.css */
.toast.hide {
  display: none;
}

/* line 6021, app/assets/stylesheets/materia46.css */
.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #666;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* line 6035, app/assets/stylesheets/materia46.css */
.toast-body {
  padding: 0.75rem;
}

/* line 6039, app/assets/stylesheets/materia46.css */
.modal-open {
  overflow: hidden;
}

/* line 6043, app/assets/stylesheets/materia46.css */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 6048, app/assets/stylesheets/materia46.css */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

/* line 6060, app/assets/stylesheets/materia46.css */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

/* line 6067, app/assets/stylesheets/materia46.css */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  /* line 6076, app/assets/stylesheets/materia46.css */
  .modal.fade .modal-dialog {
    transition: none;
  }
}

/* line 6081, app/assets/stylesheets/materia46.css */
.modal.show .modal-dialog {
  transform: none;
}

/* line 6086, app/assets/stylesheets/materia46.css */
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

/* line 6091, app/assets/stylesheets/materia46.css */
.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

/* line 6097, app/assets/stylesheets/materia46.css */
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

/* line 6102, app/assets/stylesheets/materia46.css */
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

/* line 6108, app/assets/stylesheets/materia46.css */
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

/* line 6112, app/assets/stylesheets/materia46.css */
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

/* line 6120, app/assets/stylesheets/materia46.css */
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

/* line 6129, app/assets/stylesheets/materia46.css */
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* line 6137, app/assets/stylesheets/materia46.css */
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

/* line 6141, app/assets/stylesheets/materia46.css */
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

/* line 6145, app/assets/stylesheets/materia46.css */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid transparent;
  border-radius: 0.3rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  outline: 0;
}

/* line 6161, app/assets/stylesheets/materia46.css */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

/* line 6171, app/assets/stylesheets/materia46.css */
.modal-backdrop.fade {
  opacity: 0;
}

/* line 6175, app/assets/stylesheets/materia46.css */
.modal-backdrop.show {
  opacity: 0.5;
}

/* line 6179, app/assets/stylesheets/materia46.css */
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

/* line 6192, app/assets/stylesheets/materia46.css */
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

/* line 6197, app/assets/stylesheets/materia46.css */
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/* line 6202, app/assets/stylesheets/materia46.css */
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

/* line 6209, app/assets/stylesheets/materia46.css */
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

/* line 6224, app/assets/stylesheets/materia46.css */
.modal-footer > * {
  margin: 0.25rem;
}

/* line 6228, app/assets/stylesheets/materia46.css */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  /* line 6237, app/assets/stylesheets/materia46.css */
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  /* line 6241, app/assets/stylesheets/materia46.css */
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  /* line 6244, app/assets/stylesheets/materia46.css */
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  /* line 6247, app/assets/stylesheets/materia46.css */
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  /* line 6250, app/assets/stylesheets/materia46.css */
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  /* line 6256, app/assets/stylesheets/materia46.css */
  .modal-content {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  }
  /* line 6259, app/assets/stylesheets/materia46.css */
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 6265, app/assets/stylesheets/materia46.css */
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  /* line 6272, app/assets/stylesheets/materia46.css */
  .modal-xl {
    max-width: 1140px;
  }
}

/* line 6277, app/assets/stylesheets/materia46.css */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.710938rem;
  word-wrap: break-word;
  opacity: 0;
}

/* line 6301, app/assets/stylesheets/materia46.css */
.tooltip.show {
  opacity: 0.9;
}

/* line 6305, app/assets/stylesheets/materia46.css */
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

/* line 6312, app/assets/stylesheets/materia46.css */
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 6319, app/assets/stylesheets/materia46.css */
.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

/* line 6323, app/assets/stylesheets/materia46.css */
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

/* line 6327, app/assets/stylesheets/materia46.css */
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #444;
}

/* line 6333, app/assets/stylesheets/materia46.css */
.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

/* line 6337, app/assets/stylesheets/materia46.css */
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 6343, app/assets/stylesheets/materia46.css */
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #444;
}

/* line 6349, app/assets/stylesheets/materia46.css */
.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

/* line 6353, app/assets/stylesheets/materia46.css */
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

/* line 6357, app/assets/stylesheets/materia46.css */
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #444;
}

/* line 6363, app/assets/stylesheets/materia46.css */
.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

/* line 6367, app/assets/stylesheets/materia46.css */
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 6373, app/assets/stylesheets/materia46.css */
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #444;
}

/* line 6379, app/assets/stylesheets/materia46.css */
.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #444;
  border-radius: 0.25rem;
}

/* line 6388, app/assets/stylesheets/materia46.css */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.710938rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

/* line 6418, app/assets/stylesheets/materia46.css */
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

/* line 6426, app/assets/stylesheets/materia46.css */
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 6434, app/assets/stylesheets/materia46.css */
.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

/* line 6438, app/assets/stylesheets/materia46.css */
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

/* line 6442, app/assets/stylesheets/materia46.css */
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

/* line 6448, app/assets/stylesheets/materia46.css */
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

/* line 6454, app/assets/stylesheets/materia46.css */
.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

/* line 6458, app/assets/stylesheets/materia46.css */
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 6465, app/assets/stylesheets/materia46.css */
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

/* line 6471, app/assets/stylesheets/materia46.css */
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

/* line 6477, app/assets/stylesheets/materia46.css */
.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

/* line 6481, app/assets/stylesheets/materia46.css */
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc(-0.5rem - 1px);
}

/* line 6485, app/assets/stylesheets/materia46.css */
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 6491, app/assets/stylesheets/materia46.css */
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

/* line 6497, app/assets/stylesheets/materia46.css */
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

/* line 6508, app/assets/stylesheets/materia46.css */
.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

/* line 6512, app/assets/stylesheets/materia46.css */
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 6519, app/assets/stylesheets/materia46.css */
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 6525, app/assets/stylesheets/materia46.css */
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

/* line 6531, app/assets/stylesheets/materia46.css */
.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.8125rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

/* line 6541, app/assets/stylesheets/materia46.css */
.popover-header:empty {
  display: none;
}

/* line 6545, app/assets/stylesheets/materia46.css */
.popover-body {
  padding: 0.5rem 0.75rem;
  color: #444;
}

/* line 6550, app/assets/stylesheets/materia46.css */
.carousel {
  position: relative;
}

/* line 6554, app/assets/stylesheets/materia46.css */
.carousel.pointer-event {
  touch-action: pan-y;
}

/* line 6559, app/assets/stylesheets/materia46.css */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 6565, app/assets/stylesheets/materia46.css */
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

/* line 6571, app/assets/stylesheets/materia46.css */
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 6585, app/assets/stylesheets/materia46.css */
  .carousel-item {
    transition: none;
  }
}

/* line 6590, app/assets/stylesheets/materia46.css */
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* line 6596, app/assets/stylesheets/materia46.css */
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

/* line 6602, app/assets/stylesheets/materia46.css */
.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

/* line 6608, app/assets/stylesheets/materia46.css */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

/* line 6615, app/assets/stylesheets/materia46.css */
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

/* line 6622, app/assets/stylesheets/materia46.css */
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  /* line 6630, app/assets/stylesheets/materia46.css */
  .carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

/* line 6636, app/assets/stylesheets/materia46.css */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 6659, app/assets/stylesheets/materia46.css */
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}

/* line 6665, app/assets/stylesheets/materia46.css */
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

/* line 6674, app/assets/stylesheets/materia46.css */
.carousel-control-prev {
  left: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001));
}

/* line 6679, app/assets/stylesheets/materia46.css */
.carousel-control-next {
  right: 0;
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.001));
}

/* line 6684, app/assets/stylesheets/materia46.css */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50% / 100% 100% no-repeat;
}

/* line 6692, app/assets/stylesheets/materia46.css */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

/* line 6696, app/assets/stylesheets/materia46.css */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

/* line 6700, app/assets/stylesheets/materia46.css */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

/* line 6716, app/assets/stylesheets/materia46.css */
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 6735, app/assets/stylesheets/materia46.css */
  .carousel-indicators li {
    transition: none;
  }
}

/* line 6740, app/assets/stylesheets/materia46.css */
.carousel-indicators .active {
  opacity: 1;
}

/* line 6744, app/assets/stylesheets/materia46.css */
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

/* line 6770, app/assets/stylesheets/materia46.css */
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: .75s linear infinite spinner-border;
  animation: .75s linear infinite spinner-border;
}

/* line 6782, app/assets/stylesheets/materia46.css */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

/* line 6812, app/assets/stylesheets/materia46.css */
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: .75s linear infinite spinner-grow;
  animation: .75s linear infinite spinner-grow;
}

/* line 6824, app/assets/stylesheets/materia46.css */
.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  /* line 6830, app/assets/stylesheets/materia46.css */
  .spinner-border,
.spinner-grow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}

/* line 6837, app/assets/stylesheets/materia46.css */
.align-baseline {
  vertical-align: baseline !important;
}

/* line 6841, app/assets/stylesheets/materia46.css */
.align-top {
  vertical-align: top !important;
}

/* line 6845, app/assets/stylesheets/materia46.css */
.align-middle {
  vertical-align: middle !important;
}

/* line 6849, app/assets/stylesheets/materia46.css */
.align-bottom {
  vertical-align: bottom !important;
}

/* line 6853, app/assets/stylesheets/materia46.css */
.align-text-bottom {
  vertical-align: text-bottom !important;
}

/* line 6857, app/assets/stylesheets/materia46.css */
.align-text-top {
  vertical-align: text-top !important;
}

/* line 6861, app/assets/stylesheets/materia46.css */
.bg-primary {
  background-color: #2196f3 !important;
}

/* line 6865, app/assets/stylesheets/materia46.css */
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0c7cd5 !important;
}

/* line 6871, app/assets/stylesheets/materia46.css */
.bg-secondary {
  background-color: #fff !important;
}

/* line 6875, app/assets/stylesheets/materia46.css */
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #e6e6e6 !important;
}

/* line 6881, app/assets/stylesheets/materia46.css */
.bg-success {
  background-color: #4caf50 !important;
}

/* line 6885, app/assets/stylesheets/materia46.css */
a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #3d8b40 !important;
}

/* line 6891, app/assets/stylesheets/materia46.css */
.bg-info {
  background-color: #9c27b0 !important;
}

/* line 6895, app/assets/stylesheets/materia46.css */
a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #771e86 !important;
}

/* line 6901, app/assets/stylesheets/materia46.css */
.bg-warning {
  background-color: #ff9800 !important;
}

/* line 6905, app/assets/stylesheets/materia46.css */
a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #cc7a00 !important;
}

/* line 6911, app/assets/stylesheets/materia46.css */
.bg-danger {
  background-color: #e51c23 !important;
}

/* line 6915, app/assets/stylesheets/materia46.css */
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #b9151b !important;
}

/* line 6921, app/assets/stylesheets/materia46.css */
.bg-light {
  background-color: #fff !important;
}

/* line 6925, app/assets/stylesheets/materia46.css */
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #e6e6e6 !important;
}

/* line 6931, app/assets/stylesheets/materia46.css */
.bg-dark {
  background-color: #222 !important;
}

/* line 6935, app/assets/stylesheets/materia46.css */
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #090909 !important;
}

/* line 6941, app/assets/stylesheets/materia46.css */
.bg-gradient-primary {
  background: #2196f3 linear-gradient(180deg, #42a6f5, #2196f3) repeat-x !important;
}

/* line 6945, app/assets/stylesheets/materia46.css */
.bg-gradient-secondary {
  background: #fff linear-gradient(180deg, white, #fff) repeat-x !important;
}

/* line 6949, app/assets/stylesheets/materia46.css */
.bg-gradient-success {
  background: #4caf50 linear-gradient(180deg, #67bb6a, #4caf50) repeat-x !important;
}

/* line 6953, app/assets/stylesheets/materia46.css */
.bg-gradient-info {
  background: #9c27b0 linear-gradient(180deg, #ab47bc, #9c27b0) repeat-x !important;
}

/* line 6957, app/assets/stylesheets/materia46.css */
.bg-gradient-warning {
  background: #ff9800 linear-gradient(180deg, #ffa726, #ff9800) repeat-x !important;
}

/* line 6961, app/assets/stylesheets/materia46.css */
.bg-gradient-danger {
  background: #e51c23 linear-gradient(180deg, #e93e44, #e51c23) repeat-x !important;
}

/* line 6965, app/assets/stylesheets/materia46.css */
.bg-gradient-light {
  background: #fff linear-gradient(180deg, white, #fff) repeat-x !important;
}

/* line 6969, app/assets/stylesheets/materia46.css */
.bg-gradient-dark {
  background: #222 linear-gradient(180deg, #434343, #222) repeat-x !important;
}

/* line 6973, app/assets/stylesheets/materia46.css */
.bg-white {
  background-color: #fff !important;
}

/* line 6977, app/assets/stylesheets/materia46.css */
.bg-transparent {
  background-color: transparent !important;
}

/* line 6981, app/assets/stylesheets/materia46.css */
.border {
  border: 1px solid #dee2e6 !important;
}

/* line 6985, app/assets/stylesheets/materia46.css */
.border-top {
  border-top: 1px solid #dee2e6 !important;
}

/* line 6989, app/assets/stylesheets/materia46.css */
.border-right {
  border-right: 1px solid #dee2e6 !important;
}

/* line 6993, app/assets/stylesheets/materia46.css */
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

/* line 6997, app/assets/stylesheets/materia46.css */
.border-left {
  border-left: 1px solid #dee2e6 !important;
}

/* line 7001, app/assets/stylesheets/materia46.css */
.border-0 {
  border: 0 !important;
}

/* line 7005, app/assets/stylesheets/materia46.css */
.border-top-0 {
  border-top: 0 !important;
}

/* line 7009, app/assets/stylesheets/materia46.css */
.border-right-0 {
  border-right: 0 !important;
}

/* line 7013, app/assets/stylesheets/materia46.css */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* line 7017, app/assets/stylesheets/materia46.css */
.border-left-0 {
  border-left: 0 !important;
}

/* line 7021, app/assets/stylesheets/materia46.css */
.border-primary {
  border-color: #2196f3 !important;
}

/* line 7025, app/assets/stylesheets/materia46.css */
.border-secondary {
  border-color: #fff !important;
}

/* line 7029, app/assets/stylesheets/materia46.css */
.border-success {
  border-color: #4caf50 !important;
}

/* line 7033, app/assets/stylesheets/materia46.css */
.border-info {
  border-color: #9c27b0 !important;
}

/* line 7037, app/assets/stylesheets/materia46.css */
.border-warning {
  border-color: #ff9800 !important;
}

/* line 7041, app/assets/stylesheets/materia46.css */
.border-danger {
  border-color: #e51c23 !important;
}

/* line 7045, app/assets/stylesheets/materia46.css */
.border-light {
  border-color: #fff !important;
}

/* line 7049, app/assets/stylesheets/materia46.css */
.border-dark {
  border-color: #222 !important;
}

/* line 7053, app/assets/stylesheets/materia46.css */
.border-white {
  border-color: #fff !important;
}

/* line 7057, app/assets/stylesheets/materia46.css */
.rounded-sm {
  border-radius: 0.2rem !important;
}

/* line 7061, app/assets/stylesheets/materia46.css */
.rounded {
  border-radius: 0.25rem !important;
}

/* line 7065, app/assets/stylesheets/materia46.css */
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

/* line 7070, app/assets/stylesheets/materia46.css */
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

/* line 7075, app/assets/stylesheets/materia46.css */
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 7080, app/assets/stylesheets/materia46.css */
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 7085, app/assets/stylesheets/materia46.css */
.rounded-lg {
  border-radius: 0.3rem !important;
}

/* line 7089, app/assets/stylesheets/materia46.css */
.rounded-circle {
  border-radius: 50% !important;
}

/* line 7093, app/assets/stylesheets/materia46.css */
.rounded-pill {
  border-radius: 50rem !important;
}

/* line 7097, app/assets/stylesheets/materia46.css */
.rounded-0 {
  border-radius: 0 !important;
}

/* line 7101, app/assets/stylesheets/materia46.css */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* line 7107, app/assets/stylesheets/materia46.css */
.d-none {
  display: none !important;
}

/* line 7111, app/assets/stylesheets/materia46.css */
.d-inline {
  display: inline !important;
}

/* line 7115, app/assets/stylesheets/materia46.css */
.d-inline-block {
  display: inline-block !important;
}

/* line 7119, app/assets/stylesheets/materia46.css */
.d-block {
  display: block !important;
}

/* line 7123, app/assets/stylesheets/materia46.css */
.d-table {
  display: table !important;
}

/* line 7127, app/assets/stylesheets/materia46.css */
.d-table-row {
  display: table-row !important;
}

/* line 7131, app/assets/stylesheets/materia46.css */
.d-table-cell {
  display: table-cell !important;
}

/* line 7135, app/assets/stylesheets/materia46.css */
.d-flex {
  display: flex !important;
}

/* line 7140, app/assets/stylesheets/materia46.css */
.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  /* line 7146, app/assets/stylesheets/materia46.css */
  .d-sm-none {
    display: none !important;
  }
  /* line 7149, app/assets/stylesheets/materia46.css */
  .d-sm-inline {
    display: inline !important;
  }
  /* line 7152, app/assets/stylesheets/materia46.css */
  .d-sm-inline-block {
    display: inline-block !important;
  }
  /* line 7155, app/assets/stylesheets/materia46.css */
  .d-sm-block {
    display: block !important;
  }
  /* line 7158, app/assets/stylesheets/materia46.css */
  .d-sm-table {
    display: table !important;
  }
  /* line 7161, app/assets/stylesheets/materia46.css */
  .d-sm-table-row {
    display: table-row !important;
  }
  /* line 7164, app/assets/stylesheets/materia46.css */
  .d-sm-table-cell {
    display: table-cell !important;
  }
  /* line 7167, app/assets/stylesheets/materia46.css */
  .d-sm-flex {
    display: flex !important;
  }
  /* line 7171, app/assets/stylesheets/materia46.css */
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  /* line 7178, app/assets/stylesheets/materia46.css */
  .d-md-none {
    display: none !important;
  }
  /* line 7181, app/assets/stylesheets/materia46.css */
  .d-md-inline {
    display: inline !important;
  }
  /* line 7184, app/assets/stylesheets/materia46.css */
  .d-md-inline-block {
    display: inline-block !important;
  }
  /* line 7187, app/assets/stylesheets/materia46.css */
  .d-md-block {
    display: block !important;
  }
  /* line 7190, app/assets/stylesheets/materia46.css */
  .d-md-table {
    display: table !important;
  }
  /* line 7193, app/assets/stylesheets/materia46.css */
  .d-md-table-row {
    display: table-row !important;
  }
  /* line 7196, app/assets/stylesheets/materia46.css */
  .d-md-table-cell {
    display: table-cell !important;
  }
  /* line 7199, app/assets/stylesheets/materia46.css */
  .d-md-flex {
    display: flex !important;
  }
  /* line 7203, app/assets/stylesheets/materia46.css */
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  /* line 7210, app/assets/stylesheets/materia46.css */
  .d-lg-none {
    display: none !important;
  }
  /* line 7213, app/assets/stylesheets/materia46.css */
  .d-lg-inline {
    display: inline !important;
  }
  /* line 7216, app/assets/stylesheets/materia46.css */
  .d-lg-inline-block {
    display: inline-block !important;
  }
  /* line 7219, app/assets/stylesheets/materia46.css */
  .d-lg-block {
    display: block !important;
  }
  /* line 7222, app/assets/stylesheets/materia46.css */
  .d-lg-table {
    display: table !important;
  }
  /* line 7225, app/assets/stylesheets/materia46.css */
  .d-lg-table-row {
    display: table-row !important;
  }
  /* line 7228, app/assets/stylesheets/materia46.css */
  .d-lg-table-cell {
    display: table-cell !important;
  }
  /* line 7231, app/assets/stylesheets/materia46.css */
  .d-lg-flex {
    display: flex !important;
  }
  /* line 7235, app/assets/stylesheets/materia46.css */
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  /* line 7242, app/assets/stylesheets/materia46.css */
  .d-xl-none {
    display: none !important;
  }
  /* line 7245, app/assets/stylesheets/materia46.css */
  .d-xl-inline {
    display: inline !important;
  }
  /* line 7248, app/assets/stylesheets/materia46.css */
  .d-xl-inline-block {
    display: inline-block !important;
  }
  /* line 7251, app/assets/stylesheets/materia46.css */
  .d-xl-block {
    display: block !important;
  }
  /* line 7254, app/assets/stylesheets/materia46.css */
  .d-xl-table {
    display: table !important;
  }
  /* line 7257, app/assets/stylesheets/materia46.css */
  .d-xl-table-row {
    display: table-row !important;
  }
  /* line 7260, app/assets/stylesheets/materia46.css */
  .d-xl-table-cell {
    display: table-cell !important;
  }
  /* line 7263, app/assets/stylesheets/materia46.css */
  .d-xl-flex {
    display: flex !important;
  }
  /* line 7267, app/assets/stylesheets/materia46.css */
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  /* line 7274, app/assets/stylesheets/materia46.css */
  .d-print-none {
    display: none !important;
  }
  /* line 7277, app/assets/stylesheets/materia46.css */
  .d-print-inline {
    display: inline !important;
  }
  /* line 7280, app/assets/stylesheets/materia46.css */
  .d-print-inline-block {
    display: inline-block !important;
  }
  /* line 7283, app/assets/stylesheets/materia46.css */
  .d-print-block {
    display: block !important;
  }
  /* line 7286, app/assets/stylesheets/materia46.css */
  .d-print-table {
    display: table !important;
  }
  /* line 7289, app/assets/stylesheets/materia46.css */
  .d-print-table-row {
    display: table-row !important;
  }
  /* line 7292, app/assets/stylesheets/materia46.css */
  .d-print-table-cell {
    display: table-cell !important;
  }
  /* line 7295, app/assets/stylesheets/materia46.css */
  .d-print-flex {
    display: flex !important;
  }
  /* line 7299, app/assets/stylesheets/materia46.css */
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

/* line 7305, app/assets/stylesheets/materia46.css */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

/* line 7313, app/assets/stylesheets/materia46.css */
.embed-responsive::before {
  display: block;
  content: "";
}

/* line 7318, app/assets/stylesheets/materia46.css */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 7332, app/assets/stylesheets/materia46.css */
.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

/* line 7336, app/assets/stylesheets/materia46.css */
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

/* line 7340, app/assets/stylesheets/materia46.css */
.embed-responsive-4by3::before {
  padding-top: 75%;
}

/* line 7344, app/assets/stylesheets/materia46.css */
.embed-responsive-1by1::before {
  padding-top: 100%;
}

/* line 7348, app/assets/stylesheets/materia46.css */
.flex-row {
  flex-direction: row !important;
}

/* line 7353, app/assets/stylesheets/materia46.css */
.flex-column {
  flex-direction: column !important;
}

/* line 7358, app/assets/stylesheets/materia46.css */
.flex-row-reverse {
  flex-direction: row-reverse !important;
}

/* line 7363, app/assets/stylesheets/materia46.css */
.flex-column-reverse {
  flex-direction: column-reverse !important;
}

/* line 7368, app/assets/stylesheets/materia46.css */
.flex-wrap {
  flex-wrap: wrap !important;
}

/* line 7373, app/assets/stylesheets/materia46.css */
.flex-nowrap {
  flex-wrap: nowrap !important;
}

/* line 7378, app/assets/stylesheets/materia46.css */
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* line 7383, app/assets/stylesheets/materia46.css */
.flex-fill {
  flex: 1 1 auto !important;
}

/* line 7388, app/assets/stylesheets/materia46.css */
.flex-grow-0 {
  flex-grow: 0 !important;
}

/* line 7393, app/assets/stylesheets/materia46.css */
.flex-grow-1 {
  flex-grow: 1 !important;
}

/* line 7398, app/assets/stylesheets/materia46.css */
.flex-shrink-0 {
  flex-shrink: 0 !important;
}

/* line 7403, app/assets/stylesheets/materia46.css */
.flex-shrink-1 {
  flex-shrink: 1 !important;
}

/* line 7408, app/assets/stylesheets/materia46.css */
.justify-content-start {
  justify-content: flex-start !important;
}

/* line 7413, app/assets/stylesheets/materia46.css */
.justify-content-end {
  justify-content: flex-end !important;
}

/* line 7418, app/assets/stylesheets/materia46.css */
.justify-content-center {
  justify-content: center !important;
}

/* line 7423, app/assets/stylesheets/materia46.css */
.justify-content-between {
  justify-content: space-between !important;
}

/* line 7428, app/assets/stylesheets/materia46.css */
.justify-content-around {
  justify-content: space-around !important;
}

/* line 7433, app/assets/stylesheets/materia46.css */
.align-items-start {
  align-items: flex-start !important;
}

/* line 7438, app/assets/stylesheets/materia46.css */
.align-items-end {
  align-items: flex-end !important;
}

/* line 7443, app/assets/stylesheets/materia46.css */
.align-items-center {
  align-items: center !important;
}

/* line 7448, app/assets/stylesheets/materia46.css */
.align-items-baseline {
  align-items: baseline !important;
}

/* line 7453, app/assets/stylesheets/materia46.css */
.align-items-stretch {
  align-items: stretch !important;
}

/* line 7458, app/assets/stylesheets/materia46.css */
.align-content-start {
  align-content: flex-start !important;
}

/* line 7463, app/assets/stylesheets/materia46.css */
.align-content-end {
  align-content: flex-end !important;
}

/* line 7468, app/assets/stylesheets/materia46.css */
.align-content-center {
  align-content: center !important;
}

/* line 7473, app/assets/stylesheets/materia46.css */
.align-content-between {
  align-content: space-between !important;
}

/* line 7478, app/assets/stylesheets/materia46.css */
.align-content-around {
  align-content: space-around !important;
}

/* line 7483, app/assets/stylesheets/materia46.css */
.align-content-stretch {
  align-content: stretch !important;
}

/* line 7488, app/assets/stylesheets/materia46.css */
.align-self-auto {
  align-self: auto !important;
}

/* line 7493, app/assets/stylesheets/materia46.css */
.align-self-start {
  align-self: flex-start !important;
}

/* line 7498, app/assets/stylesheets/materia46.css */
.align-self-end {
  align-self: flex-end !important;
}

/* line 7503, app/assets/stylesheets/materia46.css */
.align-self-center {
  align-self: center !important;
}

/* line 7508, app/assets/stylesheets/materia46.css */
.align-self-baseline {
  align-self: baseline !important;
}

/* line 7513, app/assets/stylesheets/materia46.css */
.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  /* line 7519, app/assets/stylesheets/materia46.css */
  .flex-sm-row {
    flex-direction: row !important;
  }
  /* line 7523, app/assets/stylesheets/materia46.css */
  .flex-sm-column {
    flex-direction: column !important;
  }
  /* line 7527, app/assets/stylesheets/materia46.css */
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 7531, app/assets/stylesheets/materia46.css */
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 7535, app/assets/stylesheets/materia46.css */
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  /* line 7539, app/assets/stylesheets/materia46.css */
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 7543, app/assets/stylesheets/materia46.css */
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 7547, app/assets/stylesheets/materia46.css */
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  /* line 7551, app/assets/stylesheets/materia46.css */
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 7555, app/assets/stylesheets/materia46.css */
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 7559, app/assets/stylesheets/materia46.css */
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 7563, app/assets/stylesheets/materia46.css */
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 7567, app/assets/stylesheets/materia46.css */
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  /* line 7571, app/assets/stylesheets/materia46.css */
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  /* line 7575, app/assets/stylesheets/materia46.css */
  .justify-content-sm-center {
    justify-content: center !important;
  }
  /* line 7579, app/assets/stylesheets/materia46.css */
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  /* line 7583, app/assets/stylesheets/materia46.css */
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  /* line 7587, app/assets/stylesheets/materia46.css */
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  /* line 7591, app/assets/stylesheets/materia46.css */
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  /* line 7595, app/assets/stylesheets/materia46.css */
  .align-items-sm-center {
    align-items: center !important;
  }
  /* line 7599, app/assets/stylesheets/materia46.css */
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  /* line 7603, app/assets/stylesheets/materia46.css */
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  /* line 7607, app/assets/stylesheets/materia46.css */
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  /* line 7611, app/assets/stylesheets/materia46.css */
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  /* line 7615, app/assets/stylesheets/materia46.css */
  .align-content-sm-center {
    align-content: center !important;
  }
  /* line 7619, app/assets/stylesheets/materia46.css */
  .align-content-sm-between {
    align-content: space-between !important;
  }
  /* line 7623, app/assets/stylesheets/materia46.css */
  .align-content-sm-around {
    align-content: space-around !important;
  }
  /* line 7627, app/assets/stylesheets/materia46.css */
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  /* line 7631, app/assets/stylesheets/materia46.css */
  .align-self-sm-auto {
    align-self: auto !important;
  }
  /* line 7635, app/assets/stylesheets/materia46.css */
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  /* line 7639, app/assets/stylesheets/materia46.css */
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  /* line 7643, app/assets/stylesheets/materia46.css */
  .align-self-sm-center {
    align-self: center !important;
  }
  /* line 7647, app/assets/stylesheets/materia46.css */
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  /* line 7651, app/assets/stylesheets/materia46.css */
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  /* line 7658, app/assets/stylesheets/materia46.css */
  .flex-md-row {
    flex-direction: row !important;
  }
  /* line 7662, app/assets/stylesheets/materia46.css */
  .flex-md-column {
    flex-direction: column !important;
  }
  /* line 7666, app/assets/stylesheets/materia46.css */
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 7670, app/assets/stylesheets/materia46.css */
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 7674, app/assets/stylesheets/materia46.css */
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  /* line 7678, app/assets/stylesheets/materia46.css */
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 7682, app/assets/stylesheets/materia46.css */
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 7686, app/assets/stylesheets/materia46.css */
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  /* line 7690, app/assets/stylesheets/materia46.css */
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 7694, app/assets/stylesheets/materia46.css */
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 7698, app/assets/stylesheets/materia46.css */
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 7702, app/assets/stylesheets/materia46.css */
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 7706, app/assets/stylesheets/materia46.css */
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  /* line 7710, app/assets/stylesheets/materia46.css */
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  /* line 7714, app/assets/stylesheets/materia46.css */
  .justify-content-md-center {
    justify-content: center !important;
  }
  /* line 7718, app/assets/stylesheets/materia46.css */
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  /* line 7722, app/assets/stylesheets/materia46.css */
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  /* line 7726, app/assets/stylesheets/materia46.css */
  .align-items-md-start {
    align-items: flex-start !important;
  }
  /* line 7730, app/assets/stylesheets/materia46.css */
  .align-items-md-end {
    align-items: flex-end !important;
  }
  /* line 7734, app/assets/stylesheets/materia46.css */
  .align-items-md-center {
    align-items: center !important;
  }
  /* line 7738, app/assets/stylesheets/materia46.css */
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  /* line 7742, app/assets/stylesheets/materia46.css */
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  /* line 7746, app/assets/stylesheets/materia46.css */
  .align-content-md-start {
    align-content: flex-start !important;
  }
  /* line 7750, app/assets/stylesheets/materia46.css */
  .align-content-md-end {
    align-content: flex-end !important;
  }
  /* line 7754, app/assets/stylesheets/materia46.css */
  .align-content-md-center {
    align-content: center !important;
  }
  /* line 7758, app/assets/stylesheets/materia46.css */
  .align-content-md-between {
    align-content: space-between !important;
  }
  /* line 7762, app/assets/stylesheets/materia46.css */
  .align-content-md-around {
    align-content: space-around !important;
  }
  /* line 7766, app/assets/stylesheets/materia46.css */
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  /* line 7770, app/assets/stylesheets/materia46.css */
  .align-self-md-auto {
    align-self: auto !important;
  }
  /* line 7774, app/assets/stylesheets/materia46.css */
  .align-self-md-start {
    align-self: flex-start !important;
  }
  /* line 7778, app/assets/stylesheets/materia46.css */
  .align-self-md-end {
    align-self: flex-end !important;
  }
  /* line 7782, app/assets/stylesheets/materia46.css */
  .align-self-md-center {
    align-self: center !important;
  }
  /* line 7786, app/assets/stylesheets/materia46.css */
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  /* line 7790, app/assets/stylesheets/materia46.css */
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  /* line 7797, app/assets/stylesheets/materia46.css */
  .flex-lg-row {
    flex-direction: row !important;
  }
  /* line 7801, app/assets/stylesheets/materia46.css */
  .flex-lg-column {
    flex-direction: column !important;
  }
  /* line 7805, app/assets/stylesheets/materia46.css */
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 7809, app/assets/stylesheets/materia46.css */
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 7813, app/assets/stylesheets/materia46.css */
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  /* line 7817, app/assets/stylesheets/materia46.css */
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 7821, app/assets/stylesheets/materia46.css */
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 7825, app/assets/stylesheets/materia46.css */
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  /* line 7829, app/assets/stylesheets/materia46.css */
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 7833, app/assets/stylesheets/materia46.css */
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 7837, app/assets/stylesheets/materia46.css */
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 7841, app/assets/stylesheets/materia46.css */
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 7845, app/assets/stylesheets/materia46.css */
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  /* line 7849, app/assets/stylesheets/materia46.css */
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  /* line 7853, app/assets/stylesheets/materia46.css */
  .justify-content-lg-center {
    justify-content: center !important;
  }
  /* line 7857, app/assets/stylesheets/materia46.css */
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  /* line 7861, app/assets/stylesheets/materia46.css */
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  /* line 7865, app/assets/stylesheets/materia46.css */
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  /* line 7869, app/assets/stylesheets/materia46.css */
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  /* line 7873, app/assets/stylesheets/materia46.css */
  .align-items-lg-center {
    align-items: center !important;
  }
  /* line 7877, app/assets/stylesheets/materia46.css */
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  /* line 7881, app/assets/stylesheets/materia46.css */
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  /* line 7885, app/assets/stylesheets/materia46.css */
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  /* line 7889, app/assets/stylesheets/materia46.css */
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  /* line 7893, app/assets/stylesheets/materia46.css */
  .align-content-lg-center {
    align-content: center !important;
  }
  /* line 7897, app/assets/stylesheets/materia46.css */
  .align-content-lg-between {
    align-content: space-between !important;
  }
  /* line 7901, app/assets/stylesheets/materia46.css */
  .align-content-lg-around {
    align-content: space-around !important;
  }
  /* line 7905, app/assets/stylesheets/materia46.css */
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  /* line 7909, app/assets/stylesheets/materia46.css */
  .align-self-lg-auto {
    align-self: auto !important;
  }
  /* line 7913, app/assets/stylesheets/materia46.css */
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  /* line 7917, app/assets/stylesheets/materia46.css */
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  /* line 7921, app/assets/stylesheets/materia46.css */
  .align-self-lg-center {
    align-self: center !important;
  }
  /* line 7925, app/assets/stylesheets/materia46.css */
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  /* line 7929, app/assets/stylesheets/materia46.css */
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  /* line 7936, app/assets/stylesheets/materia46.css */
  .flex-xl-row {
    flex-direction: row !important;
  }
  /* line 7940, app/assets/stylesheets/materia46.css */
  .flex-xl-column {
    flex-direction: column !important;
  }
  /* line 7944, app/assets/stylesheets/materia46.css */
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 7948, app/assets/stylesheets/materia46.css */
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 7952, app/assets/stylesheets/materia46.css */
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 7956, app/assets/stylesheets/materia46.css */
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 7960, app/assets/stylesheets/materia46.css */
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 7964, app/assets/stylesheets/materia46.css */
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  /* line 7968, app/assets/stylesheets/materia46.css */
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 7972, app/assets/stylesheets/materia46.css */
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 7976, app/assets/stylesheets/materia46.css */
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 7980, app/assets/stylesheets/materia46.css */
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 7984, app/assets/stylesheets/materia46.css */
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  /* line 7988, app/assets/stylesheets/materia46.css */
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  /* line 7992, app/assets/stylesheets/materia46.css */
  .justify-content-xl-center {
    justify-content: center !important;
  }
  /* line 7996, app/assets/stylesheets/materia46.css */
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  /* line 8000, app/assets/stylesheets/materia46.css */
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  /* line 8004, app/assets/stylesheets/materia46.css */
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  /* line 8008, app/assets/stylesheets/materia46.css */
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  /* line 8012, app/assets/stylesheets/materia46.css */
  .align-items-xl-center {
    align-items: center !important;
  }
  /* line 8016, app/assets/stylesheets/materia46.css */
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  /* line 8020, app/assets/stylesheets/materia46.css */
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  /* line 8024, app/assets/stylesheets/materia46.css */
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  /* line 8028, app/assets/stylesheets/materia46.css */
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  /* line 8032, app/assets/stylesheets/materia46.css */
  .align-content-xl-center {
    align-content: center !important;
  }
  /* line 8036, app/assets/stylesheets/materia46.css */
  .align-content-xl-between {
    align-content: space-between !important;
  }
  /* line 8040, app/assets/stylesheets/materia46.css */
  .align-content-xl-around {
    align-content: space-around !important;
  }
  /* line 8044, app/assets/stylesheets/materia46.css */
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  /* line 8048, app/assets/stylesheets/materia46.css */
  .align-self-xl-auto {
    align-self: auto !important;
  }
  /* line 8052, app/assets/stylesheets/materia46.css */
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  /* line 8056, app/assets/stylesheets/materia46.css */
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  /* line 8060, app/assets/stylesheets/materia46.css */
  .align-self-xl-center {
    align-self: center !important;
  }
  /* line 8064, app/assets/stylesheets/materia46.css */
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  /* line 8068, app/assets/stylesheets/materia46.css */
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

/* line 8074, app/assets/stylesheets/materia46.css */
.float-left {
  float: left !important;
}

/* line 8078, app/assets/stylesheets/materia46.css */
.float-right {
  float: right !important;
}

/* line 8082, app/assets/stylesheets/materia46.css */
.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  /* line 8087, app/assets/stylesheets/materia46.css */
  .float-sm-left {
    float: left !important;
  }
  /* line 8090, app/assets/stylesheets/materia46.css */
  .float-sm-right {
    float: right !important;
  }
  /* line 8093, app/assets/stylesheets/materia46.css */
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  /* line 8099, app/assets/stylesheets/materia46.css */
  .float-md-left {
    float: left !important;
  }
  /* line 8102, app/assets/stylesheets/materia46.css */
  .float-md-right {
    float: right !important;
  }
  /* line 8105, app/assets/stylesheets/materia46.css */
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  /* line 8111, app/assets/stylesheets/materia46.css */
  .float-lg-left {
    float: left !important;
  }
  /* line 8114, app/assets/stylesheets/materia46.css */
  .float-lg-right {
    float: right !important;
  }
  /* line 8117, app/assets/stylesheets/materia46.css */
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 8123, app/assets/stylesheets/materia46.css */
  .float-xl-left {
    float: left !important;
  }
  /* line 8126, app/assets/stylesheets/materia46.css */
  .float-xl-right {
    float: right !important;
  }
  /* line 8129, app/assets/stylesheets/materia46.css */
  .float-xl-none {
    float: none !important;
  }
}

/* line 8134, app/assets/stylesheets/materia46.css */
.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

/* line 8140, app/assets/stylesheets/materia46.css */
.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

/* line 8147, app/assets/stylesheets/materia46.css */
.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* line 8154, app/assets/stylesheets/materia46.css */
.overflow-auto {
  overflow: auto !important;
}

/* line 8158, app/assets/stylesheets/materia46.css */
.overflow-hidden {
  overflow: hidden !important;
}

/* line 8162, app/assets/stylesheets/materia46.css */
.position-static {
  position: static !important;
}

/* line 8166, app/assets/stylesheets/materia46.css */
.position-relative {
  position: relative !important;
}

/* line 8170, app/assets/stylesheets/materia46.css */
.position-absolute {
  position: absolute !important;
}

/* line 8174, app/assets/stylesheets/materia46.css */
.position-fixed {
  position: fixed !important;
}

/* line 8178, app/assets/stylesheets/materia46.css */
.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

/* line 8183, app/assets/stylesheets/materia46.css */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 8191, app/assets/stylesheets/materia46.css */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  /* line 8200, app/assets/stylesheets/materia46.css */
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

/* line 8208, app/assets/stylesheets/materia46.css */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* line 8220, app/assets/stylesheets/materia46.css */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* line 8229, app/assets/stylesheets/materia46.css */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* line 8233, app/assets/stylesheets/materia46.css */
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* line 8237, app/assets/stylesheets/materia46.css */
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* line 8241, app/assets/stylesheets/materia46.css */
.shadow-none {
  box-shadow: none !important;
}

/* line 8245, app/assets/stylesheets/materia46.css */
.w-25 {
  width: 25% !important;
}

/* line 8249, app/assets/stylesheets/materia46.css */
.w-50 {
  width: 50% !important;
}

/* line 8253, app/assets/stylesheets/materia46.css */
.w-75 {
  width: 75% !important;
}

/* line 8257, app/assets/stylesheets/materia46.css */
.w-100 {
  width: 100% !important;
}

/* line 8261, app/assets/stylesheets/materia46.css */
.w-auto {
  width: auto !important;
}

/* line 8265, app/assets/stylesheets/materia46.css */
.h-25 {
  height: 25% !important;
}

/* line 8269, app/assets/stylesheets/materia46.css */
.h-50 {
  height: 50% !important;
}

/* line 8273, app/assets/stylesheets/materia46.css */
.h-75 {
  height: 75% !important;
}

/* line 8277, app/assets/stylesheets/materia46.css */
.h-100 {
  height: 100% !important;
}

/* line 8281, app/assets/stylesheets/materia46.css */
.h-auto {
  height: auto !important;
}

/* line 8285, app/assets/stylesheets/materia46.css */
.mw-100 {
  max-width: 100% !important;
}

/* line 8289, app/assets/stylesheets/materia46.css */
.mh-100 {
  max-height: 100% !important;
}

/* line 8293, app/assets/stylesheets/materia46.css */
.min-vw-100 {
  min-width: 100vw !important;
}

/* line 8297, app/assets/stylesheets/materia46.css */
.min-vh-100 {
  min-height: 100vh !important;
}

/* line 8301, app/assets/stylesheets/materia46.css */
.vw-100 {
  width: 100vw !important;
}

/* line 8305, app/assets/stylesheets/materia46.css */
.vh-100 {
  height: 100vh !important;
}

/* line 8309, app/assets/stylesheets/materia46.css */
.m-0 {
  margin: 0 !important;
}

/* line 8313, app/assets/stylesheets/materia46.css */
.mt-0,
.my-0 {
  margin-top: 0 !important;
}

/* line 8318, app/assets/stylesheets/materia46.css */
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

/* line 8323, app/assets/stylesheets/materia46.css */
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

/* line 8328, app/assets/stylesheets/materia46.css */
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

/* line 8333, app/assets/stylesheets/materia46.css */
.m-1 {
  margin: 0.25rem !important;
}

/* line 8337, app/assets/stylesheets/materia46.css */
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

/* line 8342, app/assets/stylesheets/materia46.css */
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

/* line 8347, app/assets/stylesheets/materia46.css */
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

/* line 8352, app/assets/stylesheets/materia46.css */
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

/* line 8357, app/assets/stylesheets/materia46.css */
.m-2 {
  margin: 0.5rem !important;
}

/* line 8361, app/assets/stylesheets/materia46.css */
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

/* line 8366, app/assets/stylesheets/materia46.css */
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

/* line 8371, app/assets/stylesheets/materia46.css */
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

/* line 8376, app/assets/stylesheets/materia46.css */
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

/* line 8381, app/assets/stylesheets/materia46.css */
.m-3 {
  margin: 1rem !important;
}

/* line 8385, app/assets/stylesheets/materia46.css */
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

/* line 8390, app/assets/stylesheets/materia46.css */
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

/* line 8395, app/assets/stylesheets/materia46.css */
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

/* line 8400, app/assets/stylesheets/materia46.css */
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

/* line 8405, app/assets/stylesheets/materia46.css */
.m-4 {
  margin: 1.5rem !important;
}

/* line 8409, app/assets/stylesheets/materia46.css */
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

/* line 8414, app/assets/stylesheets/materia46.css */
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

/* line 8419, app/assets/stylesheets/materia46.css */
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

/* line 8424, app/assets/stylesheets/materia46.css */
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

/* line 8429, app/assets/stylesheets/materia46.css */
.m-5 {
  margin: 3rem !important;
}

/* line 8433, app/assets/stylesheets/materia46.css */
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

/* line 8438, app/assets/stylesheets/materia46.css */
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

/* line 8443, app/assets/stylesheets/materia46.css */
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

/* line 8448, app/assets/stylesheets/materia46.css */
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

/* line 8453, app/assets/stylesheets/materia46.css */
.p-0 {
  padding: 0 !important;
}

/* line 8457, app/assets/stylesheets/materia46.css */
.pt-0,
.py-0 {
  padding-top: 0 !important;
}

/* line 8462, app/assets/stylesheets/materia46.css */
.pr-0,
.px-0 {
  padding-right: 0 !important;
}

/* line 8467, app/assets/stylesheets/materia46.css */
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

/* line 8472, app/assets/stylesheets/materia46.css */
.pl-0,
.px-0 {
  padding-left: 0 !important;
}

/* line 8477, app/assets/stylesheets/materia46.css */
.p-1 {
  padding: 0.25rem !important;
}

/* line 8481, app/assets/stylesheets/materia46.css */
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

/* line 8486, app/assets/stylesheets/materia46.css */
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

/* line 8491, app/assets/stylesheets/materia46.css */
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

/* line 8496, app/assets/stylesheets/materia46.css */
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

/* line 8501, app/assets/stylesheets/materia46.css */
.p-2 {
  padding: 0.5rem !important;
}

/* line 8505, app/assets/stylesheets/materia46.css */
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

/* line 8510, app/assets/stylesheets/materia46.css */
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

/* line 8515, app/assets/stylesheets/materia46.css */
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

/* line 8520, app/assets/stylesheets/materia46.css */
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

/* line 8525, app/assets/stylesheets/materia46.css */
.p-3 {
  padding: 1rem !important;
}

/* line 8529, app/assets/stylesheets/materia46.css */
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

/* line 8534, app/assets/stylesheets/materia46.css */
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

/* line 8539, app/assets/stylesheets/materia46.css */
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

/* line 8544, app/assets/stylesheets/materia46.css */
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

/* line 8549, app/assets/stylesheets/materia46.css */
.p-4 {
  padding: 1.5rem !important;
}

/* line 8553, app/assets/stylesheets/materia46.css */
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

/* line 8558, app/assets/stylesheets/materia46.css */
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

/* line 8563, app/assets/stylesheets/materia46.css */
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

/* line 8568, app/assets/stylesheets/materia46.css */
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

/* line 8573, app/assets/stylesheets/materia46.css */
.p-5 {
  padding: 3rem !important;
}

/* line 8577, app/assets/stylesheets/materia46.css */
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

/* line 8582, app/assets/stylesheets/materia46.css */
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

/* line 8587, app/assets/stylesheets/materia46.css */
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

/* line 8592, app/assets/stylesheets/materia46.css */
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

/* line 8597, app/assets/stylesheets/materia46.css */
.m-n1 {
  margin: -0.25rem !important;
}

/* line 8601, app/assets/stylesheets/materia46.css */
.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

/* line 8606, app/assets/stylesheets/materia46.css */
.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

/* line 8611, app/assets/stylesheets/materia46.css */
.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

/* line 8616, app/assets/stylesheets/materia46.css */
.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

/* line 8621, app/assets/stylesheets/materia46.css */
.m-n2 {
  margin: -0.5rem !important;
}

/* line 8625, app/assets/stylesheets/materia46.css */
.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

/* line 8630, app/assets/stylesheets/materia46.css */
.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

/* line 8635, app/assets/stylesheets/materia46.css */
.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

/* line 8640, app/assets/stylesheets/materia46.css */
.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

/* line 8645, app/assets/stylesheets/materia46.css */
.m-n3 {
  margin: -1rem !important;
}

/* line 8649, app/assets/stylesheets/materia46.css */
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

/* line 8654, app/assets/stylesheets/materia46.css */
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

/* line 8659, app/assets/stylesheets/materia46.css */
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

/* line 8664, app/assets/stylesheets/materia46.css */
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

/* line 8669, app/assets/stylesheets/materia46.css */
.m-n4 {
  margin: -1.5rem !important;
}

/* line 8673, app/assets/stylesheets/materia46.css */
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

/* line 8678, app/assets/stylesheets/materia46.css */
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

/* line 8683, app/assets/stylesheets/materia46.css */
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

/* line 8688, app/assets/stylesheets/materia46.css */
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

/* line 8693, app/assets/stylesheets/materia46.css */
.m-n5 {
  margin: -3rem !important;
}

/* line 8697, app/assets/stylesheets/materia46.css */
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

/* line 8702, app/assets/stylesheets/materia46.css */
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

/* line 8707, app/assets/stylesheets/materia46.css */
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

/* line 8712, app/assets/stylesheets/materia46.css */
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

/* line 8717, app/assets/stylesheets/materia46.css */
.m-auto {
  margin: auto !important;
}

/* line 8721, app/assets/stylesheets/materia46.css */
.mt-auto,
.my-auto {
  margin-top: auto !important;
}

/* line 8726, app/assets/stylesheets/materia46.css */
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

/* line 8731, app/assets/stylesheets/materia46.css */
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

/* line 8736, app/assets/stylesheets/materia46.css */
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  /* line 8742, app/assets/stylesheets/materia46.css */
  .m-sm-0 {
    margin: 0 !important;
  }
  /* line 8745, app/assets/stylesheets/materia46.css */
  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }
  /* line 8749, app/assets/stylesheets/materia46.css */
  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }
  /* line 8753, app/assets/stylesheets/materia46.css */
  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }
  /* line 8757, app/assets/stylesheets/materia46.css */
  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }
  /* line 8761, app/assets/stylesheets/materia46.css */
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  /* line 8764, app/assets/stylesheets/materia46.css */
  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }
  /* line 8768, app/assets/stylesheets/materia46.css */
  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  /* line 8772, app/assets/stylesheets/materia46.css */
  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 8776, app/assets/stylesheets/materia46.css */
  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  /* line 8780, app/assets/stylesheets/materia46.css */
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  /* line 8783, app/assets/stylesheets/materia46.css */
  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }
  /* line 8787, app/assets/stylesheets/materia46.css */
  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  /* line 8791, app/assets/stylesheets/materia46.css */
  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 8795, app/assets/stylesheets/materia46.css */
  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  /* line 8799, app/assets/stylesheets/materia46.css */
  .m-sm-3 {
    margin: 1rem !important;
  }
  /* line 8802, app/assets/stylesheets/materia46.css */
  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }
  /* line 8806, app/assets/stylesheets/materia46.css */
  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }
  /* line 8810, app/assets/stylesheets/materia46.css */
  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }
  /* line 8814, app/assets/stylesheets/materia46.css */
  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }
  /* line 8818, app/assets/stylesheets/materia46.css */
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  /* line 8821, app/assets/stylesheets/materia46.css */
  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }
  /* line 8825, app/assets/stylesheets/materia46.css */
  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  /* line 8829, app/assets/stylesheets/materia46.css */
  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 8833, app/assets/stylesheets/materia46.css */
  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  /* line 8837, app/assets/stylesheets/materia46.css */
  .m-sm-5 {
    margin: 3rem !important;
  }
  /* line 8840, app/assets/stylesheets/materia46.css */
  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }
  /* line 8844, app/assets/stylesheets/materia46.css */
  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }
  /* line 8848, app/assets/stylesheets/materia46.css */
  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }
  /* line 8852, app/assets/stylesheets/materia46.css */
  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }
  /* line 8856, app/assets/stylesheets/materia46.css */
  .p-sm-0 {
    padding: 0 !important;
  }
  /* line 8859, app/assets/stylesheets/materia46.css */
  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }
  /* line 8863, app/assets/stylesheets/materia46.css */
  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }
  /* line 8867, app/assets/stylesheets/materia46.css */
  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }
  /* line 8871, app/assets/stylesheets/materia46.css */
  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }
  /* line 8875, app/assets/stylesheets/materia46.css */
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  /* line 8878, app/assets/stylesheets/materia46.css */
  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }
  /* line 8882, app/assets/stylesheets/materia46.css */
  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }
  /* line 8886, app/assets/stylesheets/materia46.css */
  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 8890, app/assets/stylesheets/materia46.css */
  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }
  /* line 8894, app/assets/stylesheets/materia46.css */
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  /* line 8897, app/assets/stylesheets/materia46.css */
  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }
  /* line 8901, app/assets/stylesheets/materia46.css */
  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }
  /* line 8905, app/assets/stylesheets/materia46.css */
  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 8909, app/assets/stylesheets/materia46.css */
  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }
  /* line 8913, app/assets/stylesheets/materia46.css */
  .p-sm-3 {
    padding: 1rem !important;
  }
  /* line 8916, app/assets/stylesheets/materia46.css */
  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }
  /* line 8920, app/assets/stylesheets/materia46.css */
  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }
  /* line 8924, app/assets/stylesheets/materia46.css */
  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }
  /* line 8928, app/assets/stylesheets/materia46.css */
  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }
  /* line 8932, app/assets/stylesheets/materia46.css */
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  /* line 8935, app/assets/stylesheets/materia46.css */
  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }
  /* line 8939, app/assets/stylesheets/materia46.css */
  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }
  /* line 8943, app/assets/stylesheets/materia46.css */
  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 8947, app/assets/stylesheets/materia46.css */
  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }
  /* line 8951, app/assets/stylesheets/materia46.css */
  .p-sm-5 {
    padding: 3rem !important;
  }
  /* line 8954, app/assets/stylesheets/materia46.css */
  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }
  /* line 8958, app/assets/stylesheets/materia46.css */
  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }
  /* line 8962, app/assets/stylesheets/materia46.css */
  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }
  /* line 8966, app/assets/stylesheets/materia46.css */
  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }
  /* line 8970, app/assets/stylesheets/materia46.css */
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  /* line 8973, app/assets/stylesheets/materia46.css */
  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 8977, app/assets/stylesheets/materia46.css */
  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 8981, app/assets/stylesheets/materia46.css */
  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 8985, app/assets/stylesheets/materia46.css */
  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 8989, app/assets/stylesheets/materia46.css */
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  /* line 8992, app/assets/stylesheets/materia46.css */
  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 8996, app/assets/stylesheets/materia46.css */
  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 9000, app/assets/stylesheets/materia46.css */
  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 9004, app/assets/stylesheets/materia46.css */
  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 9008, app/assets/stylesheets/materia46.css */
  .m-sm-n3 {
    margin: -1rem !important;
  }
  /* line 9011, app/assets/stylesheets/materia46.css */
  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }
  /* line 9015, app/assets/stylesheets/materia46.css */
  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }
  /* line 9019, app/assets/stylesheets/materia46.css */
  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 9023, app/assets/stylesheets/materia46.css */
  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }
  /* line 9027, app/assets/stylesheets/materia46.css */
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  /* line 9030, app/assets/stylesheets/materia46.css */
  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 9034, app/assets/stylesheets/materia46.css */
  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 9038, app/assets/stylesheets/materia46.css */
  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 9042, app/assets/stylesheets/materia46.css */
  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 9046, app/assets/stylesheets/materia46.css */
  .m-sm-n5 {
    margin: -3rem !important;
  }
  /* line 9049, app/assets/stylesheets/materia46.css */
  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }
  /* line 9053, app/assets/stylesheets/materia46.css */
  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }
  /* line 9057, app/assets/stylesheets/materia46.css */
  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 9061, app/assets/stylesheets/materia46.css */
  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }
  /* line 9065, app/assets/stylesheets/materia46.css */
  .m-sm-auto {
    margin: auto !important;
  }
  /* line 9068, app/assets/stylesheets/materia46.css */
  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }
  /* line 9072, app/assets/stylesheets/materia46.css */
  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }
  /* line 9076, app/assets/stylesheets/materia46.css */
  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }
  /* line 9080, app/assets/stylesheets/materia46.css */
  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  /* line 9087, app/assets/stylesheets/materia46.css */
  .m-md-0 {
    margin: 0 !important;
  }
  /* line 9090, app/assets/stylesheets/materia46.css */
  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }
  /* line 9094, app/assets/stylesheets/materia46.css */
  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }
  /* line 9098, app/assets/stylesheets/materia46.css */
  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }
  /* line 9102, app/assets/stylesheets/materia46.css */
  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }
  /* line 9106, app/assets/stylesheets/materia46.css */
  .m-md-1 {
    margin: 0.25rem !important;
  }
  /* line 9109, app/assets/stylesheets/materia46.css */
  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }
  /* line 9113, app/assets/stylesheets/materia46.css */
  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }
  /* line 9117, app/assets/stylesheets/materia46.css */
  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 9121, app/assets/stylesheets/materia46.css */
  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }
  /* line 9125, app/assets/stylesheets/materia46.css */
  .m-md-2 {
    margin: 0.5rem !important;
  }
  /* line 9128, app/assets/stylesheets/materia46.css */
  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }
  /* line 9132, app/assets/stylesheets/materia46.css */
  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }
  /* line 9136, app/assets/stylesheets/materia46.css */
  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 9140, app/assets/stylesheets/materia46.css */
  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }
  /* line 9144, app/assets/stylesheets/materia46.css */
  .m-md-3 {
    margin: 1rem !important;
  }
  /* line 9147, app/assets/stylesheets/materia46.css */
  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }
  /* line 9151, app/assets/stylesheets/materia46.css */
  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }
  /* line 9155, app/assets/stylesheets/materia46.css */
  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }
  /* line 9159, app/assets/stylesheets/materia46.css */
  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }
  /* line 9163, app/assets/stylesheets/materia46.css */
  .m-md-4 {
    margin: 1.5rem !important;
  }
  /* line 9166, app/assets/stylesheets/materia46.css */
  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }
  /* line 9170, app/assets/stylesheets/materia46.css */
  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }
  /* line 9174, app/assets/stylesheets/materia46.css */
  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 9178, app/assets/stylesheets/materia46.css */
  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }
  /* line 9182, app/assets/stylesheets/materia46.css */
  .m-md-5 {
    margin: 3rem !important;
  }
  /* line 9185, app/assets/stylesheets/materia46.css */
  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }
  /* line 9189, app/assets/stylesheets/materia46.css */
  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }
  /* line 9193, app/assets/stylesheets/materia46.css */
  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }
  /* line 9197, app/assets/stylesheets/materia46.css */
  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }
  /* line 9201, app/assets/stylesheets/materia46.css */
  .p-md-0 {
    padding: 0 !important;
  }
  /* line 9204, app/assets/stylesheets/materia46.css */
  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }
  /* line 9208, app/assets/stylesheets/materia46.css */
  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }
  /* line 9212, app/assets/stylesheets/materia46.css */
  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }
  /* line 9216, app/assets/stylesheets/materia46.css */
  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }
  /* line 9220, app/assets/stylesheets/materia46.css */
  .p-md-1 {
    padding: 0.25rem !important;
  }
  /* line 9223, app/assets/stylesheets/materia46.css */
  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }
  /* line 9227, app/assets/stylesheets/materia46.css */
  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }
  /* line 9231, app/assets/stylesheets/materia46.css */
  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 9235, app/assets/stylesheets/materia46.css */
  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }
  /* line 9239, app/assets/stylesheets/materia46.css */
  .p-md-2 {
    padding: 0.5rem !important;
  }
  /* line 9242, app/assets/stylesheets/materia46.css */
  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }
  /* line 9246, app/assets/stylesheets/materia46.css */
  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }
  /* line 9250, app/assets/stylesheets/materia46.css */
  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 9254, app/assets/stylesheets/materia46.css */
  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }
  /* line 9258, app/assets/stylesheets/materia46.css */
  .p-md-3 {
    padding: 1rem !important;
  }
  /* line 9261, app/assets/stylesheets/materia46.css */
  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }
  /* line 9265, app/assets/stylesheets/materia46.css */
  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }
  /* line 9269, app/assets/stylesheets/materia46.css */
  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }
  /* line 9273, app/assets/stylesheets/materia46.css */
  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }
  /* line 9277, app/assets/stylesheets/materia46.css */
  .p-md-4 {
    padding: 1.5rem !important;
  }
  /* line 9280, app/assets/stylesheets/materia46.css */
  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }
  /* line 9284, app/assets/stylesheets/materia46.css */
  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }
  /* line 9288, app/assets/stylesheets/materia46.css */
  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 9292, app/assets/stylesheets/materia46.css */
  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }
  /* line 9296, app/assets/stylesheets/materia46.css */
  .p-md-5 {
    padding: 3rem !important;
  }
  /* line 9299, app/assets/stylesheets/materia46.css */
  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }
  /* line 9303, app/assets/stylesheets/materia46.css */
  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }
  /* line 9307, app/assets/stylesheets/materia46.css */
  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }
  /* line 9311, app/assets/stylesheets/materia46.css */
  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }
  /* line 9315, app/assets/stylesheets/materia46.css */
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  /* line 9318, app/assets/stylesheets/materia46.css */
  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 9322, app/assets/stylesheets/materia46.css */
  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 9326, app/assets/stylesheets/materia46.css */
  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 9330, app/assets/stylesheets/materia46.css */
  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 9334, app/assets/stylesheets/materia46.css */
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  /* line 9337, app/assets/stylesheets/materia46.css */
  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 9341, app/assets/stylesheets/materia46.css */
  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 9345, app/assets/stylesheets/materia46.css */
  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 9349, app/assets/stylesheets/materia46.css */
  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 9353, app/assets/stylesheets/materia46.css */
  .m-md-n3 {
    margin: -1rem !important;
  }
  /* line 9356, app/assets/stylesheets/materia46.css */
  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }
  /* line 9360, app/assets/stylesheets/materia46.css */
  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }
  /* line 9364, app/assets/stylesheets/materia46.css */
  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 9368, app/assets/stylesheets/materia46.css */
  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }
  /* line 9372, app/assets/stylesheets/materia46.css */
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  /* line 9375, app/assets/stylesheets/materia46.css */
  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 9379, app/assets/stylesheets/materia46.css */
  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 9383, app/assets/stylesheets/materia46.css */
  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 9387, app/assets/stylesheets/materia46.css */
  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 9391, app/assets/stylesheets/materia46.css */
  .m-md-n5 {
    margin: -3rem !important;
  }
  /* line 9394, app/assets/stylesheets/materia46.css */
  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }
  /* line 9398, app/assets/stylesheets/materia46.css */
  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }
  /* line 9402, app/assets/stylesheets/materia46.css */
  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 9406, app/assets/stylesheets/materia46.css */
  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }
  /* line 9410, app/assets/stylesheets/materia46.css */
  .m-md-auto {
    margin: auto !important;
  }
  /* line 9413, app/assets/stylesheets/materia46.css */
  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }
  /* line 9417, app/assets/stylesheets/materia46.css */
  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }
  /* line 9421, app/assets/stylesheets/materia46.css */
  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }
  /* line 9425, app/assets/stylesheets/materia46.css */
  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  /* line 9432, app/assets/stylesheets/materia46.css */
  .m-lg-0 {
    margin: 0 !important;
  }
  /* line 9435, app/assets/stylesheets/materia46.css */
  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }
  /* line 9439, app/assets/stylesheets/materia46.css */
  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }
  /* line 9443, app/assets/stylesheets/materia46.css */
  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }
  /* line 9447, app/assets/stylesheets/materia46.css */
  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }
  /* line 9451, app/assets/stylesheets/materia46.css */
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  /* line 9454, app/assets/stylesheets/materia46.css */
  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }
  /* line 9458, app/assets/stylesheets/materia46.css */
  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  /* line 9462, app/assets/stylesheets/materia46.css */
  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 9466, app/assets/stylesheets/materia46.css */
  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  /* line 9470, app/assets/stylesheets/materia46.css */
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  /* line 9473, app/assets/stylesheets/materia46.css */
  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }
  /* line 9477, app/assets/stylesheets/materia46.css */
  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  /* line 9481, app/assets/stylesheets/materia46.css */
  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 9485, app/assets/stylesheets/materia46.css */
  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  /* line 9489, app/assets/stylesheets/materia46.css */
  .m-lg-3 {
    margin: 1rem !important;
  }
  /* line 9492, app/assets/stylesheets/materia46.css */
  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }
  /* line 9496, app/assets/stylesheets/materia46.css */
  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }
  /* line 9500, app/assets/stylesheets/materia46.css */
  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }
  /* line 9504, app/assets/stylesheets/materia46.css */
  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }
  /* line 9508, app/assets/stylesheets/materia46.css */
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  /* line 9511, app/assets/stylesheets/materia46.css */
  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }
  /* line 9515, app/assets/stylesheets/materia46.css */
  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  /* line 9519, app/assets/stylesheets/materia46.css */
  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 9523, app/assets/stylesheets/materia46.css */
  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  /* line 9527, app/assets/stylesheets/materia46.css */
  .m-lg-5 {
    margin: 3rem !important;
  }
  /* line 9530, app/assets/stylesheets/materia46.css */
  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }
  /* line 9534, app/assets/stylesheets/materia46.css */
  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }
  /* line 9538, app/assets/stylesheets/materia46.css */
  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }
  /* line 9542, app/assets/stylesheets/materia46.css */
  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }
  /* line 9546, app/assets/stylesheets/materia46.css */
  .p-lg-0 {
    padding: 0 !important;
  }
  /* line 9549, app/assets/stylesheets/materia46.css */
  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }
  /* line 9553, app/assets/stylesheets/materia46.css */
  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }
  /* line 9557, app/assets/stylesheets/materia46.css */
  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }
  /* line 9561, app/assets/stylesheets/materia46.css */
  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }
  /* line 9565, app/assets/stylesheets/materia46.css */
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  /* line 9568, app/assets/stylesheets/materia46.css */
  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }
  /* line 9572, app/assets/stylesheets/materia46.css */
  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }
  /* line 9576, app/assets/stylesheets/materia46.css */
  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 9580, app/assets/stylesheets/materia46.css */
  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }
  /* line 9584, app/assets/stylesheets/materia46.css */
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  /* line 9587, app/assets/stylesheets/materia46.css */
  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }
  /* line 9591, app/assets/stylesheets/materia46.css */
  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }
  /* line 9595, app/assets/stylesheets/materia46.css */
  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 9599, app/assets/stylesheets/materia46.css */
  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }
  /* line 9603, app/assets/stylesheets/materia46.css */
  .p-lg-3 {
    padding: 1rem !important;
  }
  /* line 9606, app/assets/stylesheets/materia46.css */
  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }
  /* line 9610, app/assets/stylesheets/materia46.css */
  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }
  /* line 9614, app/assets/stylesheets/materia46.css */
  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }
  /* line 9618, app/assets/stylesheets/materia46.css */
  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }
  /* line 9622, app/assets/stylesheets/materia46.css */
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  /* line 9625, app/assets/stylesheets/materia46.css */
  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }
  /* line 9629, app/assets/stylesheets/materia46.css */
  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }
  /* line 9633, app/assets/stylesheets/materia46.css */
  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 9637, app/assets/stylesheets/materia46.css */
  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }
  /* line 9641, app/assets/stylesheets/materia46.css */
  .p-lg-5 {
    padding: 3rem !important;
  }
  /* line 9644, app/assets/stylesheets/materia46.css */
  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }
  /* line 9648, app/assets/stylesheets/materia46.css */
  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }
  /* line 9652, app/assets/stylesheets/materia46.css */
  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }
  /* line 9656, app/assets/stylesheets/materia46.css */
  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }
  /* line 9660, app/assets/stylesheets/materia46.css */
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  /* line 9663, app/assets/stylesheets/materia46.css */
  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 9667, app/assets/stylesheets/materia46.css */
  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 9671, app/assets/stylesheets/materia46.css */
  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 9675, app/assets/stylesheets/materia46.css */
  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 9679, app/assets/stylesheets/materia46.css */
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  /* line 9682, app/assets/stylesheets/materia46.css */
  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 9686, app/assets/stylesheets/materia46.css */
  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 9690, app/assets/stylesheets/materia46.css */
  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 9694, app/assets/stylesheets/materia46.css */
  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 9698, app/assets/stylesheets/materia46.css */
  .m-lg-n3 {
    margin: -1rem !important;
  }
  /* line 9701, app/assets/stylesheets/materia46.css */
  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }
  /* line 9705, app/assets/stylesheets/materia46.css */
  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }
  /* line 9709, app/assets/stylesheets/materia46.css */
  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 9713, app/assets/stylesheets/materia46.css */
  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }
  /* line 9717, app/assets/stylesheets/materia46.css */
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  /* line 9720, app/assets/stylesheets/materia46.css */
  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 9724, app/assets/stylesheets/materia46.css */
  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 9728, app/assets/stylesheets/materia46.css */
  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 9732, app/assets/stylesheets/materia46.css */
  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 9736, app/assets/stylesheets/materia46.css */
  .m-lg-n5 {
    margin: -3rem !important;
  }
  /* line 9739, app/assets/stylesheets/materia46.css */
  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }
  /* line 9743, app/assets/stylesheets/materia46.css */
  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }
  /* line 9747, app/assets/stylesheets/materia46.css */
  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 9751, app/assets/stylesheets/materia46.css */
  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }
  /* line 9755, app/assets/stylesheets/materia46.css */
  .m-lg-auto {
    margin: auto !important;
  }
  /* line 9758, app/assets/stylesheets/materia46.css */
  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }
  /* line 9762, app/assets/stylesheets/materia46.css */
  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }
  /* line 9766, app/assets/stylesheets/materia46.css */
  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }
  /* line 9770, app/assets/stylesheets/materia46.css */
  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  /* line 9777, app/assets/stylesheets/materia46.css */
  .m-xl-0 {
    margin: 0 !important;
  }
  /* line 9780, app/assets/stylesheets/materia46.css */
  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }
  /* line 9784, app/assets/stylesheets/materia46.css */
  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }
  /* line 9788, app/assets/stylesheets/materia46.css */
  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }
  /* line 9792, app/assets/stylesheets/materia46.css */
  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }
  /* line 9796, app/assets/stylesheets/materia46.css */
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  /* line 9799, app/assets/stylesheets/materia46.css */
  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 9803, app/assets/stylesheets/materia46.css */
  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 9807, app/assets/stylesheets/materia46.css */
  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 9811, app/assets/stylesheets/materia46.css */
  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 9815, app/assets/stylesheets/materia46.css */
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  /* line 9818, app/assets/stylesheets/materia46.css */
  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 9822, app/assets/stylesheets/materia46.css */
  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 9826, app/assets/stylesheets/materia46.css */
  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 9830, app/assets/stylesheets/materia46.css */
  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 9834, app/assets/stylesheets/materia46.css */
  .m-xl-3 {
    margin: 1rem !important;
  }
  /* line 9837, app/assets/stylesheets/materia46.css */
  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }
  /* line 9841, app/assets/stylesheets/materia46.css */
  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }
  /* line 9845, app/assets/stylesheets/materia46.css */
  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 9849, app/assets/stylesheets/materia46.css */
  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }
  /* line 9853, app/assets/stylesheets/materia46.css */
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  /* line 9856, app/assets/stylesheets/materia46.css */
  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 9860, app/assets/stylesheets/materia46.css */
  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 9864, app/assets/stylesheets/materia46.css */
  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 9868, app/assets/stylesheets/materia46.css */
  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 9872, app/assets/stylesheets/materia46.css */
  .m-xl-5 {
    margin: 3rem !important;
  }
  /* line 9875, app/assets/stylesheets/materia46.css */
  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }
  /* line 9879, app/assets/stylesheets/materia46.css */
  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }
  /* line 9883, app/assets/stylesheets/materia46.css */
  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 9887, app/assets/stylesheets/materia46.css */
  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }
  /* line 9891, app/assets/stylesheets/materia46.css */
  .p-xl-0 {
    padding: 0 !important;
  }
  /* line 9894, app/assets/stylesheets/materia46.css */
  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }
  /* line 9898, app/assets/stylesheets/materia46.css */
  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }
  /* line 9902, app/assets/stylesheets/materia46.css */
  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }
  /* line 9906, app/assets/stylesheets/materia46.css */
  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }
  /* line 9910, app/assets/stylesheets/materia46.css */
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  /* line 9913, app/assets/stylesheets/materia46.css */
  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 9917, app/assets/stylesheets/materia46.css */
  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 9921, app/assets/stylesheets/materia46.css */
  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 9925, app/assets/stylesheets/materia46.css */
  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 9929, app/assets/stylesheets/materia46.css */
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  /* line 9932, app/assets/stylesheets/materia46.css */
  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 9936, app/assets/stylesheets/materia46.css */
  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 9940, app/assets/stylesheets/materia46.css */
  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 9944, app/assets/stylesheets/materia46.css */
  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 9948, app/assets/stylesheets/materia46.css */
  .p-xl-3 {
    padding: 1rem !important;
  }
  /* line 9951, app/assets/stylesheets/materia46.css */
  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }
  /* line 9955, app/assets/stylesheets/materia46.css */
  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }
  /* line 9959, app/assets/stylesheets/materia46.css */
  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 9963, app/assets/stylesheets/materia46.css */
  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }
  /* line 9967, app/assets/stylesheets/materia46.css */
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  /* line 9970, app/assets/stylesheets/materia46.css */
  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 9974, app/assets/stylesheets/materia46.css */
  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 9978, app/assets/stylesheets/materia46.css */
  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 9982, app/assets/stylesheets/materia46.css */
  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 9986, app/assets/stylesheets/materia46.css */
  .p-xl-5 {
    padding: 3rem !important;
  }
  /* line 9989, app/assets/stylesheets/materia46.css */
  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }
  /* line 9993, app/assets/stylesheets/materia46.css */
  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }
  /* line 9997, app/assets/stylesheets/materia46.css */
  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 10001, app/assets/stylesheets/materia46.css */
  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }
  /* line 10005, app/assets/stylesheets/materia46.css */
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  /* line 10008, app/assets/stylesheets/materia46.css */
  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 10012, app/assets/stylesheets/materia46.css */
  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 10016, app/assets/stylesheets/materia46.css */
  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 10020, app/assets/stylesheets/materia46.css */
  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 10024, app/assets/stylesheets/materia46.css */
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  /* line 10027, app/assets/stylesheets/materia46.css */
  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 10031, app/assets/stylesheets/materia46.css */
  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 10035, app/assets/stylesheets/materia46.css */
  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 10039, app/assets/stylesheets/materia46.css */
  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 10043, app/assets/stylesheets/materia46.css */
  .m-xl-n3 {
    margin: -1rem !important;
  }
  /* line 10046, app/assets/stylesheets/materia46.css */
  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }
  /* line 10050, app/assets/stylesheets/materia46.css */
  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }
  /* line 10054, app/assets/stylesheets/materia46.css */
  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 10058, app/assets/stylesheets/materia46.css */
  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }
  /* line 10062, app/assets/stylesheets/materia46.css */
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  /* line 10065, app/assets/stylesheets/materia46.css */
  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 10069, app/assets/stylesheets/materia46.css */
  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 10073, app/assets/stylesheets/materia46.css */
  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 10077, app/assets/stylesheets/materia46.css */
  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 10081, app/assets/stylesheets/materia46.css */
  .m-xl-n5 {
    margin: -3rem !important;
  }
  /* line 10084, app/assets/stylesheets/materia46.css */
  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }
  /* line 10088, app/assets/stylesheets/materia46.css */
  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }
  /* line 10092, app/assets/stylesheets/materia46.css */
  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 10096, app/assets/stylesheets/materia46.css */
  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }
  /* line 10100, app/assets/stylesheets/materia46.css */
  .m-xl-auto {
    margin: auto !important;
  }
  /* line 10103, app/assets/stylesheets/materia46.css */
  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }
  /* line 10107, app/assets/stylesheets/materia46.css */
  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }
  /* line 10111, app/assets/stylesheets/materia46.css */
  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }
  /* line 10115, app/assets/stylesheets/materia46.css */
  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}

/* line 10121, app/assets/stylesheets/materia46.css */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

/* line 10133, app/assets/stylesheets/materia46.css */
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

/* line 10137, app/assets/stylesheets/materia46.css */
.text-justify {
  text-align: justify !important;
}

/* line 10141, app/assets/stylesheets/materia46.css */
.text-wrap {
  white-space: normal !important;
}

/* line 10145, app/assets/stylesheets/materia46.css */
.text-nowrap {
  white-space: nowrap !important;
}

/* line 10149, app/assets/stylesheets/materia46.css */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 10155, app/assets/stylesheets/materia46.css */
.text-left {
  text-align: left !important;
}

/* line 10159, app/assets/stylesheets/materia46.css */
.text-right {
  text-align: right !important;
}

/* line 10163, app/assets/stylesheets/materia46.css */
.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  /* line 10168, app/assets/stylesheets/materia46.css */
  .text-sm-left {
    text-align: left !important;
  }
  /* line 10171, app/assets/stylesheets/materia46.css */
  .text-sm-right {
    text-align: right !important;
  }
  /* line 10174, app/assets/stylesheets/materia46.css */
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  /* line 10180, app/assets/stylesheets/materia46.css */
  .text-md-left {
    text-align: left !important;
  }
  /* line 10183, app/assets/stylesheets/materia46.css */
  .text-md-right {
    text-align: right !important;
  }
  /* line 10186, app/assets/stylesheets/materia46.css */
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  /* line 10192, app/assets/stylesheets/materia46.css */
  .text-lg-left {
    text-align: left !important;
  }
  /* line 10195, app/assets/stylesheets/materia46.css */
  .text-lg-right {
    text-align: right !important;
  }
  /* line 10198, app/assets/stylesheets/materia46.css */
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 10204, app/assets/stylesheets/materia46.css */
  .text-xl-left {
    text-align: left !important;
  }
  /* line 10207, app/assets/stylesheets/materia46.css */
  .text-xl-right {
    text-align: right !important;
  }
  /* line 10210, app/assets/stylesheets/materia46.css */
  .text-xl-center {
    text-align: center !important;
  }
}

/* line 10215, app/assets/stylesheets/materia46.css */
.text-lowercase {
  text-transform: lowercase !important;
}

/* line 10219, app/assets/stylesheets/materia46.css */
.text-uppercase {
  text-transform: uppercase !important;
}

/* line 10223, app/assets/stylesheets/materia46.css */
.text-capitalize {
  text-transform: capitalize !important;
}

/* line 10227, app/assets/stylesheets/materia46.css */
.font-weight-light {
  font-weight: 300 !important;
}

/* line 10231, app/assets/stylesheets/materia46.css */
.font-weight-lighter {
  font-weight: lighter !important;
}

/* line 10235, app/assets/stylesheets/materia46.css */
.font-weight-normal {
  font-weight: 400 !important;
}

/* line 10239, app/assets/stylesheets/materia46.css */
.font-weight-bold {
  font-weight: 700 !important;
}

/* line 10243, app/assets/stylesheets/materia46.css */
.font-weight-bolder {
  font-weight: bolder !important;
}

/* line 10247, app/assets/stylesheets/materia46.css */
.font-italic {
  font-style: italic !important;
}

/* line 10251, app/assets/stylesheets/materia46.css */
.text-white {
  color: #fff !important;
}

/* line 10255, app/assets/stylesheets/materia46.css */
.text-primary {
  color: #2196f3 !important;
}

/* line 10259, app/assets/stylesheets/materia46.css */
a.text-primary:hover, a.text-primary:focus {
  color: #0a6ebd !important;
}

/* line 10263, app/assets/stylesheets/materia46.css */
.text-secondary {
  color: #fff !important;
}

/* line 10267, app/assets/stylesheets/materia46.css */
a.text-secondary:hover, a.text-secondary:focus {
  color: #d9d9d9 !important;
}

/* line 10271, app/assets/stylesheets/materia46.css */
.text-success {
  color: #4caf50 !important;
}

/* line 10275, app/assets/stylesheets/materia46.css */
a.text-success:hover, a.text-success:focus {
  color: #357a38 !important;
}

/* line 10279, app/assets/stylesheets/materia46.css */
.text-info {
  color: #9c27b0 !important;
}

/* line 10283, app/assets/stylesheets/materia46.css */
a.text-info:hover, a.text-info:focus {
  color: #641971 !important;
}

/* line 10287, app/assets/stylesheets/materia46.css */
.text-warning {
  color: #ff9800 !important;
}

/* line 10291, app/assets/stylesheets/materia46.css */
a.text-warning:hover, a.text-warning:focus {
  color: #b36a00 !important;
}

/* line 10295, app/assets/stylesheets/materia46.css */
.text-danger {
  color: #e51c23 !important;
}

/* line 10299, app/assets/stylesheets/materia46.css */
a.text-danger:hover, a.text-danger:focus {
  color: #a21318 !important;
}

/* line 10303, app/assets/stylesheets/materia46.css */
.text-light {
  color: #fff !important;
}

/* line 10307, app/assets/stylesheets/materia46.css */
a.text-light:hover, a.text-light:focus {
  color: #d9d9d9 !important;
}

/* line 10311, app/assets/stylesheets/materia46.css */
.text-dark {
  color: #222 !important;
}

/* line 10315, app/assets/stylesheets/materia46.css */
a.text-dark:hover, a.text-dark:focus {
  color: black !important;
}

/* line 10319, app/assets/stylesheets/materia46.css */
.text-body {
  color: #444 !important;
}

/* line 10323, app/assets/stylesheets/materia46.css */
.text-muted {
  color: #666 !important;
}

/* line 10327, app/assets/stylesheets/materia46.css */
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 10331, app/assets/stylesheets/materia46.css */
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 10335, app/assets/stylesheets/materia46.css */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 10343, app/assets/stylesheets/materia46.css */
.text-decoration-none {
  text-decoration: none !important;
}

/* line 10347, app/assets/stylesheets/materia46.css */
.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

/* line 10352, app/assets/stylesheets/materia46.css */
.text-reset {
  color: inherit !important;
}

/* line 10356, app/assets/stylesheets/materia46.css */
.visible {
  visibility: visible !important;
}

/* line 10360, app/assets/stylesheets/materia46.css */
.invisible {
  visibility: hidden !important;
}

@media print {
  /* line 10365, app/assets/stylesheets/materia46.css */
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  /* line 10371, app/assets/stylesheets/materia46.css */
  a:not(.btn):not(.submit) {
    text-decoration: underline;
  }
  /* line 10374, app/assets/stylesheets/materia46.css */
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /* line 10377, app/assets/stylesheets/materia46.css */
  pre {
    white-space: pre-wrap !important;
  }
  /* line 10380, app/assets/stylesheets/materia46.css */
  pre,
blockquote {
    border: 1px solid #bbb;
    page-break-inside: avoid;
  }
  /* line 10385, app/assets/stylesheets/materia46.css */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 10389, app/assets/stylesheets/materia46.css */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 10395, app/assets/stylesheets/materia46.css */
  h2,
h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  /* line 10402, app/assets/stylesheets/materia46.css */
  body {
    min-width: 992px !important;
  }
  /* line 10405, app/assets/stylesheets/materia46.css */
  .container, main {
    min-width: 992px !important;
  }
  /* line 10408, app/assets/stylesheets/materia46.css */
  .navbar {
    display: none;
  }
  /* line 10411, app/assets/stylesheets/materia46.css */
  .badge {
    border: 1px solid #000;
  }
  /* line 10414, app/assets/stylesheets/materia46.css */
  .table {
    border-collapse: collapse !important;
  }
  /* line 10417, app/assets/stylesheets/materia46.css */
  .table td,
.table th {
    background-color: #fff !important;
  }
  /* line 10421, app/assets/stylesheets/materia46.css */
  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  /* line 10425, app/assets/stylesheets/materia46.css */
  .table-dark {
    color: inherit;
  }
  /* line 10428, app/assets/stylesheets/materia46.css */
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  /* line 10434, app/assets/stylesheets/materia46.css */
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/* line 10440, app/assets/stylesheets/materia46.css */
.dropdown-toggle::after,
.dropup .dropdown-toggle::after,
.dropright .dropdown-toggle::after,
.dropleft .dropdown-toggle::after {
  border-width: 4px;
}

/* line 10447, app/assets/stylesheets/materia46.css */
.navbar {
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* line 10452, app/assets/stylesheets/materia46.css */
.navbar-brand {
  font-size: 24px;
}

/* line 10456, app/assets/stylesheets/materia46.css */
.navbar-nav .nav-link {
  padding-top: .9rem;
  padding-bottom: .9rem;
}

/* line 10461, app/assets/stylesheets/materia46.css */
.navbar.bg-dark input[type="text"],
.navbar.bg-dark input[type="password"],
.navbar.bg-dark input[type="email"],
.navbar.bg-dark input[type="number"],
.navbar.bg-dark input[type="tel"], .navbar.bg-primary input[type="text"],
.navbar.bg-primary input[type="password"],
.navbar.bg-primary input[type="email"],
.navbar.bg-primary input[type="number"],
.navbar.bg-primary input[type="tel"] {
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5);
}

/* line 10474, app/assets/stylesheets/materia46.css */
.navbar.bg-dark input[type="text"]:focus,
.navbar.bg-dark input[type="password"]:focus,
.navbar.bg-dark input[type="email"]:focus,
.navbar.bg-dark input[type="number"]:focus,
.navbar.bg-dark input[type="tel"]:focus, .navbar.bg-primary input[type="text"]:focus,
.navbar.bg-primary input[type="password"]:focus,
.navbar.bg-primary input[type="email"]:focus,
.navbar.bg-primary input[type="number"]:focus,
.navbar.bg-primary input[type="tel"]:focus {
  box-shadow: inset 0 -2px 0 #fff;
}

/* line 10486, app/assets/stylesheets/materia46.css */
.navbar.bg-dark input[type="text"]::-webkit-input-placeholder, .navbar.bg-dark input[type="password"]::-webkit-input-placeholder, .navbar.bg-dark input[type="email"]::-webkit-input-placeholder, .navbar.bg-dark input[type="number"]::-webkit-input-placeholder, .navbar.bg-dark input[type="tel"]::-webkit-input-placeholder, .navbar.bg-primary input[type="text"]::-webkit-input-placeholder, .navbar.bg-primary input[type="password"]::-webkit-input-placeholder, .navbar.bg-primary input[type="email"]::-webkit-input-placeholder, .navbar.bg-primary input[type="number"]::-webkit-input-placeholder, .navbar.bg-primary input[type="tel"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 10490, app/assets/stylesheets/materia46.css */
.navbar.bg-dark input[type="text"]::-moz-placeholder, .navbar.bg-dark input[type="password"]::-moz-placeholder, .navbar.bg-dark input[type="email"]::-moz-placeholder, .navbar.bg-dark input[type="number"]::-moz-placeholder, .navbar.bg-dark input[type="tel"]::-moz-placeholder, .navbar.bg-primary input[type="text"]::-moz-placeholder, .navbar.bg-primary input[type="password"]::-moz-placeholder, .navbar.bg-primary input[type="email"]::-moz-placeholder, .navbar.bg-primary input[type="number"]::-moz-placeholder, .navbar.bg-primary input[type="tel"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 10494, app/assets/stylesheets/materia46.css */
.navbar.bg-dark input[type="text"]:-ms-input-placeholder, .navbar.bg-dark input[type="password"]:-ms-input-placeholder, .navbar.bg-dark input[type="email"]:-ms-input-placeholder, .navbar.bg-dark input[type="number"]:-ms-input-placeholder, .navbar.bg-dark input[type="tel"]:-ms-input-placeholder, .navbar.bg-primary input[type="text"]:-ms-input-placeholder, .navbar.bg-primary input[type="password"]:-ms-input-placeholder, .navbar.bg-primary input[type="email"]:-ms-input-placeholder, .navbar.bg-primary input[type="number"]:-ms-input-placeholder, .navbar.bg-primary input[type="tel"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 10498, app/assets/stylesheets/materia46.css */
.navbar.bg-dark input[type="text"]::-ms-input-placeholder, .navbar.bg-dark input[type="password"]::-ms-input-placeholder, .navbar.bg-dark input[type="email"]::-ms-input-placeholder, .navbar.bg-dark input[type="number"]::-ms-input-placeholder, .navbar.bg-dark input[type="tel"]::-ms-input-placeholder, .navbar.bg-primary input[type="text"]::-ms-input-placeholder, .navbar.bg-primary input[type="password"]::-ms-input-placeholder, .navbar.bg-primary input[type="email"]::-ms-input-placeholder, .navbar.bg-primary input[type="number"]::-ms-input-placeholder, .navbar.bg-primary input[type="tel"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 10502, app/assets/stylesheets/materia46.css */
.navbar.bg-dark input[type="text"]::-moz-placeholder, .navbar.bg-dark input[type="password"]::-moz-placeholder, .navbar.bg-dark input[type="email"]::-moz-placeholder, .navbar.bg-dark input[type="number"]::-moz-placeholder, .navbar.bg-dark input[type="tel"]::-moz-placeholder, .navbar.bg-primary input[type="text"]::-moz-placeholder, .navbar.bg-primary input[type="password"]::-moz-placeholder, .navbar.bg-primary input[type="email"]::-moz-placeholder, .navbar.bg-primary input[type="number"]::-moz-placeholder, .navbar.bg-primary input[type="tel"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.navbar.bg-dark input[type="text"]:-ms-input-placeholder, .navbar.bg-dark input[type="password"]:-ms-input-placeholder, .navbar.bg-dark input[type="email"]:-ms-input-placeholder, .navbar.bg-dark input[type="number"]:-ms-input-placeholder, .navbar.bg-dark input[type="tel"]:-ms-input-placeholder, .navbar.bg-primary input[type="text"]:-ms-input-placeholder, .navbar.bg-primary input[type="password"]:-ms-input-placeholder, .navbar.bg-primary input[type="email"]:-ms-input-placeholder, .navbar.bg-primary input[type="number"]:-ms-input-placeholder, .navbar.bg-primary input[type="tel"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.navbar.bg-dark input[type="text"]::placeholder,
.navbar.bg-dark input[type="password"]::placeholder,
.navbar.bg-dark input[type="email"]::placeholder,
.navbar.bg-dark input[type="number"]::placeholder,
.navbar.bg-dark input[type="tel"]::placeholder, .navbar.bg-primary input[type="text"]::placeholder,
.navbar.bg-primary input[type="password"]::placeholder,
.navbar.bg-primary input[type="email"]::placeholder,
.navbar.bg-primary input[type="number"]::placeholder,
.navbar.bg-primary input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* line 10514, app/assets/stylesheets/materia46.css */
.btn-primary, .submit {
  position: relative;
}

/* line 10518, app/assets/stylesheets/materia46.css */
.btn-primary:focus, .submit:focus {
  background-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

/* line 10523, app/assets/stylesheets/materia46.css */
.btn-primary:hover, .submit:hover, .btn-primary:active:hover {
  background-color: #0d87e9;
}

/* line 10527, app/assets/stylesheets/materia46.css */
.btn-primary:active, .submit:active {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 10531, app/assets/stylesheets/materia46.css */
.btn-primary::before, .submit::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10550, app/assets/stylesheets/materia46.css */
.btn-primary:active::before, .submit:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10556, app/assets/stylesheets/materia46.css */
.btn-primary.disabled::before, .disabled.submit::before, .btn-primary[disabled]::before, .submit[disabled]::before {
  display: none;
}

/* line 10560, app/assets/stylesheets/materia46.css */
.btn-outline-primary {
  position: relative;
}

/* line 10564, app/assets/stylesheets/materia46.css */
.btn-outline-primary::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10583, app/assets/stylesheets/materia46.css */
.btn-outline-primary:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10589, app/assets/stylesheets/materia46.css */
.btn-outline-primary.disabled::before, .btn-outline-primary[disabled]::before {
  display: none;
}

/* line 10593, app/assets/stylesheets/materia46.css */
.btn-secondary {
  position: relative;
}

/* line 10597, app/assets/stylesheets/materia46.css */
.btn-secondary:focus {
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

/* line 10602, app/assets/stylesheets/materia46.css */
.btn-secondary:hover, .btn-secondary:active:hover {
  background-color: #f0f0f0;
}

/* line 10606, app/assets/stylesheets/materia46.css */
.btn-secondary:active {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 10610, app/assets/stylesheets/materia46.css */
.btn-secondary::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #bbb 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10629, app/assets/stylesheets/materia46.css */
.btn-secondary:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10635, app/assets/stylesheets/materia46.css */
.btn-secondary.disabled::before, .btn-secondary[disabled]::before {
  display: none;
}

/* line 10639, app/assets/stylesheets/materia46.css */
.btn-outline-secondary {
  position: relative;
}

/* line 10643, app/assets/stylesheets/materia46.css */
.btn-outline-secondary::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #bbb 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10662, app/assets/stylesheets/materia46.css */
.btn-outline-secondary:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10668, app/assets/stylesheets/materia46.css */
.btn-outline-secondary.disabled::before, .btn-outline-secondary[disabled]::before {
  display: none;
}

/* line 10672, app/assets/stylesheets/materia46.css */
.btn-success {
  position: relative;
}

/* line 10676, app/assets/stylesheets/materia46.css */
.btn-success:focus {
  background-color: #4caf50;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

/* line 10681, app/assets/stylesheets/materia46.css */
.btn-success:hover, .btn-success:active:hover {
  background-color: #439a46;
}

/* line 10685, app/assets/stylesheets/materia46.css */
.btn-success:active {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 10689, app/assets/stylesheets/materia46.css */
.btn-success::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10708, app/assets/stylesheets/materia46.css */
.btn-success:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10714, app/assets/stylesheets/materia46.css */
.btn-success.disabled::before, .btn-success[disabled]::before {
  display: none;
}

/* line 10718, app/assets/stylesheets/materia46.css */
.btn-outline-success {
  position: relative;
}

/* line 10722, app/assets/stylesheets/materia46.css */
.btn-outline-success::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10741, app/assets/stylesheets/materia46.css */
.btn-outline-success:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10747, app/assets/stylesheets/materia46.css */
.btn-outline-success.disabled::before, .btn-outline-success[disabled]::before {
  display: none;
}

/* line 10751, app/assets/stylesheets/materia46.css */
.btn-info {
  position: relative;
}

/* line 10755, app/assets/stylesheets/materia46.css */
.btn-info:focus {
  background-color: #9c27b0;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

/* line 10760, app/assets/stylesheets/materia46.css */
.btn-info:hover, .btn-info:active:hover {
  background-color: #862197;
}

/* line 10764, app/assets/stylesheets/materia46.css */
.btn-info:active {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 10768, app/assets/stylesheets/materia46.css */
.btn-info::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10787, app/assets/stylesheets/materia46.css */
.btn-info:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10793, app/assets/stylesheets/materia46.css */
.btn-info.disabled::before, .btn-info[disabled]::before {
  display: none;
}

/* line 10797, app/assets/stylesheets/materia46.css */
.btn-outline-info {
  position: relative;
}

/* line 10801, app/assets/stylesheets/materia46.css */
.btn-outline-info::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10820, app/assets/stylesheets/materia46.css */
.btn-outline-info:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10826, app/assets/stylesheets/materia46.css */
.btn-outline-info.disabled::before, .btn-outline-info[disabled]::before {
  display: none;
}

/* line 10830, app/assets/stylesheets/materia46.css */
.btn-warning {
  position: relative;
}

/* line 10834, app/assets/stylesheets/materia46.css */
.btn-warning:focus {
  background-color: #ff9800;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

/* line 10839, app/assets/stylesheets/materia46.css */
.btn-warning:hover, .btn-warning:active:hover {
  background-color: #e08600;
}

/* line 10843, app/assets/stylesheets/materia46.css */
.btn-warning:active {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 10847, app/assets/stylesheets/materia46.css */
.btn-warning::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10866, app/assets/stylesheets/materia46.css */
.btn-warning:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10872, app/assets/stylesheets/materia46.css */
.btn-warning.disabled::before, .btn-warning[disabled]::before {
  display: none;
}

/* line 10876, app/assets/stylesheets/materia46.css */
.btn-outline-warning {
  position: relative;
}

/* line 10880, app/assets/stylesheets/materia46.css */
.btn-outline-warning::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10899, app/assets/stylesheets/materia46.css */
.btn-outline-warning:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10905, app/assets/stylesheets/materia46.css */
.btn-outline-warning.disabled::before, .btn-outline-warning[disabled]::before {
  display: none;
}

/* line 10909, app/assets/stylesheets/materia46.css */
.btn-danger {
  position: relative;
}

/* line 10913, app/assets/stylesheets/materia46.css */
.btn-danger:focus {
  background-color: #e51c23;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

/* line 10918, app/assets/stylesheets/materia46.css */
.btn-danger:hover, .btn-danger:active:hover {
  background-color: #cb171e;
}

/* line 10922, app/assets/stylesheets/materia46.css */
.btn-danger:active {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 10926, app/assets/stylesheets/materia46.css */
.btn-danger::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10945, app/assets/stylesheets/materia46.css */
.btn-danger:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10951, app/assets/stylesheets/materia46.css */
.btn-danger.disabled::before, .btn-danger[disabled]::before {
  display: none;
}

/* line 10955, app/assets/stylesheets/materia46.css */
.btn-outline-danger {
  position: relative;
}

/* line 10959, app/assets/stylesheets/materia46.css */
.btn-outline-danger::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 10978, app/assets/stylesheets/materia46.css */
.btn-outline-danger:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 10984, app/assets/stylesheets/materia46.css */
.btn-outline-danger.disabled::before, .btn-outline-danger[disabled]::before {
  display: none;
}

/* line 10988, app/assets/stylesheets/materia46.css */
.btn-dark {
  position: relative;
}

/* line 10992, app/assets/stylesheets/materia46.css */
.btn-dark:focus {
  background-color: #222;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

/* line 10997, app/assets/stylesheets/materia46.css */
.btn-dark:hover, .btn-dark:active:hover {
  background-color: #131313;
}

/* line 11001, app/assets/stylesheets/materia46.css */
.btn-dark:active {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 11005, app/assets/stylesheets/materia46.css */
.btn-dark::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 11024, app/assets/stylesheets/materia46.css */
.btn-dark:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 11030, app/assets/stylesheets/materia46.css */
.btn-dark.disabled::before, .btn-dark[disabled]::before {
  display: none;
}

/* line 11034, app/assets/stylesheets/materia46.css */
.btn-outline-dark {
  position: relative;
}

/* line 11038, app/assets/stylesheets/materia46.css */
.btn-outline-dark::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 11057, app/assets/stylesheets/materia46.css */
.btn-outline-dark:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 11063, app/assets/stylesheets/materia46.css */
.btn-outline-dark.disabled::before, .btn-outline-dark[disabled]::before {
  display: none;
}

/* line 11067, app/assets/stylesheets/materia46.css */
.btn-light {
  position: relative;
}

/* line 11071, app/assets/stylesheets/materia46.css */
.btn-light:focus {
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

/* line 11076, app/assets/stylesheets/materia46.css */
.btn-light:hover, .btn-light:active:hover {
  background-color: #f0f0f0;
}

/* line 11080, app/assets/stylesheets/materia46.css */
.btn-light:active {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* line 11084, app/assets/stylesheets/materia46.css */
.btn-light::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 11103, app/assets/stylesheets/materia46.css */
.btn-light:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 11109, app/assets/stylesheets/materia46.css */
.btn-light.disabled::before, .btn-light[disabled]::before {
  display: none;
}

/* line 11113, app/assets/stylesheets/materia46.css */
.btn-outline-light {
  position: relative;
}

/* line 11117, app/assets/stylesheets/materia46.css */
.btn-outline-light::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-size: 1000% 1000%;
  background-position: 50%;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: background .5s, opacity 1s;
}

/* line 11136, app/assets/stylesheets/materia46.css */
.btn-outline-light:active::before {
  background-size: 0 0;
  opacity: .2;
  transition: none;
}

/* line 11142, app/assets/stylesheets/materia46.css */
.btn-outline-light.disabled::before, .btn-outline-light[disabled]::before {
  display: none;
}

/* line 11146, app/assets/stylesheets/materia46.css */
.btn, .submit {
  text-transform: uppercase;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: color .4s, background-color .4s, border-color .4s, box-shadow .4s;
}

/* line 11153, app/assets/stylesheets/materia46.css */
.btn-link {
  box-shadow: none;
  color: #2196f3;
}

/* line 11158, app/assets/stylesheets/materia46.css */
.btn-link:hover, .btn-link:focus {
  box-shadow: none;
  color: #0a6ebd;
  text-decoration: underline;
}

/* line 11164, app/assets/stylesheets/materia46.css */
.btn-link.disabled:hover, .btn-link.disabled:active:hover, .btn-link[disabled]:hover, .btn-link[disabled]:active:hover,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:active:hover {
  color: #666;
  text-decoration: none;
}

/* line 11171, app/assets/stylesheets/materia46.css */
.btn-secondary.disabled, .btn-secondary[disabled],
fieldset[disabled] .btn-secondary {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

/* line 11178, app/assets/stylesheets/materia46.css */
.btn-secondary.disabled:hover, .btn-secondary.disabled:focus, .btn-secondary[disabled]:hover, .btn-secondary[disabled]:focus,
fieldset[disabled] .btn-secondary:hover,
fieldset[disabled] .btn-secondary:focus {
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 11184, app/assets/stylesheets/materia46.css */
.btn-outline-secondary {
  border-color: #eee;
  color: #dee2e6;
}

/* line 11189, app/assets/stylesheets/materia46.css */
.btn-warning {
  color: #fff;
}

/* line 11193, app/assets/stylesheets/materia46.css */
.btn-group .btn + .btn, .btn-group .submit + .btn, .btn-group .btn + .submit, .btn-group .submit + .submit,
.btn-group .btn + .btn-group,
.btn-group .submit + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .submit,
.btn-group .btn-group + .btn-group {
  margin-left: 0;
}

/* line 11200, app/assets/stylesheets/materia46.css */
.btn-group-vertical > .btn + .btn, .btn-group-vertical > .submit + .btn, .btn-group-vertical > .btn + .submit, .btn-group-vertical > .submit + .submit,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .submit + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .submit,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: 0;
}

/* line 11207, app/assets/stylesheets/materia46.css */
.btn-group .btn + .btn, .btn-group .submit + .btn, .btn-group .btn + .submit, .btn-group .submit + .submit,
.btn-group .btn + .btn-group > .dropdown-toggle,
.btn-group .submit + .btn-group > .dropdown-toggle {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 11212, app/assets/stylesheets/materia46.css */
.btn-group .btn:not(:disabled):not(.disabled):active, .btn-group .submit:not(:disabled):not(.disabled):active,
.btn-group .btn.active:not(:disabled):not(.disabled),
.btn-group .submit.active:not(:disabled):not(.disabled) {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 11217, app/assets/stylesheets/materia46.css */
.border-secondary {
  border: 1px solid #dddddd !important;
}

/* line 11221, app/assets/stylesheets/materia46.css */
body,
input,
button {
  -webkit-font-smoothing: antialiased;
  letter-spacing: .1px;
}

/* line 11228, app/assets/stylesheets/materia46.css */
p {
  margin: 0 0 1em;
}

/* line 11232, app/assets/stylesheets/materia46.css */
.text-secondary {
  color: #bbb !important;
}

/* line 11236, app/assets/stylesheets/materia46.css */
.table-hover > tbody > tr,
.table-hover > tbody > tr > th,
.table-hover > tbody > tr > td {
  transition: background-color .2s, color .2s;
}

/* line 11242, app/assets/stylesheets/materia46.css */
.thead-inverse th {
  background-color: #2196f3;
  color: #fff;
}

/* line 11247, app/assets/stylesheets/materia46.css */
.col-form-label {
  font-size: 16px;
}

/* line 11251, app/assets/stylesheets/materia46.css */
.col-form-label-sm {
  font-size: 0.710938rem;
}

/* line 11255, app/assets/stylesheets/materia46.css */
.col-form-label-lg {
  font-size: 1.015625rem;
}

/* line 11259, app/assets/stylesheets/materia46.css */
textarea,
textarea.form-control,
input.form-control,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
.form-control[type="text"],
.form-control[type="password"],
.form-control[type="email"],
.form-control[type="tel"],
.form-control[contenteditable] {
  box-shadow: inset 0 -1px 0 #dddddd;
  transition: box-shadow .2s;
}

/* line 11275, app/assets/stylesheets/materia46.css */
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
.form-control[type="text"]:focus,
.form-control[type="password"]:focus,
.form-control[type="email"]:focus,
.form-control[type="tel"]:focus,
.form-control[contenteditable]:focus {
  box-shadow: inset 0 -2px 0 #2196f3;
}

/* line 11290, app/assets/stylesheets/materia46.css */
textarea[disabled], textarea[readonly],
textarea.form-control[disabled],
textarea.form-control[readonly],
input.form-control[disabled],
input.form-control[readonly],
input[type="text"][disabled],
input[type="text"][readonly],
input[type="password"][disabled],
input[type="password"][readonly],
input[type="email"][disabled],
input[type="email"][readonly],
input[type="number"][disabled],
input[type="number"][readonly],
.form-control[type="text"][disabled],
.form-control[type="text"][readonly],
.form-control[type="password"][disabled],
.form-control[type="password"][readonly],
.form-control[type="email"][disabled],
.form-control[type="email"][readonly],
.form-control[type="tel"][disabled],
.form-control[type="tel"][readonly],
.form-control[contenteditable][disabled],
.form-control[contenteditable][readonly] {
  box-shadow: none;
  border-bottom: 1px dotted #dddddd;
}

/* line 11317, app/assets/stylesheets/materia46.css */
textarea[disabled]::-webkit-input-placeholder, textarea.form-control[disabled]::-webkit-input-placeholder, input.form-control[disabled]::-webkit-input-placeholder, input[type="text"][disabled]::-webkit-input-placeholder, input[type="password"][disabled]::-webkit-input-placeholder, input[type="email"][disabled]::-webkit-input-placeholder, input[type="number"][disabled]::-webkit-input-placeholder, .form-control[type="text"][disabled]::-webkit-input-placeholder, .form-control[type="password"][disabled]::-webkit-input-placeholder, .form-control[type="email"][disabled]::-webkit-input-placeholder, .form-control[type="tel"][disabled]::-webkit-input-placeholder, .form-control[contenteditable][disabled]::-webkit-input-placeholder {
  color: #dddddd;
}

/* line 11321, app/assets/stylesheets/materia46.css */
textarea[disabled]::-moz-placeholder, textarea.form-control[disabled]::-moz-placeholder, input.form-control[disabled]::-moz-placeholder, input[type="text"][disabled]::-moz-placeholder, input[type="password"][disabled]::-moz-placeholder, input[type="email"][disabled]::-moz-placeholder, input[type="number"][disabled]::-moz-placeholder, .form-control[type="text"][disabled]::-moz-placeholder, .form-control[type="password"][disabled]::-moz-placeholder, .form-control[type="email"][disabled]::-moz-placeholder, .form-control[type="tel"][disabled]::-moz-placeholder, .form-control[contenteditable][disabled]::-moz-placeholder {
  color: #dddddd;
}

/* line 11325, app/assets/stylesheets/materia46.css */
textarea[disabled]:-ms-input-placeholder, textarea.form-control[disabled]:-ms-input-placeholder, input.form-control[disabled]:-ms-input-placeholder, input[type="text"][disabled]:-ms-input-placeholder, input[type="password"][disabled]:-ms-input-placeholder, input[type="email"][disabled]:-ms-input-placeholder, input[type="number"][disabled]:-ms-input-placeholder, .form-control[type="text"][disabled]:-ms-input-placeholder, .form-control[type="password"][disabled]:-ms-input-placeholder, .form-control[type="email"][disabled]:-ms-input-placeholder, .form-control[type="tel"][disabled]:-ms-input-placeholder, .form-control[contenteditable][disabled]:-ms-input-placeholder {
  color: #dddddd;
}

/* line 11329, app/assets/stylesheets/materia46.css */
textarea[disabled]::-ms-input-placeholder, textarea.form-control[disabled]::-ms-input-placeholder, input.form-control[disabled]::-ms-input-placeholder, input[type="text"][disabled]::-ms-input-placeholder, input[type="password"][disabled]::-ms-input-placeholder, input[type="email"][disabled]::-ms-input-placeholder, input[type="number"][disabled]::-ms-input-placeholder, .form-control[type="text"][disabled]::-ms-input-placeholder, .form-control[type="password"][disabled]::-ms-input-placeholder, .form-control[type="email"][disabled]::-ms-input-placeholder, .form-control[type="tel"][disabled]::-ms-input-placeholder, .form-control[contenteditable][disabled]::-ms-input-placeholder {
  color: #dddddd;
}

/* line 11333, app/assets/stylesheets/materia46.css */
textarea[disabled]::-moz-placeholder, textarea.form-control[disabled]::-moz-placeholder, input.form-control[disabled]::-moz-placeholder, input[type="text"][disabled]::-moz-placeholder, input[type="password"][disabled]::-moz-placeholder, input[type="email"][disabled]::-moz-placeholder, input[type="number"][disabled]::-moz-placeholder, .form-control[type="text"][disabled]::-moz-placeholder, .form-control[type="password"][disabled]::-moz-placeholder, .form-control[type="email"][disabled]::-moz-placeholder, .form-control[type="tel"][disabled]::-moz-placeholder, .form-control[contenteditable][disabled]::-moz-placeholder {
  color: #dddddd;
}
textarea[disabled]:-ms-input-placeholder, textarea.form-control[disabled]:-ms-input-placeholder, input.form-control[disabled]:-ms-input-placeholder, input[type="text"][disabled]:-ms-input-placeholder, input[type="password"][disabled]:-ms-input-placeholder, input[type="email"][disabled]:-ms-input-placeholder, input[type="number"][disabled]:-ms-input-placeholder, .form-control[type="text"][disabled]:-ms-input-placeholder, .form-control[type="password"][disabled]:-ms-input-placeholder, .form-control[type="email"][disabled]:-ms-input-placeholder, .form-control[type="tel"][disabled]:-ms-input-placeholder, .form-control[contenteditable][disabled]:-ms-input-placeholder {
  color: #dddddd;
}
textarea[disabled], textarea[disabled]::placeholder,
textarea.form-control[disabled],
textarea.form-control[disabled]::placeholder,
input.form-control[disabled],
input.form-control[disabled]::placeholder,
input[type="text"][disabled],
input[type="text"][disabled]::placeholder,
input[type="password"][disabled],
input[type="password"][disabled]::placeholder,
input[type="email"][disabled],
input[type="email"][disabled]::placeholder,
input[type="number"][disabled],
input[type="number"][disabled]::placeholder,
.form-control[type="text"][disabled],
.form-control[type="text"][disabled]::placeholder,
.form-control[type="password"][disabled],
.form-control[type="password"][disabled]::placeholder,
.form-control[type="email"][disabled],
.form-control[type="email"][disabled]::placeholder,
.form-control[type="tel"][disabled],
.form-control[type="tel"][disabled]::placeholder,
.form-control[contenteditable][disabled],
.form-control[contenteditable][disabled]::placeholder {
  color: #dddddd;
}

/* line 11359, app/assets/stylesheets/materia46.css */
textarea::-ms-clear,
textarea.form-control::-ms-clear,
input.form-control::-ms-clear,
input[type="text"]::-ms-clear,
input[type="password"]::-ms-clear,
input[type="email"]::-ms-clear,
input[type="number"]::-ms-clear,
.form-control[type="text"]::-ms-clear,
.form-control[type="password"]::-ms-clear,
.form-control[type="email"]::-ms-clear,
.form-control[type="tel"]::-ms-clear,
.form-control[contenteditable]::-ms-clear {
  display: none;
}

/* line 11374, app/assets/stylesheets/materia46.css */
select,
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: .5rem 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3e%3cpolygon fill='%23666' points='8 0 4 4 0 0'/%3e%3c/svg%3e%0a");
  background-size: 8px 4px;
  background-repeat: no-repeat;
  background-position: right center;
  box-shadow: inset 0 -1px 0 #dddddd;
}

/* line 11387, app/assets/stylesheets/materia46.css */
select::-ms-expand,
select.form-control::-ms-expand {
  display: none;
}

/* line 11392, app/assets/stylesheets/materia46.css */
select.input-sm,
select.form-control.input-sm {
  font-size: 0.710938rem;
}

/* line 11397, app/assets/stylesheets/materia46.css */
select.input-lg,
select.form-control.input-lg {
  font-size: 1.015625rem;
}

/* line 11402, app/assets/stylesheets/materia46.css */
select:focus,
select.form-control:focus {
  box-shadow: inset 0 -2px 0 #2196f3;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='4' viewBox='0 0 8 4'%3e%3cpolygon fill='%23212121' points='8 0 4 4 0 0'/%3e%3c/svg%3e%0a");
}

/* line 11408, app/assets/stylesheets/materia46.css */
select[multiple],
select.form-control[multiple] {
  background: none;
}

/* line 11413, app/assets/stylesheets/materia46.css */
.custom-control {
  min-height: 1.5rem;
}

/* line 11417, app/assets/stylesheets/materia46.css */
.custom-control-label::before {
  top: 0;
  border: 2px solid #ced4da;
  box-shadow: none;
}

/* line 11423, app/assets/stylesheets/materia46.css */
.custom-control-label::after {
  top: 0;
}

/* line 11427, app/assets/stylesheets/materia46.css */
.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #2196f3;
}

/* line 11431, app/assets/stylesheets/materia46.css */
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-image: none;
}

/* line 11435, app/assets/stylesheets/materia46.css */
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  transform: scale(1.5);
}

/* line 11440, app/assets/stylesheets/materia46.css */
.custom-radio .custom-control-input ~ .custom-control-label::after {
  transform: scale(0.75);
}

/* line 11445, app/assets/stylesheets/materia46.css */
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #fff;
  background-image: none;
  transition: border-color .24s;
}

/* line 11451, app/assets/stylesheets/materia46.css */
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  transform: scale(1.125);
  transition: background-image .24s, transform .24s;
}

/* line 11459, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-label::before {
  top: .125rem;
  height: .875rem;
  background-color: #bbb;
  border: none;
}

/* line 11466, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:disabled ~ .custom-control-label {
  opacity: .7;
}

/* line 11470, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #bbb;
}

/* line 11474, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-label::after {
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* line 11479, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
  opacity: .38;
}

/* line 11483, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #2196f3;
}

/* line 11487, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:hover:not(:disabled) ~ .custom-control-label::after {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 0 9px rgba(0, 0, 0, 0.05);
}

/* line 11491, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:focus:not(:disabled) ~ .custom-control-label::after {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 0 9px rgba(0, 0, 0, 0.09);
}

/* line 11495, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:active:not(:disabled) ~ .custom-control-label::after {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 0 9px rgba(0, 0, 0, 0.16);
}

/* line 11499, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:hover:checked:not(:disabled) ~ .custom-control-label::after {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 0 9px rgba(33, 150, 243, 0.05);
}

/* line 11503, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:focus:checked:not(:disabled) ~ .custom-control-label::after {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 0 9px rgba(33, 150, 243, 0.09);
}

/* line 11507, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:active:checked:not(:disabled) ~ .custom-control-label::after {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 0 9px rgba(33, 150, 243, 0.16);
}

/* line 11511, app/assets/stylesheets/materia46.css */
.custom-switch .custom-control-input:active:not(:checked) ~ .custom-control-label::before {
  background-color: #bbb;
}

/* line 11515, app/assets/stylesheets/materia46.css */
.has-warning input:not([type="checkbox"]),
.has-warning .form-control,
.has-warning input.form-control[readonly],
.has-warning input[type="text"][readonly],
.has-warning .form-control[type="text"][readonly],
.has-warning input:not([type="checkbox"]):focus,
.has-warning .form-control:focus {
  border-bottom: none;
  box-shadow: inset 0 -2px 0 #ff9800;
}

/* line 11526, app/assets/stylesheets/materia46.css */
.has-danger input:not([type="checkbox"]),
.has-danger .form-control,
.has-danger input.form-control[readonly],
.has-danger input[type="text"][readonly],
.has-danger .form-control[type="text"][readonly],
.has-danger input:not([type="checkbox"]):focus,
.has-danger .form-control:focus {
  border-bottom: none;
  box-shadow: inset 0 -2px 0 #e51c23;
}

/* line 11537, app/assets/stylesheets/materia46.css */
.has-success input:not([type="checkbox"]),
.has-success .form-control,
.has-success input.form-control[readonly],
.has-success input[type="text"][readonly],
.has-success .form-control[type="text"][readonly],
.has-success input:not([type="checkbox"]):focus,
.has-success .form-control:focus {
  border-bottom: none;
  box-shadow: inset 0 -2px 0 #4caf50;
}

/* line 11548, app/assets/stylesheets/materia46.css */
.has-warning .input-group-addon,
.has-danger .input-group-addon,
.has-success .input-group-addon {
  color: #666;
  border-color: transparent;
  background-color: transparent;
}

/* line 11556, app/assets/stylesheets/materia46.css */
.input-group > .input-group-prepend > .input-group-text {
  padding-right: .25rem;
}

/* line 11560, app/assets/stylesheets/materia46.css */
.input-group > .input-group-append > .input-group-text {
  padding-left: .25rem;
}

/* line 11564, app/assets/stylesheets/materia46.css */
.input-group .form-control {
  padding-left: .25rem;
  padding-right: .25rem;
}

/* line 11569, app/assets/stylesheets/materia46.css */
.input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .submit,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .submit {
  padding: 0.25rem 0.5rem;
}

/* line 11574, app/assets/stylesheets/materia46.css */
.input-group-sm > .input-group-prepend > .input-group-text {
  padding: 0 0.5rem 0.25rem 0.5rem;
}

/* line 11578, app/assets/stylesheets/materia46.css */
.input-group-sm > .input-group-append > .input-group-text {
  padding: 0 0.5rem 0.25rem 0.5rem;
}

/* line 11582, app/assets/stylesheets/materia46.css */
.input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .submit {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

/* line 11587, app/assets/stylesheets/materia46.css */
.input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .submit {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/* line 11592, app/assets/stylesheets/materia46.css */
.input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-prepend > .submit,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .submit {
  padding: 0.5rem 1rem;
}

/* line 11597, app/assets/stylesheets/materia46.css */
.input-group-lg > .input-group-prepend > .input-group-text {
  padding: 0.5rem 1rem 0.5rem 0;
}

/* line 11601, app/assets/stylesheets/materia46.css */
.input-group-lg > .input-group-append > .input-group-text {
  padding: 0.5rem 0 0.5rem 1rem;
}

/* line 11605, app/assets/stylesheets/materia46.css */
.input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-prepend > .submit {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

/* line 11610, app/assets/stylesheets/materia46.css */
.input-group-lg > .input-group-append > .btn, .input-group-lg > .input-group-append > .submit {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

/* line 11615, app/assets/stylesheets/materia46.css */
.form-group-lg select,
.form-group-lg select.form-control {
  line-height: 1.5;
}

/* line 11620, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-item + .nav-item {
  margin-left: 0;
}

/* line 11624, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-link,
.nav-tabs .nav-link:focus {
  margin-right: 0;
  background-color: transparent;
  border: none;
  color: #444;
  box-shadow: inset 0 -1px 0 #dddddd;
  transition: color .2s, box-shadow .2s;
}

/* line 11634, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus:hover {
  background-color: transparent;
  box-shadow: inset 0 -2px 0 #2196f3;
  color: #2196f3;
}

/* line 11641, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-link.active,
.nav-tabs .nav-link.active:focus {
  border: none;
  box-shadow: inset 0 -2px 0 #2196f3;
  color: #2196f3;
}

/* line 11648, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-link.active:hover,
.nav-tabs .nav-link.active:focus:hover {
  border: none;
  color: #2196f3;
}

/* line 11654, app/assets/stylesheets/materia46.css */
.nav-tabs .nav-link.disabled {
  box-shadow: inset 0 -1px 0 #dddddd;
}

/* line 11658, app/assets/stylesheets/materia46.css */
.nav-tabs.nav-justified .nav-link,
.nav-tabs.nav-justified .nav-link:hover,
.nav-tabs.nav-justified .nav-link:focus,
.nav-tabs.nav-justified .nav-link.active,
.nav-tabs.nav-justified .nav-link.active:hover,
.nav-tabs.nav-justified .nav-link.active:focus {
  border: none;
}

/* line 11667, app/assets/stylesheets/materia46.css */
.nav-tabs .dropdown-menu {
  margin-top: 0;
}

/* line 11671, app/assets/stylesheets/materia46.css */
.dropdown-menu {
  margin-top: 0;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* line 11677, app/assets/stylesheets/materia46.css */
.alert {
  padding-right: 2.5rem;
  border: none;
}

/* line 11682, app/assets/stylesheets/materia46.css */
.alert,
.alert h1,
.alert h2,
.alert h3,
.alert h4,
.alert h5,
.alert h6 {
  color: #fff;
}

/* line 11692, app/assets/stylesheets/materia46.css */
.alert-primary {
  background: #2196f3 linear-gradient(180deg, #42a6f5, #2196f3) repeat-x;
}

/* line 11696, app/assets/stylesheets/materia46.css */
.alert-secondary {
  background: #fff linear-gradient(180deg, white, #fff) repeat-x;
}

/* line 11700, app/assets/stylesheets/materia46.css */
.alert-success {
  background: #4caf50 linear-gradient(180deg, #67bb6a, #4caf50) repeat-x;
}

/* line 11704, app/assets/stylesheets/materia46.css */
.alert-info {
  background: #9c27b0 linear-gradient(180deg, #ab47bc, #9c27b0) repeat-x;
}

/* line 11708, app/assets/stylesheets/materia46.css */
.alert-warning {
  background: #ff9800 linear-gradient(180deg, #ffa726, #ff9800) repeat-x;
}

/* line 11712, app/assets/stylesheets/materia46.css */
.alert-danger {
  background: #e51c23 linear-gradient(180deg, #e93e44, #e51c23) repeat-x;
}

/* line 11716, app/assets/stylesheets/materia46.css */
.alert-light {
  background: #fff linear-gradient(180deg, white, #fff) repeat-x;
}

/* line 11720, app/assets/stylesheets/materia46.css */
.alert-dark {
  background: #222 linear-gradient(180deg, #434343, #222) repeat-x;
}

/* line 11724, app/assets/stylesheets/materia46.css */
.alert a:not(.btn):not(.submit),
.alert .alert-link {
  color: #fff;
  font-weight: 700;
}

/* line 11730, app/assets/stylesheets/materia46.css */
.alert .close {
  color: #fff;
}

/* line 11734, app/assets/stylesheets/materia46.css */
.alert-secondary,
.alert-secondary a:not(.btn):not(.submit),
.alert-secondary .alert-link, .alert-light,
.alert-light a:not(.btn):not(.submit),
.alert-light .alert-link {
  color: #444;
}

/* line 11742, app/assets/stylesheets/materia46.css */
.badge-secondary {
  background-color: #bbb;
  color: #fff;
}

/* line 11747, app/assets/stylesheets/materia46.css */
.badge-light {
  background-color: #eee;
}

/* line 11751, app/assets/stylesheets/materia46.css */
.badge-warning {
  color: #fff;
}

/* line 11755, app/assets/stylesheets/materia46.css */
.tag {
  padding: 4px 6px;
}

/* line 11759, app/assets/stylesheets/materia46.css */
.close {
  line-height: .5;
  opacity: .6;
  transition: opacity .2s;
}

/* line 11765, app/assets/stylesheets/materia46.css */
.close:hover {
  opacity: 1;
}

/* line 11769, app/assets/stylesheets/materia46.css */
.card {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* line 11773, app/assets/stylesheets/materia46.css */
.card.border-primary, .card.border-secondary, .card.border-success, .card.border-info, .card.border-warning, .card.border-danger, .card.border-light, .card.border-dark {
  border-width: 1px;
}

/* line 11777, app/assets/stylesheets/materia46.css */
.alert-dismissible .close {
  padding: .5rem .75rem;
}

/* line 11781, app/assets/stylesheets/materia46.css */
.list-group-item-action.active h1,
.list-group-item-action.active h2,
.list-group-item-action.active h3,
.list-group-item-action.active h4,
.list-group-item-action.active h5,
.list-group-item-action.active h6 {
  color: #fff;
}

/* line 11790, app/assets/stylesheets/materia46.css */
.modal-content {
  border-radius: .2rem;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.3);
}

/* line 11795, app/assets/stylesheets/materia46.css */
.popover {
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* line 11800, app/assets/stylesheets/materia46.css */
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3,
.carousel-caption h4,
.carousel-caption h5,
.carousel-caption h6 {
  color: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
/* line 5, app/assets/stylesheets/sticky_footer.scss */
html {
  position: relative;
  min-height: 100%;
}

/* line 9, app/assets/stylesheets/sticky_footer.scss */
body {
  /* Margin bottom by footer height */
  margin-bottom: 50px;
}

/* line 13, app/assets/stylesheets/sticky_footer.scss */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 50px;
  line-height: 50px;
  /* Vertically center the text there */
  background-color: #2196F3;
}

/* line 10, app/assets/stylesheets/1st_load_framework.scss */
img {
  margin: 0 auto;
}

/* line 15, app/assets/stylesheets/1st_load_framework.scss */
.navbar-brand {
  font-size: inherit;
}

/* line 22, app/assets/stylesheets/1st_load_framework.scss */
.column {
  text-align: center;
}

/* line 29, app/assets/stylesheets/1st_load_framework.scss */
.form-centered {
  text-align: center;
}

/* line 41, app/assets/stylesheets/1st_load_framework.scss */
main {
  margin-top: 80px;
  /*  margin-left: 270px; Heidi's fix #Heidi - see also dashboard.css */
}

/* line 47, app/assets/stylesheets/1st_load_framework.scss */
section {
  margin-top: 20px;
}

/* line 53, app/assets/stylesheets/1st_load_framework.scss */
a.whitelink:link,
a.whitelink:visited,
a.whitelink:active {
  color: #fff;
  text-decoration: none;
}

/* line 57, app/assets/stylesheets/1st_load_framework.scss */
a.whitelink:hover {
  color: #f8f9fa;
  text-decoration: underline;
}

/* line 61, app/assets/stylesheets/1st_load_framework.scss */
a.blacklink:link,
a.blacklink:visited,
a.blacklink:active {
  color: #444;
  text-decoration: none;
}

/* line 65, app/assets/stylesheets/1st_load_framework.scss */
a.blacklink:hover {
  color: #000;
  text-decoration: underline;
}

/* line 68, app/assets/stylesheets/1st_load_framework.scss */
.carousel-caption {
  background: rgba(0, 0, 0, 0.35);
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
  border-spacing: 0;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable td, table.dataTable th {
  box-sizing: content-box;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable td.dataTables_empty, table.dataTable th.dataTables_empty {
  text-align: center;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_wrapper div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_wrapper div.dataTables_length select {
  width: auto;
  display: inline-block;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_wrapper div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_wrapper div.dataTables_info {
  padding-top: 0.85em;
  white-space: nowrap;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
  justify-content: flex-end;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_wrapper div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 1em 0;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting {
  padding-right: 30px;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable thead > tr > th:active, table.dataTable thead > tr > td:active {
  outline: none;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:before, table.dataTable thead .sorting_desc_disabled:after {
  position: absolute;
  bottom: 0.9em;
  display: block;
  opacity: 0.3;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable thead .sorting:before, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\2191";
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:after {
  right: 0.5em;
  content: "\2193";
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_desc:after {
  opacity: 1;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_desc_disabled:after {
  opacity: 0;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_scrollHead table.dataTable {
  margin-bottom: 0 !important;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_scrollBody table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_scrollBody table thead .sorting:before, div.dataTables_scrollBody table thead .sorting_asc:before, div.dataTables_scrollBody table thead .sorting_desc:before, div.dataTables_scrollBody table thead .sorting:after, div.dataTables_scrollBody table thead .sorting_asc:after, div.dataTables_scrollBody table thead .sorting_desc:after {
  display: none;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_scrollBody table tbody tr:first-child th, div.dataTables_scrollBody table tbody tr:first-child td {
  border-top: none;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_scrollFoot > .dataTables_scrollFootInner {
  box-sizing: content-box;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
  margin-top: 0 !important;
  border-top: none;
}

@media screen and (max-width: 767px) {
  /* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
  div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter, div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
    text-align: center;
  }
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable.table-sm > thead > tr > th {
  padding-right: 20px;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable.table-sm .sorting:before, table.dataTable.table-sm .sorting_asc:before, table.dataTable.table-sm .sorting_desc:before {
  top: 5px;
  right: 0.85em;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.dataTable.table-sm .sorting:after, table.dataTable.table-sm .sorting_asc:after, table.dataTable.table-sm .sorting_desc:after {
  top: 5px;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.table-bordered.dataTable th, table.table-bordered.dataTable td {
  border-left-width: 0;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable td:last-child, table.table-bordered.dataTable td:last-child {
  border-right-width: 0;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
table.table-bordered.dataTable tbody th, table.table-bordered.dataTable tbody td {
  border-bottom-width: 0;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.table-responsive > div.dataTables_wrapper > div.row {
  margin: 0;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
  padding-left: 0;
}

/* line 1, app/assets/stylesheets/dataTables.bootstrap4.min.css */
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
  padding-right: 0;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from,
20%,
53%,
80%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
20%,
53%,
80%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

/* line 77, app/assets/stylesheets/animate.css */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
50%,
to {
    opacity: 1;
  }
  25%,
75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
50%,
to {
    opacity: 1;
  }
  25%,
75% {
    opacity: 0;
  }
}

/* line 110, app/assets/stylesheets/animate.css */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 151, app/assets/stylesheets/animate.css */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 230, app/assets/stylesheets/animate.css */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
to {
    transform: translate3d(0, 0, 0);
  }
  10%,
30%,
50%,
70%,
90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
40%,
60%,
80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
to {
    transform: translate3d(0, 0, 0);
  }
  10%,
30%,
50%,
70%,
90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
40%,
60%,
80% {
    transform: translate3d(10px, 0, 0);
  }
}

/* line 285, app/assets/stylesheets/animate.css */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

/* line 354, app/assets/stylesheets/animate.css */
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

/* line 415, app/assets/stylesheets/animate.css */
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
50%,
70%,
90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
60%,
80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
50%,
70%,
90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
60%,
80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

/* line 488, app/assets/stylesheets/animate.css */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 569, app/assets/stylesheets/animate.css */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
11.1%,
to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
11.1%,
to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

/* line 662, app/assets/stylesheets/animate.css */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

/* line 723, app/assets/stylesheets/animate.css */
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from,
20%,
40%,
60%,
80%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
20%,
40%,
60%,
80%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/* line 822, app/assets/stylesheets/animate.css */
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
60%,
75%,
90%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
60%,
75%,
90%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 905, app/assets/stylesheets/animate.css */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
60%,
75%,
90%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
60%,
75%,
90%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 986, app/assets/stylesheets/animate.css */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
60%,
75%,
90%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
60%,
75%,
90%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1067, app/assets/stylesheets/animate.css */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
60%,
75%,
90%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
60%,
75%,
90%,
to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 1148, app/assets/stylesheets/animate.css */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

/* line 1193, app/assets/stylesheets/animate.css */
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1240, app/assets/stylesheets/animate.css */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1273, app/assets/stylesheets/animate.css */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1306, app/assets/stylesheets/animate.css */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1351, app/assets/stylesheets/animate.css */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 1376, app/assets/stylesheets/animate.css */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1409, app/assets/stylesheets/animate.css */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1442, app/assets/stylesheets/animate.css */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1475, app/assets/stylesheets/animate.css */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1508, app/assets/stylesheets/animate.css */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1541, app/assets/stylesheets/animate.css */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1574, app/assets/stylesheets/animate.css */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1607, app/assets/stylesheets/animate.css */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 1640, app/assets/stylesheets/animate.css */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* line 1665, app/assets/stylesheets/animate.css */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 1694, app/assets/stylesheets/animate.css */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1723, app/assets/stylesheets/animate.css */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 1752, app/assets/stylesheets/animate.css */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1781, app/assets/stylesheets/animate.css */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 1810, app/assets/stylesheets/animate.css */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1839, app/assets/stylesheets/animate.css */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

/* line 1868, app/assets/stylesheets/animate.css */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1897, app/assets/stylesheets/animate.css */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

/* line 1992, app/assets/stylesheets/animate.css */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

/* line 2065, app/assets/stylesheets/animate.css */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

/* line 2138, app/assets/stylesheets/animate.css */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

/* line 2183, app/assets/stylesheets/animate.css */
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

/* line 2230, app/assets/stylesheets/animate.css */
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 2287, app/assets/stylesheets/animate.css */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

/* line 2318, app/assets/stylesheets/animate.css */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2361, app/assets/stylesheets/animate.css */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2402, app/assets/stylesheets/animate.css */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2443, app/assets/stylesheets/animate.css */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2484, app/assets/stylesheets/animate.css */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* line 2525, app/assets/stylesheets/animate.css */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

/* line 2562, app/assets/stylesheets/animate.css */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

/* line 2599, app/assets/stylesheets/animate.css */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 2636, app/assets/stylesheets/animate.css */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 2673, app/assets/stylesheets/animate.css */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

/* line 2710, app/assets/stylesheets/animate.css */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* line 2787, app/assets/stylesheets/animate.css */
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* line 2846, app/assets/stylesheets/animate.css */
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* line 2881, app/assets/stylesheets/animate.css */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

/* line 2912, app/assets/stylesheets/animate.css */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* line 2941, app/assets/stylesheets/animate.css */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 2982, app/assets/stylesheets/animate.css */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3023, app/assets/stylesheets/animate.css */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3064, app/assets/stylesheets/animate.css */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3105, app/assets/stylesheets/animate.css */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

/* line 3142, app/assets/stylesheets/animate.css */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3187, app/assets/stylesheets/animate.css */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

/* line 3224, app/assets/stylesheets/animate.css */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

/* line 3261, app/assets/stylesheets/animate.css */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 3306, app/assets/stylesheets/animate.css */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 3337, app/assets/stylesheets/animate.css */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 3368, app/assets/stylesheets/animate.css */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 3399, app/assets/stylesheets/animate.css */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

/* line 3430, app/assets/stylesheets/animate.css */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 3461, app/assets/stylesheets/animate.css */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 3492, app/assets/stylesheets/animate.css */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 3523, app/assets/stylesheets/animate.css */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

/* line 3554, app/assets/stylesheets/animate.css */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* line 3559, app/assets/stylesheets/animate.css */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 3566, app/assets/stylesheets/animate.css */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 3571, app/assets/stylesheets/animate.css */
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

/* line 3576, app/assets/stylesheets/animate.css */
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* line 3581, app/assets/stylesheets/animate.css */
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

/* line 3586, app/assets/stylesheets/animate.css */
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

/* line 3591, app/assets/stylesheets/animate.css */
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

/* line 3596, app/assets/stylesheets/animate.css */
.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

/* line 3601, app/assets/stylesheets/animate.css */
.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

/* line 3606, app/assets/stylesheets/animate.css */
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 3611, app/assets/stylesheets/animate.css */
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  /* line 3617, app/assets/stylesheets/animate.css */
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    transition: none !important;
  }
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("/assets/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot");
  src: url("/assets/fontawesome-webfont-7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979.eot?#iefix") format("embedded-opentype"), url("/assets/fontawesome-webfont-2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe.woff2") format("woff2"), url("/assets/fontawesome-webfont-ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07.woff") format("woff"), url("/assets/fontawesome-webfont-aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8.ttf") format("truetype"), url("/assets/fontawesome-webfont-ad6157926c1622ba4e1d03d478f1541368524bfc46f51e42fe0d945f7ef323e4.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 19, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
/* line 28, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

/* line 33, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-2x {
  font-size: 2em;
}

/* line 36, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-3x {
  font-size: 3em;
}

/* line 39, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-4x {
  font-size: 4em;
}

/* line 42, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-5x {
  font-size: 5em;
}

/* line 45, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

/* line 49, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

/* line 54, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ul > li {
  position: relative;
}

/* line 57, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

/* line 64, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-li.fa-lg {
  left: -1.85714286em;
}

/* line 67, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}

/* line 72, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pull-left {
  float: left;
}

/* line 75, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pull-right {
  float: right;
}

/* line 78, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.fa-pull-left {
  margin-right: .3em;
}

/* line 81, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
/* line 85, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.pull-right {
  float: right;
}

/* line 88, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.pull-left {
  float: left;
}

/* line 91, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.pull-left {
  margin-right: .3em;
}

/* line 94, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.pull-right {
  margin-left: .3em;
}

/* line 97, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

/* line 101, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

/* line 125, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

/* line 131, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

/* line 137, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

/* line 143, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

/* line 149, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

/* line 155, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

/* line 162, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

/* line 170, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 177, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-1x {
  line-height: inherit;
}

/* line 180, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-2x {
  font-size: 2em;
}

/* line 183, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
/* line 188, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-glass:before {
  content: "\f000";
}

/* line 191, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-music:before {
  content: "\f001";
}

/* line 194, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-search:before {
  content: "\f002";
}

/* line 197, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-o:before {
  content: "\f003";
}

/* line 200, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-heart:before {
  content: "\f004";
}

/* line 203, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star:before {
  content: "\f005";
}

/* line 206, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star-o:before {
  content: "\f006";
}

/* line 209, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user:before {
  content: "\f007";
}

/* line 212, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-film:before {
  content: "\f008";
}

/* line 215, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-th-large:before {
  content: "\f009";
}

/* line 218, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-th:before {
  content: "\f00a";
}

/* line 221, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-th-list:before {
  content: "\f00b";
}

/* line 224, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check:before {
  content: "\f00c";
}

/* line 227, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

/* line 232, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-search-plus:before {
  content: "\f00e";
}

/* line 235, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-search-minus:before {
  content: "\f010";
}

/* line 238, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-power-off:before {
  content: "\f011";
}

/* line 241, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-signal:before {
  content: "\f012";
}

/* line 244, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

/* line 248, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trash-o:before {
  content: "\f014";
}

/* line 251, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-home:before {
  content: "\f015";
}

/* line 254, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-o:before {
  content: "\f016";
}

/* line 257, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-clock-o:before {
  content: "\f017";
}

/* line 260, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-road:before {
  content: "\f018";
}

/* line 263, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-download:before {
  content: "\f019";
}

/* line 266, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

/* line 269, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

/* line 272, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-inbox:before {
  content: "\f01c";
}

/* line 275, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-play-circle-o:before {
  content: "\f01d";
}

/* line 278, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

/* line 282, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-refresh:before {
  content: "\f021";
}

/* line 285, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list-alt:before {
  content: "\f022";
}

/* line 288, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lock:before {
  content: "\f023";
}

/* line 291, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flag:before {
  content: "\f024";
}

/* line 294, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-headphones:before {
  content: "\f025";
}

/* line 297, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-off:before {
  content: "\f026";
}

/* line 300, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-down:before {
  content: "\f027";
}

/* line 303, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-up:before {
  content: "\f028";
}

/* line 306, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-qrcode:before {
  content: "\f029";
}

/* line 309, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-barcode:before {
  content: "\f02a";
}

/* line 312, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tag:before {
  content: "\f02b";
}

/* line 315, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tags:before {
  content: "\f02c";
}

/* line 318, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-book:before {
  content: "\f02d";
}

/* line 321, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bookmark:before {
  content: "\f02e";
}

/* line 324, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-print:before {
  content: "\f02f";
}

/* line 327, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-camera:before {
  content: "\f030";
}

/* line 330, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-font:before {
  content: "\f031";
}

/* line 333, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bold:before {
  content: "\f032";
}

/* line 336, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-italic:before {
  content: "\f033";
}

/* line 339, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-text-height:before {
  content: "\f034";
}

/* line 342, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-text-width:before {
  content: "\f035";
}

/* line 345, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-left:before {
  content: "\f036";
}

/* line 348, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-center:before {
  content: "\f037";
}

/* line 351, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-right:before {
  content: "\f038";
}

/* line 354, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-justify:before {
  content: "\f039";
}

/* line 357, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list:before {
  content: "\f03a";
}

/* line 360, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

/* line 364, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-indent:before {
  content: "\f03c";
}

/* line 367, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-video-camera:before {
  content: "\f03d";
}

/* line 370, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

/* line 375, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pencil:before {
  content: "\f040";
}

/* line 378, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-marker:before {
  content: "\f041";
}

/* line 381, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-adjust:before {
  content: "\f042";
}

/* line 384, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tint:before {
  content: "\f043";
}

/* line 387, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

/* line 391, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-square-o:before {
  content: "\f045";
}

/* line 394, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-square-o:before {
  content: "\f046";
}

/* line 397, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows:before {
  content: "\f047";
}

/* line 400, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-step-backward:before {
  content: "\f048";
}

/* line 403, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fast-backward:before {
  content: "\f049";
}

/* line 406, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-backward:before {
  content: "\f04a";
}

/* line 409, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-play:before {
  content: "\f04b";
}

/* line 412, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pause:before {
  content: "\f04c";
}

/* line 415, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stop:before {
  content: "\f04d";
}

/* line 418, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-forward:before {
  content: "\f04e";
}

/* line 421, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fast-forward:before {
  content: "\f050";
}

/* line 424, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-step-forward:before {
  content: "\f051";
}

/* line 427, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eject:before {
  content: "\f052";
}

/* line 430, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-left:before {
  content: "\f053";
}

/* line 433, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-right:before {
  content: "\f054";
}

/* line 436, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus-circle:before {
  content: "\f055";
}

/* line 439, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus-circle:before {
  content: "\f056";
}

/* line 442, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-circle:before {
  content: "\f057";
}

/* line 445, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-circle:before {
  content: "\f058";
}

/* line 448, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-question-circle:before {
  content: "\f059";
}

/* line 451, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-info-circle:before {
  content: "\f05a";
}

/* line 454, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-crosshairs:before {
  content: "\f05b";
}

/* line 457, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-circle-o:before {
  content: "\f05c";
}

/* line 460, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-circle-o:before {
  content: "\f05d";
}

/* line 463, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ban:before {
  content: "\f05e";
}

/* line 466, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-left:before {
  content: "\f060";
}

/* line 469, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-right:before {
  content: "\f061";
}

/* line 472, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-up:before {
  content: "\f062";
}

/* line 475, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-down:before {
  content: "\f063";
}

/* line 478, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

/* line 482, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-expand:before {
  content: "\f065";
}

/* line 485, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-compress:before {
  content: "\f066";
}

/* line 488, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus:before {
  content: "\f067";
}

/* line 491, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus:before {
  content: "\f068";
}

/* line 494, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-asterisk:before {
  content: "\f069";
}

/* line 497, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* line 500, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gift:before {
  content: "\f06b";
}

/* line 503, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-leaf:before {
  content: "\f06c";
}

/* line 506, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fire:before {
  content: "\f06d";
}

/* line 509, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eye:before {
  content: "\f06e";
}

/* line 512, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eye-slash:before {
  content: "\f070";
}

/* line 515, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

/* line 519, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plane:before {
  content: "\f072";
}

/* line 522, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar:before {
  content: "\f073";
}

/* line 525, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-random:before {
  content: "\f074";
}

/* line 528, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comment:before {
  content: "\f075";
}

/* line 531, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-magnet:before {
  content: "\f076";
}

/* line 534, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-up:before {
  content: "\f077";
}

/* line 537, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-down:before {
  content: "\f078";
}

/* line 540, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-retweet:before {
  content: "\f079";
}

/* line 543, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shopping-cart:before {
  content: "\f07a";
}

/* line 546, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder:before {
  content: "\f07b";
}

/* line 549, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder-open:before {
  content: "\f07c";
}

/* line 552, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows-v:before {
  content: "\f07d";
}

/* line 555, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows-h:before {
  content: "\f07e";
}

/* line 558, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

/* line 562, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-twitter-square:before {
  content: "\f081";
}

/* line 565, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-facebook-square:before {
  content: "\f082";
}

/* line 568, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-camera-retro:before {
  content: "\f083";
}

/* line 571, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-key:before {
  content: "\f084";
}

/* line 574, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

/* line 578, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comments:before {
  content: "\f086";
}

/* line 581, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-o-up:before {
  content: "\f087";
}

/* line 584, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-o-down:before {
  content: "\f088";
}

/* line 587, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star-half:before {
  content: "\f089";
}

/* line 590, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-heart-o:before {
  content: "\f08a";
}

/* line 593, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sign-out:before {
  content: "\f08b";
}

/* line 596, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linkedin-square:before {
  content: "\f08c";
}

/* line 599, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumb-tack:before {
  content: "\f08d";
}

/* line 602, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-external-link:before {
  content: "\f08e";
}

/* line 605, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sign-in:before {
  content: "\f090";
}

/* line 608, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trophy:before {
  content: "\f091";
}

/* line 611, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-github-square:before {
  content: "\f092";
}

/* line 614, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-upload:before {
  content: "\f093";
}

/* line 617, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lemon-o:before {
  content: "\f094";
}

/* line 620, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-phone:before {
  content: "\f095";
}

/* line 623, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-square-o:before {
  content: "\f096";
}

/* line 626, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bookmark-o:before {
  content: "\f097";
}

/* line 629, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-phone-square:before {
  content: "\f098";
}

/* line 632, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-twitter:before {
  content: "\f099";
}

/* line 635, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

/* line 639, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-github:before {
  content: "\f09b";
}

/* line 642, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unlock:before {
  content: "\f09c";
}

/* line 645, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-credit-card:before {
  content: "\f09d";
}

/* line 648, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

/* line 652, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hdd-o:before {
  content: "\f0a0";
}

/* line 655, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bullhorn:before {
  content: "\f0a1";
}

/* line 658, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell:before {
  content: "\f0f3";
}

/* line 661, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-certificate:before {
  content: "\f0a3";
}

/* line 664, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-right:before {
  content: "\f0a4";
}

/* line 667, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-left:before {
  content: "\f0a5";
}

/* line 670, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-up:before {
  content: "\f0a6";
}

/* line 673, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-down:before {
  content: "\f0a7";
}

/* line 676, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-left:before {
  content: "\f0a8";
}

/* line 679, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-right:before {
  content: "\f0a9";
}

/* line 682, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-up:before {
  content: "\f0aa";
}

/* line 685, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-down:before {
  content: "\f0ab";
}

/* line 688, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-globe:before {
  content: "\f0ac";
}

/* line 691, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wrench:before {
  content: "\f0ad";
}

/* line 694, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tasks:before {
  content: "\f0ae";
}

/* line 697, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-filter:before {
  content: "\f0b0";
}

/* line 700, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-briefcase:before {
  content: "\f0b1";
}

/* line 703, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows-alt:before {
  content: "\f0b2";
}

/* line 706, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

/* line 710, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

/* line 714, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cloud:before {
  content: "\f0c2";
}

/* line 717, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flask:before {
  content: "\f0c3";
}

/* line 720, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

/* line 724, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

/* line 728, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paperclip:before {
  content: "\f0c6";
}

/* line 731, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

/* line 735, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-square:before {
  content: "\f0c8";
}

/* line 738, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

/* line 743, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list-ul:before {
  content: "\f0ca";
}

/* line 746, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list-ol:before {
  content: "\f0cb";
}

/* line 749, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-strikethrough:before {
  content: "\f0cc";
}

/* line 752, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-underline:before {
  content: "\f0cd";
}

/* line 755, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-table:before {
  content: "\f0ce";
}

/* line 758, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-magic:before {
  content: "\f0d0";
}

/* line 761, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-truck:before {
  content: "\f0d1";
}

/* line 764, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pinterest:before {
  content: "\f0d2";
}

/* line 767, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pinterest-square:before {
  content: "\f0d3";
}

/* line 770, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-plus-square:before {
  content: "\f0d4";
}

/* line 773, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-plus:before {
  content: "\f0d5";
}

/* line 776, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-money:before {
  content: "\f0d6";
}

/* line 779, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-down:before {
  content: "\f0d7";
}

/* line 782, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-up:before {
  content: "\f0d8";
}

/* line 785, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-left:before {
  content: "\f0d9";
}

/* line 788, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-right:before {
  content: "\f0da";
}

/* line 791, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-columns:before {
  content: "\f0db";
}

/* line 794, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

/* line 798, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

/* line 802, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

/* line 806, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope:before {
  content: "\f0e0";
}

/* line 809, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linkedin:before {
  content: "\f0e1";
}

/* line 812, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

/* line 816, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

/* line 820, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

/* line 824, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comment-o:before {
  content: "\f0e5";
}

/* line 827, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comments-o:before {
  content: "\f0e6";
}

/* line 830, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

/* line 834, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sitemap:before {
  content: "\f0e8";
}

/* line 837, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-umbrella:before {
  content: "\f0e9";
}

/* line 840, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

/* line 844, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lightbulb-o:before {
  content: "\f0eb";
}

/* line 847, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-exchange:before {
  content: "\f0ec";
}

/* line 850, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cloud-download:before {
  content: "\f0ed";
}

/* line 853, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cloud-upload:before {
  content: "\f0ee";
}

/* line 856, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-md:before {
  content: "\f0f0";
}

/* line 859, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stethoscope:before {
  content: "\f0f1";
}

/* line 862, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-suitcase:before {
  content: "\f0f2";
}

/* line 865, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell-o:before {
  content: "\f0a2";
}

/* line 868, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-coffee:before {
  content: "\f0f4";
}

/* line 871, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cutlery:before {
  content: "\f0f5";
}

/* line 874, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-text-o:before {
  content: "\f0f6";
}

/* line 877, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-building-o:before {
  content: "\f0f7";
}

/* line 880, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hospital-o:before {
  content: "\f0f8";
}

/* line 883, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ambulance:before {
  content: "\f0f9";
}

/* line 886, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-medkit:before {
  content: "\f0fa";
}

/* line 889, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fighter-jet:before {
  content: "\f0fb";
}

/* line 892, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-beer:before {
  content: "\f0fc";
}

/* line 895, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-h-square:before {
  content: "\f0fd";
}

/* line 898, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus-square:before {
  content: "\f0fe";
}

/* line 901, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-left:before {
  content: "\f100";
}

/* line 904, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-right:before {
  content: "\f101";
}

/* line 907, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-up:before {
  content: "\f102";
}

/* line 910, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-down:before {
  content: "\f103";
}

/* line 913, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-left:before {
  content: "\f104";
}

/* line 916, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-right:before {
  content: "\f105";
}

/* line 919, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-up:before {
  content: "\f106";
}

/* line 922, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-down:before {
  content: "\f107";
}

/* line 925, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-desktop:before {
  content: "\f108";
}

/* line 928, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-laptop:before {
  content: "\f109";
}

/* line 931, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tablet:before {
  content: "\f10a";
}

/* line 934, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

/* line 938, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle-o:before {
  content: "\f10c";
}

/* line 941, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-quote-left:before {
  content: "\f10d";
}

/* line 944, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-quote-right:before {
  content: "\f10e";
}

/* line 947, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spinner:before {
  content: "\f110";
}

/* line 950, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle:before {
  content: "\f111";
}

/* line 953, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

/* line 957, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-github-alt:before {
  content: "\f113";
}

/* line 960, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder-o:before {
  content: "\f114";
}

/* line 963, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder-open-o:before {
  content: "\f115";
}

/* line 966, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-smile-o:before {
  content: "\f118";
}

/* line 969, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-frown-o:before {
  content: "\f119";
}

/* line 972, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-meh-o:before {
  content: "\f11a";
}

/* line 975, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gamepad:before {
  content: "\f11b";
}

/* line 978, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-keyboard-o:before {
  content: "\f11c";
}

/* line 981, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flag-o:before {
  content: "\f11d";
}

/* line 984, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flag-checkered:before {
  content: "\f11e";
}

/* line 987, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-terminal:before {
  content: "\f120";
}

/* line 990, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-code:before {
  content: "\f121";
}

/* line 993, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

/* line 997, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

/* line 1002, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-location-arrow:before {
  content: "\f124";
}

/* line 1005, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-crop:before {
  content: "\f125";
}

/* line 1008, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-code-fork:before {
  content: "\f126";
}

/* line 1011, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

/* line 1015, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-question:before {
  content: "\f128";
}

/* line 1018, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-info:before {
  content: "\f129";
}

/* line 1021, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-exclamation:before {
  content: "\f12a";
}

/* line 1024, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-superscript:before {
  content: "\f12b";
}

/* line 1027, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-subscript:before {
  content: "\f12c";
}

/* line 1030, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eraser:before {
  content: "\f12d";
}

/* line 1033, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-puzzle-piece:before {
  content: "\f12e";
}

/* line 1036, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-microphone:before {
  content: "\f130";
}

/* line 1039, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-microphone-slash:before {
  content: "\f131";
}

/* line 1042, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shield:before {
  content: "\f132";
}

/* line 1045, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-o:before {
  content: "\f133";
}

/* line 1048, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fire-extinguisher:before {
  content: "\f134";
}

/* line 1051, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rocket:before {
  content: "\f135";
}

/* line 1054, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-maxcdn:before {
  content: "\f136";
}

/* line 1057, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-left:before {
  content: "\f137";
}

/* line 1060, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-right:before {
  content: "\f138";
}

/* line 1063, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-up:before {
  content: "\f139";
}

/* line 1066, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-down:before {
  content: "\f13a";
}

/* line 1069, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-html5:before {
  content: "\f13b";
}

/* line 1072, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-css3:before {
  content: "\f13c";
}

/* line 1075, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-anchor:before {
  content: "\f13d";
}

/* line 1078, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unlock-alt:before {
  content: "\f13e";
}

/* line 1081, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bullseye:before {
  content: "\f140";
}

/* line 1084, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ellipsis-h:before {
  content: "\f141";
}

/* line 1087, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ellipsis-v:before {
  content: "\f142";
}

/* line 1090, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rss-square:before {
  content: "\f143";
}

/* line 1093, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-play-circle:before {
  content: "\f144";
}

/* line 1096, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ticket:before {
  content: "\f145";
}

/* line 1099, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus-square:before {
  content: "\f146";
}

/* line 1102, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus-square-o:before {
  content: "\f147";
}

/* line 1105, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-level-up:before {
  content: "\f148";
}

/* line 1108, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-level-down:before {
  content: "\f149";
}

/* line 1111, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-square:before {
  content: "\f14a";
}

/* line 1114, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pencil-square:before {
  content: "\f14b";
}

/* line 1117, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-external-link-square:before {
  content: "\f14c";
}

/* line 1120, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-square:before {
  content: "\f14d";
}

/* line 1123, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-compass:before {
  content: "\f14e";
}

/* line 1126, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

/* line 1130, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

/* line 1134, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

/* line 1138, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

/* line 1142, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gbp:before {
  content: "\f154";
}

/* line 1145, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

/* line 1149, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

/* line 1153, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

/* line 1159, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

/* line 1164, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

/* line 1168, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

/* line 1172, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file:before {
  content: "\f15b";
}

/* line 1175, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-text:before {
  content: "\f15c";
}

/* line 1178, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-alpha-asc:before {
  content: "\f15d";
}

/* line 1181, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-alpha-desc:before {
  content: "\f15e";
}

/* line 1184, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-amount-asc:before {
  content: "\f160";
}

/* line 1187, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-amount-desc:before {
  content: "\f161";
}

/* line 1190, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-numeric-asc:before {
  content: "\f162";
}

/* line 1193, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-numeric-desc:before {
  content: "\f163";
}

/* line 1196, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-up:before {
  content: "\f164";
}

/* line 1199, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-down:before {
  content: "\f165";
}

/* line 1202, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-youtube-square:before {
  content: "\f166";
}

/* line 1205, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-youtube:before {
  content: "\f167";
}

/* line 1208, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-xing:before {
  content: "\f168";
}

/* line 1211, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-xing-square:before {
  content: "\f169";
}

/* line 1214, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-youtube-play:before {
  content: "\f16a";
}

/* line 1217, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dropbox:before {
  content: "\f16b";
}

/* line 1220, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-overflow:before {
  content: "\f16c";
}

/* line 1223, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-instagram:before {
  content: "\f16d";
}

/* line 1226, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flickr:before {
  content: "\f16e";
}

/* line 1229, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-adn:before {
  content: "\f170";
}

/* line 1232, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bitbucket:before {
  content: "\f171";
}

/* line 1235, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bitbucket-square:before {
  content: "\f172";
}

/* line 1238, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tumblr:before {
  content: "\f173";
}

/* line 1241, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tumblr-square:before {
  content: "\f174";
}

/* line 1244, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-down:before {
  content: "\f175";
}

/* line 1247, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-up:before {
  content: "\f176";
}

/* line 1250, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-left:before {
  content: "\f177";
}

/* line 1253, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-right:before {
  content: "\f178";
}

/* line 1256, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-apple:before {
  content: "\f179";
}

/* line 1259, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-windows:before {
  content: "\f17a";
}

/* line 1262, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-android:before {
  content: "\f17b";
}

/* line 1265, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linux:before {
  content: "\f17c";
}

/* line 1268, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dribbble:before {
  content: "\f17d";
}

/* line 1271, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-skype:before {
  content: "\f17e";
}

/* line 1274, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-foursquare:before {
  content: "\f180";
}

/* line 1277, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trello:before {
  content: "\f181";
}

/* line 1280, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-female:before {
  content: "\f182";
}

/* line 1283, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-male:before {
  content: "\f183";
}

/* line 1286, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

/* line 1290, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sun-o:before {
  content: "\f185";
}

/* line 1293, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-moon-o:before {
  content: "\f186";
}

/* line 1296, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-archive:before {
  content: "\f187";
}

/* line 1299, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bug:before {
  content: "\f188";
}

/* line 1302, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vk:before {
  content: "\f189";
}

/* line 1305, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-weibo:before {
  content: "\f18a";
}

/* line 1308, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-renren:before {
  content: "\f18b";
}

/* line 1311, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pagelines:before {
  content: "\f18c";
}

/* line 1314, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-exchange:before {
  content: "\f18d";
}

/* line 1317, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

/* line 1320, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-left:before {
  content: "\f190";
}

/* line 1323, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

/* line 1327, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dot-circle-o:before {
  content: "\f192";
}

/* line 1330, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wheelchair:before {
  content: "\f193";
}

/* line 1333, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vimeo-square:before {
  content: "\f194";
}

/* line 1336, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

/* line 1340, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus-square-o:before {
  content: "\f196";
}

/* line 1343, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-space-shuttle:before {
  content: "\f197";
}

/* line 1346, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-slack:before {
  content: "\f198";
}

/* line 1349, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-square:before {
  content: "\f199";
}

/* line 1352, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wordpress:before {
  content: "\f19a";
}

/* line 1355, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-openid:before {
  content: "\f19b";
}

/* line 1358, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

/* line 1363, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

/* line 1367, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yahoo:before {
  content: "\f19e";
}

/* line 1370, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google:before {
  content: "\f1a0";
}

/* line 1373, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-reddit:before {
  content: "\f1a1";
}

/* line 1376, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-reddit-square:before {
  content: "\f1a2";
}

/* line 1379, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

/* line 1382, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stumbleupon:before {
  content: "\f1a4";
}

/* line 1385, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-delicious:before {
  content: "\f1a5";
}

/* line 1388, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-digg:before {
  content: "\f1a6";
}

/* line 1391, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pied-piper-pp:before {
  content: "\f1a7";
}

/* line 1394, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pied-piper-alt:before {
  content: "\f1a8";
}

/* line 1397, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-drupal:before {
  content: "\f1a9";
}

/* line 1400, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-joomla:before {
  content: "\f1aa";
}

/* line 1403, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-language:before {
  content: "\f1ab";
}

/* line 1406, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fax:before {
  content: "\f1ac";
}

/* line 1409, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-building:before {
  content: "\f1ad";
}

/* line 1412, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-child:before {
  content: "\f1ae";
}

/* line 1415, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paw:before {
  content: "\f1b0";
}

/* line 1418, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spoon:before {
  content: "\f1b1";
}

/* line 1421, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cube:before {
  content: "\f1b2";
}

/* line 1424, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cubes:before {
  content: "\f1b3";
}

/* line 1427, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-behance:before {
  content: "\f1b4";
}

/* line 1430, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-behance-square:before {
  content: "\f1b5";
}

/* line 1433, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-steam:before {
  content: "\f1b6";
}

/* line 1436, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-steam-square:before {
  content: "\f1b7";
}

/* line 1439, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-recycle:before {
  content: "\f1b8";
}

/* line 1442, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

/* line 1446, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

/* line 1450, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tree:before {
  content: "\f1bb";
}

/* line 1453, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spotify:before {
  content: "\f1bc";
}

/* line 1456, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-deviantart:before {
  content: "\f1bd";
}

/* line 1459, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-soundcloud:before {
  content: "\f1be";
}

/* line 1462, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-database:before {
  content: "\f1c0";
}

/* line 1465, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-pdf-o:before {
  content: "\f1c1";
}

/* line 1468, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-word-o:before {
  content: "\f1c2";
}

/* line 1471, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-excel-o:before {
  content: "\f1c3";
}

/* line 1474, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

/* line 1477, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

/* line 1482, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

/* line 1486, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

/* line 1490, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

/* line 1494, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-code-o:before {
  content: "\f1c9";
}

/* line 1497, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vine:before {
  content: "\f1ca";
}

/* line 1500, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-codepen:before {
  content: "\f1cb";
}

/* line 1503, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-jsfiddle:before {
  content: "\f1cc";
}

/* line 1506, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

/* line 1513, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle-o-notch:before {
  content: "\f1ce";
}

/* line 1516, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

/* line 1521, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

/* line 1525, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-git-square:before {
  content: "\f1d2";
}

/* line 1528, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-git:before {
  content: "\f1d3";
}

/* line 1531, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

/* line 1536, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tencent-weibo:before {
  content: "\f1d5";
}

/* line 1539, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-qq:before {
  content: "\f1d6";
}

/* line 1542, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

/* line 1546, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

/* line 1550, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

/* line 1554, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-history:before {
  content: "\f1da";
}

/* line 1557, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle-thin:before {
  content: "\f1db";
}

/* line 1560, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-header:before {
  content: "\f1dc";
}

/* line 1563, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paragraph:before {
  content: "\f1dd";
}

/* line 1566, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sliders:before {
  content: "\f1de";
}

/* line 1569, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-alt:before {
  content: "\f1e0";
}

/* line 1572, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-alt-square:before {
  content: "\f1e1";
}

/* line 1575, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bomb:before {
  content: "\f1e2";
}

/* line 1578, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

/* line 1582, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tty:before {
  content: "\f1e4";
}

/* line 1585, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-binoculars:before {
  content: "\f1e5";
}

/* line 1588, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plug:before {
  content: "\f1e6";
}

/* line 1591, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-slideshare:before {
  content: "\f1e7";
}

/* line 1594, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-twitch:before {
  content: "\f1e8";
}

/* line 1597, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yelp:before {
  content: "\f1e9";
}

/* line 1600, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-newspaper-o:before {
  content: "\f1ea";
}

/* line 1603, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wifi:before {
  content: "\f1eb";
}

/* line 1606, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calculator:before {
  content: "\f1ec";
}

/* line 1609, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paypal:before {
  content: "\f1ed";
}

/* line 1612, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-wallet:before {
  content: "\f1ee";
}

/* line 1615, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-visa:before {
  content: "\f1f0";
}

/* line 1618, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-mastercard:before {
  content: "\f1f1";
}

/* line 1621, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-discover:before {
  content: "\f1f2";
}

/* line 1624, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-amex:before {
  content: "\f1f3";
}

/* line 1627, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-paypal:before {
  content: "\f1f4";
}

/* line 1630, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-stripe:before {
  content: "\f1f5";
}

/* line 1633, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell-slash:before {
  content: "\f1f6";
}

/* line 1636, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell-slash-o:before {
  content: "\f1f7";
}

/* line 1639, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trash:before {
  content: "\f1f8";
}

/* line 1642, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-copyright:before {
  content: "\f1f9";
}

/* line 1645, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-at:before {
  content: "\f1fa";
}

/* line 1648, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eyedropper:before {
  content: "\f1fb";
}

/* line 1651, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paint-brush:before {
  content: "\f1fc";
}

/* line 1654, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-birthday-cake:before {
  content: "\f1fd";
}

/* line 1657, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-area-chart:before {
  content: "\f1fe";
}

/* line 1660, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pie-chart:before {
  content: "\f200";
}

/* line 1663, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-line-chart:before {
  content: "\f201";
}

/* line 1666, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lastfm:before {
  content: "\f202";
}

/* line 1669, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lastfm-square:before {
  content: "\f203";
}

/* line 1672, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-off:before {
  content: "\f204";
}

/* line 1675, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-on:before {
  content: "\f205";
}

/* line 1678, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bicycle:before {
  content: "\f206";
}

/* line 1681, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bus:before {
  content: "\f207";
}

/* line 1684, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ioxhost:before {
  content: "\f208";
}

/* line 1687, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angellist:before {
  content: "\f209";
}

/* line 1690, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc:before {
  content: "\f20a";
}

/* line 1693, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

/* line 1698, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-meanpath:before {
  content: "\f20c";
}

/* line 1701, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-buysellads:before {
  content: "\f20d";
}

/* line 1704, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-connectdevelop:before {
  content: "\f20e";
}

/* line 1707, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dashcube:before {
  content: "\f210";
}

/* line 1710, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-forumbee:before {
  content: "\f211";
}

/* line 1713, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-leanpub:before {
  content: "\f212";
}

/* line 1716, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sellsy:before {
  content: "\f213";
}

/* line 1719, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shirtsinbulk:before {
  content: "\f214";
}

/* line 1722, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-simplybuilt:before {
  content: "\f215";
}

/* line 1725, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-skyatlas:before {
  content: "\f216";
}

/* line 1728, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cart-plus:before {
  content: "\f217";
}

/* line 1731, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cart-arrow-down:before {
  content: "\f218";
}

/* line 1734, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-diamond:before {
  content: "\f219";
}

/* line 1737, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ship:before {
  content: "\f21a";
}

/* line 1740, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-secret:before {
  content: "\f21b";
}

/* line 1743, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-motorcycle:before {
  content: "\f21c";
}

/* line 1746, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-street-view:before {
  content: "\f21d";
}

/* line 1749, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-heartbeat:before {
  content: "\f21e";
}

/* line 1752, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-venus:before {
  content: "\f221";
}

/* line 1755, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars:before {
  content: "\f222";
}

/* line 1758, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mercury:before {
  content: "\f223";
}

/* line 1761, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

/* line 1765, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-transgender-alt:before {
  content: "\f225";
}

/* line 1768, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-venus-double:before {
  content: "\f226";
}

/* line 1771, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-double:before {
  content: "\f227";
}

/* line 1774, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-venus-mars:before {
  content: "\f228";
}

/* line 1777, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-stroke:before {
  content: "\f229";
}

/* line 1780, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-stroke-v:before {
  content: "\f22a";
}

/* line 1783, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-stroke-h:before {
  content: "\f22b";
}

/* line 1786, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-neuter:before {
  content: "\f22c";
}

/* line 1789, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-genderless:before {
  content: "\f22d";
}

/* line 1792, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-facebook-official:before {
  content: "\f230";
}

/* line 1795, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pinterest-p:before {
  content: "\f231";
}

/* line 1798, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-whatsapp:before {
  content: "\f232";
}

/* line 1801, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-server:before {
  content: "\f233";
}

/* line 1804, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-plus:before {
  content: "\f234";
}

/* line 1807, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-times:before {
  content: "\f235";
}

/* line 1810, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

/* line 1814, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-viacoin:before {
  content: "\f237";
}

/* line 1817, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-train:before {
  content: "\f238";
}

/* line 1820, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-subway:before {
  content: "\f239";
}

/* line 1823, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-medium:before {
  content: "\f23a";
}

/* line 1826, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

/* line 1830, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-optin-monster:before {
  content: "\f23c";
}

/* line 1833, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-opencart:before {
  content: "\f23d";
}

/* line 1836, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-expeditedssl:before {
  content: "\f23e";
}

/* line 1839, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

/* line 1844, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

/* line 1848, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

/* line 1852, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

/* line 1856, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

/* line 1860, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mouse-pointer:before {
  content: "\f245";
}

/* line 1863, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-i-cursor:before {
  content: "\f246";
}

/* line 1866, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-object-group:before {
  content: "\f247";
}

/* line 1869, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-object-ungroup:before {
  content: "\f248";
}

/* line 1872, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sticky-note:before {
  content: "\f249";
}

/* line 1875, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sticky-note-o:before {
  content: "\f24a";
}

/* line 1878, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-jcb:before {
  content: "\f24b";
}

/* line 1881, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-diners-club:before {
  content: "\f24c";
}

/* line 1884, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-clone:before {
  content: "\f24d";
}

/* line 1887, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-balance-scale:before {
  content: "\f24e";
}

/* line 1890, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-o:before {
  content: "\f250";
}

/* line 1893, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

/* line 1897, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

/* line 1901, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

/* line 1905, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass:before {
  content: "\f254";
}

/* line 1908, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

/* line 1912, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

/* line 1916, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-scissors-o:before {
  content: "\f257";
}

/* line 1919, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-lizard-o:before {
  content: "\f258";
}

/* line 1922, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-spock-o:before {
  content: "\f259";
}

/* line 1925, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-pointer-o:before {
  content: "\f25a";
}

/* line 1928, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-peace-o:before {
  content: "\f25b";
}

/* line 1931, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trademark:before {
  content: "\f25c";
}

/* line 1934, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-registered:before {
  content: "\f25d";
}

/* line 1937, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-creative-commons:before {
  content: "\f25e";
}

/* line 1940, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gg:before {
  content: "\f260";
}

/* line 1943, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gg-circle:before {
  content: "\f261";
}

/* line 1946, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tripadvisor:before {
  content: "\f262";
}

/* line 1949, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-odnoklassniki:before {
  content: "\f263";
}

/* line 1952, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-odnoklassniki-square:before {
  content: "\f264";
}

/* line 1955, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-get-pocket:before {
  content: "\f265";
}

/* line 1958, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wikipedia-w:before {
  content: "\f266";
}

/* line 1961, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-safari:before {
  content: "\f267";
}

/* line 1964, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chrome:before {
  content: "\f268";
}

/* line 1967, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-firefox:before {
  content: "\f269";
}

/* line 1970, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-opera:before {
  content: "\f26a";
}

/* line 1973, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-internet-explorer:before {
  content: "\f26b";
}

/* line 1976, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

/* line 1980, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-contao:before {
  content: "\f26d";
}

/* line 1983, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-500px:before {
  content: "\f26e";
}

/* line 1986, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-amazon:before {
  content: "\f270";
}

/* line 1989, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-plus-o:before {
  content: "\f271";
}

/* line 1992, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-minus-o:before {
  content: "\f272";
}

/* line 1995, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-times-o:before {
  content: "\f273";
}

/* line 1998, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-check-o:before {
  content: "\f274";
}

/* line 2001, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-industry:before {
  content: "\f275";
}

/* line 2004, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-pin:before {
  content: "\f276";
}

/* line 2007, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-signs:before {
  content: "\f277";
}

/* line 2010, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-o:before {
  content: "\f278";
}

/* line 2013, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map:before {
  content: "\f279";
}

/* line 2016, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-commenting:before {
  content: "\f27a";
}

/* line 2019, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-commenting-o:before {
  content: "\f27b";
}

/* line 2022, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-houzz:before {
  content: "\f27c";
}

/* line 2025, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vimeo:before {
  content: "\f27d";
}

/* line 2028, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-black-tie:before {
  content: "\f27e";
}

/* line 2031, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fonticons:before {
  content: "\f280";
}

/* line 2034, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-reddit-alien:before {
  content: "\f281";
}

/* line 2037, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-edge:before {
  content: "\f282";
}

/* line 2040, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-credit-card-alt:before {
  content: "\f283";
}

/* line 2043, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-codiepie:before {
  content: "\f284";
}

/* line 2046, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-modx:before {
  content: "\f285";
}

/* line 2049, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fort-awesome:before {
  content: "\f286";
}

/* line 2052, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-usb:before {
  content: "\f287";
}

/* line 2055, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-product-hunt:before {
  content: "\f288";
}

/* line 2058, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mixcloud:before {
  content: "\f289";
}

/* line 2061, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-scribd:before {
  content: "\f28a";
}

/* line 2064, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pause-circle:before {
  content: "\f28b";
}

/* line 2067, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pause-circle-o:before {
  content: "\f28c";
}

/* line 2070, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stop-circle:before {
  content: "\f28d";
}

/* line 2073, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stop-circle-o:before {
  content: "\f28e";
}

/* line 2076, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shopping-bag:before {
  content: "\f290";
}

/* line 2079, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shopping-basket:before {
  content: "\f291";
}

/* line 2082, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hashtag:before {
  content: "\f292";
}

/* line 2085, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bluetooth:before {
  content: "\f293";
}

/* line 2088, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bluetooth-b:before {
  content: "\f294";
}

/* line 2091, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-percent:before {
  content: "\f295";
}

/* line 2094, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gitlab:before {
  content: "\f296";
}

/* line 2097, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wpbeginner:before {
  content: "\f297";
}

/* line 2100, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wpforms:before {
  content: "\f298";
}

/* line 2103, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envira:before {
  content: "\f299";
}

/* line 2106, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-universal-access:before {
  content: "\f29a";
}

/* line 2109, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wheelchair-alt:before {
  content: "\f29b";
}

/* line 2112, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-question-circle-o:before {
  content: "\f29c";
}

/* line 2115, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-blind:before {
  content: "\f29d";
}

/* line 2118, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-audio-description:before {
  content: "\f29e";
}

/* line 2121, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-control-phone:before {
  content: "\f2a0";
}

/* line 2124, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-braille:before {
  content: "\f2a1";
}

/* line 2127, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

/* line 2130, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

/* line 2134, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

/* line 2139, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-glide:before {
  content: "\f2a5";
}

/* line 2142, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-glide-g:before {
  content: "\f2a6";
}

/* line 2145, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

/* line 2149, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-low-vision:before {
  content: "\f2a8";
}

/* line 2152, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-viadeo:before {
  content: "\f2a9";
}

/* line 2155, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-viadeo-square:before {
  content: "\f2aa";
}

/* line 2158, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snapchat:before {
  content: "\f2ab";
}

/* line 2161, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snapchat-ghost:before {
  content: "\f2ac";
}

/* line 2164, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snapchat-square:before {
  content: "\f2ad";
}

/* line 2167, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pied-piper:before {
  content: "\f2ae";
}

/* line 2170, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-first-order:before {
  content: "\f2b0";
}

/* line 2173, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yoast:before {
  content: "\f2b1";
}

/* line 2176, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-themeisle:before {
  content: "\f2b2";
}

/* line 2179, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

/* line 2183, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

/* line 2187, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-handshake-o:before {
  content: "\f2b5";
}

/* line 2190, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-open:before {
  content: "\f2b6";
}

/* line 2193, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-open-o:before {
  content: "\f2b7";
}

/* line 2196, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linode:before {
  content: "\f2b8";
}

/* line 2199, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-address-book:before {
  content: "\f2b9";
}

/* line 2202, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-address-book-o:before {
  content: "\f2ba";
}

/* line 2205, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

/* line 2209, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

/* line 2213, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-circle:before {
  content: "\f2bd";
}

/* line 2216, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-circle-o:before {
  content: "\f2be";
}

/* line 2219, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-o:before {
  content: "\f2c0";
}

/* line 2222, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-id-badge:before {
  content: "\f2c1";
}

/* line 2225, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

/* line 2229, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

/* line 2233, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-quora:before {
  content: "\f2c4";
}

/* line 2236, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-free-code-camp:before {
  content: "\f2c5";
}

/* line 2239, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-telegram:before {
  content: "\f2c6";
}

/* line 2242, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

/* line 2247, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

/* line 2251, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

/* line 2255, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

/* line 2259, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

/* line 2263, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shower:before {
  content: "\f2cc";
}

/* line 2266, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

/* line 2271, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-podcast:before {
  content: "\f2ce";
}

/* line 2274, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-window-maximize:before {
  content: "\f2d0";
}

/* line 2277, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-window-minimize:before {
  content: "\f2d1";
}

/* line 2280, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-window-restore:before {
  content: "\f2d2";
}

/* line 2283, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

/* line 2287, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

/* line 2291, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bandcamp:before {
  content: "\f2d5";
}

/* line 2294, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-grav:before {
  content: "\f2d6";
}

/* line 2297, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-etsy:before {
  content: "\f2d7";
}

/* line 2300, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-imdb:before {
  content: "\f2d8";
}

/* line 2303, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ravelry:before {
  content: "\f2d9";
}

/* line 2306, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eercast:before {
  content: "\f2da";
}

/* line 2309, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-microchip:before {
  content: "\f2db";
}

/* line 2312, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snowflake-o:before {
  content: "\f2dc";
}

/* line 2315, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-superpowers:before {
  content: "\f2dd";
}

/* line 2318, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wpexplorer:before {
  content: "\f2de";
}

/* line 2321, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-meetup:before {
  content: "\f2e0";
}

/* line 2324, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 2334, ../../shared/bundle/ruby/2.7.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*!
 * Datepicker for Bootstrap v1.6.4 (https://github.com/eternicode/bootstrap-datepicker)
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-inline {
  width: 220px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker.datepicker-rtl {
  direction: rtl;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker.datepicker-rtl table tr td span {
  float: right;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown {
  top: 0;
  left: 0;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #999;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-top: 0;
  position: absolute;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown.datepicker-orient-bottom:before {
  top: -7px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown.datepicker-orient-bottom:after {
  top: -6px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown.datepicker-orient-top:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker-dropdown.datepicker-orient-top:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #fff;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker td, .datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
  background-color: transparent;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.day.focused, .datepicker table tr td.day:hover {
  background: #eee;
  cursor: pointer;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.new, .datepicker table tr td.old {
  color: #999;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
  background: 0 0;
  color: #999;
  cursor: default;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.highlighted {
  background: #d9edf7;
  border-radius: 0;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
  background-color: #fde19a;
  background-image: linear-gradient(to bottom, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.today.active, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled.disabled, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today.disabled.active:hover, .datepicker table tr td.today.disabled.disabled:hover, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today.disabled:hover:hover, .datepicker table tr td.today.disabled[disabled]:hover, .datepicker table tr td.today.disabled[disabled], .datepicker table tr td.today:active, .datepicker table tr td.today:hover, .datepicker table tr td.today.active:hover, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover:active, .datepicker table tr td.today:hover:hover, .datepicker table tr td.today[disabled]:hover, .datepicker table tr td.today[disabled] {
  background-color: #fdf59a;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.today.active, .datepicker table tr td.today.disabled.active, .datepicker table tr td.today.disabled:active, .datepicker table tr td.today.disabled.active:hover, .datepicker table tr td.today.disabled:hover:active, .datepicker table tr td.today:active, .datepicker table tr td.today.active:hover, .datepicker table tr td.today:hover:active {
  background-color: #fbf069\9;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.today:hover:hover {
  color: #000;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.today.active:hover {
  color: #fff;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.range, .datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:hover, .datepicker table tr td.range:hover {
  background: #eee;
  border-radius: 0;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.range.today, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today:hover {
  background-color: #f3d17a;
  background-image: linear-gradient(to bottom, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border-radius: 0;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.range.today.active, .datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled.disabled, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today.disabled.active:hover, .datepicker table tr td.range.today.disabled.disabled:hover, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today.disabled:hover:hover, .datepicker table tr td.range.today.disabled[disabled]:hover, .datepicker table tr td.range.today.disabled[disabled], .datepicker table tr td.range.today:active, .datepicker table tr td.range.today:hover, .datepicker table tr td.range.today.active:hover, .datepicker table tr td.range.today.disabled:hover, .datepicker table tr td.range.today:hover:active, .datepicker table tr td.range.today:hover:hover, .datepicker table tr td.range.today[disabled]:hover, .datepicker table tr td.range.today[disabled] {
  background-color: #f3e97a;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.range.today.active, .datepicker table tr td.range.today.disabled.active, .datepicker table tr td.range.today.disabled:active, .datepicker table tr td.range.today.disabled.active:hover, .datepicker table tr td.range.today.disabled:hover:active, .datepicker table tr td.range.today:active, .datepicker table tr td.range.today.active:hover, .datepicker table tr td.range.today:hover:active {
  background-color: #efe24b\9;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.selected, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected:hover {
  background-color: #9e9e9e;
  background-image: linear-gradient(to bottom, #b3b3b3, grey);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: grey grey #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.selected.active, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled.disabled, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected.disabled.active:hover, .datepicker table tr td.selected.disabled.disabled:hover, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected.disabled:hover:hover, .datepicker table tr td.selected.disabled[disabled]:hover, .datepicker table tr td.selected.disabled[disabled], .datepicker table tr td.selected:active, .datepicker table tr td.selected:hover, .datepicker table tr td.selected.active:hover, .datepicker table tr td.selected.disabled:hover, .datepicker table tr td.selected:hover:active, .datepicker table tr td.selected:hover:hover, .datepicker table tr td.selected[disabled]:hover, .datepicker table tr td.selected[disabled] {
  background-color: grey;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.selected.active, .datepicker table tr td.selected.disabled.active, .datepicker table tr td.selected.disabled:active, .datepicker table tr td.selected.disabled.active:hover, .datepicker table tr td.selected.disabled:hover:active, .datepicker table tr td.selected:active, .datepicker table tr td.selected.active:hover, .datepicker table tr td.selected:hover:active {
  background-color: #666\9;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.active.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled.disabled, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled.active:hover, .datepicker table tr td.active.disabled.disabled:hover, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active.disabled[disabled]:hover, .datepicker table tr td.active.disabled[disabled], .datepicker table tr td.active:active, .datepicker table tr td.active:hover, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover:active, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active[disabled]:hover, .datepicker table tr td.active[disabled] {
  background-color: #04c;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td.active.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled.active:hover, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active:active, .datepicker table tr td.active.active:hover, .datepicker table tr td.active:hover:active {
  background-color: #039\9;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  border-radius: 4px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td span.focused, .datepicker table tr td span:hover {
  background: #eee;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover {
  background: 0 0;
  color: #999;
  cursor: default;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td span.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active:hover {
  background-color: #006dcc;
  background-image: linear-gradient(to bottom, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled.active:hover, .datepicker table tr td span.active.disabled.disabled:hover, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active.disabled[disabled]:hover, .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.active:hover, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active[disabled]:hover, .datepicker table tr td span.active[disabled] {
  background-color: #04c;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td span.active.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled.active:hover, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active:active, .datepicker table tr td span.active.active:hover, .datepicker table tr td span.active:hover:active {
  background-color: #039\9;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker table tr td span.new, .datepicker table tr td span.old {
  color: #999;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker .datepicker-switch {
  width: 145px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker .datepicker-switch, .datepicker .next, .datepicker .prev, .datepicker tfoot tr th {
  cursor: pointer;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
  background: #eee;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.input-append.date .add-on, .input-prepend.date .add-on {
  cursor: pointer;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.input-append.date .add-on i, .input-prepend.date .add-on i {
  margin-top: 3px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.input-daterange input {
  text-align: center;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.input-daterange input:first-child {
  border-radius: 3px 0 0 3px;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.input-daterange input:last-child {
  border-radius: 0 3px 3px 0;
}

/* line 8, app/assets/stylesheets/bootstrap-datepicker.min.css */
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 18px;
  padding: 4px 5px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  vertical-align: middle;
  background-color: #eee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}

/**
 * Selectize (v0.15.2)
 * https://selectize.dev
 *
 * Copyright (c) 2013-2015 Brian Reavis & contributors
 * Copyright (c) 2020-2022 Selectize Team & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 * @author Ris Adams <selectize@risadams.com>
 */
/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-drag_drop.multi > .selectize-input.dragging {
  overflow: visible;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: .4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
  text-decoration: none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover {
  color: black;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content {
  display: flex;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
  padding-right: 0 !important;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 6px;
  border-left: 1px solid #0073bb;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  margin-left: 6px;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .item.active .remove {
  border-left-color: #00578d;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .disabled .item .remove:hover {
  background: 0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .disabled .item .remove {
  border-left-color: #aaa;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-clear_button .clear {
  text-decoration: none;
  display: flex;
  position: absolute;
  height: 100%;
  width: 25px;
  top: 0;
  right: calc(8px - 6px);
  color: #000;
  opacity: .4;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  z-index: 1;
  font-size: 21px;
  justify-content: center;
  align-items: center;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-clear_button .clear:hover {
  opacity: 1;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-clear_button.single .clear {
  right: calc(8px - 6px + 1.5rem);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-auto_position.selectize-position-top {
  border-top: 1px solid #d0d0d0;
  border-bottom: 0 none;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.18);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active {
  border-radius: 0 0 3px 3px;
  border-top: 0 none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before {
  top: 0;
  bottom: unset;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control {
  position: relative;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown, .selectize-input, .selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  font-smoothing: inherit;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input, .selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input.has-items {
  padding: calc(8px - 2px - 1px) 8px calc(8px - 2px - 3px - 1px);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input.full {
  background-color: #fff;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input.disabled, .selectize-input.disabled * {
  cursor: default !important;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input.focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input.dropdown-active {
  border-radius: 3px 3px 0 0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input > * {
  vertical-align: baseline;
  display: inline-block;
  zoom: 1;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #1da7ee;
  color: #fff;
  border: 1px solid #0073bb;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input > div.active {
  background: #92c836;
  color: #fff;
  border: 1px solid #00578d;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input.disabled > div, .selectize-control.multi .selectize-input.disabled > div.active {
  color: white;
  background: #d2d2d2;
  border: 1px solid #aaa;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
  box-shadow: none !important;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input > input::-ms-clear {
  display: none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input > input:focus {
  outline: none !important;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input > input[placeholder] {
  box-sizing: initial;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input.has-items > input {
  margin: 0 0 !important;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input::after {
  content: " ";
  display: block;
  clear: left;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .option, .selectize-dropdown .optgroup-header, .selectize-dropdown .no-results, .selectize-dropdown .create {
  padding: 5px 8px;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .option, .selectize-dropdown [data-disabled], .selectize-dropdown [data-disabled] .option[data-selectable] {
  cursor: inherit;
  opacity: .5;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .option[data-selectable] {
  opacity: 1;
  cursor: pointer;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .active {
  background-color: #92c836;
  color: #fff;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .active.create {
  color: #495c68;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .selected {
  background-color: #92c836;
  color: #fff;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .active:not(.selected) {
  background: #f5fafd;
  color: #495c68;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  overflow-scrolling: touch;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown-emptyoptionlabel {
  text-align: center;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .spinner:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.single .selectize-input, .selectize-control.single .selectize-input input {
  cursor: pointer;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.single .selectize-input.input-active input:not(:-moz-read-only) {
  cursor: text;
}
.selectize-control.single .selectize-input.input-active, .selectize-control.single .selectize-input.input-active input:not(:read-only) {
  cursor: text;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.single .selectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.rtl {
  text-align: right;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control .selectize-input.disabled {
  opacity: .5;
  background-color: #fafafa;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input.has-items {
  padding-left: 5px;
  padding-right: 5px;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input.disabled [data-value] {
  color: #999;
  text-shadow: none;
  background: 0;
  box-shadow: none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input.disabled [data-value], .selectize-control.multi .selectize-input.disabled [data-value] .remove {
  border-color: #e6e6e6;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  background: 0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  border-radius: 3px;
  background-color: #1b9dec;
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.multi .selectize-input .active[data-value] {
  background-color: #0085d4;
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.single .selectize-input {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background-color: #f9f9f9;
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.single .selectize-input, .selectize-dropdown.single {
  border-color: #b8b8b8;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .optgroup-header {
  padding-top: 7px;
  font-weight: bold;
  font-size: .85em;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown .optgroup:first-child {
  border-top: 0 none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-auto_position.selectize-position-top {
  border-top: 1px solid #d0d0d0;
  border-bottom: 0 none;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.18);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active {
  border-radius: 0 0 3px 3px;
  border-top: 0 none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before {
  top: 0;
  bottom: unset;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-clear_button .clear {
  text-decoration: none;
  display: flex;
  position: absolute;
  height: 100%;
  width: 25px;
  top: 0;
  right: calc(8px - 6px);
  color: #000;
  opacity: .4;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  z-index: 1;
  font-size: 21px;
  justify-content: center;
  align-items: center;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-clear_button .clear:hover {
  opacity: 1;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-clear_button.single .clear {
  right: calc(8px - 6px + 1.5rem);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-drag_drop.multi > .selectize-input.dragging {
  overflow: visible;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: .4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
  text-decoration: none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover {
  color: black;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content {
  display: flex;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
  padding-right: 0 !important;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 6px;
  border-left: 1px solid #0073bb;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  margin-left: 6px;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .item.active .remove {
  border-left-color: #00578d;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .disabled .item .remove:hover {
  background: 0;
}

/* line 20, app/assets/stylesheets/selectize.css */
.selectize-control.plugin-remove_button .disabled .item .remove {
  border-left-color: #aaa;
}

/* line 2, app/assets/stylesheets/custom_scss.scss */
.carousel-indicators-numbers li {
  text-indent: 0;
  margin: 0 2px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 100%;
  line-height: 30px;
  color: #fff;
  background-color: #999;
  transition: all 0.25s ease;
}

/* line 13, app/assets/stylesheets/custom_scss.scss */
.carousel-indicators-numbers li.active, .carousel-indicators-numbers li:hover {
  margin: 0 2px;
  width: 30px;
  height: 30px;
  background-color: #337ab7;
}

/* line 25, app/assets/stylesheets/custom_scss.scss */
.vhd-impact-style {
  border: 3px solid red;
  padding: 10px 10px 10px 10px;
  background-color: #ffeacc;
}

/* line 31, app/assets/stylesheets/custom_scss.scss */
.fake-disabled-textarea {
  background-color: #eeeeee;
  color: #666666;
  opacity: 1;
  border-bottom: 1px dotted black;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-ball, .ld-ring, .ld-hourglass, .ld-loader, .ld-cross, .ld-square, .ld-pie, .ld-spinner {
  width: 1em;
  height: 1em;
  position: relative;
  color: inherit;
  display: inline-block;
  box-sizing: content-box;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-ball:after, .ld-ring:after, .ld-hourglass:after, .ld-loader:after, .ld-cross:after, .ld-square:after, .ld-pie:after, .ld-spinner:after {
  content: " ";
  display: block;
  width: 2em;
  height: 2em;
  box-sizing: border-box;
  transform-origin: 0 0;
  transform: translateZ(0) scale(0.5);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-ring:after {
  border-radius: 50%;
  border: .3em solid currentColor;
  border-left-color: transparent;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-ball:after {
  border-radius: 50%;
  background: currentColor;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-hourglass:after {
  border-radius: 50%;
  border: 1em solid currentColor;
  border-left-color: transparent;
  border-right-color: transparent;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-cross:after {
  position: absolute;
  height: .5em;
  transform: translateZ(0) scale(0.5) translate(0, 0.75em);
  background: currentColor;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-cross:before {
  content: " ";
  display: block;
  width: .5em;
  height: 2em;
  box-sizing: border-box;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  position: absolute;
  width: .5em;
  transform: translateZ(0) scale(0.5) translate(0.75em, 0);
  background: currentColor;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-square:after {
  background: currentColor;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-pie:after {
  border-radius: 50%;
  border: 1em solid currentColor;
  border-left-color: transparent;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-spinner:after {
  position: absolute;
  width: .4em;
  height: .4em;
  transform: translateZ(0) scale(0.5) translate(0.8em, 0.8em);
  border-radius: 50%;
  background: 0;
  box-shadow: 0 1em 0 currentColor,0 -1em 0 currentColor,1em 0 0 currentColor,-1em 0 0 currentColor,.70710678em .70710678em 0 currentColor,-.70710678em .70710678em 0 currentColor,.70710678em -.70710678em 0 currentColor,-.70710678em -.70710678em 0 currentColor;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld-loader {
  background-size: cover;
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld {
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

@-webkit-keyframes ld-blink {
  0% {
    opacity: 1;
  }
  49.75% {
    opacity: 1;
  }
  50.25% {
    opacity: 0;
  }
  99.5% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ld-blink {
  0% {
    opacity: 1;
  }
  49.75% {
    opacity: 1;
  }
  50.25% {
    opacity: 0;
  }
  99.5% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-blink {
  -webkit-animation: ld-blink 1s infinite linear;
          animation: ld-blink 1s infinite linear;
}

@-webkit-keyframes ld-blur {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(10%);
  }
  100% {
    filter: blur(0);
  }
}

@keyframes ld-blur {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(10%);
  }
  100% {
    filter: blur(0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-blur {
  -webkit-animation: ld-blur 1s infinite linear;
          animation: ld-blur 1s infinite linear;
}

@-webkit-keyframes ld-beat {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1028, 0.2484, 0.1372, 0.849);
            animation-timing-function: cubic-bezier(0.1028, 0.2484, 0.1372, 0.849);
    transform: scale(1);
  }
  34% {
    -webkit-animation-timing-function: cubic-bezier(0.7116, 0.2095, 0.8159, 0.6876);
            animation-timing-function: cubic-bezier(0.7116, 0.2095, 0.8159, 0.6876);
    transform: scale(1.2);
  }
  68% {
    -webkit-animation-timing-function: cubic-bezier(0.1475, 0.2888, 0.294, 0.883);
            animation-timing-function: cubic-bezier(0.1475, 0.2888, 0.294, 0.883);
    transform: scale(1.0268);
  }
  84% {
    -webkit-animation-timing-function: cubic-bezier(0.8176, 0.2193, 0.867, 0.6889);
            animation-timing-function: cubic-bezier(0.8176, 0.2193, 0.867, 0.6889);
    transform: scale(1.0932);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes ld-beat {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1028, 0.2484, 0.1372, 0.849);
            animation-timing-function: cubic-bezier(0.1028, 0.2484, 0.1372, 0.849);
    transform: scale(1);
  }
  34% {
    -webkit-animation-timing-function: cubic-bezier(0.7116, 0.2095, 0.8159, 0.6876);
            animation-timing-function: cubic-bezier(0.7116, 0.2095, 0.8159, 0.6876);
    transform: scale(1.2);
  }
  68% {
    -webkit-animation-timing-function: cubic-bezier(0.1475, 0.2888, 0.294, 0.883);
            animation-timing-function: cubic-bezier(0.1475, 0.2888, 0.294, 0.883);
    transform: scale(1.0268);
  }
  84% {
    -webkit-animation-timing-function: cubic-bezier(0.8176, 0.2193, 0.867, 0.6889);
            animation-timing-function: cubic-bezier(0.8176, 0.2193, 0.867, 0.6889);
    transform: scale(1.0932);
  }
  100% {
    transform: scale(1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-beat {
  -webkit-animation: ld-beat 1s infinite linear;
          animation: ld-beat 1s infinite linear;
}

@-webkit-keyframes ld-bounceAlt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1348, 0.3256, 0.2495, 0.8687);
            animation-timing-function: cubic-bezier(0.1348, 0.3256, 0.2495, 0.8687);
    transform: translate(0, 0);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.7426, 0.1782, 0.8523, 0.6514);
            animation-timing-function: cubic-bezier(0.7426, 0.1782, 0.8523, 0.6514);
    transform: translate(0, -14%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes ld-bounceAlt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1348, 0.3256, 0.2495, 0.8687);
            animation-timing-function: cubic-bezier(0.1348, 0.3256, 0.2495, 0.8687);
    transform: translate(0, 0);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.7426, 0.1782, 0.8523, 0.6514);
            animation-timing-function: cubic-bezier(0.7426, 0.1782, 0.8523, 0.6514);
    transform: translate(0, -14%);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-bounceAlt {
  -webkit-animation: ld-bounceAlt 1s infinite linear;
          animation: ld-bounceAlt 1s infinite linear;
}

@-webkit-keyframes ld-tick-alt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.0637, 0.1569, -0.0154, 0.8727);
            animation-timing-function: cubic-bezier(0.0637, 0.1569, -0.0154, 0.8727);
    transform: rotate(0);
  }
  22% {
    -webkit-animation-timing-function: cubic-bezier(0.7634, 0.2713, 0.7818, 0.6832);
            animation-timing-function: cubic-bezier(0.7634, 0.2713, 0.7818, 0.6832);
    transform: rotate(-44.865deg);
  }
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.0599, 0.1266, 0.2372, 1.029);
            animation-timing-function: cubic-bezier(0.0599, 0.1266, 0.2372, 1.029);
    transform: rotate(-7.515deg);
  }
  56% {
    -webkit-animation-timing-function: cubic-bezier(0.6353, 0.3049, 0.6792, 0.6671);
            animation-timing-function: cubic-bezier(0.6353, 0.3049, 0.6792, 0.6671);
    transform: rotate(-25.29deg);
  }
  68% {
    -webkit-animation-timing-function: cubic-bezier(0.0513, 0.1148, 0.3085, 1.1548);
            animation-timing-function: cubic-bezier(0.0513, 0.1148, 0.3085, 1.1548);
    transform: rotate(-5.13deg);
  }
  76% {
    -webkit-animation-timing-function: cubic-bezier(0.467, 0.2881, 0.3593, 0.7819);
            animation-timing-function: cubic-bezier(0.467, 0.2881, 0.3593, 0.7819);
    transform: rotate(-14.175deg);
  }
  83% {
    -webkit-animation-timing-function: cubic-bezier(0.0632, 0.1615, 0.3539, 1.4565);
            animation-timing-function: cubic-bezier(0.0632, 0.1615, 0.3539, 1.4565);
    transform: rotate(-3.6deg);
  }
  88% {
    -webkit-animation-timing-function: cubic-bezier(0.3563, 0.3125, 0.5387, 1.6475);
            animation-timing-function: cubic-bezier(0.3563, 0.3125, 0.5387, 1.6475);
    transform: rotate(-7.74deg);
  }
  92% {
    -webkit-animation-timing-function: cubic-bezier(0.1265, 0.4155, 0.3821, 1.8827);
            animation-timing-function: cubic-bezier(0.1265, 0.4155, 0.3821, 1.8827);
    transform: rotate(-2.61deg);
  }
  95% {
    -webkit-animation-timing-function: cubic-bezier(0.5727, 1.3521, 0.0229, 3.0356);
            animation-timing-function: cubic-bezier(0.5727, 1.3521, 0.0229, 3.0356);
    transform: rotate(-4.185deg);
  }
  98% {
    -webkit-animation-timing-function: cubic-bezier(0.4531, -1.3593, 0.757, 0.0281);
            animation-timing-function: cubic-bezier(0.4531, -1.3593, 0.757, 0.0281);
    transform: rotate(-2.565deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes ld-tick-alt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.0637, 0.1569, -0.0154, 0.8727);
            animation-timing-function: cubic-bezier(0.0637, 0.1569, -0.0154, 0.8727);
    transform: rotate(0);
  }
  22% {
    -webkit-animation-timing-function: cubic-bezier(0.7634, 0.2713, 0.7818, 0.6832);
            animation-timing-function: cubic-bezier(0.7634, 0.2713, 0.7818, 0.6832);
    transform: rotate(-44.865deg);
  }
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.0599, 0.1266, 0.2372, 1.029);
            animation-timing-function: cubic-bezier(0.0599, 0.1266, 0.2372, 1.029);
    transform: rotate(-7.515deg);
  }
  56% {
    -webkit-animation-timing-function: cubic-bezier(0.6353, 0.3049, 0.6792, 0.6671);
            animation-timing-function: cubic-bezier(0.6353, 0.3049, 0.6792, 0.6671);
    transform: rotate(-25.29deg);
  }
  68% {
    -webkit-animation-timing-function: cubic-bezier(0.0513, 0.1148, 0.3085, 1.1548);
            animation-timing-function: cubic-bezier(0.0513, 0.1148, 0.3085, 1.1548);
    transform: rotate(-5.13deg);
  }
  76% {
    -webkit-animation-timing-function: cubic-bezier(0.467, 0.2881, 0.3593, 0.7819);
            animation-timing-function: cubic-bezier(0.467, 0.2881, 0.3593, 0.7819);
    transform: rotate(-14.175deg);
  }
  83% {
    -webkit-animation-timing-function: cubic-bezier(0.0632, 0.1615, 0.3539, 1.4565);
            animation-timing-function: cubic-bezier(0.0632, 0.1615, 0.3539, 1.4565);
    transform: rotate(-3.6deg);
  }
  88% {
    -webkit-animation-timing-function: cubic-bezier(0.3563, 0.3125, 0.5387, 1.6475);
            animation-timing-function: cubic-bezier(0.3563, 0.3125, 0.5387, 1.6475);
    transform: rotate(-7.74deg);
  }
  92% {
    -webkit-animation-timing-function: cubic-bezier(0.1265, 0.4155, 0.3821, 1.8827);
            animation-timing-function: cubic-bezier(0.1265, 0.4155, 0.3821, 1.8827);
    transform: rotate(-2.61deg);
  }
  95% {
    -webkit-animation-timing-function: cubic-bezier(0.5727, 1.3521, 0.0229, 3.0356);
            animation-timing-function: cubic-bezier(0.5727, 1.3521, 0.0229, 3.0356);
    transform: rotate(-4.185deg);
  }
  98% {
    -webkit-animation-timing-function: cubic-bezier(0.4531, -1.3593, 0.757, 0.0281);
            animation-timing-function: cubic-bezier(0.4531, -1.3593, 0.757, 0.0281);
    transform: rotate(-2.565deg);
  }
  100% {
    transform: rotate(0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-tick-alt {
  -webkit-animation: ld-tick-alt 1s infinite linear;
          animation: ld-tick-alt 1s infinite linear;
}

@-webkit-keyframes ld-jump {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.0637, 0.1569, -0.0154, 0.8727);
            animation-timing-function: cubic-bezier(0.0637, 0.1569, -0.0154, 0.8727);
    transform: translate(0, 0);
  }
  22% {
    -webkit-animation-timing-function: cubic-bezier(0.7634, 0.2713, 0.7818, 0.6832);
            animation-timing-function: cubic-bezier(0.7634, 0.2713, 0.7818, 0.6832);
    transform: translate(0, -13.958%);
  }
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.0599, 0.1266, 0.2372, 1.029);
            animation-timing-function: cubic-bezier(0.0599, 0.1266, 0.2372, 1.029);
    transform: translate(0, -2.338%);
  }
  56% {
    -webkit-animation-timing-function: cubic-bezier(0.6353, 0.3049, 0.6792, 0.6671);
            animation-timing-function: cubic-bezier(0.6353, 0.3049, 0.6792, 0.6671);
    transform: translate(0, -7.868%);
  }
  68% {
    -webkit-animation-timing-function: cubic-bezier(0.0513, 0.1148, 0.3085, 1.1548);
            animation-timing-function: cubic-bezier(0.0513, 0.1148, 0.3085, 1.1548);
    transform: translate(0, -1.596%);
  }
  76% {
    -webkit-animation-timing-function: cubic-bezier(0.467, 0.2881, 0.3593, 0.7819);
            animation-timing-function: cubic-bezier(0.467, 0.2881, 0.3593, 0.7819);
    transform: translate(0, -4.41%);
  }
  83% {
    -webkit-animation-timing-function: cubic-bezier(0.0632, 0.1615, 0.3539, 1.4565);
            animation-timing-function: cubic-bezier(0.0632, 0.1615, 0.3539, 1.4565);
    transform: translate(0, -1.12%);
  }
  88% {
    -webkit-animation-timing-function: cubic-bezier(0.3563, 0.3125, 0.5387, 1.6475);
            animation-timing-function: cubic-bezier(0.3563, 0.3125, 0.5387, 1.6475);
    transform: translate(0, -2.408%);
  }
  92% {
    -webkit-animation-timing-function: cubic-bezier(0.1265, 0.4155, 0.3821, 1.8827);
            animation-timing-function: cubic-bezier(0.1265, 0.4155, 0.3821, 1.8827);
    transform: translate(0, -0.812%);
  }
  95% {
    -webkit-animation-timing-function: cubic-bezier(0.5727, 1.3521, 0.0229, 3.0356);
            animation-timing-function: cubic-bezier(0.5727, 1.3521, 0.0229, 3.0356);
    transform: translate(0, -1.302%);
  }
  98% {
    -webkit-animation-timing-function: cubic-bezier(0.4531, -1.3593, 0.757, 0.0281);
            animation-timing-function: cubic-bezier(0.4531, -1.3593, 0.757, 0.0281);
    transform: translate(0, -0.798%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes ld-jump {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.0637, 0.1569, -0.0154, 0.8727);
            animation-timing-function: cubic-bezier(0.0637, 0.1569, -0.0154, 0.8727);
    transform: translate(0, 0);
  }
  22% {
    -webkit-animation-timing-function: cubic-bezier(0.7634, 0.2713, 0.7818, 0.6832);
            animation-timing-function: cubic-bezier(0.7634, 0.2713, 0.7818, 0.6832);
    transform: translate(0, -13.958%);
  }
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.0599, 0.1266, 0.2372, 1.029);
            animation-timing-function: cubic-bezier(0.0599, 0.1266, 0.2372, 1.029);
    transform: translate(0, -2.338%);
  }
  56% {
    -webkit-animation-timing-function: cubic-bezier(0.6353, 0.3049, 0.6792, 0.6671);
            animation-timing-function: cubic-bezier(0.6353, 0.3049, 0.6792, 0.6671);
    transform: translate(0, -7.868%);
  }
  68% {
    -webkit-animation-timing-function: cubic-bezier(0.0513, 0.1148, 0.3085, 1.1548);
            animation-timing-function: cubic-bezier(0.0513, 0.1148, 0.3085, 1.1548);
    transform: translate(0, -1.596%);
  }
  76% {
    -webkit-animation-timing-function: cubic-bezier(0.467, 0.2881, 0.3593, 0.7819);
            animation-timing-function: cubic-bezier(0.467, 0.2881, 0.3593, 0.7819);
    transform: translate(0, -4.41%);
  }
  83% {
    -webkit-animation-timing-function: cubic-bezier(0.0632, 0.1615, 0.3539, 1.4565);
            animation-timing-function: cubic-bezier(0.0632, 0.1615, 0.3539, 1.4565);
    transform: translate(0, -1.12%);
  }
  88% {
    -webkit-animation-timing-function: cubic-bezier(0.3563, 0.3125, 0.5387, 1.6475);
            animation-timing-function: cubic-bezier(0.3563, 0.3125, 0.5387, 1.6475);
    transform: translate(0, -2.408%);
  }
  92% {
    -webkit-animation-timing-function: cubic-bezier(0.1265, 0.4155, 0.3821, 1.8827);
            animation-timing-function: cubic-bezier(0.1265, 0.4155, 0.3821, 1.8827);
    transform: translate(0, -0.812%);
  }
  95% {
    -webkit-animation-timing-function: cubic-bezier(0.5727, 1.3521, 0.0229, 3.0356);
            animation-timing-function: cubic-bezier(0.5727, 1.3521, 0.0229, 3.0356);
    transform: translate(0, -1.302%);
  }
  98% {
    -webkit-animation-timing-function: cubic-bezier(0.4531, -1.3593, 0.757, 0.0281);
            animation-timing-function: cubic-bezier(0.4531, -1.3593, 0.757, 0.0281);
    transform: translate(0, -0.798%);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-jump {
  -webkit-animation: ld-jump 1s infinite linear;
          animation: ld-jump 1s infinite linear;
}

@-webkit-keyframes ld-bounce {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.138, 0.2541, 0.2177, 0.8747);
            animation-timing-function: cubic-bezier(0.138, 0.2541, 0.2177, 0.8747);
    transform: translate(0, 0) scaleY(1);
  }
  37% {
    -webkit-animation-timing-function: cubic-bezier(0.7679, 0.1817, 0.8401, 0.7167);
            animation-timing-function: cubic-bezier(0.7679, 0.1817, 0.8401, 0.7167);
    transform: translate(0, -39.96%) scaleY(1);
  }
  72.2% {
    -webkit-animation-timing-function: cubic-bezier(0.1045, 0.2026, 0.2224, 0.9608);
            animation-timing-function: cubic-bezier(0.1045, 0.2026, 0.2224, 0.9608);
    transform: translate(0, 0) scaleY(1);
  }
  87.2% {
    -webkit-animation-timing-function: cubic-bezier(0.7463, 0.2314, 0.8159, 0.6941);
            animation-timing-function: cubic-bezier(0.7463, 0.2314, 0.8159, 0.6941);
    transform: translate(0, 19.85%) scaleY(0.603);
  }
  100% {
    transform: translate(0, 0) scaleY(1);
  }
}

@keyframes ld-bounce {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.138, 0.2541, 0.2177, 0.8747);
            animation-timing-function: cubic-bezier(0.138, 0.2541, 0.2177, 0.8747);
    transform: translate(0, 0) scaleY(1);
  }
  37% {
    -webkit-animation-timing-function: cubic-bezier(0.7679, 0.1817, 0.8401, 0.7167);
            animation-timing-function: cubic-bezier(0.7679, 0.1817, 0.8401, 0.7167);
    transform: translate(0, -39.96%) scaleY(1);
  }
  72.2% {
    -webkit-animation-timing-function: cubic-bezier(0.1045, 0.2026, 0.2224, 0.9608);
            animation-timing-function: cubic-bezier(0.1045, 0.2026, 0.2224, 0.9608);
    transform: translate(0, 0) scaleY(1);
  }
  87.2% {
    -webkit-animation-timing-function: cubic-bezier(0.7463, 0.2314, 0.8159, 0.6941);
            animation-timing-function: cubic-bezier(0.7463, 0.2314, 0.8159, 0.6941);
    transform: translate(0, 19.85%) scaleY(0.603);
  }
  100% {
    transform: translate(0, 0) scaleY(1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-bounce {
  -webkit-animation: ld-bounce 1s infinite linear;
          animation: ld-bounce 1s infinite linear;
}

@-webkit-keyframes ld-clock {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(0);
  }
  8.33333% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(30deg);
  }
  16.66667% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(60deg);
  }
  25% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(90deg);
  }
  33.33333% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(120deg);
  }
  41.66667% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(150deg);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(180deg);
  }
  58.33333% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(210deg);
  }
  66.66667% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(240deg);
  }
  75% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(270deg);
  }
  83.33333% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(300deg);
  }
  91.66667% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(330deg);
  }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(360deg);
  }
}

@keyframes ld-clock {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(0);
  }
  8.33333% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(30deg);
  }
  16.66667% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(60deg);
  }
  25% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(90deg);
  }
  33.33333% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(120deg);
  }
  41.66667% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(150deg);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(180deg);
  }
  58.33333% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(210deg);
  }
  66.66667% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(240deg);
  }
  75% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(270deg);
  }
  83.33333% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(300deg);
  }
  91.66667% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(330deg);
  }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
            animation-timing-function: cubic-bezier(0, 0.7, 0.3, 1);
    transform: rotate(360deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-clock {
  -webkit-animation: ld-clock 12s infinite linear;
          animation: ld-clock 12s infinite linear;
}

@-webkit-keyframes ld-fade {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.2057, 0.573, 0.3723, 0.9184);
            animation-timing-function: cubic-bezier(0.2057, 0.573, 0.3723, 0.9184);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ld-fade {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.2057, 0.573, 0.3723, 0.9184);
            animation-timing-function: cubic-bezier(0.2057, 0.573, 0.3723, 0.9184);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-fade {
  -webkit-animation: ld-fade 1s infinite linear;
          animation: ld-fade 1s infinite linear;
}

@-webkit-keyframes ld-flip {
  0%, 25%, 50%, 75%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
            animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
  }
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(-1, 1);
  }
  50% {
    transform: scale(-1, -1);
  }
  75% {
    transform: scale(1, -1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes ld-flip {
  0%, 25%, 50%, 75%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
            animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
  }
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(-1, 1);
  }
  50% {
    transform: scale(-1, -1);
  }
  75% {
    transform: scale(1, -1);
  }
  100% {
    transform: scale(1, 1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-flip {
  -webkit-animation: ld-flip 1s infinite linear;
          animation: ld-flip 1s infinite linear;
}

@-webkit-keyframes ld-float {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
            animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
    transform: translate(0, 0) scale(0.7);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
    transform: translate(0, -15%) scale(1);
    box-shadow: 0 23% 5% -15% rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: translate(0, 0) scale(0.7);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  }
}

@keyframes ld-float {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
            animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
    transform: translate(0, 0) scale(0.7);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
    transform: translate(0, -15%) scale(1);
    box-shadow: 0 23% 5% -15% rgba(0, 0, 0, 0.2);
  }
  100% {
    transform: translate(0, 0) scale(0.7);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-float {
  -webkit-animation: ld-float 1s infinite linear;
          animation: ld-float 1s infinite linear;
}

@-webkit-keyframes ld-heartbeat {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1678, 0.6042, 0.5465, 3.0859);
            animation-timing-function: cubic-bezier(0.1678, 0.6042, 0.5465, 3.0859);
    transform: scale(1.3);
  }
  30% {
    -webkit-animation-timing-function: cubic-bezier(0.3206, 0.3435, 0.6825, 0.6598);
            animation-timing-function: cubic-bezier(0.3206, 0.3435, 0.6825, 0.6598);
    transform: scale(1.15);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.2811, 0.5061, 0.5347, 0.909);
            animation-timing-function: cubic-bezier(0.2811, 0.5061, 0.5347, 0.909);
    transform: scale(1.1458);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes ld-heartbeat {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1678, 0.6042, 0.5465, 3.0859);
            animation-timing-function: cubic-bezier(0.1678, 0.6042, 0.5465, 3.0859);
    transform: scale(1.3);
  }
  30% {
    -webkit-animation-timing-function: cubic-bezier(0.3206, 0.3435, 0.6825, 0.6598);
            animation-timing-function: cubic-bezier(0.3206, 0.3435, 0.6825, 0.6598);
    transform: scale(1.15);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.2811, 0.5061, 0.5347, 0.909);
            animation-timing-function: cubic-bezier(0.2811, 0.5061, 0.5347, 0.909);
    transform: scale(1.1458);
  }
  100% {
    transform: scale(1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-heartbeat {
  -webkit-animation: ld-heartbeat 1s infinite linear;
          animation: ld-heartbeat 1s infinite linear;
}

@-webkit-keyframes ld-hit {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
            animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    transform: scale(0) translate(0, 0) skewX(0);
    opacity: 1;
  }
  20% {
    transform: scale(1) translate(0, 0) skewX(20deg);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 0.4);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 0.4);
    transform: scale(1) translate(0, 0) skewX(20deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1) translate(0, 200%) skewX(20deg);
    opacity: 0;
  }
}

@keyframes ld-hit {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
            animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    transform: scale(0) translate(0, 0) skewX(0);
    opacity: 1;
  }
  20% {
    transform: scale(1) translate(0, 0) skewX(20deg);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.6, 0, 1, 0.4);
            animation-timing-function: cubic-bezier(0.6, 0, 1, 0.4);
    transform: scale(1) translate(0, 0) skewX(20deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1) translate(0, 200%) skewX(20deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-hit {
  -webkit-animation: ld-hit 2s infinite linear;
          animation: ld-hit 2s infinite linear;
}

@-webkit-keyframes ld-move-ltr {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(80%, 0);
  }
  49.99999% {
    transform: translate(99.99998%, 0);
  }
  50% {
    transform: translate(-100%, 0);
  }
  50.00001% {
    transform: translate(-99.99998%, 0);
  }
  60% {
    transform: translate(-80%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes ld-move-ltr {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(80%, 0);
  }
  49.99999% {
    transform: translate(99.99998%, 0);
  }
  50% {
    transform: translate(-100%, 0);
  }
  50.00001% {
    transform: translate(-99.99998%, 0);
  }
  60% {
    transform: translate(-80%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-move-ltr {
  -webkit-animation: ld-move-ltr 1s infinite linear;
          animation: ld-move-ltr 1s infinite linear;
}

@-webkit-keyframes ld-move-rtl {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(-80%, 0);
  }
  49.99999% {
    transform: translate(-99.99998%, 0);
  }
  50% {
    transform: translate(100%, 0);
  }
  50.00001% {
    transform: translate(99.99998%, 0);
  }
  60% {
    transform: translate(80%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes ld-move-rtl {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(-80%, 0);
  }
  49.99999% {
    transform: translate(-99.99998%, 0);
  }
  50% {
    transform: translate(100%, 0);
  }
  50.00001% {
    transform: translate(99.99998%, 0);
  }
  60% {
    transform: translate(80%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-move-rtl {
  -webkit-animation: ld-move-rtl 1s infinite linear;
          animation: ld-move-rtl 1s infinite linear;
}

@-webkit-keyframes ld-move-ttb {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(0, 80%);
  }
  49.99999% {
    transform: translate(0, 99.99998%);
  }
  50% {
    transform: translate(0, -100%);
  }
  50.00001% {
    transform: translate(0, -99.99998%);
  }
  60% {
    transform: translate(0, -80%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes ld-move-ttb {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(0, 80%);
  }
  49.99999% {
    transform: translate(0, 99.99998%);
  }
  50% {
    transform: translate(0, -100%);
  }
  50.00001% {
    transform: translate(0, -99.99998%);
  }
  60% {
    transform: translate(0, -80%);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-move-ttb {
  -webkit-animation: ld-move-ttb 1s infinite linear;
          animation: ld-move-ttb 1s infinite linear;
}

@-webkit-keyframes ld-move-btt {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(0, -80%);
  }
  49.99999% {
    transform: translate(0, -99.99998%);
  }
  50% {
    transform: translate(0, 100%);
  }
  50.00001% {
    transform: translate(0, 99.99998%);
  }
  60% {
    transform: translate(0, 80%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes ld-move-btt {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(0, -80%);
  }
  49.99999% {
    transform: translate(0, -99.99998%);
  }
  50% {
    transform: translate(0, 100%);
  }
  50.00001% {
    transform: translate(0, 99.99998%);
  }
  60% {
    transform: translate(0, 80%);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-move-btt {
  -webkit-animation: ld-move-btt 1s infinite linear;
          animation: ld-move-btt 1s infinite linear;
}

@-webkit-keyframes ld-move-fade-ltr {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(80%, 0);
    opacity: 1;
  }
  49.99999% {
    transform: translate(99.99998%, 0);
    opacity: 0;
  }
  50% {
    transform: translate(-100%, 0);
    opacity: 0;
  }
  50.00001% {
    transform: translate(-99.99998%, 0);
    opacity: 0;
  }
  60% {
    transform: translate(-80%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes ld-move-fade-ltr {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(80%, 0);
    opacity: 1;
  }
  49.99999% {
    transform: translate(99.99998%, 0);
    opacity: 0;
  }
  50% {
    transform: translate(-100%, 0);
    opacity: 0;
  }
  50.00001% {
    transform: translate(-99.99998%, 0);
    opacity: 0;
  }
  60% {
    transform: translate(-80%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-move-fade-ltr {
  -webkit-animation: ld-move-fade-ltr 1s infinite linear;
          animation: ld-move-fade-ltr 1s infinite linear;
}

@-webkit-keyframes ld-move-fade-rtl {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(-80%, 0);
    opacity: 1;
  }
  49.99999% {
    transform: translate(-99.99998%, 0);
    opacity: 0;
  }
  50% {
    transform: translate(100%, 0);
    opacity: 0;
  }
  50.00001% {
    transform: translate(99.99998%, 0);
    opacity: 0;
  }
  60% {
    transform: translate(80%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes ld-move-fade-rtl {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(-80%, 0);
    opacity: 1;
  }
  49.99999% {
    transform: translate(-99.99998%, 0);
    opacity: 0;
  }
  50% {
    transform: translate(100%, 0);
    opacity: 0;
  }
  50.00001% {
    transform: translate(99.99998%, 0);
    opacity: 0;
  }
  60% {
    transform: translate(80%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-move-fade-rtl {
  -webkit-animation: ld-move-fade-rtl 1s infinite linear;
          animation: ld-move-fade-rtl 1s infinite linear;
}

@-webkit-keyframes ld-move-fade-ttb {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(0, 80%);
    opacity: 1;
  }
  49.99999% {
    transform: translate(0, 99.99998%);
    opacity: 0;
  }
  50% {
    transform: translate(0, -100%);
    opacity: 0;
  }
  50.00001% {
    transform: translate(0, -99.99998%);
    opacity: 0;
  }
  60% {
    transform: translate(0, -80%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes ld-move-fade-ttb {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(0, 80%);
    opacity: 1;
  }
  49.99999% {
    transform: translate(0, 99.99998%);
    opacity: 0;
  }
  50% {
    transform: translate(0, -100%);
    opacity: 0;
  }
  50.00001% {
    transform: translate(0, -99.99998%);
    opacity: 0;
  }
  60% {
    transform: translate(0, -80%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-move-fade-ttb {
  -webkit-animation: ld-move-fade-ttb 1s infinite linear;
          animation: ld-move-fade-ttb 1s infinite linear;
}

@-webkit-keyframes ld-move-fade-btt {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(0, -80%);
    opacity: 1;
  }
  49.99999% {
    transform: translate(0, -99.99998%);
    opacity: 0;
  }
  50% {
    transform: translate(0, 100%);
    opacity: 0;
  }
  50.00001% {
    transform: translate(0, 99.99998%);
    opacity: 0;
  }
  60% {
    transform: translate(0, 80%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes ld-move-fade-btt {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    transform: translate(0, -80%);
    opacity: 1;
  }
  49.99999% {
    transform: translate(0, -99.99998%);
    opacity: 0;
  }
  50% {
    transform: translate(0, 100%);
    opacity: 0;
  }
  50.00001% {
    transform: translate(0, 99.99998%);
    opacity: 0;
  }
  60% {
    transform: translate(0, 80%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-move-fade-btt {
  -webkit-animation: ld-move-fade-btt 1s infinite linear;
          animation: ld-move-fade-btt 1s infinite linear;
}

@-webkit-keyframes ld-orbit {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(0, -60%) rotate(0);
  }
  8.33333% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(30%, -51.96152%) rotate(30deg);
  }
  16.66667% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(51.96152%, -30%) rotate(60deg);
  }
  25% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(60%, 0) rotate(90deg);
  }
  33.33333% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(51.96152%, 30%) rotate(120deg);
  }
  41.66667% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(30%, 51.96152%) rotate(150deg);
  }
  50% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(0, 60%) rotate(180deg);
  }
  58.33333% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-30%, 51.96152%) rotate(210deg);
  }
  66.66667% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-51.96152%, 30%) rotate(240deg);
  }
  75% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-60%, 0) rotate(270deg);
  }
  83.33333% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-51.96152%, -30%) rotate(300deg);
  }
  91.66667% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-30%, -51.96152%) rotate(330deg);
  }
  100% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(0, -60%) rotate(360deg);
  }
}

@keyframes ld-orbit {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(0, -60%) rotate(0);
  }
  8.33333% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(30%, -51.96152%) rotate(30deg);
  }
  16.66667% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(51.96152%, -30%) rotate(60deg);
  }
  25% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(60%, 0) rotate(90deg);
  }
  33.33333% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(51.96152%, 30%) rotate(120deg);
  }
  41.66667% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(30%, 51.96152%) rotate(150deg);
  }
  50% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(0, 60%) rotate(180deg);
  }
  58.33333% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-30%, 51.96152%) rotate(210deg);
  }
  66.66667% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-51.96152%, 30%) rotate(240deg);
  }
  75% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-60%, 0) rotate(270deg);
  }
  83.33333% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-51.96152%, -30%) rotate(300deg);
  }
  91.66667% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(-30%, -51.96152%) rotate(330deg);
  }
  100% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    transform: translate(0, -60%) rotate(360deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-orbit {
  -webkit-animation: ld-orbit 1s infinite linear;
          animation: ld-orbit 1s infinite linear;
}

@-webkit-keyframes ld-breath {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    transform: scale(0.91);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    transform: scale(1.02994);
  }
  100% {
    transform: scale(0.91);
  }
}

@keyframes ld-breath {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    transform: scale(0.91);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    transform: scale(1.02994);
  }
  100% {
    transform: scale(0.91);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-breath {
  -webkit-animation: ld-breath 1s infinite linear;
          animation: ld-breath 1s infinite linear;
}

@-webkit-keyframes ld-dim {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    opacity: .9995;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ld-dim {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    opacity: .9995;
  }
  100% {
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-dim {
  -webkit-animation: ld-dim 1s infinite linear;
          animation: ld-dim 1s infinite linear;
}

@-webkit-keyframes ld-metronome {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.7806, 0.0715, 0.8998, 0.731);
            animation-timing-function: cubic-bezier(0.7806, 0.0715, 0.8998, 0.731);
    transform: translate(-10%) rotate(-20deg);
  }
  17.5% {
    -webkit-animation-timing-function: cubic-bezier(0.484, 0.3308, 0.6853, 0.6667);
            animation-timing-function: cubic-bezier(0.484, 0.3308, 0.6853, 0.6667);
    transform: translate(-6.18%) rotate(-12.36deg);
  }
  27.6% {
    -webkit-animation-timing-function: cubic-bezier(0.0676, 0.1836, 0.0518, 0.9433);
            animation-timing-function: cubic-bezier(0.0676, 0.1836, 0.0518, 0.9433);
    transform: translate(2.48%) rotate(4.96deg);
  }
  50.1% {
    -webkit-animation-timing-function: cubic-bezier(0.7773, 0.0708, 0.9008, 0.735);
            animation-timing-function: cubic-bezier(0.7773, 0.0708, 0.9008, 0.735);
    transform: translate(10%) rotate(20deg);
  }
  67.6% {
    -webkit-animation-timing-function: cubic-bezier(0.4888, 0.331, 0.6153, 0.6674);
            animation-timing-function: cubic-bezier(0.4888, 0.331, 0.6153, 0.6674);
    transform: translate(6.16%) rotate(12.32deg);
  }
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.0801, 0.2206, 0.1357, 0.9363);
            animation-timing-function: cubic-bezier(0.0801, 0.2206, 0.1357, 0.9363);
    transform: translate(-4.57%) rotate(-9.14deg);
  }
  100% {
    transform: translate(-10%) rotate(-20deg);
  }
}

@keyframes ld-metronome {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.7806, 0.0715, 0.8998, 0.731);
            animation-timing-function: cubic-bezier(0.7806, 0.0715, 0.8998, 0.731);
    transform: translate(-10%) rotate(-20deg);
  }
  17.5% {
    -webkit-animation-timing-function: cubic-bezier(0.484, 0.3308, 0.6853, 0.6667);
            animation-timing-function: cubic-bezier(0.484, 0.3308, 0.6853, 0.6667);
    transform: translate(-6.18%) rotate(-12.36deg);
  }
  27.6% {
    -webkit-animation-timing-function: cubic-bezier(0.0676, 0.1836, 0.0518, 0.9433);
            animation-timing-function: cubic-bezier(0.0676, 0.1836, 0.0518, 0.9433);
    transform: translate(2.48%) rotate(4.96deg);
  }
  50.1% {
    -webkit-animation-timing-function: cubic-bezier(0.7773, 0.0708, 0.9008, 0.735);
            animation-timing-function: cubic-bezier(0.7773, 0.0708, 0.9008, 0.735);
    transform: translate(10%) rotate(20deg);
  }
  67.6% {
    -webkit-animation-timing-function: cubic-bezier(0.4888, 0.331, 0.6153, 0.6674);
            animation-timing-function: cubic-bezier(0.4888, 0.331, 0.6153, 0.6674);
    transform: translate(6.16%) rotate(12.32deg);
  }
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.0801, 0.2206, 0.1357, 0.9363);
            animation-timing-function: cubic-bezier(0.0801, 0.2206, 0.1357, 0.9363);
    transform: translate(-4.57%) rotate(-9.14deg);
  }
  100% {
    transform: translate(-10%) rotate(-20deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-metronome {
  -webkit-animation: ld-metronome 1s infinite linear;
          animation: ld-metronome 1s infinite linear;
}

@-webkit-keyframes ld-swing {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    transform: rotate(-30deg);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    transform: rotate(29.97deg);
  }
  100% {
    transform: rotate(-30deg);
  }
}

@keyframes ld-swing {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    transform: rotate(-30deg);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    transform: rotate(29.97deg);
  }
  100% {
    transform: rotate(-30deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-swing {
  -webkit-animation: ld-swing 1s infinite linear;
          animation: ld-swing 1s infinite linear;
}

@-webkit-keyframes ld-wander-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    transform: translate(0, -10%);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    transform: translate(0, 9.99%);
  }
  100% {
    transform: translate(0, -10%);
  }
}

@keyframes ld-wander-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    transform: translate(0, -10%);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    transform: translate(0, 9.99%);
  }
  100% {
    transform: translate(0, -10%);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-wander-v {
  -webkit-animation: ld-wander-v 1s infinite linear;
          animation: ld-wander-v 1s infinite linear;
}

@-webkit-keyframes ld-wander-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    transform: translate(-10%, 0);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    transform: translate(9.99%, 0);
  }
  100% {
    transform: translate(-10%, 0);
  }
}

@keyframes ld-wander-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
            animation-timing-function: cubic-bezier(0.9647, 0.2413, -0.0705, 0.7911);
    transform: translate(-10%, 0);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
            animation-timing-function: cubic-bezier(0.9226, 0.2631, -0.0308, 0.7628);
    transform: translate(9.99%, 0);
  }
  100% {
    transform: translate(-10%, 0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-wander-h, .ld.ld-wander {
  -webkit-animation: ld-wander-h 1s infinite linear;
          animation: ld-wander-h 1s infinite linear;
}

@-webkit-keyframes ld-pulse {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.3124, 0.6668);
            animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.3124, 0.6668);
    transform: scale(0.85);
  }
  0.5% {
    -webkit-animation-timing-function: cubic-bezier(0.0233, -0.3865, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.0233, -0.3865, 0.6667, 0.6667);
    transform: scale(1.141);
  }
  1.5% {
    -webkit-animation-timing-function: cubic-bezier(0.2893, 0.354, 0.6158, 0.6958);
            animation-timing-function: cubic-bezier(0.2893, 0.354, 0.6158, 0.6958);
    transform: scale(1.124);
  }
  11% {
    -webkit-animation-timing-function: cubic-bezier(0.2861, 0.4196, 0.6215, 0.7476);
            animation-timing-function: cubic-bezier(0.2861, 0.4196, 0.6215, 0.7476);
    transform: scale(0.992);
  }
  25% {
    -webkit-animation-timing-function: cubic-bezier(0.0793, 0.2627, 0.9972, 1.5511);
            animation-timing-function: cubic-bezier(0.0793, 0.2627, 0.9972, 1.5511);
    transform: scale(0.887);
  }
  49.5% {
    -webkit-animation-timing-function: cubic-bezier(0.6664, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.6664, 0.3332, 0.6667, 0.6667);
    transform: scale(0.85);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.3522, 1, 0.6686);
            animation-timing-function: cubic-bezier(0, 0.3522, 1, 0.6686);
    transform: scale(1.15);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.2668, 0.4036, 0.554, 0.7657);
            animation-timing-function: cubic-bezier(0.2668, 0.4036, 0.554, 0.7657);
    transform: scale(1.132);
  }
  73.5% {
    -webkit-animation-timing-function: cubic-bezier(0.2997, 1.0028, 0.6671, 1);
            animation-timing-function: cubic-bezier(0.2997, 1.0028, 0.6671, 1);
    transform: scale(0.894);
  }
  100% {
    transform: scale(0.85);
  }
}

@keyframes ld-pulse {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.3124, 0.6668);
            animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.3124, 0.6668);
    transform: scale(0.85);
  }
  0.5% {
    -webkit-animation-timing-function: cubic-bezier(0.0233, -0.3865, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.0233, -0.3865, 0.6667, 0.6667);
    transform: scale(1.141);
  }
  1.5% {
    -webkit-animation-timing-function: cubic-bezier(0.2893, 0.354, 0.6158, 0.6958);
            animation-timing-function: cubic-bezier(0.2893, 0.354, 0.6158, 0.6958);
    transform: scale(1.124);
  }
  11% {
    -webkit-animation-timing-function: cubic-bezier(0.2861, 0.4196, 0.6215, 0.7476);
            animation-timing-function: cubic-bezier(0.2861, 0.4196, 0.6215, 0.7476);
    transform: scale(0.992);
  }
  25% {
    -webkit-animation-timing-function: cubic-bezier(0.0793, 0.2627, 0.9972, 1.5511);
            animation-timing-function: cubic-bezier(0.0793, 0.2627, 0.9972, 1.5511);
    transform: scale(0.887);
  }
  49.5% {
    -webkit-animation-timing-function: cubic-bezier(0.6664, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.6664, 0.3332, 0.6667, 0.6667);
    transform: scale(0.85);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.3522, 1, 0.6686);
            animation-timing-function: cubic-bezier(0, 0.3522, 1, 0.6686);
    transform: scale(1.15);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.2668, 0.4036, 0.554, 0.7657);
            animation-timing-function: cubic-bezier(0.2668, 0.4036, 0.554, 0.7657);
    transform: scale(1.132);
  }
  73.5% {
    -webkit-animation-timing-function: cubic-bezier(0.2997, 1.0028, 0.6671, 1);
            animation-timing-function: cubic-bezier(0.2997, 1.0028, 0.6671, 1);
    transform: scale(0.894);
  }
  100% {
    transform: scale(0.85);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-pulse {
  -webkit-animation: ld-pulse 1s infinite linear;
          animation: ld-pulse 1s infinite linear;
}

@-webkit-keyframes ld-jingle {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.146, 0.2111, 0.5902, 1.3204);
            animation-timing-function: cubic-bezier(0.146, 0.2111, 0.5902, 1.3204);
    transform: rotate(0);
  }
  11% {
    -webkit-animation-timing-function: cubic-bezier(0.1079, 0.1992, -0.6462, 0.828);
            animation-timing-function: cubic-bezier(0.1079, 0.1992, -0.6462, 0.828);
    transform: rotate(7.61deg);
  }
  23% {
    -webkit-animation-timing-function: cubic-bezier(0.0504, 0.0951, 0.0163, 0.9677);
            animation-timing-function: cubic-bezier(0.0504, 0.0951, 0.0163, 0.9677);
    transform: rotate(-5.79deg);
  }
  36% {
    -webkit-animation-timing-function: cubic-bezier(0.0475, 0.0921, 0.3134, 1.0455);
            animation-timing-function: cubic-bezier(0.0475, 0.0921, 0.3134, 1.0455);
    transform: rotate(3.35deg);
  }
  49% {
    -webkit-animation-timing-function: cubic-bezier(0.0789, 0.1565, 0.3413, 1.0972);
            animation-timing-function: cubic-bezier(0.0789, 0.1565, 0.3413, 1.0972);
    transform: rotate(-1.93deg);
  }
  62% {
    -webkit-animation-timing-function: cubic-bezier(0.141, 0.2885, 0.406, 1.1519);
            animation-timing-function: cubic-bezier(0.141, 0.2885, 0.406, 1.1519);
    transform: rotate(1.12deg);
  }
  75% {
    -webkit-animation-timing-function: cubic-bezier(0.226, 0.4698, 0.5031, 1.1722);
            animation-timing-function: cubic-bezier(0.226, 0.4698, 0.5031, 1.1722);
    transform: rotate(-0.64deg);
  }
  88% {
    -webkit-animation-timing-function: cubic-bezier(0.3121, 0.5521, 0.5655, 0.8997);
            animation-timing-function: cubic-bezier(0.3121, 0.5521, 0.5655, 0.8997);
    transform: rotate(0.37deg);
  }
  100% {
    transform: rotate(-0.28deg);
  }
}

@keyframes ld-jingle {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.146, 0.2111, 0.5902, 1.3204);
            animation-timing-function: cubic-bezier(0.146, 0.2111, 0.5902, 1.3204);
    transform: rotate(0);
  }
  11% {
    -webkit-animation-timing-function: cubic-bezier(0.1079, 0.1992, -0.6462, 0.828);
            animation-timing-function: cubic-bezier(0.1079, 0.1992, -0.6462, 0.828);
    transform: rotate(7.61deg);
  }
  23% {
    -webkit-animation-timing-function: cubic-bezier(0.0504, 0.0951, 0.0163, 0.9677);
            animation-timing-function: cubic-bezier(0.0504, 0.0951, 0.0163, 0.9677);
    transform: rotate(-5.79deg);
  }
  36% {
    -webkit-animation-timing-function: cubic-bezier(0.0475, 0.0921, 0.3134, 1.0455);
            animation-timing-function: cubic-bezier(0.0475, 0.0921, 0.3134, 1.0455);
    transform: rotate(3.35deg);
  }
  49% {
    -webkit-animation-timing-function: cubic-bezier(0.0789, 0.1565, 0.3413, 1.0972);
            animation-timing-function: cubic-bezier(0.0789, 0.1565, 0.3413, 1.0972);
    transform: rotate(-1.93deg);
  }
  62% {
    -webkit-animation-timing-function: cubic-bezier(0.141, 0.2885, 0.406, 1.1519);
            animation-timing-function: cubic-bezier(0.141, 0.2885, 0.406, 1.1519);
    transform: rotate(1.12deg);
  }
  75% {
    -webkit-animation-timing-function: cubic-bezier(0.226, 0.4698, 0.5031, 1.1722);
            animation-timing-function: cubic-bezier(0.226, 0.4698, 0.5031, 1.1722);
    transform: rotate(-0.64deg);
  }
  88% {
    -webkit-animation-timing-function: cubic-bezier(0.3121, 0.5521, 0.5655, 0.8997);
            animation-timing-function: cubic-bezier(0.3121, 0.5521, 0.5655, 0.8997);
    transform: rotate(0.37deg);
  }
  100% {
    transform: rotate(-0.28deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-jingle {
  -webkit-animation: ld-jingle 1s infinite linear;
          animation: ld-jingle 1s infinite linear;
  transform-origin: 50% 0;
}

@-webkit-keyframes ld-rubber-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
            animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
    transform: scaleY(1);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
            animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
    transform: scaleY(1.1354);
  }
  41% {
    -webkit-animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
            animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
    transform: scaleY(0.9052);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
            animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
    transform: scaleY(1.0664);
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
            animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
    transform: scaleY(0.9536);
  }
  71% {
    -webkit-animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
            animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
    transform: scaleY(1.0326);
  }
  81% {
    -webkit-animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
            animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
    transform: scaleY(0.9772);
  }
  91% {
    -webkit-animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
            animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
    transform: scaleY(1.016);
  }
  100% {
    transform: scaleY(0.9836);
  }
}

@keyframes ld-rubber-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
            animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
    transform: scaleY(1);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
            animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
    transform: scaleY(1.1354);
  }
  41% {
    -webkit-animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
            animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
    transform: scaleY(0.9052);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
            animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
    transform: scaleY(1.0664);
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
            animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
    transform: scaleY(0.9536);
  }
  71% {
    -webkit-animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
            animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
    transform: scaleY(1.0326);
  }
  81% {
    -webkit-animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
            animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
    transform: scaleY(0.9772);
  }
  91% {
    -webkit-animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
            animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
    transform: scaleY(1.016);
  }
  100% {
    transform: scaleY(0.9836);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-rubber-v {
  -webkit-animation: ld-rubber-v 1s infinite linear;
          animation: ld-rubber-v 1s infinite linear;
}

@-webkit-keyframes ld-rubber-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
            animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
    transform: scaleX(1);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
            animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
    transform: scaleX(1.1354);
  }
  41% {
    -webkit-animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
            animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
    transform: scaleX(0.9052);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
            animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
    transform: scaleX(1.0664);
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
            animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
    transform: scaleX(0.9536);
  }
  71% {
    -webkit-animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
            animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
    transform: scaleX(1.0326);
  }
  81% {
    -webkit-animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
            animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
    transform: scaleX(0.9772);
  }
  91% {
    -webkit-animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
            animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
    transform: scaleX(1.016);
  }
  100% {
    transform: scaleX(0.9836);
  }
}

@keyframes ld-rubber-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
            animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
    transform: scaleX(1);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
            animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
    transform: scaleX(1.1354);
  }
  41% {
    -webkit-animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
            animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
    transform: scaleX(0.9052);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
            animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
    transform: scaleX(1.0664);
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
            animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
    transform: scaleX(0.9536);
  }
  71% {
    -webkit-animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
            animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
    transform: scaleX(1.0326);
  }
  81% {
    -webkit-animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
            animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
    transform: scaleX(0.9772);
  }
  91% {
    -webkit-animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
            animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
    transform: scaleX(1.016);
  }
  100% {
    transform: scaleX(0.9836);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-rubber-h, .ld.ld-rubber {
  -webkit-animation: ld-rubber-h 1s infinite linear;
          animation: ld-rubber-h 1s infinite linear;
}

@-webkit-keyframes ld-shake-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1441, 0.1912, 0.6583, 1.1029);
            animation-timing-function: cubic-bezier(0.1441, 0.1912, 0.6583, 1.1029);
    transform: translate(0, 0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0667, 0.1419, 0.6667, 1.1415);
            animation-timing-function: cubic-bezier(0.0667, 0.1419, 0.6667, 1.1415);
    transform: translate(0, 7.8%);
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.0542, 0.1151, 0.5697, 1.181);
            animation-timing-function: cubic-bezier(0.0542, 0.1151, 0.5697, 1.181);
    transform: translate(0, -4.68%);
  }
  59% {
    -webkit-animation-timing-function: cubic-bezier(0.0497, 0.1058, 0.4541, 1.231);
            animation-timing-function: cubic-bezier(0.0497, 0.1058, 0.4541, 1.231);
    transform: translate(0, 2.81%);
  }
  73% {
    -webkit-animation-timing-function: cubic-bezier(0.0808, 0.1711, 0.4109, 1.2519);
            animation-timing-function: cubic-bezier(0.0808, 0.1711, 0.4109, 1.2519);
    transform: translate(0, -1.68%);
  }
  87% {
    -webkit-animation-timing-function: cubic-bezier(0.2073, 0.3705, 0.4064, 0.8839);
            animation-timing-function: cubic-bezier(0.2073, 0.3705, 0.4064, 0.8839);
    transform: translate(0, 1.01%);
  }
  100% {
    transform: translate(0, -0.78%);
  }
}

@keyframes ld-shake-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1441, 0.1912, 0.6583, 1.1029);
            animation-timing-function: cubic-bezier(0.1441, 0.1912, 0.6583, 1.1029);
    transform: translate(0, 0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0667, 0.1419, 0.6667, 1.1415);
            animation-timing-function: cubic-bezier(0.0667, 0.1419, 0.6667, 1.1415);
    transform: translate(0, 7.8%);
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.0542, 0.1151, 0.5697, 1.181);
            animation-timing-function: cubic-bezier(0.0542, 0.1151, 0.5697, 1.181);
    transform: translate(0, -4.68%);
  }
  59% {
    -webkit-animation-timing-function: cubic-bezier(0.0497, 0.1058, 0.4541, 1.231);
            animation-timing-function: cubic-bezier(0.0497, 0.1058, 0.4541, 1.231);
    transform: translate(0, 2.81%);
  }
  73% {
    -webkit-animation-timing-function: cubic-bezier(0.0808, 0.1711, 0.4109, 1.2519);
            animation-timing-function: cubic-bezier(0.0808, 0.1711, 0.4109, 1.2519);
    transform: translate(0, -1.68%);
  }
  87% {
    -webkit-animation-timing-function: cubic-bezier(0.2073, 0.3705, 0.4064, 0.8839);
            animation-timing-function: cubic-bezier(0.2073, 0.3705, 0.4064, 0.8839);
    transform: translate(0, 1.01%);
  }
  100% {
    transform: translate(0, -0.78%);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-shake-v {
  -webkit-animation: ld-shake-v 1s infinite linear;
          animation: ld-shake-v 1s infinite linear;
}

@-webkit-keyframes ld-shake-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1515, 0.2047, 0.6562, 1.1369);
            animation-timing-function: cubic-bezier(0.1515, 0.2047, 0.6562, 1.1369);
    transform: translate(0, 0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0628, 0.1361, 0.6012, 1.2083);
            animation-timing-function: cubic-bezier(0.0628, 0.1361, 0.6012, 1.2083);
    transform: translate(7.66%, 0);
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.0579, 0.1251, 0.5661, 1.2263);
            animation-timing-function: cubic-bezier(0.0579, 0.1251, 0.5661, 1.2263);
    transform: translate(-5.36%, 0);
  }
  59% {
    -webkit-animation-timing-function: cubic-bezier(0.0523, 0.113, 0.5181, 1.2493);
            animation-timing-function: cubic-bezier(0.0523, 0.113, 0.5181, 1.2493);
    transform: translate(3.75%, 0);
  }
  73% {
    -webkit-animation-timing-function: cubic-bezier(0.0513, 0.1113, 0.4632, 1.2762);
            animation-timing-function: cubic-bezier(0.0513, 0.1113, 0.4632, 1.2762);
    transform: translate(-2.63%, 0);
  }
  87% {
    -webkit-animation-timing-function: cubic-bezier(0.1502, 0.2709, 0.2303, 0.8469);
            animation-timing-function: cubic-bezier(0.1502, 0.2709, 0.2303, 0.8469);
    transform: translate(1.84%, 0);
  }
  100% {
    transform: translate(-1.68%, 0);
  }
}

@keyframes ld-shake-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1515, 0.2047, 0.6562, 1.1369);
            animation-timing-function: cubic-bezier(0.1515, 0.2047, 0.6562, 1.1369);
    transform: translate(0, 0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0628, 0.1361, 0.6012, 1.2083);
            animation-timing-function: cubic-bezier(0.0628, 0.1361, 0.6012, 1.2083);
    transform: translate(7.66%, 0);
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.0579, 0.1251, 0.5661, 1.2263);
            animation-timing-function: cubic-bezier(0.0579, 0.1251, 0.5661, 1.2263);
    transform: translate(-5.36%, 0);
  }
  59% {
    -webkit-animation-timing-function: cubic-bezier(0.0523, 0.113, 0.5181, 1.2493);
            animation-timing-function: cubic-bezier(0.0523, 0.113, 0.5181, 1.2493);
    transform: translate(3.75%, 0);
  }
  73% {
    -webkit-animation-timing-function: cubic-bezier(0.0513, 0.1113, 0.4632, 1.2762);
            animation-timing-function: cubic-bezier(0.0513, 0.1113, 0.4632, 1.2762);
    transform: translate(-2.63%, 0);
  }
  87% {
    -webkit-animation-timing-function: cubic-bezier(0.1502, 0.2709, 0.2303, 0.8469);
            animation-timing-function: cubic-bezier(0.1502, 0.2709, 0.2303, 0.8469);
    transform: translate(1.84%, 0);
  }
  100% {
    transform: translate(-1.68%, 0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-shake-h, .ld.ld-shake {
  -webkit-animation: ld-shake-h 1s infinite linear;
          animation: ld-shake-h 1s infinite linear;
}

@-webkit-keyframes ld-tick {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
            animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
    transform: rotate(0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
            animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
    transform: rotate(13.54deg);
  }
  41% {
    -webkit-animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
            animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
    transform: rotate(-9.48deg);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
            animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
    transform: rotate(6.64deg);
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
            animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
    transform: rotate(-4.64deg);
  }
  71% {
    -webkit-animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
            animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
    transform: rotate(3.26deg);
  }
  81% {
    -webkit-animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
            animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
    transform: rotate(-2.28deg);
  }
  91% {
    -webkit-animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
            animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
    transform: rotate(1.6deg);
  }
  100% {
    transform: rotate(-1.64deg);
  }
}

@keyframes ld-tick {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
            animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
    transform: rotate(0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
            animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
    transform: rotate(13.54deg);
  }
  41% {
    -webkit-animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
            animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
    transform: rotate(-9.48deg);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
            animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
    transform: rotate(6.64deg);
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
            animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
    transform: rotate(-4.64deg);
  }
  71% {
    -webkit-animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
            animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
    transform: rotate(3.26deg);
  }
  81% {
    -webkit-animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
            animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
    transform: rotate(-2.28deg);
  }
  91% {
    -webkit-animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
            animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
    transform: rotate(1.6deg);
  }
  100% {
    transform: rotate(-1.64deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-tick {
  -webkit-animation: ld-tick 1s infinite linear;
          animation: ld-tick 1s infinite linear;
}

@-webkit-keyframes ld-smash {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.3385, 0.332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.3385, 0.332, 0.6667, 0.6667);
    transform: rotate(0);
  }
  40.8% {
    -webkit-animation-timing-function: cubic-bezier(0.3316, 0.3338, 0.5714, 1.3045);
            animation-timing-function: cubic-bezier(0.3316, 0.3338, 0.5714, 1.3045);
    transform: rotate(24.48deg);
  }
  48.5% {
    -webkit-animation-timing-function: cubic-bezier(0.9673, 0.2776, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.9673, 0.2776, 0.6667, 0.6667);
    transform: rotate(29.07deg);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1933, 0.2947, -0.0572, 0.7191);
            animation-timing-function: cubic-bezier(0.1933, 0.2947, -0.0572, 0.7191);
    transform: rotate(25.38deg);
  }
  60.8% {
    -webkit-animation-timing-function: cubic-bezier(0.0583, 2.8507, 0.8558, 1);
            animation-timing-function: cubic-bezier(0.0583, 2.8507, 0.8558, 1);
    transform: rotate(0.54deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes ld-smash {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.3385, 0.332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.3385, 0.332, 0.6667, 0.6667);
    transform: rotate(0);
  }
  40.8% {
    -webkit-animation-timing-function: cubic-bezier(0.3316, 0.3338, 0.5714, 1.3045);
            animation-timing-function: cubic-bezier(0.3316, 0.3338, 0.5714, 1.3045);
    transform: rotate(24.48deg);
  }
  48.5% {
    -webkit-animation-timing-function: cubic-bezier(0.9673, 0.2776, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.9673, 0.2776, 0.6667, 0.6667);
    transform: rotate(29.07deg);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1933, 0.2947, -0.0572, 0.7191);
            animation-timing-function: cubic-bezier(0.1933, 0.2947, -0.0572, 0.7191);
    transform: rotate(25.38deg);
  }
  60.8% {
    -webkit-animation-timing-function: cubic-bezier(0.0583, 2.8507, 0.8558, 1);
            animation-timing-function: cubic-bezier(0.0583, 2.8507, 0.8558, 1);
    transform: rotate(0.54deg);
  }
  100% {
    transform: rotate(0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-smash {
  -webkit-animation: ld-smash 1s infinite linear;
          animation: ld-smash 1s infinite linear;
}

@-webkit-keyframes ld-jelly-alt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
            animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
    transform: skewX(0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
            animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
    transform: skewX(6.77deg);
  }
  41% {
    -webkit-animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
            animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
    transform: skewX(-4.74deg);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
            animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
    transform: skewX(3.32deg);
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
            animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
    transform: skewX(-2.32deg);
  }
  71% {
    -webkit-animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
            animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
    transform: skewX(1.63deg);
  }
  81% {
    -webkit-animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
            animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
    transform: skewX(-1.14deg);
  }
  91% {
    -webkit-animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
            animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
    transform: skewX(0.8deg);
  }
  100% {
    transform: skewX(-0.82deg);
  }
}

@keyframes ld-jelly-alt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
            animation-timing-function: cubic-bezier(0.1858, 0.2841, 0.5834, 1.4615);
    transform: skewX(0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
            animation-timing-function: cubic-bezier(0.0467, 0.1102, 0.4803, 1.4719);
    transform: skewX(6.77deg);
  }
  41% {
    -webkit-animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
            animation-timing-function: cubic-bezier(0.0469, 0.1108, 0.4775, 1.4732);
    transform: skewX(-4.74deg);
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
            animation-timing-function: cubic-bezier(0.0478, 0.1131, 0.4723, 1.4819);
    transform: skewX(3.32deg);
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
            animation-timing-function: cubic-bezier(0.0506, 0.1192, 0.4639, 1.4818);
    transform: skewX(-2.32deg);
  }
  71% {
    -webkit-animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
            animation-timing-function: cubic-bezier(0.0581, 0.1374, 0.457, 1.4901);
    transform: skewX(1.63deg);
  }
  81% {
    -webkit-animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
            animation-timing-function: cubic-bezier(0.0765, 0.1813, 0.4542, 1.4923);
    transform: skewX(-1.14deg);
  }
  91% {
    -webkit-animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
            animation-timing-function: cubic-bezier(0.1747, 0.3181, 0.341, 0.878);
    transform: skewX(0.8deg);
  }
  100% {
    transform: skewX(-0.82deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-jelly-alt {
  -webkit-animation: ld-jelly-alt 1s infinite linear;
          animation: ld-jelly-alt 1s infinite linear;
}

@-webkit-keyframes ld-jelly {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1441, 0.1912, 0.6583, 1.1029);
            animation-timing-function: cubic-bezier(0.1441, 0.1912, 0.6583, 1.1029);
    transform: translate(0, 0) skewX(0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0667, 0.1419, 0.6667, 1.1415);
            animation-timing-function: cubic-bezier(0.0667, 0.1419, 0.6667, 1.1415);
    transform: translate(-7.8%, 0) skewX(7.8deg);
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.0542, 0.1151, 0.5697, 1.181);
            animation-timing-function: cubic-bezier(0.0542, 0.1151, 0.5697, 1.181);
    transform: translate(4.68%, 0) skewX(-4.68deg);
  }
  59% {
    -webkit-animation-timing-function: cubic-bezier(0.0497, 0.1058, 0.4541, 1.231);
            animation-timing-function: cubic-bezier(0.0497, 0.1058, 0.4541, 1.231);
    transform: translate(-2.81%, 0) skewX(2.81deg);
  }
  73% {
    -webkit-animation-timing-function: cubic-bezier(0.0808, 0.1711, 0.4109, 1.2519);
            animation-timing-function: cubic-bezier(0.0808, 0.1711, 0.4109, 1.2519);
    transform: translate(1.68%, 0) skewX(-1.68deg);
  }
  87% {
    -webkit-animation-timing-function: cubic-bezier(0.2073, 0.3705, 0.4064, 0.8839);
            animation-timing-function: cubic-bezier(0.2073, 0.3705, 0.4064, 0.8839);
    transform: translate(-1.01%, 0) skewX(1.01deg);
  }
  100% {
    transform: translate(0.78%, 0) skewX(-0.78deg);
  }
}

@keyframes ld-jelly {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1441, 0.1912, 0.6583, 1.1029);
            animation-timing-function: cubic-bezier(0.1441, 0.1912, 0.6583, 1.1029);
    transform: translate(0, 0) skewX(0);
  }
  31% {
    -webkit-animation-timing-function: cubic-bezier(0.0667, 0.1419, 0.6667, 1.1415);
            animation-timing-function: cubic-bezier(0.0667, 0.1419, 0.6667, 1.1415);
    transform: translate(-7.8%, 0) skewX(7.8deg);
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.0542, 0.1151, 0.5697, 1.181);
            animation-timing-function: cubic-bezier(0.0542, 0.1151, 0.5697, 1.181);
    transform: translate(4.68%, 0) skewX(-4.68deg);
  }
  59% {
    -webkit-animation-timing-function: cubic-bezier(0.0497, 0.1058, 0.4541, 1.231);
            animation-timing-function: cubic-bezier(0.0497, 0.1058, 0.4541, 1.231);
    transform: translate(-2.81%, 0) skewX(2.81deg);
  }
  73% {
    -webkit-animation-timing-function: cubic-bezier(0.0808, 0.1711, 0.4109, 1.2519);
            animation-timing-function: cubic-bezier(0.0808, 0.1711, 0.4109, 1.2519);
    transform: translate(1.68%, 0) skewX(-1.68deg);
  }
  87% {
    -webkit-animation-timing-function: cubic-bezier(0.2073, 0.3705, 0.4064, 0.8839);
            animation-timing-function: cubic-bezier(0.2073, 0.3705, 0.4064, 0.8839);
    transform: translate(-1.01%, 0) skewX(1.01deg);
  }
  100% {
    transform: translate(0.78%, 0) skewX(-0.78deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-jelly {
  -webkit-animation: ld-jelly 1s infinite linear;
          animation: ld-jelly 1s infinite linear;
}

@-webkit-keyframes ld-damage {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1916, 0.3481, 0.5313, 2.0622);
            animation-timing-function: cubic-bezier(0.1916, 0.3481, 0.5313, 2.0622);
    opacity: 1;
  }
  21% {
    -webkit-animation-timing-function: cubic-bezier(0.0461, 0.1237, 0.4559, 1.8579);
            animation-timing-function: cubic-bezier(0.0461, 0.1237, 0.4559, 1.8579);
    opacity: .42200000000000004;
  }
  29% {
    -webkit-animation-timing-function: cubic-bezier(0.0468, 0.1254, 0.4564, 1.8559);
            animation-timing-function: cubic-bezier(0.0468, 0.1254, 0.4564, 1.8559);
    opacity: 1.462;
  }
  37% {
    -webkit-animation-timing-function: cubic-bezier(0.0479, 0.1283, 0.457, 1.856);
            animation-timing-function: cubic-bezier(0.0479, 0.1283, 0.457, 1.856);
    opacity: .63;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.0487, 0.1306, 0.457, 1.8506);
            animation-timing-function: cubic-bezier(0.0487, 0.1306, 0.457, 1.8506);
    opacity: 1.296;
  }
  53% {
    -webkit-animation-timing-function: cubic-bezier(0.0515, 0.1383, 0.4591, 1.8571);
            animation-timing-function: cubic-bezier(0.0515, 0.1383, 0.4591, 1.8571);
    opacity: .763;
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0556, 0.1484, 0.4608, 1.846);
            animation-timing-function: cubic-bezier(0.0556, 0.1484, 0.4608, 1.846);
    opacity: 1.189;
  }
  69% {
    -webkit-animation-timing-function: cubic-bezier(0.0595, 0.1602, 0.4632, 1.8456);
            animation-timing-function: cubic-bezier(0.0595, 0.1602, 0.4632, 1.8456);
    opacity: .848;
  }
  77% {
    -webkit-animation-timing-function: cubic-bezier(0.0689, 0.1849, 0.4698, 1.8391);
            animation-timing-function: cubic-bezier(0.0689, 0.1849, 0.4698, 1.8391);
    opacity: 1.121;
  }
  85% {
    -webkit-animation-timing-function: cubic-bezier(0.0794, 0.2133, 0.4765, 1.8226);
            animation-timing-function: cubic-bezier(0.0794, 0.2133, 0.4765, 1.8226);
    opacity: .903;
  }
  93% {
    -webkit-animation-timing-function: cubic-bezier(0.1486, 0.2692, 0.2335, 0.855);
            animation-timing-function: cubic-bezier(0.1486, 0.2692, 0.2335, 0.855);
    opacity: 1.078;
  }
  100% {
    opacity: .893;
  }
}

@keyframes ld-damage {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1916, 0.3481, 0.5313, 2.0622);
            animation-timing-function: cubic-bezier(0.1916, 0.3481, 0.5313, 2.0622);
    opacity: 1;
  }
  21% {
    -webkit-animation-timing-function: cubic-bezier(0.0461, 0.1237, 0.4559, 1.8579);
            animation-timing-function: cubic-bezier(0.0461, 0.1237, 0.4559, 1.8579);
    opacity: .42200000000000004;
  }
  29% {
    -webkit-animation-timing-function: cubic-bezier(0.0468, 0.1254, 0.4564, 1.8559);
            animation-timing-function: cubic-bezier(0.0468, 0.1254, 0.4564, 1.8559);
    opacity: 1.462;
  }
  37% {
    -webkit-animation-timing-function: cubic-bezier(0.0479, 0.1283, 0.457, 1.856);
            animation-timing-function: cubic-bezier(0.0479, 0.1283, 0.457, 1.856);
    opacity: .63;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.0487, 0.1306, 0.457, 1.8506);
            animation-timing-function: cubic-bezier(0.0487, 0.1306, 0.457, 1.8506);
    opacity: 1.296;
  }
  53% {
    -webkit-animation-timing-function: cubic-bezier(0.0515, 0.1383, 0.4591, 1.8571);
            animation-timing-function: cubic-bezier(0.0515, 0.1383, 0.4591, 1.8571);
    opacity: .763;
  }
  61% {
    -webkit-animation-timing-function: cubic-bezier(0.0556, 0.1484, 0.4608, 1.846);
            animation-timing-function: cubic-bezier(0.0556, 0.1484, 0.4608, 1.846);
    opacity: 1.189;
  }
  69% {
    -webkit-animation-timing-function: cubic-bezier(0.0595, 0.1602, 0.4632, 1.8456);
            animation-timing-function: cubic-bezier(0.0595, 0.1602, 0.4632, 1.8456);
    opacity: .848;
  }
  77% {
    -webkit-animation-timing-function: cubic-bezier(0.0689, 0.1849, 0.4698, 1.8391);
            animation-timing-function: cubic-bezier(0.0689, 0.1849, 0.4698, 1.8391);
    opacity: 1.121;
  }
  85% {
    -webkit-animation-timing-function: cubic-bezier(0.0794, 0.2133, 0.4765, 1.8226);
            animation-timing-function: cubic-bezier(0.0794, 0.2133, 0.4765, 1.8226);
    opacity: .903;
  }
  93% {
    -webkit-animation-timing-function: cubic-bezier(0.1486, 0.2692, 0.2335, 0.855);
            animation-timing-function: cubic-bezier(0.1486, 0.2692, 0.2335, 0.855);
    opacity: 1.078;
  }
  100% {
    opacity: .893;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-damage {
  -webkit-animation: ld-damage 1s infinite linear;
          animation: ld-damage 1s infinite linear;
}

@-webkit-keyframes ld-rush-ltr {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
            animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  0% {
    transform: translateX(-318.4752086141%) skewX(30deg);
  }
  25% {
    transform: translateX(-21.4256258422%) skewX(-15deg);
  }
  33% {
    transform: translateX(8.5743741578%) skewX(-15deg);
  }
  44% {
    transform: translateX(-4.2128799228%) skewX(7.5deg);
  }
  55.00000000000001% {
    transform: translateX(2.0973908101%) skewX(-3.75deg);
  }
  66% {
    transform: translateX(0) skewX(0);
  }
  80% {
    transform: translateX(0) skewX(0);
  }
  100% {
    transform: translateX(300%) skewX(30deg);
  }
  100% {
    opacity: 1;
  }
}

@keyframes ld-rush-ltr {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
            animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  0% {
    transform: translateX(-318.4752086141%) skewX(30deg);
  }
  25% {
    transform: translateX(-21.4256258422%) skewX(-15deg);
  }
  33% {
    transform: translateX(8.5743741578%) skewX(-15deg);
  }
  44% {
    transform: translateX(-4.2128799228%) skewX(7.5deg);
  }
  55.00000000000001% {
    transform: translateX(2.0973908101%) skewX(-3.75deg);
  }
  66% {
    transform: translateX(0) skewX(0);
  }
  80% {
    transform: translateX(0) skewX(0);
  }
  100% {
    transform: translateX(300%) skewX(30deg);
  }
  100% {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-rush-ltr {
  -webkit-animation: ld-rush-ltr 1s infinite linear;
          animation: ld-rush-ltr 1s infinite linear;
}

@-webkit-keyframes ld-rush-rtl {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
            animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  0% {
    transform: translateX(318.4752086141%) skewX(-30deg);
  }
  25% {
    transform: translateX(21.4256258422%) skewX(15deg);
  }
  33% {
    transform: translateX(-8.5743741578%) skewX(15deg);
  }
  44% {
    transform: translateX(4.2128799228%) skewX(-7.5deg);
  }
  55.00000000000001% {
    transform: translateX(-2.0973908101%) skewX(3.75deg);
  }
  66% {
    transform: translateX(0) skewX(0);
  }
  80% {
    transform: translateX(0) skewX(0);
  }
  100% {
    transform: translateX(-300%) skewX(-30deg);
  }
  100% {
    opacity: 1;
  }
}

@keyframes ld-rush-rtl {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
            animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  0% {
    transform: translateX(318.4752086141%) skewX(-30deg);
  }
  25% {
    transform: translateX(21.4256258422%) skewX(15deg);
  }
  33% {
    transform: translateX(-8.5743741578%) skewX(15deg);
  }
  44% {
    transform: translateX(4.2128799228%) skewX(-7.5deg);
  }
  55.00000000000001% {
    transform: translateX(-2.0973908101%) skewX(3.75deg);
  }
  66% {
    transform: translateX(0) skewX(0);
  }
  80% {
    transform: translateX(0) skewX(0);
  }
  100% {
    transform: translateX(-300%) skewX(-30deg);
  }
  100% {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-rush-rtl {
  -webkit-animation: ld-rush-rtl 1s infinite linear;
          animation: ld-rush-rtl 1s infinite linear;
}

@-webkit-keyframes ld-rush-ttb {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
            animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  0% {
    transform: translateY(-78.4752086141%) skewY(30deg);
  }
  25% {
    transform: translateY(2.5743741578%) skewY(-15deg);
  }
  33% {
    transform: translateY(8.5743741578%) skewY(-15deg);
  }
  44% {
    transform: translateY(-4.2128799228%) skewY(7.5deg);
  }
  55.00000000000001% {
    transform: translateY(2.0973908101%) skewY(-3.75deg);
  }
  66% {
    transform: translateY(0) skewY(0);
  }
  80% {
    transform: translateY(0) skewY(0);
  }
  100% {
    transform: translateY(60%) skewY(30deg);
  }
  100% {
    opacity: 1;
  }
}

@keyframes ld-rush-ttb {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
            animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  0% {
    transform: translateY(-78.4752086141%) skewY(30deg);
  }
  25% {
    transform: translateY(2.5743741578%) skewY(-15deg);
  }
  33% {
    transform: translateY(8.5743741578%) skewY(-15deg);
  }
  44% {
    transform: translateY(-4.2128799228%) skewY(7.5deg);
  }
  55.00000000000001% {
    transform: translateY(2.0973908101%) skewY(-3.75deg);
  }
  66% {
    transform: translateY(0) skewY(0);
  }
  80% {
    transform: translateY(0) skewY(0);
  }
  100% {
    transform: translateY(60%) skewY(30deg);
  }
  100% {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-rush-ttb {
  -webkit-animation: ld-rush-ttb 1s infinite linear;
          animation: ld-rush-ttb 1s infinite linear;
}

@-webkit-keyframes ld-rush-btt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
            animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  0% {
    transform: translateY(318.4752086141%) skewY(-30deg);
  }
  25% {
    transform: translateY(21.4256258422%) skewY(15deg);
  }
  33% {
    transform: translateY(-8.5743741578%) skewY(15deg);
  }
  44% {
    transform: translateY(4.2128799228%) skewY(-7.5deg);
  }
  55.00000000000001% {
    transform: translateY(-2.0973908101%) skewY(3.75deg);
  }
  66% {
    transform: translateY(0) skewY(0);
  }
  80% {
    transform: translateY(0) skewY(0);
  }
  100% {
    transform: translateY(-300%) skewY(-30deg);
  }
  100% {
    opacity: 1;
  }
}

@keyframes ld-rush-btt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
            animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  0% {
    transform: translateY(318.4752086141%) skewY(-30deg);
  }
  25% {
    transform: translateY(21.4256258422%) skewY(15deg);
  }
  33% {
    transform: translateY(-8.5743741578%) skewY(15deg);
  }
  44% {
    transform: translateY(4.2128799228%) skewY(-7.5deg);
  }
  55.00000000000001% {
    transform: translateY(-2.0973908101%) skewY(3.75deg);
  }
  66% {
    transform: translateY(0) skewY(0);
  }
  80% {
    transform: translateY(0) skewY(0);
  }
  100% {
    transform: translateY(-300%) skewY(-30deg);
  }
  100% {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-rush-btt {
  -webkit-animation: ld-rush-btt 1s infinite linear;
          animation: ld-rush-btt 1s infinite linear;
}

@-webkit-keyframes ld-skew {
  0%, 50%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
  }
  25%, 75% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
            animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
  }
  0% {
    transform: skewX(20deg) scale(1);
  }
  25% {
    transform: skewX(0) scale(0.9);
  }
  50% {
    transform: skewX(-20deg) scale(1);
  }
  75% {
    transform: skewX(0) scale(0.9);
  }
  100% {
    transform: skewX(20deg) scale(1);
  }
}

@keyframes ld-skew {
  0%, 50%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
  }
  25%, 75% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
            animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
  }
  0% {
    transform: skewX(20deg) scale(1);
  }
  25% {
    transform: skewX(0) scale(0.9);
  }
  50% {
    transform: skewX(-20deg) scale(1);
  }
  75% {
    transform: skewX(0) scale(0.9);
  }
  100% {
    transform: skewX(20deg) scale(1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-skew {
  -webkit-animation: ld-skew 1s infinite linear;
          animation: ld-skew 1s infinite linear;
}

@-webkit-keyframes ld-skew-alt {
  0%, 50%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
  }
  25%, 75% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
            animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
  }
  0% {
    transform: skewY(20deg) scale(1);
  }
  25% {
    transform: skewY(0) scale(0.9);
  }
  50% {
    transform: skewY(-20deg) scale(1);
  }
  75% {
    transform: skewY(0) scale(0.9);
  }
  100% {
    transform: skewY(20deg) scale(1);
  }
}

@keyframes ld-skew-alt {
  0%, 50%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 0.6);
  }
  25%, 75% {
    -webkit-animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
            animation-timing-function: cubic-bezier(0, 0.4, 0.6, 1);
  }
  0% {
    transform: skewY(20deg) scale(1);
  }
  25% {
    transform: skewY(0) scale(0.9);
  }
  50% {
    transform: skewY(-20deg) scale(1);
  }
  75% {
    transform: skewY(0) scale(0.9);
  }
  100% {
    transform: skewY(20deg) scale(1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-skew-alt {
  -webkit-animation: ld-skew-alt 1s infinite linear;
          animation: ld-skew-alt 1s infinite linear;
}

@-webkit-keyframes ld-slide-ltr {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
            animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
    transform: translate(0, 0);
    opacity: 1;
  }
  22.5% {
    -webkit-animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
            animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
    transform: translate(47.8%, 0);
    opacity: 1;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
            animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
    transform: translate(147.8%, 0);
    opacity: 1;
  }
  47.5% {
    -webkit-animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
    transform: translate(165.6%, 0);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
            animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
    transform: translate(-200%, 0);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
            animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
    transform: translate(-179.8%, 0);
    opacity: 0;
  }
  80.4% {
    -webkit-animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
            animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
    transform: translate(-38.4%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes ld-slide-ltr {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
            animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
    transform: translate(0, 0);
    opacity: 1;
  }
  22.5% {
    -webkit-animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
            animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
    transform: translate(47.8%, 0);
    opacity: 1;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
            animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
    transform: translate(147.8%, 0);
    opacity: 1;
  }
  47.5% {
    -webkit-animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
    transform: translate(165.6%, 0);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
            animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
    transform: translate(-200%, 0);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
            animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
    transform: translate(-179.8%, 0);
    opacity: 0;
  }
  80.4% {
    -webkit-animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
            animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
    transform: translate(-38.4%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-slide-ltr {
  -webkit-animation: ld-slide-ltr 1s infinite linear;
          animation: ld-slide-ltr 1s infinite linear;
}

@-webkit-keyframes ld-slide-rtl {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
            animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
    transform: translate(0, 0);
    opacity: 1;
  }
  22.5% {
    -webkit-animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
            animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
    transform: translate(-47.8%, 0);
    opacity: 1;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
            animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
    transform: translate(-147.8%, 0);
    opacity: 1;
  }
  47.5% {
    -webkit-animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
    transform: translate(-165.6%, 0);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
            animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
    transform: translate(200%, 0);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
            animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
    transform: translate(179.8%, 0);
    opacity: 0;
  }
  80.4% {
    -webkit-animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
            animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
    transform: translate(38.4%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes ld-slide-rtl {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
            animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
    transform: translate(0, 0);
    opacity: 1;
  }
  22.5% {
    -webkit-animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
            animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
    transform: translate(-47.8%, 0);
    opacity: 1;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
            animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
    transform: translate(-147.8%, 0);
    opacity: 1;
  }
  47.5% {
    -webkit-animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
    transform: translate(-165.6%, 0);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
            animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
    transform: translate(200%, 0);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
            animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
    transform: translate(179.8%, 0);
    opacity: 0;
  }
  80.4% {
    -webkit-animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
            animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
    transform: translate(38.4%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-slide-rtl {
  -webkit-animation: ld-slide-rtl 1s infinite linear;
          animation: ld-slide-rtl 1s infinite linear;
}

@-webkit-keyframes ld-slide-btt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
            animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
    transform: translate(0, 0);
    opacity: 1;
  }
  22.5% {
    -webkit-animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
            animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
    transform: translate(0, -47.8%);
    opacity: 1;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
            animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
    transform: translate(0, -147.8%);
    opacity: 1;
  }
  47.5% {
    -webkit-animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
    transform: translate(0, -165.6%);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
            animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
    transform: translate(0, 200%);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
            animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
    transform: translate(0, 179.8%);
    opacity: 0;
  }
  80.4% {
    -webkit-animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
            animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
    transform: translate(0, 38.4%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes ld-slide-btt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
            animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
    transform: translate(0, 0);
    opacity: 1;
  }
  22.5% {
    -webkit-animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
            animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
    transform: translate(0, -47.8%);
    opacity: 1;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
            animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
    transform: translate(0, -147.8%);
    opacity: 1;
  }
  47.5% {
    -webkit-animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
    transform: translate(0, -165.6%);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
            animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
    transform: translate(0, 200%);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
            animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
    transform: translate(0, 179.8%);
    opacity: 0;
  }
  80.4% {
    -webkit-animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
            animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
    transform: translate(0, 38.4%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-slide-btt {
  -webkit-animation: ld-slide-btt 1s infinite linear;
          animation: ld-slide-btt 1s infinite linear;
}

@-webkit-keyframes ld-slide-ttb {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
            animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
    transform: translate(0, 0);
    opacity: 1;
  }
  22.5% {
    -webkit-animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
            animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
    transform: translate(0, 47.8%);
    opacity: 1;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
            animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
    transform: translate(0, 147.8%);
    opacity: 1;
  }
  47.5% {
    -webkit-animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
    transform: translate(0, 165.6%);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
            animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
    transform: translate(0, -200%);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
            animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
    transform: translate(0, -179.8%);
    opacity: 0;
  }
  80.4% {
    -webkit-animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
            animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
    transform: translate(0, -38.4%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes ld-slide-ttb {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
            animation-timing-function: cubic-bezier(0.4652, 0.1051, 0.774, 0.6426);
    transform: translate(0, 0);
    opacity: 1;
  }
  22.5% {
    -webkit-animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
            animation-timing-function: cubic-bezier(0.4142, 0.3131, 0.7623, 0.6513);
    transform: translate(0, 47.8%);
    opacity: 1;
  }
  45% {
    -webkit-animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
            animation-timing-function: cubic-bezier(0.3615, 0.331, 0.9646, 1.3461);
    transform: translate(0, 147.8%);
    opacity: 1;
  }
  47.5% {
    -webkit-animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.7006, 0.3332, 0.6667, 0.6667);
    transform: translate(0, 165.6%);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
            animation-timing-function: cubic-bezier(0.1604, 0.3176, -0.0218, 0.6965);
    transform: translate(0, -200%);
    opacity: 0;
  }
  51% {
    -webkit-animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
            animation-timing-function: cubic-bezier(0.1983, 0.3529, 0.5263, 0.6945);
    transform: translate(0, -179.8%);
    opacity: 0;
  }
  80.4% {
    -webkit-animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
            animation-timing-function: cubic-bezier(0.2342, 0.3708, 0.5422, 0.9065);
    transform: translate(0, -38.4%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-slide-ttb {
  -webkit-animation: ld-slide-ttb 1s infinite linear;
          animation: ld-slide-ttb 1s infinite linear;
}

@-webkit-keyframes ld-coin-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
            animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(3600deg);
  }
}

@keyframes ld-coin-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
            animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(3600deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-coin-h, .ld.ld-coin {
  -webkit-animation: ld-coin-h 2s infinite linear;
          animation: ld-coin-h 2s infinite linear;
}

@-webkit-keyframes ld-coin-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
            animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotateX(0);
  }
  100% {
    transform: rotateX(3600deg);
  }
}

@keyframes ld-coin-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
            animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotateX(0);
  }
  100% {
    transform: rotateX(3600deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-coin-v {
  -webkit-animation: ld-coin-v 2s infinite linear;
          animation: ld-coin-v 2s infinite linear;
}

@-webkit-keyframes ld-cycle {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.6667, 0.6667);
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ld-cycle {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.6667, 0.6667);
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-cycle {
  -webkit-animation: ld-cycle 1s infinite linear;
          animation: ld-cycle 1s infinite linear;
}

@-webkit-keyframes ld-cycle-alt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.6667, 0.6667);
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes ld-cycle-alt {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.6667, 0.6667);
            animation-timing-function: cubic-bezier(0.3333, 0.3333, 0.6667, 0.6667);
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-cycle-alt {
  -webkit-animation: ld-cycle-alt 1s infinite linear;
          animation: ld-cycle-alt 1s infinite linear;
}

@-webkit-keyframes ld-flip-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1909, 0.4373, 0.4509, 0.7454);
            animation-timing-function: cubic-bezier(0.1909, 0.4373, 0.4509, 0.7454);
    transform: rotateY(0);
  }
  30% {
    -webkit-animation-timing-function: cubic-bezier(0.128, 0.2315, 0.9704, 0.8632);
            animation-timing-function: cubic-bezier(0.128, 0.2315, 0.9704, 0.8632);
    transform: rotateY(153.72deg);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.5788, 0.3001, 0.5613, 0.6784);
            animation-timing-function: cubic-bezier(0.5788, 0.3001, 0.5613, 0.6784);
    transform: rotateY(180deg);
  }
  55% {
    -webkit-animation-timing-function: cubic-bezier(0.1545, 0.4929, 0.6089, 0.9373);
            animation-timing-function: cubic-bezier(0.1545, 0.4929, 0.6089, 0.9373);
    transform: rotateY(238.68deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes ld-flip-h {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1909, 0.4373, 0.4509, 0.7454);
            animation-timing-function: cubic-bezier(0.1909, 0.4373, 0.4509, 0.7454);
    transform: rotateY(0);
  }
  30% {
    -webkit-animation-timing-function: cubic-bezier(0.128, 0.2315, 0.9704, 0.8632);
            animation-timing-function: cubic-bezier(0.128, 0.2315, 0.9704, 0.8632);
    transform: rotateY(153.72deg);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.5788, 0.3001, 0.5613, 0.6784);
            animation-timing-function: cubic-bezier(0.5788, 0.3001, 0.5613, 0.6784);
    transform: rotateY(180deg);
  }
  55% {
    -webkit-animation-timing-function: cubic-bezier(0.1545, 0.4929, 0.6089, 0.9373);
            animation-timing-function: cubic-bezier(0.1545, 0.4929, 0.6089, 0.9373);
    transform: rotateY(238.68deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-flip-h {
  -webkit-animation: ld-flip-h 1s infinite linear;
          animation: ld-flip-h 1s infinite linear;
}

@-webkit-keyframes ld-flip-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1909, 0.4373, 0.4509, 0.7454);
            animation-timing-function: cubic-bezier(0.1909, 0.4373, 0.4509, 0.7454);
    transform: rotateX(0);
  }
  30% {
    -webkit-animation-timing-function: cubic-bezier(0.128, 0.2315, 0.9704, 0.8632);
            animation-timing-function: cubic-bezier(0.128, 0.2315, 0.9704, 0.8632);
    transform: rotateX(153.72deg);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.5788, 0.3001, 0.5613, 0.6784);
            animation-timing-function: cubic-bezier(0.5788, 0.3001, 0.5613, 0.6784);
    transform: rotateX(180deg);
  }
  55% {
    -webkit-animation-timing-function: cubic-bezier(0.1545, 0.4929, 0.6089, 0.9373);
            animation-timing-function: cubic-bezier(0.1545, 0.4929, 0.6089, 0.9373);
    transform: rotateX(238.68deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}

@keyframes ld-flip-v {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1909, 0.4373, 0.4509, 0.7454);
            animation-timing-function: cubic-bezier(0.1909, 0.4373, 0.4509, 0.7454);
    transform: rotateX(0);
  }
  30% {
    -webkit-animation-timing-function: cubic-bezier(0.128, 0.2315, 0.9704, 0.8632);
            animation-timing-function: cubic-bezier(0.128, 0.2315, 0.9704, 0.8632);
    transform: rotateX(153.72deg);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.5788, 0.3001, 0.5613, 0.6784);
            animation-timing-function: cubic-bezier(0.5788, 0.3001, 0.5613, 0.6784);
    transform: rotateX(180deg);
  }
  55% {
    -webkit-animation-timing-function: cubic-bezier(0.1545, 0.4929, 0.6089, 0.9373);
            animation-timing-function: cubic-bezier(0.1545, 0.4929, 0.6089, 0.9373);
    transform: rotateX(238.68deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-flip-v {
  -webkit-animation: ld-flip-v 1s infinite linear;
          animation: ld-flip-v 1s infinite linear;
}

@-webkit-keyframes ld-spin-fast {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
            animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotate(0);
  }
  100% {
    transform: rotate(1800deg);
  }
}

@keyframes ld-spin-fast {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
            animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotate(0);
  }
  100% {
    transform: rotate(1800deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-spin-fast {
  -webkit-animation: ld-spin-fast 1s infinite linear;
          animation: ld-spin-fast 1s infinite linear;
}

@-webkit-keyframes ld-spin {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
            animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ld-spin {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
            animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-spin {
  -webkit-animation: ld-spin 1s infinite linear;
          animation: ld-spin 1s infinite linear;
}

@-webkit-keyframes ld-squeeze {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1685, 0.4459, 0.3641, 0.7833);
            animation-timing-function: cubic-bezier(0.1685, 0.4459, 0.3641, 0.7833);
    transform: scale(0.5, 1);
  }
  30% {
    -webkit-animation-timing-function: cubic-bezier(0.0995, 0.199, 0.9948, 0.959);
            animation-timing-function: cubic-bezier(0.0995, 0.199, 0.9948, 0.959);
    transform: scale(0.949, 0.551);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.6064, 0.3078, 0.5406, 0.6764);
            animation-timing-function: cubic-bezier(0.6064, 0.3078, 0.5406, 0.6764);
    transform: scale(1, 0.5);
  }
  55% {
    -webkit-animation-timing-function: cubic-bezier(0.1401, 0.5826, 0.6091, 0.9651);
            animation-timing-function: cubic-bezier(0.1401, 0.5826, 0.6091, 0.9651);
    transform: scale(0.802, 0.698);
  }
  100% {
    transform: scale(0.5, 1);
  }
}

@keyframes ld-squeeze {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.1685, 0.4459, 0.3641, 0.7833);
            animation-timing-function: cubic-bezier(0.1685, 0.4459, 0.3641, 0.7833);
    transform: scale(0.5, 1);
  }
  30% {
    -webkit-animation-timing-function: cubic-bezier(0.0995, 0.199, 0.9948, 0.959);
            animation-timing-function: cubic-bezier(0.0995, 0.199, 0.9948, 0.959);
    transform: scale(0.949, 0.551);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.6064, 0.3078, 0.5406, 0.6764);
            animation-timing-function: cubic-bezier(0.6064, 0.3078, 0.5406, 0.6764);
    transform: scale(1, 0.5);
  }
  55% {
    -webkit-animation-timing-function: cubic-bezier(0.1401, 0.5826, 0.6091, 0.9651);
            animation-timing-function: cubic-bezier(0.1401, 0.5826, 0.6091, 0.9651);
    transform: scale(0.802, 0.698);
  }
  100% {
    transform: scale(0.5, 1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-squeeze {
  -webkit-animation: ld-squeeze 1s infinite linear;
          animation: ld-squeeze 1s infinite linear;
}

@-webkit-keyframes ld-static {}

@keyframes ld-static {}/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-static {
  -webkit-animation: ld-static 1s infinite linear;
          animation: ld-static 1s infinite linear;
}

@-webkit-keyframes ld-surprise {
  0% {
    transform: skewX(0) scale(1);
  }
  10% {
    transform: skewX(-25deg) scale(0.5);
  }
  20% {
    transform: skewX(-25deg) scale(0.5);
  }
  30% {
    transform: skewX(25deg) scale(1);
  }
  40% {
    transform: skewX(-25deg) scale(1);
  }
  50% {
    transform: skewX(25deg) scale(1);
  }
  60% {
    transform: skewX(-25deg) scale(1);
  }
  70% {
    transform: skewX(25deg) scale(1);
  }
  80% {
    transform: skewX(-25deg) scale(1);
  }
  90% {
    transform: skewX(25deg) scale(1);
  }
  100% {
    transform: skewX(-25deg) scale(1);
  }
}

@keyframes ld-surprise {
  0% {
    transform: skewX(0) scale(1);
  }
  10% {
    transform: skewX(-25deg) scale(0.5);
  }
  20% {
    transform: skewX(-25deg) scale(0.5);
  }
  30% {
    transform: skewX(25deg) scale(1);
  }
  40% {
    transform: skewX(-25deg) scale(1);
  }
  50% {
    transform: skewX(25deg) scale(1);
  }
  60% {
    transform: skewX(-25deg) scale(1);
  }
  70% {
    transform: skewX(25deg) scale(1);
  }
  80% {
    transform: skewX(-25deg) scale(1);
  }
  90% {
    transform: skewX(25deg) scale(1);
  }
  100% {
    transform: skewX(-25deg) scale(1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-surprise {
  -webkit-animation: ld-surprise 1s infinite linear;
          animation: ld-surprise 1s infinite linear;
}

@-webkit-keyframes ld-measure {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  3.33333% {
    transform: translate(0, 0) rotate(-14.99241deg);
  }
  6.66667% {
    transform: translate(0, 0) rotate(10.93733deg);
  }
  10% {
    transform: translate(0, 0) rotate(10.60793deg);
  }
  13.33333% {
    transform: translate(0, 0) rotate(-10.26249deg);
  }
  16.66667% {
    transform: translate(0, 0) rotate(0.47337deg);
  }
  20% {
    transform: translate(0, 0) rotate(15deg);
  }
  23.33333% {
    transform: translate(0, 0) rotate(0.48087deg);
  }
  26.66667% {
    transform: translate(0, 0) rotate(-10.26796deg);
  }
  30% {
    transform: translate(0, 0) rotate(10.60262deg);
  }
  33.33333% {
    transform: translate(0, 0) rotate(10.94246deg);
  }
  36.66667% {
    transform: translate(0, 0) rotate(-14.99265deg);
  }
  40% {
    transform: translate(0, 0) rotate(-0.0075deg);
  }
  43.33333% {
    transform: translate(0, 0) rotate(14.99217deg);
  }
  46.66667% {
    transform: translate(0, 0) rotate(-10.93219deg);
  }
  50% {
    transform: translate(0, 0) rotate(-10.61323deg);
  }
  53.33333% {
    transform: translate(0, 0) rotate(10.25702deg);
  }
  56.66667% {
    transform: translate(0, 0) rotate(-0.46588deg);
  }
  60% {
    transform: translate(0, 0) rotate(-15deg);
  }
  63.33333% {
    transform: translate(0, 0) rotate(-0.48836deg);
  }
  66.66667% {
    transform: translate(0, 0) rotate(10.27343deg);
  }
  70% {
    transform: translate(0, 0) rotate(-10.59732deg);
  }
  73.33333% {
    transform: translate(0, 0) rotate(-10.94759deg);
  }
  76.66667% {
    transform: translate(0, 0) rotate(14.99288deg);
  }
  80% {
    transform: translate(0, 0) rotate(0.015deg);
  }
  83.33333% {
    transform: translate(0, 0) rotate(-14.99193deg);
  }
  86.66667% {
    transform: translate(0, 0) rotate(10.92706deg);
  }
  90% {
    transform: translate(0, 0) rotate(10.61853deg);
  }
  93.33333% {
    transform: translate(0, 0) rotate(-10.25155deg);
  }
  96.66667% {
    transform: translate(0, 0) rotate(0.45838deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes ld-measure {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  3.33333% {
    transform: translate(0, 0) rotate(-14.99241deg);
  }
  6.66667% {
    transform: translate(0, 0) rotate(10.93733deg);
  }
  10% {
    transform: translate(0, 0) rotate(10.60793deg);
  }
  13.33333% {
    transform: translate(0, 0) rotate(-10.26249deg);
  }
  16.66667% {
    transform: translate(0, 0) rotate(0.47337deg);
  }
  20% {
    transform: translate(0, 0) rotate(15deg);
  }
  23.33333% {
    transform: translate(0, 0) rotate(0.48087deg);
  }
  26.66667% {
    transform: translate(0, 0) rotate(-10.26796deg);
  }
  30% {
    transform: translate(0, 0) rotate(10.60262deg);
  }
  33.33333% {
    transform: translate(0, 0) rotate(10.94246deg);
  }
  36.66667% {
    transform: translate(0, 0) rotate(-14.99265deg);
  }
  40% {
    transform: translate(0, 0) rotate(-0.0075deg);
  }
  43.33333% {
    transform: translate(0, 0) rotate(14.99217deg);
  }
  46.66667% {
    transform: translate(0, 0) rotate(-10.93219deg);
  }
  50% {
    transform: translate(0, 0) rotate(-10.61323deg);
  }
  53.33333% {
    transform: translate(0, 0) rotate(10.25702deg);
  }
  56.66667% {
    transform: translate(0, 0) rotate(-0.46588deg);
  }
  60% {
    transform: translate(0, 0) rotate(-15deg);
  }
  63.33333% {
    transform: translate(0, 0) rotate(-0.48836deg);
  }
  66.66667% {
    transform: translate(0, 0) rotate(10.27343deg);
  }
  70% {
    transform: translate(0, 0) rotate(-10.59732deg);
  }
  73.33333% {
    transform: translate(0, 0) rotate(-10.94759deg);
  }
  76.66667% {
    transform: translate(0, 0) rotate(14.99288deg);
  }
  80% {
    transform: translate(0, 0) rotate(0.015deg);
  }
  83.33333% {
    transform: translate(0, 0) rotate(-14.99193deg);
  }
  86.66667% {
    transform: translate(0, 0) rotate(10.92706deg);
  }
  90% {
    transform: translate(0, 0) rotate(10.61853deg);
  }
  93.33333% {
    transform: translate(0, 0) rotate(-10.25155deg);
  }
  96.66667% {
    transform: translate(0, 0) rotate(0.45838deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-measure {
  -webkit-animation: ld-measure 5s infinite linear;
          animation: ld-measure 5s infinite linear;
}

@-webkit-keyframes ld-shiver {
  0% {
    transform: translate(0, 0) scale(1);
  }
  3.33333% {
    transform: translate(0, 0) scale(1.04279);
  }
  6.66667% {
    transform: translate(0, 0) scale(1.00524);
  }
  10% {
    transform: translate(0, 0) scale(0.96369);
  }
  13.33333% {
    transform: translate(0, 0) scale(0.95064);
  }
  16.66667% {
    transform: translate(0, 0) scale(0.97651);
  }
  20% {
    transform: translate(0, 0) scale(1.02078);
  }
  23.33333% {
    transform: translate(0, 0) scale(1.04875);
  }
  26.66667% {
    transform: translate(0, 0) scale(1.03832);
  }
  30% {
    transform: translate(0, 0) scale(0.99777);
  }
  33.33333% {
    transform: translate(0, 0) scale(0.95897);
  }
  36.66667% {
    transform: translate(0, 0) scale(0.95244);
  }
  40% {
    transform: translate(0, 0) scale(0.98335);
  }
  43.33333% {
    transform: translate(0, 0) scale(1.02733);
  }
  46.66667% {
    transform: translate(0, 0) scale(1.04988);
  }
  50% {
    transform: translate(0, 0) scale(1.0331);
  }
  53.33333% {
    transform: translate(0, 0) scale(0.99035);
  }
  56.66667% {
    transform: translate(0, 0) scale(0.95507);
  }
  60% {
    transform: translate(0, 0) scale(0.95527);
  }
  63.33333% {
    transform: translate(0, 0) scale(0.99057);
  }
  66.66667% {
    transform: translate(0, 0) scale(1.03343);
  }
  70% {
    transform: translate(0, 0) scale(1.04984);
  }
  73.33333% {
    transform: translate(0, 0) scale(1.02714);
  }
  76.66667% {
    transform: translate(0, 0) scale(0.98293);
  }
  80% {
    transform: translate(0, 0) scale(0.9523);
  }
  83.33333% {
    transform: translate(0, 0) scale(0.9591);
  }
  86.66667% {
    transform: translate(0, 0) scale(0.99821);
  }
  90% {
    transform: translate(0, 0) scale(1.0386);
  }
  93.33333% {
    transform: translate(0, 0) scale(1.0487);
  }
  96.66667% {
    transform: translate(0, 0) scale(1.02038);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes ld-shiver {
  0% {
    transform: translate(0, 0) scale(1);
  }
  3.33333% {
    transform: translate(0, 0) scale(1.04279);
  }
  6.66667% {
    transform: translate(0, 0) scale(1.00524);
  }
  10% {
    transform: translate(0, 0) scale(0.96369);
  }
  13.33333% {
    transform: translate(0, 0) scale(0.95064);
  }
  16.66667% {
    transform: translate(0, 0) scale(0.97651);
  }
  20% {
    transform: translate(0, 0) scale(1.02078);
  }
  23.33333% {
    transform: translate(0, 0) scale(1.04875);
  }
  26.66667% {
    transform: translate(0, 0) scale(1.03832);
  }
  30% {
    transform: translate(0, 0) scale(0.99777);
  }
  33.33333% {
    transform: translate(0, 0) scale(0.95897);
  }
  36.66667% {
    transform: translate(0, 0) scale(0.95244);
  }
  40% {
    transform: translate(0, 0) scale(0.98335);
  }
  43.33333% {
    transform: translate(0, 0) scale(1.02733);
  }
  46.66667% {
    transform: translate(0, 0) scale(1.04988);
  }
  50% {
    transform: translate(0, 0) scale(1.0331);
  }
  53.33333% {
    transform: translate(0, 0) scale(0.99035);
  }
  56.66667% {
    transform: translate(0, 0) scale(0.95507);
  }
  60% {
    transform: translate(0, 0) scale(0.95527);
  }
  63.33333% {
    transform: translate(0, 0) scale(0.99057);
  }
  66.66667% {
    transform: translate(0, 0) scale(1.03343);
  }
  70% {
    transform: translate(0, 0) scale(1.04984);
  }
  73.33333% {
    transform: translate(0, 0) scale(1.02714);
  }
  76.66667% {
    transform: translate(0, 0) scale(0.98293);
  }
  80% {
    transform: translate(0, 0) scale(0.9523);
  }
  83.33333% {
    transform: translate(0, 0) scale(0.9591);
  }
  86.66667% {
    transform: translate(0, 0) scale(0.99821);
  }
  90% {
    transform: translate(0, 0) scale(1.0386);
  }
  93.33333% {
    transform: translate(0, 0) scale(1.0487);
  }
  96.66667% {
    transform: translate(0, 0) scale(1.02038);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-shiver {
  -webkit-animation: ld-shiver .5s infinite linear;
          animation: ld-shiver .5s infinite linear;
}

@-webkit-keyframes ld-swim {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  8.33333% {
    transform: translate(-5.96462px, 4.90845px) rotate(-13.66821deg);
  }
  16.66667% {
    transform: translate(5.25471px, -2.05606px) rotate(0.47337deg);
  }
  25% {
    transform: translate(2.30929px, 5.79372px) rotate(13.8564deg);
  }
  33.33333% {
    transform: translate(-5.75556px, -4.60802px) rotate(10.94246deg);
  }
  41.66667% {
    transform: translate(3.73522px, 5.97742px) rotate(-14.03079deg);
  }
  50% {
    transform: translate(4.2628px, -3.01222px) rotate(-10.61323deg);
  }
  58.33333% {
    transform: translate(-4.65975px, -2.51269px) rotate(5.2869deg);
  }
  66.66667% {
    transform: translate(1.64024px, -1.05167px) rotate(10.27343deg);
  }
  75% {
    transform: translate(5.55954px, -4.22763px) rotate(-5.72726deg);
  }
  83.33333% {
    transform: translate(-2.84602px, 5.91439px) rotate(-14.99193deg);
  }
  91.66667% {
    transform: translate(-0.70744px, -5.43064px) rotate(6.16192deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes ld-swim {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  8.33333% {
    transform: translate(-5.96462px, 4.90845px) rotate(-13.66821deg);
  }
  16.66667% {
    transform: translate(5.25471px, -2.05606px) rotate(0.47337deg);
  }
  25% {
    transform: translate(2.30929px, 5.79372px) rotate(13.8564deg);
  }
  33.33333% {
    transform: translate(-5.75556px, -4.60802px) rotate(10.94246deg);
  }
  41.66667% {
    transform: translate(3.73522px, 5.97742px) rotate(-14.03079deg);
  }
  50% {
    transform: translate(4.2628px, -3.01222px) rotate(-10.61323deg);
  }
  58.33333% {
    transform: translate(-4.65975px, -2.51269px) rotate(5.2869deg);
  }
  66.66667% {
    transform: translate(1.64024px, -1.05167px) rotate(10.27343deg);
  }
  75% {
    transform: translate(5.55954px, -4.22763px) rotate(-5.72726deg);
  }
  83.33333% {
    transform: translate(-2.84602px, 5.91439px) rotate(-14.99193deg);
  }
  91.66667% {
    transform: translate(-0.70744px, -5.43064px) rotate(6.16192deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-swim {
  -webkit-animation: ld-swim 10s infinite linear;
          animation: ld-swim 10s infinite linear;
}

@-webkit-keyframes ld-tremble {
  0% {
    transform: translate(0, 0);
  }
  3.33333% {
    transform: translate(-0.18923px, 1.45485px);
  }
  6.66667% {
    transform: translate(-0.84296px, -1.32524px);
  }
  10% {
    transform: translate(0.67971px, 1.00422px);
  }
  13.33333% {
    transform: translate(-0.5056px, 0.83616px);
  }
  16.66667% {
    transform: translate(1.31368px, -0.51401px);
  }
  20% {
    transform: translate(-1.21184px, 1.49193px);
  }
  23.33333% {
    transform: translate(1.09065px, -0.21259px);
  }
  26.66667% {
    transform: translate(-1.49916px, 0.56159px);
  }
  30% {
    transform: translate(1.48086px, 1.21228px);
  }
  33.33333% {
    transform: translate(-1.43889px, -1.152px);
  }
  36.66667% {
    transform: translate(1.35914px, 1.34835px);
  }
  40% {
    transform: translate(-1.42834px, 0.3091px);
  }
  43.33333% {
    transform: translate(1.47472px, -1.49889px);
  }
  46.66667% {
    transform: translate(-0.92402px, 1.4416px);
  }
  50% {
    transform: translate(1.0657px, -0.75306px);
  }
  53.33333% {
    transform: translate(-1.19035px, -1.07484px);
  }
  56.66667% {
    transform: translate(0.28828px, 0.79337px);
  }
  60% {
    transform: translate(-0.47167px, -1.42789px);
  }
  63.33333% {
    transform: translate(0.64753px, -0.09795px);
  }
  66.66667% {
    transform: translate(0.41006px, -0.26292px);
  }
  70% {
    transform: translate(-0.22477px, -1.3683px);
  }
  73.33333% {
    transform: translate(0.03588px, 0.92931px);
  }
  76.66667% {
    transform: translate(-1.01937px, -1.18398px);
  }
  80% {
    transform: translate(0.8724px, -0.60494px);
  }
  83.33333% {
    transform: translate(-0.71151px, 1.4786px);
  }
  86.66667% {
    transform: translate(1.40734px, -1.49607px);
  }
  90% {
    transform: translate(-1.33062px, 0.46957px);
  }
  93.33333% {
    transform: translate(1.23264px, 1.26738px);
  }
  96.66667% {
    transform: translate(-1.48975px, -1.03867px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes ld-tremble {
  0% {
    transform: translate(0, 0);
  }
  3.33333% {
    transform: translate(-0.18923px, 1.45485px);
  }
  6.66667% {
    transform: translate(-0.84296px, -1.32524px);
  }
  10% {
    transform: translate(0.67971px, 1.00422px);
  }
  13.33333% {
    transform: translate(-0.5056px, 0.83616px);
  }
  16.66667% {
    transform: translate(1.31368px, -0.51401px);
  }
  20% {
    transform: translate(-1.21184px, 1.49193px);
  }
  23.33333% {
    transform: translate(1.09065px, -0.21259px);
  }
  26.66667% {
    transform: translate(-1.49916px, 0.56159px);
  }
  30% {
    transform: translate(1.48086px, 1.21228px);
  }
  33.33333% {
    transform: translate(-1.43889px, -1.152px);
  }
  36.66667% {
    transform: translate(1.35914px, 1.34835px);
  }
  40% {
    transform: translate(-1.42834px, 0.3091px);
  }
  43.33333% {
    transform: translate(1.47472px, -1.49889px);
  }
  46.66667% {
    transform: translate(-0.92402px, 1.4416px);
  }
  50% {
    transform: translate(1.0657px, -0.75306px);
  }
  53.33333% {
    transform: translate(-1.19035px, -1.07484px);
  }
  56.66667% {
    transform: translate(0.28828px, 0.79337px);
  }
  60% {
    transform: translate(-0.47167px, -1.42789px);
  }
  63.33333% {
    transform: translate(0.64753px, -0.09795px);
  }
  66.66667% {
    transform: translate(0.41006px, -0.26292px);
  }
  70% {
    transform: translate(-0.22477px, -1.3683px);
  }
  73.33333% {
    transform: translate(0.03588px, 0.92931px);
  }
  76.66667% {
    transform: translate(-1.01937px, -1.18398px);
  }
  80% {
    transform: translate(0.8724px, -0.60494px);
  }
  83.33333% {
    transform: translate(-0.71151px, 1.4786px);
  }
  86.66667% {
    transform: translate(1.40734px, -1.49607px);
  }
  90% {
    transform: translate(-1.33062px, 0.46957px);
  }
  93.33333% {
    transform: translate(1.23264px, 1.26738px);
  }
  96.66667% {
    transform: translate(-1.48975px, -1.03867px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-tremble {
  -webkit-animation: ld-tremble .5s infinite linear;
          animation: ld-tremble .5s infinite linear;
}

@-webkit-keyframes ld-vortex {
  0%, 60% {
    -webkit-animation-timing-function: cubic-bezier(0.3, 0, 1, 0.7);
            animation-timing-function: cubic-bezier(0.3, 0, 1, 0.7);
  }
  0% {
    opacity: 0;
    transform: rotate(-1800deg) scale(0.3);
  }
  60% {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(0) scale(1);
  }
}

@keyframes ld-vortex {
  0%, 60% {
    -webkit-animation-timing-function: cubic-bezier(0.3, 0, 1, 0.7);
            animation-timing-function: cubic-bezier(0.3, 0, 1, 0.7);
  }
  0% {
    opacity: 0;
    transform: rotate(-1800deg) scale(0.3);
  }
  60% {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(0) scale(1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-vortex {
  -webkit-animation: ld-vortex 1s infinite linear;
          animation: ld-vortex 1s infinite linear;
}

@-webkit-keyframes ld-vortex-alt {
  0%, 60% {
    -webkit-animation-timing-function: cubic-bezier(0.3, 0, 1, 0.7);
            animation-timing-function: cubic-bezier(0.3, 0, 1, 0.7);
  }
  0% {
    opacity: 0;
    transform: rotate(-1800deg) scale(3);
  }
  60% {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(0) scale(1);
  }
}

@keyframes ld-vortex-alt {
  0%, 60% {
    -webkit-animation-timing-function: cubic-bezier(0.3, 0, 1, 0.7);
            animation-timing-function: cubic-bezier(0.3, 0, 1, 0.7);
  }
  0% {
    opacity: 0;
    transform: rotate(-1800deg) scale(3);
  }
  60% {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(0) scale(1);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-vortex-alt {
  -webkit-animation: ld-vortex-alt 1s infinite linear;
          animation: ld-vortex-alt 1s infinite linear;
}

@-webkit-keyframes ld-wrench {
  20%, 36%, 70%, 86% {
    transform: rotate(0);
  }
  0%, 50%, 100% {
    transform: rotate(45deg);
  }
}

@keyframes ld-wrench {
  20%, 36%, 70%, 86% {
    transform: rotate(0);
  }
  0%, 50%, 100% {
    transform: rotate(45deg);
  }
}

/* line 1, app/assets/stylesheets/loading_buttons.css */
.ld.ld-wrench {
  -webkit-animation: ld-wrench 1s infinite linear;
          animation: ld-wrench 1s infinite linear;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-right, .ld-ext-left, .ld-ext-bottom, .ld-ext-top, .ld-over, .ld-over-inverse, .ld-over-full, .ld-over-full-inverse {
  position: relative;
  transition: all .3s;
  transition-timing-function: ease-in;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-right > .ld, .ld-ext-left > .ld, .ld-ext-bottom > .ld, .ld-ext-top > .ld, .ld-over > .ld, .ld-over-inverse > .ld, .ld-over-full > .ld, .ld-over-full-inverse > .ld {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  margin: -0.5em;
  opacity: 0;
  z-index: -1;
  transition: all .3s;
  transition-timing-function: ease-in;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-right > .ld > *, .ld-ext-left > .ld > *, .ld-ext-bottom > .ld > *, .ld-ext-top > .ld > *, .ld-over > .ld > *, .ld-over-inverse > .ld > *, .ld-over-full > .ld > *, .ld-over-full-inverse > .ld > * {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-0.5em, -0.5em);
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-right.running > .ld, .ld-ext-left.running > .ld, .ld-ext-bottom.running > .ld, .ld-ext-top.running > .ld, .ld-over.running > .ld, .ld-over-inverse.running > .ld, .ld-over-full.running > .ld, .ld-over-full-inverse.running > .ld {
  opacity: 1;
  z-index: auto;
  visibility: visible;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-right.running {
  padding-right: 2.5em !important;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-right > .ld {
  top: 50%;
  left: auto;
  right: 1.25em;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-left.running {
  padding-left: 2.5em !important;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-left > .ld {
  top: 50%;
  right: auto;
  left: 1.25em;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-bottom.running {
  padding-bottom: 2.5em !important;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-bottom > .ld {
  top: auto;
  left: 50%;
  bottom: 1.25em;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-top.running {
  padding-top: 2.5em !important;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-ext-top > .ld {
  bottom: auto;
  left: 50%;
  top: 1.25em;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over:before, .ld-over-inverse:before, .ld-over-full:before, .ld-over-full-inverse:before {
  content: " ";
  display: block;
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .3s;
  transition-timing-function: ease-in;
  background: rgba(240, 240, 240, 0.8);
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over.running > .ld, .ld-over-inverse.running > .ld, .ld-over-full.running > .ld, .ld-over-full-inverse.running > .ld {
  z-index: 4001;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over.running:before, .ld-over-inverse.running:before, .ld-over-full.running:before, .ld-over-full-inverse.running:before {
  opacity: 1;
  z-index: 4000;
  display: block;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over-full.running > .ld, .ld-over-full-inverse.running > .ld, .ld-over-full.running:before, .ld-over-full-inverse.running:before {
  position: fixed;
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over-full > .ld {
  color: rgba(0, 0, 0, 0.8);
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over-full:before, .ld-over-full-inverse:before {
  background: rgba(255, 255, 255, 0.8);
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over-inverse > .ld {
  color: rgba(255, 255, 255, 0.8);
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over-inverse:before {
  background: rgba(0, 0, 0, 0.6);
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over-full-inverse > .ld {
  color: rgba(255, 255, 255, 0.8);
}

/* line 2, app/assets/stylesheets/loading_buttons.css */
.ld-over-full-inverse:before {
  background: rgba(0, 0, 0, 0.6);
}

/* line 2, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-button--icon-horizontal-rule::before {
  background-image: url(/assets/trix_horizontal_rule-55c78ce5e18c62fb7925c403e5d1924629dc05978da170d1177cf945f4cdbbee.svg);
}

/* line 3, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-button--icon-color::before {
  background-image: url(/assets/trix_color-ffb1a1e6a3da87458805f54dafab76a83e86bd0d74630549e4d6e42fe4074115.svg);
}

/* line 5, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--heading {
  max-width: 180px;
}

/* line 7, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color {
  max-width: 265px;
}

/* line 10, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-dialog__link-fields {
  flex-direction: column;
}

/* line 11, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group {
  margin: 1px;
}

/* line 14, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group button {
  width: 28px;
}

/* line 16, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group button:after {
  content: "Ab";
}

/* line 17, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group button.trix-active::after {
  content: "✓";
}

/* line 20, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=fgColor1] {
  color: #887626;
}

/* line 21, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=fgColor2] {
  color: #887626;
}

/* line 22, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=fgColor3] {
  color: #cf0000;
}

/* line 23, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=fgColor4] {
  color: #d81caa;
}

/* line 24, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=fgColor5] {
  color: #9013fe;
}

/* line 25, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=fgColor6] {
  color: #0562b9;
}

/* line 26, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=fgColor7] {
  color: #118a0f;
}

/* line 27, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=fgColor8] {
  color: #945216;
}

/* line 28, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=fgColor9] {
  color: #666666;
}

/* line 30, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=bgColor1] {
  background-color: #faf785;
}

/* line 31, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=bgColor2] {
  background-color: #fff0db;
}

/* line 32, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=bgColor3] {
  background-color: #ffe5e5;
}

/* line 33, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=bgColor4] {
  background-color: #ffe4f7;
}

/* line 34, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=bgColor5] {
  background-color: #f2edff;
}

/* line 35, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=bgColor6] {
  background-color: #e1effc;
}

/* line 36, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=bgColor7] {
  background-color: #e4f8e2;
}

/* line 37, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=bgColor8] {
  background-color: #eee2d7;
}

/* line 38, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog--color .trix-button-group [data-trix-attribute=bgColor9] {
  background-color: #f2f2f2;
}

/* line 42, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog {
  padding: 5px;
}

/* line 44, app/assets/stylesheets/richtext.scss */
trix-toolbar .trix-dialog .trix-dialog-hidden__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* line 55, app/assets/stylesheets/richtext.scss */
trix-editor .attachment[data-trix-mutable][data-trix-content-type~="vnd.rubyonrails.horizontal-rule.html"] {
  box-shadow: 0 0 0 2px highlight;
}

/* line 63, app/assets/stylesheets/richtext.scss */
.trix-content h1, .trix-content h2, .trix-content h3, .trix-content h4, .trix-content h5, .trix-content h6 {
  line-height: 1.2;
  margin: 0;
}

/* line 68, app/assets/stylesheets/richtext.scss */
.trix-content h1 {
  font-size: 36px;
}

/* line 69, app/assets/stylesheets/richtext.scss */
.trix-content h2 {
  font-size: 26px;
}

/* line 70, app/assets/stylesheets/richtext.scss */
.trix-content h3 {
  font-size: 18px;
}

/* line 71, app/assets/stylesheets/richtext.scss */
.trix-content h4 {
  font-size: 18px;
}

/* line 72, app/assets/stylesheets/richtext.scss */
.trix-content h5 {
  font-size: 14px;
}

/* line 73, app/assets/stylesheets/richtext.scss */
.trix-content h6 {
  font-size: 12px;
}

/* line 75, app/assets/stylesheets/richtext.scss */
.trix-content .attachment {
  width: 100%;
}

/* line 77, app/assets/stylesheets/richtext.scss */
.trix-content .attachment--content.attachment--horizontal-rule,
.trix-content .attachment--content[data-trix-content-type~='vnd.rubyonrails.horizontal-rule.html'] {
  padding: 1.5em 0 0.5em !important;
  margin-bottom: 0.5em;
}

/* line 83, app/assets/stylesheets/richtext.scss */
.trix-content .attachment--content.attachment--horizontal-rule hr,
.trix-content .attachment--content[data-trix-content-type~='vnd.rubyonrails.horizontal-rule.html'] hr {
  margin: 0;
  width: 20%;
  border-color: currentColor;
}

/* line 2, app/assets/stylesheets/dashboard.css */
.feather {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
}

/*
 * Sidebar
 */
/* line 12, app/assets/stylesheets/dashboard.css */
.sidebar {
  /*  width: 255px; Heidi's fix #heidi - see also 1st_load_framework.css */
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  z-index: 100;
  /* Behind the navbar */
  padding: 0;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}

/* line 23, app/assets/stylesheets/dashboard.css */
.sidebar-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 48px;
  /* Height of navbar */
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto;
  /* Scrollable contents if viewport is shorter than content. */
}

/* line 33, app/assets/stylesheets/dashboard.css */
.sidebar .nav-link {
  font-weight: 500;
  color: #444;
}

/* line 38, app/assets/stylesheets/dashboard.css */
.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #999;
}

/* line 43, app/assets/stylesheets/dashboard.css */
.sidebar .nav-link:hover {
  color: #777;
  text-decoration: underline;
}

/* line 48, app/assets/stylesheets/dashboard.css */
.sidebar .nav-link:active {
  color: darkseagreen;
}

/* line 52, app/assets/stylesheets/dashboard.css */
.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

/* line 57, app/assets/stylesheets/dashboard.css */
.sidebar-heading-large {
  font-size: 1rem;
  text-transform: uppercase;
}

/* line 63, app/assets/stylesheets/dashboard.css */
.form-control-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 69, app/assets/stylesheets/dashboard.css */
.form-control-dark:focus {
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

/*
 * Utilities
 */
/* line 78, app/assets/stylesheets/dashboard.css */
.border-top {
  border-top: 1px solid #e5e5e5;
}

/* line 79, app/assets/stylesheets/dashboard.css */
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}
