@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,500italic,500,700,700italic);
.editr {
  border: 1px solid #e4e4e4;
  width: 100%;
}
.editr--toolbar {
  background: #f6f6f6;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
}
.editr--toolbar a {
  display: inline-block;
  width: 8vw;
  max-width: 32px;
  height: 32px;
  color: #333;
  fill: #333;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.editr--toolbar a:hover {
  background: rgba(0,0,0,0.1);
}
.editr--toolbar a:active {
  background: rgba(0,0,0,0.2);
}
.editr--toolbar a svg {
  width: 16px;
  height: 16px;
  margin: 8px auto;
}
.editr--toolbar a svg path {
  fill: inherit;
}
.editr--toolbar a.vw-btn-separator {
  width: 1px;
  margin: 0 8px;
}
.editr--toolbar a.vw-btn-separator:hover {
  background: initial;
  cursor: default;
}
.editr--toolbar a.vw-btn-separator i.vw-separator {
  border-left: 1px solid rgba(0,0,0,0.1);
  height: 100%;
  position: absolute;
  width: 1px;
}
.editr--toolbar .dashboard {
  width: 100%;
  position: absolute;
  top: 32px;
  left: 0;
  text-align: left;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #f6f6f6;
}
.editr--content {
  min-height: 150px;
  padding: 12px 8px 16px 8px;
  line-height: 1.33;
  font-family: inherit;
  color: inherit;
  overflow-y: auto;
}
.editr--content[contenteditable=true]:empty:before {
  content: attr(placeholder);
  color: rgba(0,0,0,0.3);
  display: block; /* For Firefox */
}
.editr--content img {
  max-width: 100%;
}
.editr--content table {
  width: 100%;
  border-collapse: collapse;
}
.editr--content table th {
  text-align: left;
}
.editr--content table th,
.editr--content table td {
  border: 1px solid #ddd;
  padding: 2px;
}
.editr--content:focus {
  outline: 0;
}
.editr--content ul li,
.editr--content ol li {
  list-style-position: inside;
}
@media screen and (max-width: 320px) {
.editr--toolbar a {
    margin: 0 2px;
}
.editr--toolbar a.vw-btn-separator {
    display: none;
}
}/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px); }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px); } }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
.dropzone, .dropzone * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        -webkit-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      -webkit-transform: scale(1.05, 1.05);
      transform: scale(1.05, 1.05);
      -webkit-filter: blur(8px);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      -webkit-transition: all 0.2s linear;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      -webkit-animation: pulse 6s ease infinite;
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        -webkit-transition: width 300ms ease-in-out;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: -webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }

.vue-dropzone {
  border: 2px solid #E5E5E5;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.2px;
  color: #777;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.vue-dropzone:hover {
  background-color: #F6F6F6;
}
.vue-dropzone i {
  color: #CCC;
}
.vue-dropzone .dz-preview .dz-image {
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.vue-dropzone .dz-preview .dz-image img:not([src]) {
  width: 200px;
  height: 200px;
}
.vue-dropzone .dz-preview .dz-image:hover img {
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
}
.vue-dropzone .dz-preview .dz-details {
  bottom: 0;
  top: 0;
  color: white;
  background-color: rgba(33, 150, 243, 0.8);
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
  text-align: left;
}
.vue-dropzone .dz-preview .dz-details .dz-filename {
  overflow: hidden;
}
.vue-dropzone .dz-preview .dz-details .dz-filename span,
.vue-dropzone .dz-preview .dz-details .dz-size span {
  background-color: transparent;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: none;
}
.vue-dropzone .dz-preview .dz-details .dz-filename:hover span {
  background-color: transparent;
  border: none;
}
.vue-dropzone .dz-preview .dz-progress .dz-upload {
  background: #cccccc;
}
.vue-dropzone .dz-preview .dz-remove {
  position: absolute;
  z-index: 30;
  color: white;
  margin-left: 15px;
  padding: 10px;
  top: inherit;
  bottom: 15px;
  border: 2px white solid;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  opacity: 0;
}
.vue-dropzone .dz-preview:hover .dz-remove {
  opacity: 1;
}
.vue-dropzone .dz-preview .dz-success-mark,
.vue-dropzone .dz-preview .dz-error-mark {
  margin-left: auto;
  margin-top: auto;
  width: 100%;
  top: 35%;
  left: 0;
}
.vue-dropzone .dz-preview .dz-success-mark svg,
.vue-dropzone .dz-preview .dz-error-mark svg {
  margin-left: auto;
  margin-right: auto;
}
.vue-dropzone .dz-preview .dz-error-message {
  top: calc(15%);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  width: 100%;
}
.vue-dropzone .dz-preview .dz-error-message:after {
  bottom: -6px;
  top: initial;
  border-top: 6px solid #a92222;
  border-bottom: none;
}


.form[data-v-ebce4d12] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: end;
      align-content: flex-end;
}
.form label[data-v-ebce4d12] {
  margin-right: 1rem;
}@charset "UTF-8";

/**
 * main.scss
 * Always include this css file last in your view
 */

/*!
 *  Material Design Iconic Font 1.0.1 by Sergey Kupletsky (@zavoloklom) - http://zavoloklom.github.io/material-design-iconic-font/
 *  License - https://github.com/zavoloklom/material-design-iconic-font/blob/gh-pages/License.md (Attribution-ShareAlike 4.0 International license)
 */

@font-face {
  font-family: 'Material Design Iconic Font';
  src: url(/fonts/Material-Design-Iconic-Font.eot?83d896ed524d89eb7cb1273e26be3ea6);
  src: url(/fonts/Material-Design-Iconic-Font.eot?83d896ed524d89eb7cb1273e26be3ea6) format("embedded-opentype"), url(/fonts/Material-Design-Iconic-Font.woff?a2a1ba89e7f9d29f7d5aee76e8b9f7ab) format("woff"), url(/fonts/Material-Design-Iconic-Font.ttf?aa1af632841550199ebdf0c3cc1e47a6) format("truetype"), url(/fonts/Material-Design-Iconic-Font.svg?6383f1e33e4159197aa854dfac4676e1) format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="md-"],
[class*=" md-"] {
  display: inline-block;
  font: normal normal normal 14px/1 'Material Design Iconic Font';
  font-size: inherit;
  speak: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.md {
  line-height: inherit;
  vertical-align: bottom;
}

.md-lg {
  font-size: 1.5em;
  line-height: .5em;
  vertical-align: -35%;
}

.md-2x {
  font-size: 2em;
}

.md-3x {
  font-size: 3em;
}

.md-4x {
  font-size: 4em;
}

.md-5x {
  font-size: 5em;
}

.md-border {
  padding: .2em .25em .15em;
  border: solid 0.08em gray;
  border-radius: .1em;
}

.md-border-circle {
  padding: .2em .25em .15em;
  border: solid 0.08em gray;
  border-radius: 50%;
}

[class^="md-"].pull-left,
[class*=" md-"].pull-left {
  float: left;
  margin-right: .3em;
}

[class^="md-"].pull-right,
[class*=" md-"].pull-right {
  float: right;
  margin-left: .3em;
}

.md-spin {
  -webkit-animation: md-spin 1.5s infinite linear;
  animation: md-spin 1.5s infinite linear;
}

.md-spin-reverse {
  -webkit-animation: md-spin-reverse 1.5s infinite linear;
  animation: md-spin-reverse 1.5s infinite linear;
}

@-webkit-keyframes md-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes md-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@-webkit-keyframes md-spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}

@keyframes md-spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-359deg);
    transform: rotate(-359deg);
  }
}

.md-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.md-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.md-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.md-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation, mirror=1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.md-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation, mirror=1);
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .md-rotate-90,
:root .md-rotate-180,
:root .md-rotate-270,
:root .md-flip-horizontal,
:root .md-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

/* Material Design Iconic Font uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

/* If you do not want use all icons you can disable icon set here */

.md-3d-rotation:before {
  content: "\F000";
}

.md-accessibility:before {
  content: "\F001";
}

.md-account-balance:before {
  content: "\F002";
}

.md-account-balance-wallet:before {
  content: "\F003";
}

.md-account-box:before {
  content: "\F004";
}

.md-account-child:before {
  content: "\F005";
}

.md-account-circle:before {
  content: "\F006";
}

.md-add-shopping-cart:before {
  content: "\F007";
}

.md-alarm:before {
  content: "\F008";
}

.md-alarm-add:before {
  content: "\F009";
}

.md-alarm-off:before {
  content: "\F00A";
}

.md-alarm-on:before {
  content: "\F00B";
}

.md-android:before {
  content: "\F00C";
}

.md-announcement:before {
  content: "\F00D";
}

.md-aspect-ratio:before {
  content: "\F00E";
}

.md-assessment:before {
  content: "\F00F";
}

.md-assignment:before {
  content: "\F010";
}

.md-assignment-ind:before {
  content: "\F011";
}

.md-assignment-late:before {
  content: "\F012";
}

.md-assignment-return:before {
  content: "\F013";
}

.md-assignment-returned:before {
  content: "\F014";
}

.md-assignment-turned-in:before {
  content: "\F015";
}

.md-autorenew:before {
  content: "\F016";
}

.md-backup:before {
  content: "\F017";
}

.md-book:before {
  content: "\F018";
}

.md-bookmark:before {
  content: "\F019";
}

.md-bookmark-outline:before {
  content: "\F01A";
}

.md-bug-report:before {
  content: "\F01B";
}

.md-cached:before {
  content: "\F01C";
}

.md-class:before {
  content: "\F01D";
}

.md-credit-card:before {
  content: "\F01E";
}

.md-dashboard:before {
  content: "\F01F";
}

.md-delete:before {
  content: "\F020";
}

.md-description:before {
  content: "\F021";
}

.md-dns:before {
  content: "\F022";
}

.md-done:before {
  content: "\F023";
}

.md-done-all:before {
  content: "\F024";
}

.md-event:before {
  content: "\F025";
}

.md-exit-to-app:before {
  content: "\F026";
}

.md-explore:before {
  content: "\F027";
}

.md-extension:before {
  content: "\F028";
}

.md-face-unlock:before {
  content: "\F029";
}

.md-favorite:before {
  content: "\F02A";
}

.md-favorite-outline:before {
  content: "\F02B";
}

.md-find-in-page:before {
  content: "\F02C";
}

.md-find-replace:before {
  content: "\F02D";
}

.md-flip-to-back:before {
  content: "\F02E";
}

.md-flip-to-front:before {
  content: "\F02F";
}

.md-get-app:before {
  content: "\F030";
}

.md-grade:before {
  content: "\F031";
}

.md-group-work:before {
  content: "\F032";
}

.md-help:before {
  content: "\F033";
}

.md-highlight-remove:before {
  content: "\F034";
}

.md-history:before {
  content: "\F035";
}

.md-home:before {
  content: "\F036";
}

.md-https:before {
  content: "\F037";
}

.md-info:before {
  content: "\F038";
}

.md-info-outline:before {
  content: "\F039";
}

.md-input:before {
  content: "\F03A";
}

.md-invert-colors:before {
  content: "\F03B";
}

.md-label:before {
  content: "\F03C";
}

.md-label-outline:before {
  content: "\F03D";
}

.md-language:before {
  content: "\F03E";
}

.md-launch:before {
  content: "\F03F";
}

.md-list:before {
  content: "\F040";
}

.md-lock:before {
  content: "\F041";
}

.md-lock-open:before {
  content: "\F042";
}

.md-lock-outline:before {
  content: "\F043";
}

.md-loyalty:before {
  content: "\F044";
}

.md-markunread-mailbox:before {
  content: "\F045";
}

.md-note-add:before {
  content: "\F046";
}

.md-open-in-browser:before {
  content: "\F047";
}

.md-open-in-new:before {
  content: "\F048";
}

.md-open-with:before {
  content: "\F049";
}

.md-pageview:before {
  content: "\F04A";
}

.md-payment:before {
  content: "\F04B";
}

.md-perm-camera-mic:before {
  content: "\F04C";
}

.md-perm-contact-cal:before {
  content: "\F04D";
}

.md-perm-data-setting:before {
  content: "\F04E";
}

.md-perm-device-info:before {
  content: "\F04F";
}

.md-perm-identity:before {
  content: "\F050";
}

.md-perm-media:before {
  content: "\F051";
}

.md-perm-phone-msg:before {
  content: "\F052";
}

.md-perm-scan-wifi:before {
  content: "\F053";
}

.md-picture-in-picture:before {
  content: "\F054";
}

.md-polymer:before {
  content: "\F055";
}

.md-print:before {
  content: "\F056";
}

.md-query-builder:before {
  content: "\F057";
}

.md-question-answer:before {
  content: "\F058";
}

.md-receipt:before {
  content: "\F059";
}

.md-redeem:before {
  content: "\F05A";
}

.md-report-problem:before {
  content: "\F05B";
}

.md-restore:before {
  content: "\F05C";
}

.md-room:before {
  content: "\F05D";
}

.md-schedule:before {
  content: "\F05E";
}

.md-search:before {
  content: "\F05F";
}

.md-settings:before {
  content: "\F060";
}

.md-settings-applications:before {
  content: "\F061";
}

.md-settings-backup-restore:before {
  content: "\F062";
}

.md-settings-bluetooth:before {
  content: "\F063";
}

.md-settings-cell:before {
  content: "\F064";
}

.md-settings-display:before {
  content: "\F065";
}

.md-settings-ethernet:before {
  content: "\F066";
}

.md-settings-input-antenna:before {
  content: "\F067";
}

.md-settings-input-component:before {
  content: "\F068";
}

.md-settings-input-composite:before {
  content: "\F069";
}

.md-settings-input-hdmi:before {
  content: "\F06A";
}

.md-settings-input-svideo:before {
  content: "\F06B";
}

.md-settings-overscan:before {
  content: "\F06C";
}

.md-settings-phone:before {
  content: "\F06D";
}

.md-settings-power:before {
  content: "\F06E";
}

.md-settings-remote:before {
  content: "\F06F";
}

.md-settings-voice:before {
  content: "\F070";
}

.md-shop:before {
  content: "\F071";
}

.md-shopping-basket:before {
  content: "\F072";
}

.md-shopping-cart:before {
  content: "\F073";
}

.md-shop-two:before {
  content: "\F074";
}

.md-speaker-notes:before {
  content: "\F075";
}

.md-spellcheck:before {
  content: "\F076";
}

.md-star-rate:before {
  content: "\F077";
}

.md-stars:before {
  content: "\F078";
}

.md-store:before {
  content: "\F079";
}

.md-subject:before {
  content: "\F07A";
}

.md-swap-horiz:before {
  content: "\F07B";
}

.md-swap-vert:before {
  content: "\F07C";
}

.md-swap-vert-circle:before {
  content: "\F07D";
}

.md-system-update-tv:before {
  content: "\F07E";
}

.md-tab:before {
  content: "\F07F";
}

.md-tab-unselected:before {
  content: "\F080";
}

.md-theaters:before {
  content: "\F081";
}

.md-thumb-down:before {
  content: "\F082";
}

.md-thumbs-up-down:before {
  content: "\F083";
}

.md-thumb-up:before {
  content: "\F084";
}

.md-toc:before {
  content: "\F085";
}

.md-today:before {
  content: "\F086";
}

.md-track-changes:before {
  content: "\F087";
}

.md-translate:before {
  content: "\F088";
}

.md-trending-down:before {
  content: "\F089";
}

.md-trending-neutral:before {
  content: "\F08A";
}

.md-trending-up:before {
  content: "\F08B";
}

.md-turned-in:before {
  content: "\F08C";
}

.md-turned-in-not:before {
  content: "\F08D";
}

.md-verified-user:before {
  content: "\F08E";
}

.md-view-agenda:before {
  content: "\F08F";
}

.md-view-array:before {
  content: "\F090";
}

.md-view-carousel:before {
  content: "\F091";
}

.md-view-column:before {
  content: "\F092";
}

.md-view-day:before {
  content: "\F093";
}

.md-view-headline:before {
  content: "\F094";
}

.md-view-list:before {
  content: "\F095";
}

.md-view-module:before {
  content: "\F096";
}

.md-view-quilt:before {
  content: "\F097";
}

.md-view-stream:before {
  content: "\F098";
}

.md-view-week:before {
  content: "\F099";
}

.md-visibility:before {
  content: "\F09A";
}

.md-visibility-off:before {
  content: "\F09B";
}

.md-wallet-giftcard:before {
  content: "\F09C";
}

.md-wallet-membership:before {
  content: "\F09D";
}

.md-wallet-travel:before {
  content: "\F09E";
}

.md-work:before {
  content: "\F09F";
}

.md-error:before {
  content: "\F0A0";
}

.md-warning:before {
  content: "\F0A1";
}

.md-album:before {
  content: "\F0A2";
}

.md-av-timer:before {
  content: "\F0A3";
}

.md-closed-caption:before {
  content: "\F0A4";
}

.md-equalizer:before {
  content: "\F0A5";
}

.md-explicit:before {
  content: "\F0A6";
}

.md-fast-forward:before {
  content: "\F0A7";
}

.md-fast-rewind:before {
  content: "\F0A8";
}

.md-games:before {
  content: "\F0A9";
}

.md-hearing:before {
  content: "\F0AA";
}

.md-high-quality:before {
  content: "\F0AB";
}

.md-loop:before {
  content: "\F0AC";
}

.md-mic:before {
  content: "\F0AD";
}

.md-mic-none:before {
  content: "\F0AE";
}

.md-mic-off:before {
  content: "\F0AF";
}

.md-movie:before {
  content: "\F0B0";
}

.md-my-library-add:before {
  content: "\F0B1";
}

.md-my-library-books:before {
  content: "\F0B2";
}

.md-my-library-music:before {
  content: "\F0B3";
}

.md-new-releases:before {
  content: "\F0B4";
}

.md-not-interested:before {
  content: "\F0B5";
}

.md-pause:before {
  content: "\F0B6";
}

.md-pause-circle-fill:before {
  content: "\F0B7";
}

.md-pause-circle-outline:before {
  content: "\F0B8";
}

.md-play-arrow:before {
  content: "\F0B9";
}

.md-play-circle-fill:before {
  content: "\F0BA";
}

.md-play-circle-outline:before {
  content: "\F0BB";
}

.md-playlist-add:before {
  content: "\F0BC";
}

.md-play-shopping-bag:before {
  content: "\F0BD";
}

.md-queue:before {
  content: "\F0BE";
}

.md-queue-music:before {
  content: "\F0BF";
}

.md-radio:before {
  content: "\F0C0";
}

.md-recent-actors:before {
  content: "\F0C1";
}

.md-repeat:before {
  content: "\F0C2";
}

.md-repeat-one:before {
  content: "\F0C3";
}

.md-replay:before {
  content: "\F0C4";
}

.md-shuffle:before {
  content: "\F0C5";
}

.md-skip-next:before {
  content: "\F0C6";
}

.md-skip-previous:before {
  content: "\F0C7";
}

.md-snooze:before {
  content: "\F0C8";
}

.md-stop:before {
  content: "\F0C9";
}

.md-subtitles:before {
  content: "\F0CA";
}

.md-surround-sound:before {
  content: "\F0CB";
}

.md-videocam:before {
  content: "\F0CC";
}

.md-videocam-off:before {
  content: "\F0CD";
}

.md-video-collection:before {
  content: "\F0CE";
}

.md-volume-down:before {
  content: "\F0CF";
}

.md-volume-mute:before {
  content: "\F0D0";
}

.md-volume-off:before {
  content: "\F0D1";
}

.md-volume-up:before {
  content: "\F0D2";
}

.md-web:before {
  content: "\F0D3";
}

.md-business:before {
  content: "\F0D4";
}

.md-call:before {
  content: "\F0D5";
}

.md-call-end:before {
  content: "\F0D6";
}

.md-call-made:before {
  content: "\F0D7";
}

.md-call-merge:before {
  content: "\F0D8";
}

.md-call-missed:before {
  content: "\F0D9";
}

.md-call-received:before {
  content: "\F0DA";
}

.md-call-split:before {
  content: "\F0DB";
}

.md-chat:before {
  content: "\F0DC";
}

.md-clear-all:before {
  content: "\F0DD";
}

.md-comment:before {
  content: "\F0DE";
}

.md-contacts:before {
  content: "\F0DF";
}

.md-dialer-sip:before {
  content: "\F0E0";
}

.md-dialpad:before {
  content: "\F0E1";
}

.md-dnd-on:before {
  content: "\F0E2";
}

.md-email:before {
  content: "\F0E3";
}

.md-forum:before {
  content: "\F0E4";
}

.md-import-export:before {
  content: "\F0E5";
}

.md-invert-colors-off:before {
  content: "\F0E6";
}

.md-invert-colors-on:before {
  content: "\F0E7";
}

.md-live-help:before {
  content: "\F0E8";
}

.md-location-off:before {
  content: "\F0E9";
}

.md-location-on:before {
  content: "\F0EA";
}

.md-message:before {
  content: "\F0EB";
}

.md-messenger:before {
  content: "\F0EC";
}

.md-no-sim:before {
  content: "\F0ED";
}

.md-phone:before {
  content: "\F0EE";
}

.md-portable-wifi-off:before {
  content: "\F0EF";
}

.md-quick-contacts-dialer:before {
  content: "\F0F0";
}

.md-quick-contacts-mail:before {
  content: "\F0F1";
}

.md-ring-volume:before {
  content: "\F0F2";
}

.md-stay-current-landscape:before {
  content: "\F0F3";
}

.md-stay-current-portrait:before {
  content: "\F0F4";
}

.md-stay-primary-landscape:before {
  content: "\F0F5";
}

.md-stay-primary-portrait:before {
  content: "\F0F6";
}

.md-swap-calls:before {
  content: "\F0F7";
}

.md-textsms:before {
  content: "\F0F8";
}

.md-voicemail:before {
  content: "\F0F9";
}

.md-vpn-key:before {
  content: "\F0FA";
}

.md-add:before {
  content: "\F0FB";
}

.md-add-box:before {
  content: "\F0FC";
}

.md-add-circle:before {
  content: "\F0FD";
}

.md-add-circle-outline:before {
  content: "\F0FE";
}

.md-archive:before {
  content: "\F0FF";
}

.md-backspace:before {
  content: "\F100";
}

.md-block:before {
  content: "\F101";
}

.md-clear:before {
  content: "\F102";
}

.md-content-copy:before {
  content: "\F103";
}

.md-content-cut:before {
  content: "\F104";
}

.md-content-paste:before {
  content: "\F105";
}

.md-create:before {
  content: "\F106";
}

.md-drafts:before {
  content: "\F107";
}

.md-filter-list:before {
  content: "\F108";
}

.md-flag:before {
  content: "\F109";
}

.md-forward:before {
  content: "\F10A";
}

.md-gesture:before {
  content: "\F10B";
}

.md-inbox:before {
  content: "\F10C";
}

.md-link:before {
  content: "\F10D";
}

.md-mail:before {
  content: "\F10E";
}

.md-markunread:before {
  content: "\F10F";
}

.md-redo:before {
  content: "\F110";
}

.md-remove:before {
  content: "\F111";
}

.md-remove-circle:before {
  content: "\F112";
}

.md-remove-circle-outline:before {
  content: "\F113";
}

.md-reply:before {
  content: "\F114";
}

.md-reply-all:before {
  content: "\F115";
}

.md-report:before {
  content: "\F116";
}

.md-save:before {
  content: "\F117";
}

.md-select-all:before {
  content: "\F118";
}

.md-send:before {
  content: "\F119";
}

.md-sort:before {
  content: "\F11A";
}

.md-text-format:before {
  content: "\F11B";
}

.md-undo:before {
  content: "\F11C";
}

.md-access-alarm:before {
  content: "\F11D";
}

.md-access-alarms:before {
  content: "\F11E";
}

.md-access-time:before {
  content: "\F11F";
}

.md-add-alarm:before {
  content: "\F120";
}

.md-airplanemode-off:before {
  content: "\F121";
}

.md-airplanemode-on:before {
  content: "\F122";
}

.md-battery-20:before {
  content: "\F123";
}

.md-battery-30:before {
  content: "\F124";
}

.md-battery-50:before {
  content: "\F125";
}

.md-battery-60:before {
  content: "\F126";
}

.md-battery-80:before {
  content: "\F127";
}

.md-battery-90:before {
  content: "\F128";
}

.md-battery-alert:before {
  content: "\F129";
}

.md-battery-charging-20:before {
  content: "\F12A";
}

.md-battery-charging-30:before {
  content: "\F12B";
}

.md-battery-charging-50:before {
  content: "\F12C";
}

.md-battery-charging-60:before {
  content: "\F12D";
}

.md-battery-charging-80:before {
  content: "\F12E";
}

.md-battery-charging-90:before {
  content: "\F12F";
}

.md-battery-charging-full:before {
  content: "\F130";
}

.md-battery-full:before {
  content: "\F131";
}

.md-battery-std:before {
  content: "\F132";
}

.md-battery-unknown:before {
  content: "\F133";
}

.md-bluetooth:before {
  content: "\F134";
}

.md-bluetooth-connected:before {
  content: "\F135";
}

.md-bluetooth-disabled:before {
  content: "\F136";
}

.md-bluetooth-searching:before {
  content: "\F137";
}

.md-brightness-auto:before {
  content: "\F138";
}

.md-brightness-high:before {
  content: "\F139";
}

.md-brightness-low:before {
  content: "\F13A";
}

.md-brightness-medium:before {
  content: "\F13B";
}

.md-data-usage:before {
  content: "\F13C";
}

.md-developer-mode:before {
  content: "\F13D";
}

.md-devices:before {
  content: "\F13E";
}

.md-dvr:before {
  content: "\F13F";
}

.md-gps-fixed:before {
  content: "\F140";
}

.md-gps-not-fixed:before {
  content: "\F141";
}

.md-gps-off:before {
  content: "\F142";
}

.md-location-disabled:before {
  content: "\F143";
}

.md-location-searching:before {
  content: "\F144";
}

.md-multitrack-audio:before {
  content: "\F145";
}

.md-network-cell:before {
  content: "\F146";
}

.md-network-wifi:before {
  content: "\F147";
}

.md-nfc:before {
  content: "\F148";
}

.md-now-wallpaper:before {
  content: "\F149";
}

.md-now-widgets:before {
  content: "\F14A";
}

.md-screen-lock-landscape:before {
  content: "\F14B";
}

.md-screen-lock-portrait:before {
  content: "\F14C";
}

.md-screen-lock-rotation:before {
  content: "\F14D";
}

.md-screen-rotation:before {
  content: "\F14E";
}

.md-sd-storage:before {
  content: "\F14F";
}

.md-settings-system-daydream:before {
  content: "\F150";
}

.md-signal-cellular-0-bar:before {
  content: "\F151";
}

.md-signal-cellular-1-bar:before {
  content: "\F152";
}

.md-signal-cellular-2-bar:before {
  content: "\F153";
}

.md-signal-cellular-3-bar:before {
  content: "\F154";
}

.md-signal-cellular-4-bar:before {
  content: "\F155";
}

.md-signal-cellular-connected-no-internet-0-bar:before {
  content: "\F156";
}

.md-signal-cellular-connected-no-internet-1-bar:before {
  content: "\F157";
}

.md-signal-cellular-connected-no-internet-2-bar:before {
  content: "\F158";
}

.md-signal-cellular-connected-no-internet-3-bar:before {
  content: "\F159";
}

.md-signal-cellular-connected-no-internet-4-bar:before {
  content: "\F15A";
}

.md-signal-cellular-no-sim:before {
  content: "\F15B";
}

.md-signal-cellular-null:before {
  content: "\F15C";
}

.md-signal-cellular-off:before {
  content: "\F15D";
}

.md-signal-wifi-0-bar:before {
  content: "\F15E";
}

.md-signal-wifi-1-bar:before {
  content: "\F15F";
}

.md-signal-wifi-2-bar:before {
  content: "\F160";
}

.md-signal-wifi-3-bar:before {
  content: "\F161";
}

.md-signal-wifi-4-bar:before {
  content: "\F162";
}

.md-signal-wifi-off:before {
  content: "\F163";
}

.md-storage:before {
  content: "\F164";
}

.md-usb:before {
  content: "\F165";
}

.md-wifi-lock:before {
  content: "\F166";
}

.md-wifi-tethering:before {
  content: "\F167";
}

.md-attach-file:before {
  content: "\F168";
}

.md-attach-money:before {
  content: "\F169";
}

.md-border-all:before {
  content: "\F16A";
}

.md-border-bottom:before {
  content: "\F16B";
}

.md-border-clear:before {
  content: "\F16C";
}

.md-border-color:before {
  content: "\F16D";
}

.md-border-horizontal:before {
  content: "\F16E";
}

.md-border-inner:before {
  content: "\F16F";
}

.md-border-left:before {
  content: "\F170";
}

.md-border-outer:before {
  content: "\F171";
}

.md-border-right:before {
  content: "\F172";
}

.md-border-style:before {
  content: "\F173";
}

.md-border-top:before {
  content: "\F174";
}

.md-border-vertical:before {
  content: "\F175";
}

.md-format-align-center:before {
  content: "\F176";
}

.md-format-align-justify:before {
  content: "\F177";
}

.md-format-align-left:before {
  content: "\F178";
}

.md-format-align-right:before {
  content: "\F179";
}

.md-format-bold:before {
  content: "\F17A";
}

.md-format-clear:before {
  content: "\F17B";
}

.md-format-color-fill:before {
  content: "\F17C";
}

.md-format-color-reset:before {
  content: "\F17D";
}

.md-format-color-text:before {
  content: "\F17E";
}

.md-format-indent-decrease:before {
  content: "\F17F";
}

.md-format-indent-increase:before {
  content: "\F180";
}

.md-format-italic:before {
  content: "\F181";
}

.md-format-line-spacing:before {
  content: "\F182";
}

.md-format-list-bulleted:before {
  content: "\F183";
}

.md-format-list-numbered:before {
  content: "\F184";
}

.md-format-paint:before {
  content: "\F185";
}

.md-format-quote:before {
  content: "\F186";
}

.md-format-size:before {
  content: "\F187";
}

.md-format-strikethrough:before {
  content: "\F188";
}

.md-format-textdirection-l-to-r:before {
  content: "\F189";
}

.md-format-textdirection-r-to-l:before {
  content: "\F18A";
}

.md-format-underline:before {
  content: "\F18B";
}

.md-functions:before {
  content: "\F18C";
}

.md-insert-chart:before {
  content: "\F18D";
}

.md-insert-comment:before {
  content: "\F18E";
}

.md-insert-drive-file:before {
  content: "\F18F";
}

.md-insert-emoticon:before {
  content: "\F190";
}

.md-insert-invitation:before {
  content: "\F191";
}

.md-insert-link:before {
  content: "\F192";
}

.md-insert-photo:before {
  content: "\F193";
}

.md-merge-type:before {
  content: "\F194";
}

.md-mode-comment:before {
  content: "\F195";
}

.md-mode-edit:before {
  content: "\F196";
}

.md-publish:before {
  content: "\F197";
}

.md-vertical-align-bottom:before {
  content: "\F198";
}

.md-vertical-align-center:before {
  content: "\F199";
}

.md-vertical-align-top:before {
  content: "\F19A";
}

.md-wrap-text:before {
  content: "\F19B";
}

.md-attachment:before {
  content: "\F19C";
}

.md-cloud:before {
  content: "\F19D";
}

.md-cloud-circle:before {
  content: "\F19E";
}

.md-cloud-done:before {
  content: "\F19F";
}

.md-cloud-download:before {
  content: "\F1A0";
}

.md-cloud-off:before {
  content: "\F1A1";
}

.md-cloud-queue:before {
  content: "\F1A2";
}

.md-cloud-upload:before {
  content: "\F1A3";
}

.md-file-download:before {
  content: "\F1A4";
}

.md-file-upload:before {
  content: "\F1A5";
}

.md-folder:before {
  content: "\F1A6";
}

.md-folder-open:before {
  content: "\F1A7";
}

.md-folder-shared:before {
  content: "\F1A8";
}

.md-cast:before {
  content: "\F1A9";
}

.md-cast-connected:before {
  content: "\F1AA";
}

.md-computer:before {
  content: "\F1AB";
}

.md-desktop-mac:before {
  content: "\F1AC";
}

.md-desktop-windows:before {
  content: "\F1AD";
}

.md-dock:before {
  content: "\F1AE";
}

.md-gamepad:before {
  content: "\F1AF";
}

.md-headset:before {
  content: "\F1B0";
}

.md-headset-mic:before {
  content: "\F1B1";
}

.md-keyboard:before {
  content: "\F1B2";
}

.md-keyboard-alt:before {
  content: "\F1B3";
}

.md-keyboard-arrow-down:before {
  content: "\F1B4";
}

.md-keyboard-arrow-left:before {
  content: "\F1B5";
}

.md-keyboard-arrow-right:before {
  content: "\F1B6";
}

.md-keyboard-arrow-up:before {
  content: "\F1B7";
}

.md-keyboard-backspace:before {
  content: "\F1B8";
}

.md-keyboard-capslock:before {
  content: "\F1B9";
}

.md-keyboard-control:before {
  content: "\F1BA";
}

.md-keyboard-hide:before {
  content: "\F1BB";
}

.md-keyboard-return:before {
  content: "\F1BC";
}

.md-keyboard-tab:before {
  content: "\F1BD";
}

.md-keyboard-voice:before {
  content: "\F1BE";
}

.md-laptop:before {
  content: "\F1BF";
}

.md-laptop-chromebook:before {
  content: "\F1C0";
}

.md-laptop-mac:before {
  content: "\F1C1";
}

.md-laptop-windows:before {
  content: "\F1C2";
}

.md-memory:before {
  content: "\F1C3";
}

.md-mouse:before {
  content: "\F1C4";
}

.md-phone-android:before {
  content: "\F1C5";
}

.md-phone-iphone:before {
  content: "\F1C6";
}

.md-phonelink:before {
  content: "\F1C7";
}

.md-phonelink-off:before {
  content: "\F1C8";
}

.md-security:before {
  content: "\F1C9";
}

.md-sim-card:before {
  content: "\F1CA";
}

.md-smartphone:before {
  content: "\F1CB";
}

.md-speaker:before {
  content: "\F1CC";
}

.md-tablet:before {
  content: "\F1CD";
}

.md-tablet-android:before {
  content: "\F1CE";
}

.md-tablet-mac:before {
  content: "\F1CF";
}

.md-tv:before {
  content: "\F1D0";
}

.md-watch:before {
  content: "\F1D1";
}

.md-add-to-photos:before {
  content: "\F1D2";
}

.md-adjust:before {
  content: "\F1D3";
}

.md-assistant-photo:before {
  content: "\F1D4";
}

.md-audiotrack:before {
  content: "\F1D5";
}

.md-blur-circular:before {
  content: "\F1D6";
}

.md-blur-linear:before {
  content: "\F1D7";
}

.md-blur-off:before {
  content: "\F1D8";
}

.md-blur-on:before {
  content: "\F1D9";
}

.md-brightness-1:before {
  content: "\F1DA";
}

.md-brightness-2:before {
  content: "\F1DB";
}

.md-brightness-3:before {
  content: "\F1DC";
}

.md-brightness-4:before {
  content: "\F1DD";
}

.md-brightness-5:before {
  content: "\F1DE";
}

.md-brightness-6:before {
  content: "\F1DF";
}

.md-brightness-7:before {
  content: "\F1E0";
}

.md-brush:before {
  content: "\F1E1";
}

.md-camera:before {
  content: "\F1E2";
}

.md-camera-alt:before {
  content: "\F1E3";
}

.md-camera-front:before {
  content: "\F1E4";
}

.md-camera-rear:before {
  content: "\F1E5";
}

.md-camera-roll:before {
  content: "\F1E6";
}

.md-center-focus-strong:before {
  content: "\F1E7";
}

.md-center-focus-weak:before {
  content: "\F1E8";
}

.md-collections:before {
  content: "\F1E9";
}

.md-colorize:before {
  content: "\F1EA";
}

.md-color-lens:before {
  content: "\F1EB";
}

.md-compare:before {
  content: "\F1EC";
}

.md-control-point:before {
  content: "\F1ED";
}

.md-control-point-duplicate:before {
  content: "\F1EE";
}

.md-crop:before {
  content: "\F1EF";
}

.md-crop-3-2:before {
  content: "\F1F0";
}

.md-crop-5-4:before {
  content: "\F1F1";
}

.md-crop-7-5:before {
  content: "\F1F2";
}

.md-crop-16-9:before {
  content: "\F1F3";
}

.md-crop-din:before {
  content: "\F1F4";
}

.md-crop-free:before {
  content: "\F1F5";
}

.md-crop-landscape:before {
  content: "\F1F6";
}

.md-crop-original:before {
  content: "\F1F7";
}

.md-crop-portrait:before {
  content: "\F1F8";
}

.md-crop-square:before {
  content: "\F1F9";
}

.md-dehaze:before {
  content: "\F1FA";
}

.md-details:before {
  content: "\F1FB";
}

.md-edit:before {
  content: "\F1FC";
}

.md-exposure:before {
  content: "\F1FD";
}

.md-exposure-minus-1:before {
  content: "\F1FE";
}

.md-exposure-minus-2:before {
  content: "\F1FF";
}

.md-exposure-zero:before {
  content: "\F200";
}

.md-exposure-plus-1:before {
  content: "\F201";
}

.md-exposure-plus-2:before {
  content: "\F202";
}

.md-filter:before {
  content: "\F203";
}

.md-filter-1:before {
  content: "\F204";
}

.md-filter-2:before {
  content: "\F205";
}

.md-filter-3:before {
  content: "\F206";
}

.md-filter-4:before {
  content: "\F207";
}

.md-filter-5:before {
  content: "\F208";
}

.md-filter-6:before {
  content: "\F209";
}

.md-filter-7:before {
  content: "\F20A";
}

.md-filter-8:before {
  content: "\F20B";
}

.md-filter-9:before {
  content: "\F20C";
}

.md-filter-9-plus:before {
  content: "\F20D";
}

.md-filter-b-and-w:before {
  content: "\F20E";
}

.md-filter-center-focus:before {
  content: "\F20F";
}

.md-filter-drama:before {
  content: "\F210";
}

.md-filter-frames:before {
  content: "\F211";
}

.md-filter-hdr:before {
  content: "\F212";
}

.md-filter-none:before {
  content: "\F213";
}

.md-filter-tilt-shift:before {
  content: "\F214";
}

.md-filter-vintage:before {
  content: "\F215";
}

.md-flare:before {
  content: "\F216";
}

.md-flash-auto:before {
  content: "\F217";
}

.md-flash-off:before {
  content: "\F218";
}

.md-flash-on:before {
  content: "\F219";
}

.md-flip:before {
  content: "\F21A";
}

.md-gradient:before {
  content: "\F21B";
}

.md-grain:before {
  content: "\F21C";
}

.md-grid-off:before {
  content: "\F21D";
}

.md-grid-on:before {
  content: "\F21E";
}

.md-hdr-off:before {
  content: "\F21F";
}

.md-hdr-on:before {
  content: "\F220";
}

.md-hdr-strong:before {
  content: "\F221";
}

.md-hdr-weak:before {
  content: "\F222";
}

.md-healing:before {
  content: "\F223";
}

.md-image:before {
  content: "\F224";
}

.md-image-aspect-ratio:before {
  content: "\F225";
}

.md-iso:before {
  content: "\F226";
}

.md-landscape:before {
  content: "\F227";
}

.md-leak-add:before {
  content: "\F228";
}

.md-leak-remove:before {
  content: "\F229";
}

.md-lens:before {
  content: "\F22A";
}

.md-looks:before {
  content: "\F22B";
}

.md-looks-1:before {
  content: "\F22C";
}

.md-looks-2:before {
  content: "\F22D";
}

.md-looks-3:before {
  content: "\F22E";
}

.md-looks-4:before {
  content: "\F22F";
}

.md-looks-5:before {
  content: "\F230";
}

.md-looks-6:before {
  content: "\F231";
}

.md-loupe:before {
  content: "\F232";
}

.md-movie-creation:before {
  content: "\F233";
}

.md-nature:before {
  content: "\F234";
}

.md-nature-people:before {
  content: "\F235";
}

.md-navigate-before:before {
  content: "\F236";
}

.md-navigate-next:before {
  content: "\F237";
}

.md-palette:before {
  content: "\F238";
}

.md-panorama:before {
  content: "\F239";
}

.md-panorama-fisheye:before {
  content: "\F23A";
}

.md-panorama-horizontal:before {
  content: "\F23B";
}

.md-panorama-vertical:before {
  content: "\F23C";
}

.md-panorama-wide-angle:before {
  content: "\F23D";
}

.md-photo:before {
  content: "\F23E";
}

.md-photo-album:before {
  content: "\F23F";
}

.md-photo-camera:before {
  content: "\F240";
}

.md-photo-library:before {
  content: "\F241";
}

.md-portrait:before {
  content: "\F242";
}

.md-remove-red-eye:before {
  content: "\F243";
}

.md-rotate-left:before {
  content: "\F244";
}

.md-rotate-right:before {
  content: "\F245";
}

.md-slideshow:before {
  content: "\F246";
}

.md-straighten:before {
  content: "\F247";
}

.md-style:before {
  content: "\F248";
}

.md-switch-camera:before {
  content: "\F249";
}

.md-switch-video:before {
  content: "\F24A";
}

.md-tag-faces:before {
  content: "\F24B";
}

.md-texture:before {
  content: "\F24C";
}

.md-timelapse:before {
  content: "\F24D";
}

.md-timer:before {
  content: "\F24E";
}

.md-timer-3:before {
  content: "\F24F";
}

.md-timer-10:before {
  content: "\F250";
}

.md-timer-auto:before {
  content: "\F251";
}

.md-timer-off:before {
  content: "\F252";
}

.md-tonality:before {
  content: "\F253";
}

.md-transform:before {
  content: "\F254";
}

.md-tune:before {
  content: "\F255";
}

.md-wb-auto:before {
  content: "\F256";
}

.md-wb-cloudy:before {
  content: "\F257";
}

.md-wb-incandescent:before {
  content: "\F258";
}

.md-wb-irradescent:before {
  content: "\F259";
}

.md-wb-sunny:before {
  content: "\F25A";
}

.md-beenhere:before {
  content: "\F25B";
}

.md-directions:before {
  content: "\F25C";
}

.md-directions-bike:before {
  content: "\F25D";
}

.md-directions-bus:before {
  content: "\F25E";
}

.md-directions-car:before {
  content: "\F25F";
}

.md-directions-ferry:before {
  content: "\F260";
}

.md-directions-subway:before {
  content: "\F261";
}

.md-directions-train:before {
  content: "\F262";
}

.md-directions-transit:before {
  content: "\F263";
}

.md-directions-walk:before {
  content: "\F264";
}

.md-flight:before {
  content: "\F265";
}

.md-hotel:before {
  content: "\F266";
}

.md-layers:before {
  content: "\F267";
}

.md-layers-clear:before {
  content: "\F268";
}

.md-local-airport:before {
  content: "\F269";
}

.md-local-atm:before {
  content: "\F26A";
}

.md-local-attraction:before {
  content: "\F26B";
}

.md-local-bar:before {
  content: "\F26C";
}

.md-local-cafe:before {
  content: "\F26D";
}

.md-local-car-wash:before {
  content: "\F26E";
}

.md-local-convenience-store:before {
  content: "\F26F";
}

.md-local-drink:before {
  content: "\F270";
}

.md-local-florist:before {
  content: "\F271";
}

.md-local-gas-station:before {
  content: "\F272";
}

.md-local-grocery-store:before {
  content: "\F273";
}

.md-local-hospital:before {
  content: "\F274";
}

.md-local-hotel:before {
  content: "\F275";
}

.md-local-laundry-service:before {
  content: "\F276";
}

.md-local-library:before {
  content: "\F277";
}

.md-local-mall:before {
  content: "\F278";
}

.md-local-movies:before {
  content: "\F279";
}

.md-local-offer:before {
  content: "\F27A";
}

.md-local-parking:before {
  content: "\F27B";
}

.md-local-pharmacy:before {
  content: "\F27C";
}

.md-local-phone:before {
  content: "\F27D";
}

.md-local-pizza:before {
  content: "\F27E";
}

.md-local-play:before {
  content: "\F27F";
}

.md-local-post-office:before {
  content: "\F280";
}

.md-local-print-shop:before {
  content: "\F281";
}

.md-local-restaurant:before {
  content: "\F282";
}

.md-local-see:before {
  content: "\F283";
}

.md-local-shipping:before {
  content: "\F284";
}

.md-local-taxi:before {
  content: "\F285";
}

.md-location-history:before {
  content: "\F286";
}

.md-map:before {
  content: "\F287";
}

.md-my-location:before {
  content: "\F288";
}

.md-navigation:before {
  content: "\F289";
}

.md-pin-drop:before {
  content: "\F28A";
}

.md-place:before {
  content: "\F28B";
}

.md-rate-review:before {
  content: "\F28C";
}

.md-restaurant-menu:before {
  content: "\F28D";
}

.md-satellite:before {
  content: "\F28E";
}

.md-store-mall-directory:before {
  content: "\F28F";
}

.md-terrain:before {
  content: "\F290";
}

.md-traffic:before {
  content: "\F291";
}

.md-apps:before {
  content: "\F292";
}

.md-cancel:before {
  content: "\F293";
}

.md-arrow-drop-down-circle:before {
  content: "\F294";
}

.md-arrow-drop-down:before {
  content: "\F295";
}

.md-arrow-drop-up:before {
  content: "\F296";
}

.md-arrow-back:before {
  content: "\F297";
}

.md-arrow-forward:before {
  content: "\F298";
}

.md-check:before {
  content: "\F299";
}

.md-close:before {
  content: "\F29A";
}

.md-chevron-left:before {
  content: "\F29B";
}

.md-chevron-right:before {
  content: "\F29C";
}

.md-expand-less:before {
  content: "\F29D";
}

.md-expand-more:before {
  content: "\F29E";
}

.md-fullscreen:before {
  content: "\F29F";
}

.md-fullscreen-exit:before {
  content: "\F2A0";
}

.md-menu:before {
  content: "\F2A1";
}

.md-more-horiz:before {
  content: "\F2A2";
}

.md-more-vert:before {
  content: "\F2A3";
}

.md-refresh:before {
  content: "\F2A4";
}

.md-unfold-less:before {
  content: "\F2A5";
}

.md-unfold-more:before {
  content: "\F2A6";
}

.md-adb:before {
  content: "\F2A7";
}

.md-bluetooth-audio:before {
  content: "\F2A8";
}

.md-disc-full:before {
  content: "\F2A9";
}

.md-dnd-forwardslash:before {
  content: "\F2AA";
}

.md-do-not-disturb:before {
  content: "\F2AB";
}

.md-drive-eta:before {
  content: "\F2AC";
}

.md-event-available:before {
  content: "\F2AD";
}

.md-event-busy:before {
  content: "\F2AE";
}

.md-event-note:before {
  content: "\F2AF";
}

.md-folder-special:before {
  content: "\F2B0";
}

.md-mms:before {
  content: "\F2B1";
}

.md-more:before {
  content: "\F2B2";
}

.md-network-locked:before {
  content: "\F2B3";
}

.md-phone-bluetooth-speaker:before {
  content: "\F2B4";
}

.md-phone-forwarded:before {
  content: "\F2B5";
}

.md-phone-in-talk:before {
  content: "\F2B6";
}

.md-phone-locked:before {
  content: "\F2B7";
}

.md-phone-missed:before {
  content: "\F2B8";
}

.md-phone-paused:before {
  content: "\F2B9";
}

.md-play-download:before {
  content: "\F2BA";
}

.md-play-install:before {
  content: "\F2BB";
}

.md-sd-card:before {
  content: "\F2BC";
}

.md-sim-card-alert:before {
  content: "\F2BD";
}

.md-sms:before {
  content: "\F2BE";
}

.md-sms-failed:before {
  content: "\F2BF";
}

.md-sync:before {
  content: "\F2C0";
}

.md-sync-disabled:before {
  content: "\F2C1";
}

.md-sync-problem:before {
  content: "\F2C2";
}

.md-system-update:before {
  content: "\F2C3";
}

.md-tap-and-play:before {
  content: "\F2C4";
}

.md-time-to-leave:before {
  content: "\F2C5";
}

.md-vibration:before {
  content: "\F2C6";
}

.md-voice-chat:before {
  content: "\F2C7";
}

.md-vpn-lock:before {
  content: "\F2C8";
}

.md-cake:before {
  content: "\F2C9";
}

.md-domain:before {
  content: "\F2CA";
}

.md-location-city:before {
  content: "\F2CB";
}

.md-mood:before {
  content: "\F2CC";
}

.md-notifications-none:before {
  content: "\F2CD";
}

.md-notifications:before {
  content: "\F2CE";
}

.md-notifications-off:before {
  content: "\F2CF";
}

.md-notifications-on:before {
  content: "\F2D0";
}

.md-notifications-paused:before {
  content: "\F2D1";
}

.md-pages:before {
  content: "\F2D2";
}

.md-party-mode:before {
  content: "\F2D3";
}

.md-group:before {
  content: "\F2D4";
}

.md-group-add:before {
  content: "\F2D5";
}

.md-people:before {
  content: "\F2D6";
}

.md-people-outline:before {
  content: "\F2D7";
}

.md-person:before {
  content: "\F2D8";
}

.md-person-add:before {
  content: "\F2D9";
}

.md-person-outline:before {
  content: "\F2DA";
}

.md-plus-one:before {
  content: "\F2DB";
}

.md-poll:before {
  content: "\F2DC";
}

.md-public:before {
  content: "\F2DD";
}

.md-school:before {
  content: "\F2DE";
}

.md-share:before {
  content: "\F2DF";
}

.md-whatshot:before {
  content: "\F2E0";
}

.md-check-box:before {
  content: "\F2E1";
}

.md-check-box-outline-blank:before {
  content: "\F2E2";
}

.md-radio-button-off:before {
  content: "\F2E3";
}

.md-radio-button-on:before {
  content: "\F2E4";
}

.md-star:before {
  content: "\F2E5";
}

.md-star-half:before {
  content: "\F2E6";
}

.md-star-outline:before {
  content: "\F2E7";
}

/*!
 *  Font Awesome 4.3.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(/fonts/fontawesome-webfont.eot?f7c2b4b747b1a225eb8dee034134a1b0);
  src: url(/fonts/fontawesome-webfont.eot?f7c2b4b747b1a225eb8dee034134a1b0) format("embedded-opentype"), url(/fonts/fontawesome-webfont.woff2?97493d3f11c0a3bd5cbd959f5d19b699) format("woff2"), url(/fonts/fontawesome-webfont.woff?d9ee23d59d0e0e727b51368b458a0bff) format("woff"), url(/fonts/fontawesome-webfont.ttf?706450d7bba6374ca02fe167d86685cb) format("truetype"), url(/fonts/fontawesome-webfont.svg?139e74e298bca37a25d2bd5868552e04) format("svg");
  font-weight: normal;
  font-style: normal;
}

.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;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* makes the font 33% larger relative to the icon container */

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */

.fa-glass:before {
  content: "\F000";
}

.fa-music:before {
  content: "\F001";
}

.fa-search:before {
  content: "\F002";
}

.fa-envelope-o:before {
  content: "\F003";
}

.fa-heart:before {
  content: "\F004";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-o:before {
  content: "\F006";
}

.fa-user:before {
  content: "\F007";
}

.fa-film:before {
  content: "\F008";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-check:before {
  content: "\F00C";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-signal:before {
  content: "\F012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}

.fa-trash-o:before {
  content: "\F014";
}

.fa-home:before {
  content: "\F015";
}

.fa-file-o:before {
  content: "\F016";
}

.fa-clock-o:before {
  content: "\F017";
}

.fa-road:before {
  content: "\F018";
}

.fa-download:before {
  content: "\F019";
}

.fa-arrow-circle-o-down:before {
  content: "\F01A";
}

.fa-arrow-circle-o-up:before {
  content: "\F01B";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-play-circle-o:before {
  content: "\F01D";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}

.fa-refresh:before {
  content: "\F021";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-lock:before {
  content: "\F023";
}

.fa-flag:before {
  content: "\F024";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-print:before {
  content: "\F02F";
}

.fa-camera:before {
  content: "\F030";
}

.fa-font:before {
  content: "\F031";
}

.fa-bold:before {
  content: "\F032";
}

.fa-italic:before {
  content: "\F033";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-list:before {
  content: "\F03A";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-video-camera:before {
  content: "\F03D";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}

.fa-pencil:before {
  content: "\F040";
}

.fa-map-marker:before {
  content: "\F041";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-tint:before {
  content: "\F043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}

.fa-share-square-o:before {
  content: "\F045";
}

.fa-check-square-o:before {
  content: "\F046";
}

.fa-arrows:before {
  content: "\F047";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-play:before {
  content: "\F04B";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-eject:before {
  content: "\F052";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-times-circle-o:before {
  content: "\F05C";
}

.fa-check-circle-o:before {
  content: "\F05D";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}

.fa-expand:before {
  content: "\F065";
}

.fa-compress:before {
  content: "\F066";
}

.fa-plus:before {
  content: "\F067";
}

.fa-minus:before {
  content: "\F068";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-plane:before {
  content: "\F072";
}

.fa-calendar:before {
  content: "\F073";
}

.fa-random:before {
  content: "\F074";
}

.fa-comment:before {
  content: "\F075";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-arrows-v:before {
  content: "\F07D";
}

.fa-arrows-h:before {
  content: "\F07E";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-key:before {
  content: "\F084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}

.fa-comments:before {
  content: "\F086";
}

.fa-thumbs-o-up:before {
  content: "\F087";
}

.fa-thumbs-o-down:before {
  content: "\F088";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-heart-o:before {
  content: "\F08A";
}

.fa-sign-out:before {
  content: "\F08B";
}

.fa-linkedin-square:before {
  content: "\F08C";
}

.fa-thumb-tack:before {
  content: "\F08D";
}

.fa-external-link:before {
  content: "\F08E";
}

.fa-sign-in:before {
  content: "\F090";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-upload:before {
  content: "\F093";
}

.fa-lemon-o:before {
  content: "\F094";
}

.fa-phone:before {
  content: "\F095";
}

.fa-square-o:before {
  content: "\F096";
}

.fa-bookmark-o:before {
  content: "\F097";
}

.fa-phone-square:before {
  content: "\F098";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A";
}

.fa-github:before {
  content: "\F09B";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-rss:before {
  content: "\F09E";
}

.fa-hdd-o:before {
  content: "\F0A0";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-hand-o-right:before {
  content: "\F0A4";
}

.fa-hand-o-left:before {
  content: "\F0A5";
}

.fa-hand-o-up:before {
  content: "\F0A6";
}

.fa-hand-o-down:before {
  content: "\F0A7";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}

.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-plus:before {
  content: "\F0D5";
}

.fa-money:before {
  content: "\F0D6";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-linkedin:before {
  content: "\F0E1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}

.fa-comment-o:before {
  content: "\F0E5";
}

.fa-comments-o:before {
  content: "\F0E6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA";
}

.fa-lightbulb-o:before {
  content: "\F0EB";
}

.fa-exchange:before {
  content: "\F0EC";
}

.fa-cloud-download:before {
  content: "\F0ED";
}

.fa-cloud-upload:before {
  content: "\F0EE";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-bell-o:before {
  content: "\F0A2";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cutlery:before {
  content: "\F0F5";
}

.fa-file-text-o:before {
  content: "\F0F6";
}

.fa-building-o:before {
  content: "\F0F7";
}

.fa-hospital-o:before {
  content: "\F0F8";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}

.fa-circle-o:before {
  content: "\F10C";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-circle:before {
  content: "\F111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-folder-o:before {
  content: "\F114";
}

.fa-folder-open-o:before {
  content: "\F115";
}

.fa-smile-o:before {
  content: "\F118";
}

.fa-frown-o:before {
  content: "\F119";
}

.fa-meh-o:before {
  content: "\F11A";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-keyboard-o:before {
  content: "\F11C";
}

.fa-flag-o:before {
  content: "\F11D";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-code:before {
  content: "\F121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-crop:before {
  content: "\F125";
}

.fa-code-fork:before {
  content: "\F126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}

.fa-question:before {
  content: "\F128";
}

.fa-info:before {
  content: "\F129";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-shield:before {
  content: "\F132";
}

.fa-calendar-o:before {
  content: "\F133";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-ticket:before {
  content: "\F145";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-minus-square-o:before {
  content: "\F147";
}

.fa-level-up:before {
  content: "\F148";
}

.fa-level-down:before {
  content: "\F149";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-pencil-square:before {
  content: "\F14B";
}

.fa-external-link-square:before {
  content: "\F14C";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\F153";
}

.fa-gbp:before {
  content: "\F154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\F155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\F156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158";
}

.fa-won:before,
.fa-krw:before {
  content: "\F159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-text:before {
  content: "\F15C";
}

.fa-sort-alpha-asc:before {
  content: "\F15D";
}

.fa-sort-alpha-desc:before {
  content: "\F15E";
}

.fa-sort-amount-asc:before {
  content: "\F160";
}

.fa-sort-amount-desc:before {
  content: "\F161";
}

.fa-sort-numeric-asc:before {
  content: "\F162";
}

.fa-sort-numeric-desc:before {
  content: "\F163";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-youtube-square:before {
  content: "\F166";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-youtube-play:before {
  content: "\F16A";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-adn:before {
  content: "\F170";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitbucket-square:before {
  content: "\F172";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-long-arrow-down:before {
  content: "\F175";
}

.fa-long-arrow-up:before {
  content: "\F176";
}

.fa-long-arrow-left:before {
  content: "\F177";
}

.fa-long-arrow-right:before {
  content: "\F178";
}

.fa-apple:before {
  content: "\F179";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-android:before {
  content: "\F17B";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-trello:before {
  content: "\F181";
}

.fa-female:before {
  content: "\F182";
}

.fa-male:before {
  content: "\F183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184";
}

.fa-sun-o:before {
  content: "\F185";
}

.fa-moon-o:before {
  content: "\F186";
}

.fa-archive:before {
  content: "\F187";
}

.fa-bug:before {
  content: "\F188";
}

.fa-vk:before {
  content: "\F189";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-arrow-circle-o-right:before {
  content: "\F18E";
}

.fa-arrow-circle-o-left:before {
  content: "\F190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191";
}

.fa-dot-circle-o:before {
  content: "\F192";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195";
}

.fa-plus-square-o:before {
  content: "\F196";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-slack:before {
  content: "\F198";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-pied-piper:before {
  content: "\F1A7";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-spoon:before {
  content: "\F1B1";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-file-pdf-o:before {
  content: "\F1C1";
}

.fa-file-word-o:before {
  content: "\F1C2";
}

.fa-file-excel-o:before {
  content: "\F1C3";
}

.fa-file-powerpoint-o:before {
  content: "\F1C4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8";
}

.fa-file-code-o:before {
  content: "\F1C9";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD";
}

.fa-circle-o-notch:before {
  content: "\F1CE";
}

.fa-ra:before,
.fa-rebel:before {
  content: "\F1D0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-genderless:before,
.fa-circle-thin:before {
  content: "\F1DB";
}

.fa-header:before {
  content: "\F1DC";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-sliders:before {
  content: "\F1DE";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-newspaper-o:before {
  content: "\F1EA";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bell-slash-o:before {
  content: "\F1F7";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-eyedropper:before {
  content: "\F1FB";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-area-chart:before {
  content: "\F1FE";
}

.fa-pie-chart:before {
  content: "\F200";
}

.fa-line-chart:before {
  content: "\F201";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-bus:before {
  content: "\F207";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-cc:before {
  content: "\F20A";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B";
}

.fa-meanpath:before {
  content: "\F20C";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-diamond:before {
  content: "\F219";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-venus:before {
  content: "\F221";
}

.fa-mars:before {
  content: "\F222";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-facebook-official:before {
  content: "\F230";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-server:before {
  content: "\F233";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\F236";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-train:before {
  content: "\F238";
}

.fa-subway:before {
  content: "\F239";
}

.fa-medium:before {
  content: "\F23A";
}

/**
 * Retrieves a color value from the $material-colors Sass map
 * Inspired by https://github.com/nilskaspersson/Google-Material-UI-Color-Palette/
 *
 * @function
 * @param {string} color-name             - quoted, lower-case, dasherized color
 *                                          name (e.g. 'pink', 'amber')
 * @param {string} [color-variant='500']  - quoted, lowercase color variant (e.g.
 *                                          '200', 'a100')
 */

@-webkit-keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
  }

  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
  }
}

@keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
  }

  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
  }
}

@-webkit-keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0;
  }

  to {
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }
}

@keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0;
  }

  to {
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }
}

@-webkit-keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }

  to {
    opacity: 0;
  }
}

@keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }

  to {
    opacity: 0;
  }
}

.mdc-ripple-surface--test-edge-var-bug {
  --mdc-ripple-surface-test-edge-var: 1px solid #000;
  visibility: hidden;
}

.mdc-ripple-surface--test-edge-var-bug::before {
  border: var(--mdc-ripple-surface-test-edge-var);
}

.mdc-button {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.08928571em;
  text-decoration: none;
  text-transform: uppercase;
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  padding: 0 8px 0 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 64px;
  height: 36px;
  border: none;
  outline: none;
  /* @alternate */
  line-height: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
  overflow: hidden;
  vertical-align: middle;
  border-radius: 2px;
}

.mdc-button::before,
.mdc-button::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-button::before {
  -webkit-transition: opacity 15ms linear;
  transition: opacity 15ms linear;
  z-index: 1;
}

.mdc-button.mdc-ripple-upgraded::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-button.mdc-ripple-upgraded::after {
  top: 0;
  /* @noflip */
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.mdc-button.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* @noflip */
  left: var(--mdc-ripple-left, 0);
}

.mdc-button.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
          animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
}

.mdc-button.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
          animation: 150ms mdc-ripple-fg-opacity-out;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-button::before,
.mdc-button::after {
  top: calc(50% - 100%);
  /* @noflip */
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
}

.mdc-button.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mdc-button:active {
  outline: none;
}

.mdc-button:hover {
  cursor: pointer;
}

.mdc-button:disabled {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.37);
  cursor: default;
  pointer-events: none;
}

.mdc-button:not(:disabled) {
  background-color: transparent;
}

.mdc-button:not(:disabled) {
  color: #6200ee;
  /* @alternate */
  color: var(--mdc-theme-primary, #6200ee);
}

.mdc-button::before,
.mdc-button::after {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  .mdc-button::before,
  .mdc-button::after {
    /* @alternate */
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

.mdc-button:hover::before {
  opacity: 0.04;
}

.mdc-button:not(.mdc-ripple-upgraded):focus::before,
.mdc-button.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-button:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-button:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-button.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-button .mdc-button__icon {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 8px;
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 18px;
  vertical-align: top;
}

[dir="rtl"] .mdc-button .mdc-button__icon,
.mdc-button .mdc-button__icon[dir="rtl"] {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: 0;
}

.mdc-button svg.mdc-button__icon {
  fill: currentColor;
}

.mdc-button--raised .mdc-button__icon,
.mdc-button--unelevated .mdc-button__icon,
.mdc-button--outlined .mdc-button__icon {
  /* @noflip */
  margin-left: -4px;
  /* @noflip */
  margin-right: 8px;
}

[dir="rtl"] .mdc-button--raised .mdc-button__icon,
.mdc-button--raised .mdc-button__icon[dir="rtl"],
[dir="rtl"]
.mdc-button--unelevated .mdc-button__icon,
.mdc-button--unelevated .mdc-button__icon[dir="rtl"],
[dir="rtl"]
.mdc-button--outlined .mdc-button__icon,
.mdc-button--outlined .mdc-button__icon[dir="rtl"] {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: -4px;
}

.mdc-button--raised,
.mdc-button--unelevated {
  padding: 0 16px 0 16px;
}

.mdc-button--raised:disabled,
.mdc-button--unelevated:disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.37);
}

.mdc-button--raised:not(:disabled),
.mdc-button--unelevated:not(:disabled) {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  .mdc-button--raised:not(:disabled),
  .mdc-button--unelevated:not(:disabled) {
    /* @alternate */
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

.mdc-button--raised:not(:disabled),
.mdc-button--unelevated:not(:disabled) {
  color: #fff;
  /* @alternate */
  color: var(--mdc-theme-on-primary, #fff);
}

.mdc-button--raised::before,
.mdc-button--raised::after,
.mdc-button--unelevated::before,
.mdc-button--unelevated::after {
  background-color: #fff;
}

@supports not (-ms-ime-align: auto) {
  .mdc-button--raised::before,
  .mdc-button--raised::after,
  .mdc-button--unelevated::before,
  .mdc-button--unelevated::after {
    /* @alternate */
    background-color: var(--mdc-theme-on-primary, #fff);
  }
}

.mdc-button--raised:hover::before,
.mdc-button--unelevated:hover::before {
  opacity: 0.08;
}

.mdc-button--raised:not(.mdc-ripple-upgraded):focus::before,
.mdc-button--raised.mdc-ripple-upgraded--background-focused::before,
.mdc-button--unelevated:not(.mdc-ripple-upgraded):focus::before,
.mdc-button--unelevated.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-button--raised:not(.mdc-ripple-upgraded)::after,
.mdc-button--unelevated:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-button--raised:not(.mdc-ripple-upgraded):active::after,
.mdc-button--unelevated:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-button--raised.mdc-ripple-upgraded,
.mdc-button--unelevated.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-button--raised {
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mdc-button--raised:hover,
.mdc-button--raised:focus {
  -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.mdc-button--raised:active {
  -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.mdc-button--raised:disabled {
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}

.mdc-button--outlined {
  border-style: solid;
  padding: 0 14px 0 14px;
  border-width: 2px;
}

.mdc-button--outlined:disabled {
  border-color: rgba(0, 0, 0, 0.37);
}

.mdc-button--outlined:not(:disabled) {
  border-color: #6200ee;
  /* @alternate */
  border-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-button--dense {
  height: 32px;
  font-size: .8125rem;
}

.mdc-fab {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 0;
  -webkit-transition: opacity 15ms linear 30ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 15ms linear 30ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  border: none;
  border-radius: 50%;
  fill: currentColor;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  background-color: #018786;
  color: #fff;
  /* @alternate */
  color: var(--mdc-theme-on-secondary, #fff);
}

.mdc-fab::before,
.mdc-fab::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-fab::before {
  -webkit-transition: opacity 15ms linear;
  transition: opacity 15ms linear;
  z-index: 1;
}

.mdc-fab.mdc-ripple-upgraded::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-fab.mdc-ripple-upgraded::after {
  top: 0;
  /* @noflip */
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.mdc-fab.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* @noflip */
  left: var(--mdc-ripple-left, 0);
}

.mdc-fab.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
          animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
}

.mdc-fab.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
          animation: 150ms mdc-ripple-fg-opacity-out;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-fab::before,
.mdc-fab::after {
  top: calc(50% - 100%);
  /* @noflip */
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
}

.mdc-fab.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-fab::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mdc-fab:hover,
.mdc-fab:focus {
  -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.mdc-fab:active {
  -webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.mdc-fab:active,
.mdc-fab:focus {
  outline: none;
}

.mdc-fab:hover {
  cursor: pointer;
}

.mdc-fab > svg {
  width: 100%;
}

@supports not (-ms-ime-align: auto) {
  .mdc-fab {
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-fab .mdc-fab__icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.mdc-fab::before,
.mdc-fab::after {
  background-color: #fff;
}

@supports not (-ms-ime-align: auto) {
  .mdc-fab::before,
  .mdc-fab::after {
    /* @alternate */
    background-color: var(--mdc-theme-on-secondary, #fff);
  }
}

.mdc-fab:hover::before {
  opacity: 0.08;
}

.mdc-fab:not(.mdc-ripple-upgraded):focus::before,
.mdc-fab.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-fab:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-fab:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-fab.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-fab--mini {
  width: 40px;
  height: 40px;
}

.mdc-fab--extended {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.08928571em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 20px;
  width: auto;
  max-width: 100%;
  height: 48px;
  border-radius: 24px;
}

.mdc-fab--extended .mdc-fab__icon {
  /* @noflip */
  margin-left: -8px;
  /* @noflip */
  margin-right: 12px;
}

[dir="rtl"] .mdc-fab--extended .mdc-fab__icon,
.mdc-fab--extended .mdc-fab__icon[dir="rtl"] {
  /* @noflip */
  margin-left: 12px;
  /* @noflip */
  margin-right: -8px;
}

.mdc-fab--extended .mdc-fab__label + .mdc-fab__icon {
  /* @noflip */
  margin-left: 12px;
  /* @noflip */
  margin-right: -8px;
}

[dir="rtl"] .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon,
.mdc-fab--extended .mdc-fab__label + .mdc-fab__icon[dir="rtl"] {
  /* @noflip */
  margin-left: -8px;
  /* @noflip */
  margin-right: 12px;
}

.mdc-fab__label {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mdc-fab__icon {
  -webkit-transition: -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  fill: currentColor;
  will-change: transform;
}

.mdc-fab .mdc-fab__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mdc-fab--exited {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 15ms linear 150ms, -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  opacity: 0;
}

.mdc-fab--exited .mdc-fab__icon {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
}

.mdc-icon-button {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  width: 48px;
  height: 48px;
  padding: 12px;
  font-size: 24px;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  outline: none;
  background-color: transparent;
  fill: currentColor;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.mdc-icon-button::before,
.mdc-icon-button::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-icon-button::before {
  -webkit-transition: opacity 15ms linear;
  transition: opacity 15ms linear;
  z-index: 1;
}

.mdc-icon-button.mdc-ripple-upgraded::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-icon-button.mdc-ripple-upgraded::after {
  top: 0;
  /* @noflip */
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.mdc-icon-button.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* @noflip */
  left: var(--mdc-ripple-left, 0);
}

.mdc-icon-button.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
          animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
}

.mdc-icon-button.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
          animation: 150ms mdc-ripple-fg-opacity-out;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-icon-button::before,
.mdc-icon-button::after {
  top: calc(50% - 50%);
  /* @noflip */
  left: calc(50% - 50%);
  width: 100%;
  height: 100%;
}

.mdc-icon-button.mdc-ripple-upgraded::before,
.mdc-icon-button.mdc-ripple-upgraded::after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  /* @noflip */
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-icon-button.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-icon-button svg,
.mdc-icon-button img {
  width: 24px;
  height: 24px;
}

.mdc-icon-button:disabled {
  color: rgba(0, 0, 0, 0.38);
  /* @alternate */
  color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
  cursor: default;
  pointer-events: none;
}

.mdc-icon-button::before,
.mdc-icon-button::after {
  background-color: black;
}

.mdc-icon-button:hover::before {
  opacity: 0.04;
}

.mdc-icon-button:not(.mdc-ripple-upgraded):focus::before,
.mdc-icon-button.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-icon-button:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-icon-button:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-icon-button.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-floating-label {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.009375em;
  text-decoration: inherit;
  text-transform: inherit;
  position: absolute;
  bottom: 8px;
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.15rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: text;
  overflow: hidden;
  will-change: transform;
}

[dir="rtl"] .mdc-floating-label,
.mdc-floating-label[dir="rtl"] {
  /* @noflip */
  right: 0;
  /* @noflip */
  left: auto;
  /* @noflip */
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.mdc-floating-label--float-above {
  cursor: auto;
}

.mdc-floating-label--float-above {
  -webkit-transform: translateY(-100%) scale(0.75);
          transform: translateY(-100%) scale(0.75);
}

.mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-standard 250ms 1;
          animation: mdc-floating-label-shake-float-above-standard 250ms 1;
}

@-webkit-keyframes mdc-floating-label-shake-float-above-standard {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
  }
}

@keyframes mdc-floating-label-shake-float-above-standard {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
  }
}

.mdc-line-ripple {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 2;
}

.mdc-line-ripple--active {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1;
}

.mdc-line-ripple--deactivating {
  opacity: 0;
}

.mdc-notched-outline {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 1px);
  height: calc(100% - 2px);
  -webkit-transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  overflow: hidden;
}

.mdc-notched-outline svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.mdc-notched-outline__idle {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  -webkit-transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid;
  opacity: 1;
}

.mdc-notched-outline__path {
  stroke-width: 1px;
  -webkit-transition: stroke 150ms cubic-bezier(0.4, 0, 0.2, 1), stroke-width 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke 150ms cubic-bezier(0.4, 0, 0.2, 1), stroke-width 150ms cubic-bezier(0.4, 0, 0.2, 1);
  fill: transparent;
}

.mdc-notched-outline--notched {
  opacity: 1;
}

.mdc-notched-outline--notched ~ .mdc-notched-outline__idle {
  opacity: 0;
}

.mdc-text-field-helper-text {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.03333333em;
  text-decoration: inherit;
  text-transform: inherit;
  margin: 0;
  -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  will-change: opacity;
}

.mdc-text-field + .mdc-text-field-helper-text {
  margin-bottom: 8px;
}

.mdc-text-field-helper-text--persistent {
  -webkit-transition: none;
  transition: none;
  opacity: 1;
  will-change: initial;
}

.mdc-text-field--with-leading-icon .mdc-text-field__icon,
.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
  position: absolute;
  bottom: 16px;
  cursor: pointer;
}

.mdc-text-field__icon:not([tabindex]),
.mdc-text-field__icon[tabindex="-1"] {
  cursor: default;
  pointer-events: none;
}

.mdc-text-field {
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
  will-change: opacity, transform, color;
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input {
  border-bottom-color: rgba(0, 0, 0, 0.42);
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input:hover {
  border-bottom-color: rgba(0, 0, 0, 0.87);
}

.mdc-text-field .mdc-line-ripple {
  background-color: #6200ee;
  /* @alternate */
  background-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input {
  color: rgba(0, 0, 0, 0.87);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
  color: rgba(0, 0, 0, 0.6);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-text {
  color: rgba(0, 0, 0, 0.6);
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--textarea) {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon {
  color: rgba(0, 0, 0, 0.54);
}

.mdc-text-field .mdc-text-field__input {
  caret-color: #6200ee;
  /* @alternate */
  caret-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-text-field__input {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.009375em;
  text-decoration: inherit;
  text-transform: inherit;
  width: 100%;
  height: 30px;
  padding: 20px 0 1px;
  -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.mdc-text-field__input::-webkit-input-placeholder {
  -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.mdc-text-field__input:-ms-input-placeholder {
  -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.mdc-text-field__input::-ms-input-placeholder {
  -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.mdc-text-field__input::placeholder {
  -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.mdc-text-field__input:focus {
  outline: none;
}

.mdc-text-field__input:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mdc-text-field__input:-webkit-autofill + .mdc-floating-label {
  -webkit-transform: translateY(-100%) scale(0.75);
          transform: translateY(-100%) scale(0.75);
  cursor: auto;
}

.mdc-text-field--outlined {
  height: 56px;
  border: none;
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__idle {
  border-color: rgba(0, 0, 0, 0.24);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__path {
  stroke: rgba(0, 0, 0, 0.24);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline__idle,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline__idle {
  border-color: rgba(0, 0, 0, 0.87);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline .mdc-notched-outline__path,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline .mdc-notched-outline__path {
  stroke: rgba(0, 0, 0, 0.87);
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__path {
  stroke: #6200ee;
  /* @alternate */
  stroke: var(--mdc-theme-primary, #6200ee);
}

.mdc-text-field--outlined .mdc-floating-label--float-above {
  -webkit-transform: translateY(-130%) scale(0.75);
          transform: translateY(-130%) scale(0.75);
}

.mdc-text-field--outlined .mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-text-field-outlined 250ms 1;
          animation: mdc-floating-label-shake-float-above-text-field-outlined 250ms 1;
}

.mdc-text-field--outlined .mdc-notched-outline {
  border-radius: 4px;
}

.mdc-text-field--outlined .mdc-notched-outline__idle {
  border-radius: 4px;
}

.mdc-text-field--outlined .mdc-text-field__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  border: none !important;
  background-color: transparent;
  z-index: 1;
}

.mdc-text-field--outlined .mdc-floating-label {
  /* @noflip */
  left: 16px;
  /* @noflip */
  right: initial;
  position: absolute;
  bottom: 20px;
}

[dir="rtl"] .mdc-text-field--outlined .mdc-floating-label,
.mdc-text-field--outlined .mdc-floating-label[dir="rtl"] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 16px;
}

.mdc-text-field--outlined .mdc-text-field__icon {
  z-index: 2;
}

.mdc-text-field--outlined.mdc-text-field--focused .mdc-notched-outline__path {
  stroke-width: 2px;
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input {
  color: rgba(0, 0, 0, 0.6);
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__idle {
  border-color: rgba(0, 0, 0, 0.06);
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__path {
  stroke: rgba(0, 0, 0, 0.06);
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input {
  border-bottom: none;
}

.mdc-text-field--outlined.mdc-text-field--dense {
  height: 48px;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
  -webkit-transform: translateY(-110%) scale(0.923);
          transform: translateY(-110%) scale(0.923);
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-text-field-outlined-dense 250ms 1;
          animation: mdc-floating-label-shake-float-above-text-field-outlined-dense 250ms 1;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__input {
  padding: 12px 12px 7px;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label {
  bottom: 16px;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__icon {
  top: 12px;
}

.mdc-text-field--box {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  border-radius: 4px 4px 0 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 56px;
  margin-top: 16px;
  overflow: hidden;
}

.mdc-text-field--box::before,
.mdc-text-field--box::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-text-field--box::before {
  -webkit-transition: opacity 15ms linear;
  transition: opacity 15ms linear;
  z-index: 1;
}

.mdc-text-field--box.mdc-ripple-upgraded::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-text-field--box.mdc-ripple-upgraded::after {
  top: 0;
  /* @noflip */
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.mdc-text-field--box.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* @noflip */
  left: var(--mdc-ripple-left, 0);
}

.mdc-text-field--box.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
          animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
}

.mdc-text-field--box.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
          animation: 150ms mdc-ripple-fg-opacity-out;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-text-field--box::before,
.mdc-text-field--box::after {
  background-color: rgba(0, 0, 0, 0.87);
}

.mdc-text-field--box:hover::before {
  opacity: 0.04;
}

.mdc-text-field--box:not(.mdc-ripple-upgraded):focus::before,
.mdc-text-field--box.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-text-field--box::before,
.mdc-text-field--box::after {
  top: calc(50% - 100%);
  /* @noflip */
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
}

.mdc-text-field--box.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-text-field--box:not(.mdc-text-field--disabled) {
  background-color: whitesmoke;
}

.mdc-text-field--box .mdc-floating-label--float-above {
  -webkit-transform: translateY(-50%) scale(0.75);
          transform: translateY(-50%) scale(0.75);
}

.mdc-text-field--box .mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-text-field-box 250ms 1;
          animation: mdc-floating-label-shake-float-above-text-field-box 250ms 1;
}

.mdc-text-field--box .mdc-text-field__input {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  padding: 20px 16px 0;
}

.mdc-text-field--box .mdc-floating-label {
  /* @noflip */
  left: 16px;
  /* @noflip */
  right: initial;
  position: absolute;
  bottom: 20px;
  width: calc(100% - 48px);
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}

[dir="rtl"] .mdc-text-field--box .mdc-floating-label,
.mdc-text-field--box .mdc-floating-label[dir="rtl"] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 16px;
}

.mdc-text-field--box.mdc-text-field--disabled {
  background-color: #fafafa;
  border-bottom: none;
}

.mdc-text-field--box.mdc-text-field--disabled .mdc-text-field__input {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-floating-label {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--box.mdc-text-field--dense .mdc-floating-label--float-above {
  -webkit-transform: translateY(-70%) scale(0.923);
          transform: translateY(-70%) scale(0.923);
}

.mdc-text-field--box.mdc-text-field--dense .mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-text-field-box-dense 250ms 1;
          animation: mdc-floating-label-shake-float-above-text-field-box-dense 250ms 1;
}

.mdc-text-field--box.mdc-text-field--dense .mdc-text-field__input {
  padding: 12px 12px 0;
}

.mdc-text-field--with-leading-icon .mdc-text-field__icon {
  /* @noflip */
  left: 15px;
  /* @noflip */
  right: initial;
}

[dir="rtl"] .mdc-text-field--with-leading-icon .mdc-text-field__icon,
.mdc-text-field--with-leading-icon .mdc-text-field__icon[dir="rtl"] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 15px;
}

.mdc-text-field--with-leading-icon .mdc-text-field__input {
  /* @noflip */
  padding-left: 48px;
  /* @noflip */
  padding-right: 15px;
}

[dir="rtl"] .mdc-text-field--with-leading-icon .mdc-text-field__input,
.mdc-text-field--with-leading-icon .mdc-text-field__input[dir="rtl"] {
  /* @noflip */
  padding-left: 15px;
  /* @noflip */
  padding-right: 48px;
}

.mdc-text-field--with-leading-icon .mdc-floating-label {
  /* @noflip */
  left: 48px;
  /* @noflip */
  right: initial;
}

[dir="rtl"] .mdc-text-field--with-leading-icon .mdc-floating-label,
.mdc-text-field--with-leading-icon .mdc-floating-label[dir="rtl"] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 48px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
  -webkit-transform: translateY(-130%) translateX(-32px) scale(0.75);
          transform: translateY(-130%) translateX(-32px) scale(0.75);
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir="rtl"] {
  -webkit-transform: translateY(-130%) translateX(32px) scale(0.75);
          transform: translateY(-130%) translateX(32px) scale(0.75);
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1;
          animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir="rtl"] .mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl 250ms 1;
          animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl 250ms 1;
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
  -webkit-transform: translateY(-110%) translateX(-21px) scale(0.923);
          transform: translateY(-110%) translateX(-21px) scale(0.923);
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above[dir="rtl"] {
  -webkit-transform: translateY(-110%) translateX(21px) scale(0.923);
          transform: translateY(-110%) translateX(21px) scale(0.923);
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense 250ms 1;
          animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense 250ms 1;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense[dir="rtl"] .mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl 250ms 1;
          animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl 250ms 1;
}

.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 15px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon .mdc-text-field__icon,
.mdc-text-field--with-trailing-icon .mdc-text-field__icon[dir="rtl"] {
  /* @noflip */
  left: 15px;
  /* @noflip */
  right: initial;
}

.mdc-text-field--with-trailing-icon .mdc-text-field__input {
  /* @noflip */
  padding-left: 15px;
  /* @noflip */
  padding-right: 48px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon .mdc-text-field__input,
.mdc-text-field--with-trailing-icon .mdc-text-field__input[dir="rtl"] {
  /* @noflip */
  padding-left: 48px;
  /* @noflip */
  padding-right: 15px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon,
.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
  bottom: 16px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon {
  /* @noflip */
  left: 12px;
  /* @noflip */
  right: initial;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon,
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 12px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input {
  /* @noflip */
  padding-left: 38px;
  /* @noflip */
  padding-right: 12px;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input,
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
  /* @noflip */
  padding-left: 12px;
  /* @noflip */
  padding-right: 38px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label {
  /* @noflip */
  left: 38px;
  /* @noflip */
  right: initial;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label,
.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label[dir="rtl"] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 38px;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 12px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon,
.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
  /* @noflip */
  left: 12px;
  /* @noflip */
  right: initial;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input {
  /* @noflip */
  padding-left: 12px;
  /* @noflip */
  padding-right: 38px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input,
.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
  /* @noflip */
  padding-left: 38px;
  /* @noflip */
  padding-right: 12px;
}

.mdc-text-field--upgraded:not(.mdc-text-field--fullwidth):not(.mdc-text-field--box) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 16px;
}

.mdc-text-field--upgraded:not(.mdc-text-field--fullwidth):not(.mdc-text-field--box):not(.mdc-text-field--textarea):not(.mdc-text-field--outlined) {
  height: 48px;
}

.mdc-text-field--dense {
  margin-top: 12px;
  margin-bottom: 4px;
}

.mdc-text-field--dense .mdc-floating-label--float-above {
  -webkit-transform: translateY(-110%) scale(0.923);
          transform: translateY(-110%) scale(0.923);
}

.mdc-text-field--dense .mdc-floating-label {
  font-size: .813rem;
}

.mdc-text-field__input:required + .mdc-floating-label::after {
  margin-left: 1px;
  content: "*";
}

.mdc-text-field--textarea {
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: initial;
  -webkit-transition: none;
  transition: none;
  border: 1px solid;
  overflow: hidden;
}

.mdc-text-field--textarea .mdc-floating-label {
  border-radius: 4px 4px 0 0;
}

.mdc-text-field--textarea .mdc-text-field__input {
  border-radius: 2px;
}

.mdc-text-field--textarea:not(.mdc-text-field--disabled) {
  border-color: rgba(0, 0, 0, 0.73);
}

.mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
  border-color: rgba(0, 0, 0, 0.73);
}

.mdc-text-field--textarea .mdc-floating-label--float-above {
  -webkit-transform: translateY(-50%) scale(0.923);
          transform: translateY(-50%) scale(0.923);
}

.mdc-text-field--textarea .mdc-floating-label--shake {
  -webkit-animation: mdc-floating-label-shake-float-above-textarea 250ms 1;
          animation: mdc-floating-label-shake-float-above-textarea 250ms 1;
}

.mdc-text-field--textarea .mdc-text-field__input {
  height: auto;
  margin: 0;
  padding: 16px;
  padding-top: 32px;
  border: 1px solid transparent;
}

.mdc-text-field--textarea .mdc-floating-label {
  background-color: white;
  /* @noflip */
  left: 1px;
  /* @noflip */
  right: 0;
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: 0;
  top: 18px;
  bottom: auto;
  margin-top: 2px;
  padding: 12px 8px 8px 8px;
  line-height: 1.15;
  pointer-events: none;
}

[dir="rtl"] .mdc-text-field--textarea .mdc-floating-label,
.mdc-text-field--textarea .mdc-floating-label[dir="rtl"] {
  /* @noflip */
  left: 0;
  /* @noflip */
  right: 1px;
}

[dir="rtl"] .mdc-text-field--textarea .mdc-floating-label,
.mdc-text-field--textarea .mdc-floating-label[dir="rtl"] {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 8px;
}

.mdc-text-field--fullwidth {
  width: 100%;
}

.mdc-text-field--fullwidth .mdc-text-field__input {
  resize: vertical;
}

.mdc-text-field--fullwidth:not(.mdc-text-field--textarea) {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 56px;
  margin: 0;
  border: none;
  border-bottom: 1px solid;
  outline: none;
}

.mdc-text-field--fullwidth:not(.mdc-text-field--textarea) .mdc-text-field__input {
  width: 100%;
  height: 100%;
  padding: 0;
  resize: none;
  border: none !important;
}

.mdc-text-field--fullwidth.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--textarea) {
  border-bottom-color: #b00020;
}

.mdc-text-field--dense + .mdc-text-field-helper-text {
  margin-bottom: 4px;
}

.mdc-text-field--box + .mdc-text-field-helper-text,
.mdc-text-field--outlined + .mdc-text-field-helper-text,
.mdc-text-field--textarea + .mdc-text-field-helper-text {
  margin-right: 16px;
  margin-left: 16px;
}

.mdc-form-field > .mdc-text-field + label {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
  color: rgba(98, 0, 238, 0.87);
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
  color: rgba(98, 0, 238, 0.87);
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
  color: rgba(98, 0, 238, 0.87);
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input::-ms-input-placeholder {
  color: rgba(98, 0, 238, 0.87);
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: rgba(98, 0, 238, 0.87);
}

.mdc-text-field--focused .mdc-text-field__input:required + .mdc-floating-label::after {
  color: #b00020;
}

.mdc-text-field--focused + .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg) {
  opacity: 1;
}

.mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled) {
  border-color: #6200ee;
  /* @alternate */
  border-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
  border-color: #6200ee;
  /* @alternate */
  border-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input {
  border-bottom-color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input:hover {
  border-bottom-color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple {
  background-color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label {
  color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
  color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
  color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::-ms-input-placeholder {
  color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: #b00020;
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--invalid + .mdc-text-field-helper-text--validation-msg {
  color: #b00020;
}

.mdc-text-field--invalid .mdc-text-field__input {
  caret-color: #b00020;
}

.mdc-text-field--invalid.mdc-text-field--with-trailing-icon:not(.mdc-text-field--disabled) .mdc-text-field__icon {
  color: #b00020;
}

.mdc-text-field--invalid + .mdc-text-field-helper-text--validation-msg {
  opacity: 1;
}

.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) {
  border-color: #b00020;
}

.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
  border-color: #b00020;
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__idle {
  border-color: #b00020;
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__path {
  stroke: #b00020;
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline__idle,
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline__idle {
  border-color: #b00020;
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline .mdc-notched-outline__path,
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline .mdc-notched-outline__path {
  stroke: #b00020;
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__path {
  stroke: #b00020;
}

.mdc-text-field--disabled {
  pointer-events: none;
}

.mdc-text-field--disabled .mdc-text-field__input {
  border-bottom-color: rgba(35, 31, 32, 0.26);
}

.mdc-text-field--disabled .mdc-text-field__input {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--disabled .mdc-floating-label {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--disabled .mdc-text-field__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--disabled .mdc-text-field__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--disabled .mdc-text-field__input::placeholder {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--disabled + .mdc-text-field-helper-text {
  color: rgba(0, 0, 0, 0.37);
}

.mdc-text-field--disabled .mdc-text-field__icon {
  color: rgba(0, 0, 0, 0.3);
}

.mdc-text-field--disabled:not(.mdc-text-field--textarea) {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.mdc-text-field--disabled .mdc-text-field__input {
  border-bottom: 1px dotted;
}

.mdc-text-field--disabled .mdc-floating-label {
  cursor: default;
}

.mdc-text-field--textarea.mdc-text-field--disabled {
  border-color: rgba(35, 31, 32, 0.26);
  background-color: #f9f9f9;
  border-style: solid;
}

.mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__input:focus {
  border-color: rgba(35, 31, 32, 0.26);
}

.mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__input {
  border: 1px solid transparent;
}

.mdc-text-field--textarea.mdc-text-field--disabled .mdc-floating-label {
  background-color: #f9f9f9;
}

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-box {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-box {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
  }
}

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-box-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-70%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-70%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-70%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-70%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.923);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-box-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-70%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-70%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-70%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-70%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-70%) scale(0.923);
  }
}

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-outlined {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
  }
}

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-outlined-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-110%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-110%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-110%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-110%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-110%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-110%) scale(0.923);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-110%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-110%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-110%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-110%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-110%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-110%) scale(0.923);
  }
}

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon {
  0% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon {
  0% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
  }
}

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-110%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(4% - 21px)) translateY(-110%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(-4% - 21px)) translateY(-110%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-110%) scale(0.923);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-110%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(4% - 21px)) translateY(-110%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(-4% - 21px)) translateY(-110%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-110%) scale(0.923);
  }
}

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
  0% {
    -webkit-transform: translateX(calc(0 - -32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - -32px)) translateY(-130%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - -32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - -32px)) translateY(-130%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - -32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - -32px)) translateY(-130%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - -32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - -32px)) translateY(-130%) scale(0.75);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
  0% {
    -webkit-transform: translateX(calc(0 - -32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - -32px)) translateY(-130%) scale(0.75);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - -32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - -32px)) translateY(-130%) scale(0.75);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - -32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - -32px)) translateY(-130%) scale(0.75);
  }

  100% {
    -webkit-transform: translateX(calc(0 - -32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - -32px)) translateY(-130%) scale(0.75);
  }
}

@-webkit-keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl {
  0% {
    -webkit-transform: translateX(calc(0 - -21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - -21px)) translateY(-110%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - -21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(4% - -21px)) translateY(-110%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - -21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(-4% - -21px)) translateY(-110%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - -21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - -21px)) translateY(-110%) scale(0.923);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl {
  0% {
    -webkit-transform: translateX(calc(0 - -21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - -21px)) translateY(-110%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - -21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(4% - -21px)) translateY(-110%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - -21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(-4% - -21px)) translateY(-110%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - -21px)) translateY(-110%) scale(0.923);
            transform: translateX(calc(0 - -21px)) translateY(-110%) scale(0.923);
  }
}

@-webkit-keyframes mdc-floating-label-shake-float-above-textarea {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
  }
}

@keyframes mdc-floating-label-shake-float-above-textarea {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
  }

  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
            animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923);
  }

  66% {
    -webkit-animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
            animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923);
  }

  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
  }
}

.mdc-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 5;
}

.mdc-dialog__backdrop {
  background-color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}

.mdc-dialog__surface {
  -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  /* @alternate */
  background-color: var(--mdc-theme-background, #fff);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 30px);
  min-width: 640px;
  max-width: 865px;
  -webkit-transform: translateY(150px) scale(0.8);
          transform: translateY(150px) scale(0.8);
  border-radius: 2px;
  opacity: 0;
}

.mdc-dialog[dir="rtl"] .mdc-dialog__surface,
[dir="rtl"] .mdc-dialog .mdc-dialog__surface {
  text-align: right;
}

.mdc-dialog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 24px 0;
}

.mdc-dialog[dir="rtl"] .mdc-dialog__header,
[dir="rtl"] .mdc-dialog .mdc-dialog__header {
  text-align: right;
}

.mdc-dialog__header__empty {
  padding: 0;
}

.mdc-dialog__header__title {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 500;
  letter-spacing: 0.0125em;
  text-decoration: inherit;
  text-transform: inherit;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}

.mdc-dialog__body {
  color: rgba(0, 0, 0, 0.54);
  /* @alternate */
  color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, 0.54));
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.03125em;
  text-decoration: inherit;
  text-transform: inherit;
  margin-top: 20px;
  padding: 0 24px 24px;
}

.mdc-dialog__body--scrollable {
  max-height: 195px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.mdc-dialog__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 8px;
}

.mdc-dialog__footer__button {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 8px;
}

[dir="rtl"] .mdc-dialog__footer__button,
.mdc-dialog__footer__button[dir="rtl"] {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: 0;
}

.mdc-dialog__footer__button:last-child {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 0;
}

[dir="rtl"] .mdc-dialog__footer__button:last-child,
.mdc-dialog__footer__button:last-child[dir="rtl"] {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 0;
}

.mdc-dialog__action:not(:disabled) {
  color: #018786;
  /* @alternate */
  color: var(--mdc-theme-secondary, #018786);
}

@media (max-width: 640px) {
  .mdc-dialog {
    min-width: 280px;
  }

  .mdc-dialog__surface {
    min-width: 280px;
  }

  .mdc-dialog__body {
    line-height: 24px;
  }
}

.mdc-dialog--animating {
  visibility: visible;
}

.mdc-dialog--animating .mdc-dialog__backdrop {
  -webkit-transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.mdc-dialog--animating .mdc-dialog__surface {
  -webkit-transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.mdc-dialog--open {
  visibility: visible;
}

.mdc-dialog--open .mdc-dialog__backdrop {
  opacity: .3;
}

.mdc-dialog--open .mdc-dialog__surface {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}

.mdc-dialog-scroll-lock {
  overflow: hidden;
}

.mdc-form-field {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01785714em;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}

.mdc-form-field > label {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin-right: auto;
  padding-left: 4px;
}

[dir="rtl"] .mdc-form-field > label,
.mdc-form-field[dir="rtl"] > label {
  margin-left: auto;
  padding-right: 4px;
}

.mdc-form-field--align-end > label {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-left: auto;
  padding-right: 4px;
}

[dir="rtl"] .mdc-form-field--align-end > label,
.mdc-form-field--align-end[dir="rtl"] > label {
  margin-right: auto;
  padding-left: 4px;
}

@-webkit-keyframes mdc-checkbox-unchecked-checked-checkmark-path {
  0%, 50% {
    stroke-dashoffset: 29.7833385;
  }

  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes mdc-checkbox-unchecked-checked-checkmark-path {
  0%, 50% {
    stroke-dashoffset: 29.7833385;
  }

  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
  0%, 68.2% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }

  68.2% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }

  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
  0%, 68.2% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }

  68.2% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }

  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@-webkit-keyframes mdc-checkbox-checked-unchecked-checkmark-path {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
    opacity: 1;
    stroke-dashoffset: 0;
  }

  to {
    opacity: 0;
    stroke-dashoffset: -29.7833385;
  }
}

@keyframes mdc-checkbox-checked-unchecked-checkmark-path {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
    opacity: 1;
    stroke-dashoffset: 0;
  }

  to {
    opacity: 0;
    stroke-dashoffset: -29.7833385;
  }
}

@-webkit-keyframes mdc-checkbox-checked-indeterminate-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }
}

@keyframes mdc-checkbox-checked-indeterminate-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }
}

@-webkit-keyframes mdc-checkbox-indeterminate-checked-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}

@keyframes mdc-checkbox-indeterminate-checked-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes mdc-checkbox-checked-indeterminate-mixedmark {
  from {
    -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
            animation-timing-function: mdc-animation-deceleration-curve-timing-function;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
}

@keyframes mdc-checkbox-checked-indeterminate-mixedmark {
  from {
    -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
            animation-timing-function: mdc-animation-deceleration-curve-timing-function;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes mdc-checkbox-indeterminate-checked-mixedmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
    opacity: 0;
  }
}

@keyframes mdc-checkbox-indeterminate-checked-mixedmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }

  to {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
    opacity: 0;
  }
}

@-webkit-keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }

  32.8%, 100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
}

@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }

  32.8%, 100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
}

.mdc-checkbox {
  display: inline-block;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 18px;
  height: 18px;
  padding: 11px;
  line-height: 0;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: bottom;
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
}

.mdc-checkbox::before,
.mdc-checkbox::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-checkbox::before {
  -webkit-transition: opacity 15ms linear;
  transition: opacity 15ms linear;
  z-index: 1;
}

.mdc-checkbox.mdc-ripple-upgraded::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-checkbox.mdc-ripple-upgraded::after {
  top: 0;
  /* @noflip */
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.mdc-checkbox.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* @noflip */
  left: var(--mdc-ripple-left, 0);
}

.mdc-checkbox.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
          animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
}

.mdc-checkbox.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
          animation: 150ms mdc-ripple-fg-opacity-out;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-checkbox::before,
.mdc-checkbox::after {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-checkbox::before,
  .mdc-checkbox::after {
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-checkbox:hover::before {
  opacity: 0.04;
}

.mdc-checkbox:not(.mdc-ripple-upgraded):focus::before,
.mdc-checkbox.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-checkbox:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-checkbox:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-checkbox.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-checkbox::before,
.mdc-checkbox::after {
  top: calc(50% - 50%);
  /* @noflip */
  left: calc(50% - 50%);
  width: 100%;
  height: 100%;
}

.mdc-checkbox.mdc-ripple-upgraded::before,
.mdc-checkbox.mdc-ripple-upgraded::after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  /* @noflip */
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-checkbox.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-checkbox__checkmark {
  color: #fff;
}

.mdc-checkbox__mixedmark {
  border-color: #fff;
}

.mdc-checkbox__background::before {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-checkbox__background::before {
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
  border-color: rgba(0, 0, 0, 0.54);
  background-color: transparent;
}

.mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background,
.mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background {
  border-color: #018786;
  /* @alternate */
  border-color: var(--mdc-theme-secondary, #018786);
  background-color: #018786;
  /* @alternate */
  background-color: var(--mdc-theme-secondary, #018786);
}

@-webkit-keyframes mdc-checkbox-fade-in-background-0 {
  0% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent;
  }

  50% {
    border-color: #018786;
    /* @alternate */
    border-color: var(--mdc-theme-secondary, #018786);
    background-color: #018786;
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

@keyframes mdc-checkbox-fade-in-background-0 {
  0% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent;
  }

  50% {
    border-color: #018786;
    /* @alternate */
    border-color: var(--mdc-theme-secondary, #018786);
    background-color: #018786;
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

@-webkit-keyframes mdc-checkbox-fade-out-background-0 {
  0%, 80% {
    border-color: #018786;
    /* @alternate */
    border-color: var(--mdc-theme-secondary, #018786);
    background-color: #018786;
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #018786);
  }

  100% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent;
  }
}

@keyframes mdc-checkbox-fade-out-background-0 {
  0%, 80% {
    border-color: #018786;
    /* @alternate */
    border-color: var(--mdc-theme-secondary, #018786);
    background-color: #018786;
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #018786);
  }

  100% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent;
  }
}

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background,
.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
  -webkit-animation-name: mdc-checkbox-fade-in-background-0;
          animation-name: mdc-checkbox-fade-in-background-0;
}

.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background,
.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
  -webkit-animation-name: mdc-checkbox-fade-out-background-0;
          animation-name: mdc-checkbox-fade-out-background-0;
}

.mdc-checkbox__native-control:disabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
  border-color: rgba(0, 0, 0, 0.26);
}

.mdc-checkbox__native-control:disabled:checked ~ .mdc-checkbox__background,
.mdc-checkbox__native-control:disabled:indeterminate ~ .mdc-checkbox__background {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.26);
}

@media screen and (-ms-high-contrast: active) {
  .mdc-checkbox__mixedmark {
    margin: 0 1px;
  }
}

.mdc-checkbox--disabled {
  cursor: default;
  pointer-events: none;
}

.mdc-checkbox__background {
  /* @noflip */
  left: 11px;
  /* @noflip */
  right: initial;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: 11px;
  bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 45%;
  height: 45%;
  -webkit-transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  border: 2px solid currentColor;
  border-radius: 2px;
  background-color: transparent;
  pointer-events: none;
  will-change: background-color, border-color;
}

.mdc-checkbox[dir="rtl"] .mdc-checkbox__background,
[dir="rtl"] .mdc-checkbox .mdc-checkbox__background {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 11px;
}

.mdc-checkbox__checkmark {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  opacity: 0;
}

.mdc-checkbox--upgraded .mdc-checkbox__checkmark {
  opacity: 1;
}

.mdc-checkbox__checkmark-path {
  -webkit-transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  stroke: currentColor;
  stroke-width: 3.12px;
  stroke-dashoffset: 29.7833385;
  stroke-dasharray: 29.7833385;
}

.mdc-checkbox__mixedmark {
  width: 100%;
  height: 0;
  -webkit-transform: scaleX(0) rotate(0deg);
          transform: scaleX(0) rotate(0deg);
  -webkit-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  border-width: 1px;
  border-style: solid;
  opacity: 0;
}

.mdc-checkbox--upgraded .mdc-checkbox__background,
.mdc-checkbox--upgraded .mdc-checkbox__checkmark,
.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,
.mdc-checkbox--upgraded .mdc-checkbox__mixedmark {
  -webkit-transition: none !important;
  transition: none !important;
}

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background,
.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background,
.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background,
.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background {
  -webkit-animation-duration: 180ms;
          animation-duration: 180ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path {
  -webkit-animation: 180ms linear 0s mdc-checkbox-unchecked-checked-checkmark-path;
          animation: 180ms linear 0s mdc-checkbox-unchecked-checked-checkmark-path;
  -webkit-transition: none;
  transition: none;
}

.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark {
  -webkit-animation: 90ms linear 0s mdc-checkbox-unchecked-indeterminate-mixedmark;
          animation: 90ms linear 0s mdc-checkbox-unchecked-indeterminate-mixedmark;
  -webkit-transition: none;
  transition: none;
}

.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path {
  -webkit-animation: 90ms linear 0s mdc-checkbox-checked-unchecked-checkmark-path;
          animation: 90ms linear 0s mdc-checkbox-checked-unchecked-checkmark-path;
  -webkit-transition: none;
  transition: none;
}

.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark {
  -webkit-animation: 90ms linear 0s mdc-checkbox-checked-indeterminate-checkmark;
          animation: 90ms linear 0s mdc-checkbox-checked-indeterminate-checkmark;
  -webkit-transition: none;
  transition: none;
}

.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark {
  -webkit-animation: 90ms linear 0s mdc-checkbox-checked-indeterminate-mixedmark;
          animation: 90ms linear 0s mdc-checkbox-checked-indeterminate-mixedmark;
  -webkit-transition: none;
  transition: none;
}

.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark {
  -webkit-animation: 500ms linear 0s mdc-checkbox-indeterminate-checked-checkmark;
          animation: 500ms linear 0s mdc-checkbox-indeterminate-checked-checkmark;
  -webkit-transition: none;
  transition: none;
}

.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark {
  -webkit-animation: 500ms linear 0s mdc-checkbox-indeterminate-checked-mixedmark;
          animation: 500ms linear 0s mdc-checkbox-indeterminate-checked-mixedmark;
  -webkit-transition: none;
  transition: none;
}

.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark {
  -webkit-animation: 300ms linear 0s mdc-checkbox-indeterminate-unchecked-mixedmark;
          animation: 300ms linear 0s mdc-checkbox-indeterminate-unchecked-mixedmark;
  -webkit-transition: none;
  transition: none;
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background,
.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background {
  -webkit-transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path,
.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path {
  stroke-dashoffset: 0;
}

.mdc-checkbox__background::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
  will-change: opacity, transform;
}

.mdc-ripple-upgraded--background-focused .mdc-checkbox__background::before {
  content: none;
}

.mdc-checkbox__native-control:focus ~ .mdc-checkbox__background::before {
  -webkit-transform: scale(2.75, 2.75);
          transform: scale(2.75, 2.75);
  -webkit-transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  opacity: 0.12;
}

.mdc-checkbox__native-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: inherit;
}

.mdc-checkbox__native-control:disabled {
  cursor: default;
  pointer-events: none;
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
  -webkit-transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  opacity: 1;
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
  -webkit-transform: scaleX(1) rotate(-45deg);
          transform: scaleX(1) rotate(-45deg);
}

.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  opacity: 0;
}

.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
  -webkit-transform: scaleX(1) rotate(0deg);
          transform: scaleX(1) rotate(0deg);
  opacity: 1;
}

.mdc-radio {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  display: inline-block;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
  /* @alternate */
  will-change: opacity, transform, border-color, color;
}

.mdc-radio .mdc-radio__native-control:enabled:not(:checked) + .mdc-radio__background .mdc-radio__outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}

.mdc-radio .mdc-radio__native-control:enabled:checked + .mdc-radio__background .mdc-radio__outer-circle {
  border-color: #018786;
  /* @alternate */
  border-color: var(--mdc-theme-secondary, #018786);
}

.mdc-radio .mdc-radio__native-control:enabled + .mdc-radio__background .mdc-radio__inner-circle {
  border-color: #018786;
  /* @alternate */
  border-color: var(--mdc-theme-secondary, #018786);
}

.mdc-radio .mdc-radio__background::before {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-radio .mdc-radio__background::before {
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-radio::before,
.mdc-radio::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-radio::before {
  -webkit-transition: opacity 15ms linear;
  transition: opacity 15ms linear;
  z-index: 1;
}

.mdc-radio.mdc-ripple-upgraded::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-radio.mdc-ripple-upgraded::after {
  top: 0;
  /* @noflip */
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.mdc-radio.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* @noflip */
  left: var(--mdc-ripple-left, 0);
}

.mdc-radio.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
          animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
}

.mdc-radio.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
          animation: 150ms mdc-ripple-fg-opacity-out;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-radio::before,
.mdc-radio::after {
  top: calc(50% - 50%);
  /* @noflip */
  left: calc(50% - 50%);
  width: 100%;
  height: 100%;
}

.mdc-radio.mdc-ripple-upgraded::before,
.mdc-radio.mdc-ripple-upgraded::after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  /* @noflip */
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-radio.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-radio::before,
.mdc-radio::after {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-radio::before,
  .mdc-radio::after {
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-radio:hover::before {
  opacity: 0.04;
}

.mdc-radio:not(.mdc-ripple-upgraded):focus::before,
.mdc-radio.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-radio:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-radio:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-radio.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-radio__background {
  display: inline-block;
  position: absolute;
  left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  height: 50%;
}

.mdc-radio__background::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-radio__outer-circle {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
}

.mdc-radio__inner-circle {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  border-width: 10px;
  border-style: solid;
  border-radius: 50%;
}

.mdc-radio__native-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: inherit;
  z-index: 1;
}

.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__background::before {
  content: none;
}

.mdc-radio__native-control:checked + .mdc-radio__background,
.mdc-radio__native-control:disabled + .mdc-radio__background {
  -webkit-transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__outer-circle,
.mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__outer-circle {
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle,
.mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle {
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.mdc-radio--disabled {
  cursor: default;
  pointer-events: none;
}

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.mdc-radio__native-control:disabled + .mdc-radio__background,
[aria-disabled="true"] .mdc-radio__native-control + .mdc-radio__background {
  cursor: default;
}

.mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__outer-circle,
[aria-disabled="true"] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__outer-circle {
  border-color: rgba(0, 0, 0, 0.26);
}

.mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle,
[aria-disabled="true"] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__inner-circle {
  border-color: rgba(0, 0, 0, 0.26);
}

.mdc-radio__native-control:focus + .mdc-radio__background::before {
  -webkit-transform: scale(2, 2);
          transform: scale(2, 2);
  -webkit-transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  opacity: 0.12;
}

.mdc-menu {
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  /* @alternate */
  background-color: var(--mdc-theme-background, #fff);
  display: none;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 170px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  margin: 0;
  padding: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  border-radius: 2px;
  opacity: 0;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  will-change: transform, opacity;
  z-index: 4;
}

.mdc-menu:focus {
  outline: none;
}

.mdc-menu--animating-open {
  display: inline-block;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 0.03s linear, -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.03s linear, -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.03s linear, transform 0.12s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.03s linear, transform 0.12s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1);
  opacity: 0;
  overflow-y: hidden;
}

.mdc-menu--open {
  display: inline-block;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.mdc-menu--animating-closed {
  display: inline-block;
  -webkit-transition: opacity 0.075s linear;
  transition: opacity 0.075s linear;
  opacity: 0;
  overflow-y: hidden;
}

.mdc-menu__items {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: scale(1);
          transform: scale(1);
  overflow-x: hidden;
  overflow-y: auto;
  will-change: transform;
}

.mdc-menu__items > .mdc-list-item {
  cursor: pointer;
}

.mdc-menu--animating .mdc-menu__items {
  overflow-y: hidden;
}

.mdc-menu--animating-open > .mdc-menu__items {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

.mdc-menu--open > .mdc-menu__items {
  -webkit-transform: scale(1);
          transform: scale(1);
}

[dir="rtl"] .mdc-menu {
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.mdc-menu .mdc-list-group,
.mdc-menu .mdc-list {
  padding: 8px 0;
}

.mdc-menu .mdc-list-item {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.009375em;
  text-decoration: inherit;
  text-transform: inherit;
  position: relative;
  outline: none;
  color: inherit;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.mdc-menu .mdc-list-item__graphic {
  color: rgba(0, 0, 0, 0.54);
  /* @alternate */
  color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54));
}

.mdc-menu .mdc-list-item[aria-disabled="true"] {
  color: rgba(0, 0, 0, 0.38);
  /* @alternate */
  color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38));
  cursor: default;
  pointer-events: none;
}

.mdc-menu .mdc-list-item[aria-disabled="true"]:focus::before {
  opacity: 0;
}

.mdc-menu-anchor {
  position: relative;
  overflow: visible;
}

.mdc-chip {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  border-radius: 16px;
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.87);
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01785714em;
  text-decoration: inherit;
  text-transform: inherit;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 7px 12px;
  outline: none;
  cursor: pointer;
  overflow: hidden;
}

.mdc-chip::before,
.mdc-chip::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}

.mdc-chip::before {
  -webkit-transition: opacity 15ms linear;
  transition: opacity 15ms linear;
  z-index: 1;
}

.mdc-chip.mdc-ripple-upgraded::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-chip.mdc-ripple-upgraded::after {
  top: 0;
  /* @noflip */
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.mdc-chip.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* @noflip */
  left: var(--mdc-ripple-left, 0);
}

.mdc-chip.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
          animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
}

.mdc-chip.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
          animation: 150ms mdc-ripple-fg-opacity-out;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
          transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-chip::before,
.mdc-chip::after {
  top: calc(50% - 100%);
  /* @noflip */
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
}

.mdc-chip.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-chip::before,
.mdc-chip::after {
  background-color: rgba(0, 0, 0, 0.87);
}

.mdc-chip:hover::before {
  opacity: 0.04;
}

.mdc-chip:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-chip:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-chip.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-chip:hover {
  color: rgba(0, 0, 0, 0.87);
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(0, 0, 0, 0.54);
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--trailing {
  color: rgba(0, 0, 0, 0.54);
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--trailing:hover {
  color: rgba(0, 0, 0, 0.62);
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--trailing:focus {
  color: rgba(0, 0, 0, 0.87);
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden) {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.mdc-chip .mdc-chip__icon.mdc-chip__icon--trailing {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.mdc-chip:hover {
  color: #000;
  /* @alternate */
  color: var(--mdc-theme-on-surface, #000);
}

.mdc-chip--exit {
  -webkit-transition: opacity 75ms cubic-bezier(0.4, 0, 0.2, 1), width 150ms cubic-bezier(0, 0, 0.2, 1), padding 100ms linear, margin 100ms linear;
  transition: opacity 75ms cubic-bezier(0.4, 0, 0.2, 1), width 150ms cubic-bezier(0, 0, 0.2, 1), padding 100ms linear, margin 100ms linear;
  opacity: 0;
}

.mdc-chip__text {
  white-space: nowrap;
}

.mdc-chip__icon {
  border-radius: 50%;
  outline: none;
  vertical-align: middle;
}

.mdc-chip__icon--trailing {
  margin: 0 -4px 0 4px;
}

.mdc-chip__checkmark,
.mdc-chip__icon--leading {
  height: 20px;
  margin: -4px 4px -4px -4px;
}

.mdc-chip__checkmark-path {
  -webkit-transition: stroke-dashoffset 150ms 50ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: stroke-dashoffset 150ms 50ms cubic-bezier(0.4, 0, 0.6, 1);
  stroke-width: 2px;
  stroke-dashoffset: 29.7833385;
  stroke-dasharray: 29.7833385;
}

.mdc-chip--selected .mdc-chip__checkmark-path {
  stroke-dashoffset: 0;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected::before {
  opacity: 0.08;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected::before,
.mdc-chip-set--choice .mdc-chip.mdc-chip--selected::after {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-set--choice .mdc-chip.mdc-chip--selected::before,
  .mdc-chip-set--choice .mdc-chip.mdc-chip--selected::after {
    /* @alternate */
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:hover::before {
  opacity: 0.12;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.2;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.24;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected {
  color: #6200ee;
  /* @alternate */
  color: var(--mdc-theme-primary, #6200ee);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(98, 0, 238, 0.54);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:hover {
  color: #6200ee;
  /* @alternate */
  color: var(--mdc-theme-primary, #6200ee);
}

.mdc-chip-set--choice .mdc-chip .mdc-chip__checkmark-path {
  stroke: #6200ee;
  /* @alternate */
  stroke: var(--mdc-theme-primary, #6200ee);
}

.mdc-chip-set--choice .mdc-chip--selected {
  background-color: #fff;
  /* @alternate */
  background-color: var(--mdc-theme-surface, #fff);
}

.mdc-chip__checkmark-svg {
  width: 0;
  height: 20px;
  -webkit-transition: width 150ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mdc-chip--selected .mdc-chip__checkmark-svg {
  width: 20px;
}

.mdc-chip-set--filter .mdc-chip__icon--leading {
  -webkit-transition: opacity 75ms linear;
  transition: opacity 75ms linear;
  -webkit-transition-delay: -50ms;
          transition-delay: -50ms;
  opacity: 1;
}

.mdc-chip-set--filter .mdc-chip__icon--leading + .mdc-chip__checkmark {
  -webkit-transition: opacity 75ms linear;
  transition: opacity 75ms linear;
  -webkit-transition-delay: 80ms;
          transition-delay: 80ms;
  opacity: 0;
}

.mdc-chip-set--filter .mdc-chip__icon--leading + .mdc-chip__checkmark .mdc-chip__checkmark-svg {
  -webkit-transition: width 0ms;
  transition: width 0ms;
}

.mdc-chip-set--filter .mdc-chip--selected .mdc-chip__icon--leading {
  opacity: 0;
}

.mdc-chip-set--filter .mdc-chip--selected .mdc-chip__icon--leading + .mdc-chip__checkmark {
  width: 0;
  opacity: 1;
}

.mdc-chip-set--filter .mdc-chip__icon--leading-hidden.mdc-chip__icon--leading {
  width: 0;
  opacity: 0;
}

.mdc-chip-set--filter .mdc-chip__icon--leading-hidden.mdc-chip__icon--leading + .mdc-chip__checkmark {
  width: 20px;
}

@-webkit-keyframes mdc-chip-entry {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: .4;
  }

  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes mdc-chip-entry {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: .4;
  }

  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.mdc-chip-set {
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mdc-chip-set .mdc-chip {
  margin: 4px;
}

.mdc-chip-set--input .mdc-chip {
  -webkit-animation: mdc-chip-entry 100ms cubic-bezier(0, 0, 0.2, 1);
          animation: mdc-chip-entry 100ms cubic-bezier(0, 0, 0.2, 1);
}

.no-gutter {
  padding: 0px;
}

.cpl {
  padding-left: 0px;
}

.cpr {
  padding-right: 0px;
}

.cml {
  margin-left: 0 !important;
}

.cmr {
  margin-right: 0 !important;
}

.clear-list,
.ship__index .ship-card__meta ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.clear-list-spacing {
  padding: 0;
  margin: 0;
}

ul.horizontal {
  display: inline;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

ul.horizontal li {
  display: inline;
}

ul.horizontal li:after {
  content: ", ";
}

ul.horizontal li:last-child:after {
  content: "";
}

.inithide {
  display: none;
}

.inline-allocation-wrapper {
  display: inline-block;
  width: 75px;
}

.label-required:after {
  content: '*';
  color: red;
  padding-left: 5px;
}

.z-depth-0 {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.z-depth-1,
.fixed-one:disabled:hover,
.fixed-two:disabled:hover,
.ship__index .ship-card,
.btn-raised,
.page-toolbar .navbar-toolbar a.float-button,
.sub-toolbar,
.drag-zone .draggable,
.drag-zone-hover,
.paper-wrap,
.card.paper,
.paper,
a.float-button,
button.float-button {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.z-depth-1-half {
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.z-depth-2,
.page-toolbar .navbar-toolbar a.float-button:hover,
.paper-wrap.paper-hover:hover,
.paper.paper-hover:hover,
a.float-button:hover,
button.float-button:hover {
  -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-3 {
  -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-4 {
  -webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
          box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.z-depth-5 {
  -webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
          box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.paper-wrap:before,
.card.paper:before,
.paper:before,
.paper-wrap .card-head:before,
.paper .card-head:before,
.clearfix:after,
.paper-wrap:after,
.card.paper:after,
.paper:after,
.paper-wrap .card-head:after,
.paper .card-head:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after,
.paper-wrap:after,
.card.paper:after,
.paper:after,
.paper-wrap .card-head:after,
.paper .card-head:after {
  clear: both;
}

.col-odd-centered {
  float: none;
  margin: 0 auto;
}

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */

.dropzone,
.dropzone * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.dropzone {
  position: relative;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  width: 120px;
  margin: 0.5em;
}

.dropzone .dz-preview .dz-progress {
  display: block;
  height: 15px;
  border: 1px solid #aaa;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  display: block;
  height: 100%;
  width: 0;
  background: green;
}

.dropzone .dz-preview .dz-error-message {
  color: red;
  display: none;
}

.dropzone .dz-preview.dz-error .dz-error-mark,
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  display: block;
}

.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
  position: absolute;
  display: none;
  left: 30px;
  top: 30px;
  width: 54px;
  height: 58px;
  left: 50%;
  margin-left: -27px;
}

/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */

@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.dropzone,
.dropzone * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ddd));
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}

.dropzone .dz-preview .dz-error-mark svg,
.dropzone .dz-preview .dz-success-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: -webkit-gradient(linear, left top, left bottom, from(#be2626), to(#a92222));
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}

.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

form legend {
  border: none;
  color: #1976d2;
  font-size: 2em;
  font-weight: 400;
}

form .form-group {
  margin-bottom: 35px;
}

form td .form-group {
  margin-bottom: 0px !important;
}

form td .form-group input[type="number"] {
  text-align: center;
}

form label {
  font-weight: 500 !important;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form input[type="select"],
form textarea {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  border-bottom: 2px solid #e0e0e0 !important;
  background: none !important;
  padding: 0 !important;
  -webkit-transition: border-bottom 0.3s !important;
  transition: border-bottom 0.3s !important;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form input[type="number"]:focus,
form input[type="select"]:focus,
form textarea:focus {
  border-bottom: 2px solid #1976d2 !important;
}

form input[type="text"]:focus + .input-info,
form input[type="email"]:focus + .input-info,
form input[type="password"]:focus + .input-info,
form input[type="number"]:focus + .input-info,
form input[type="select"]:focus + .input-info,
form textarea:focus + .input-info {
  opacity: 100;
}

form input[type="text"]:focus ~ .group-btn-md,
form input[type="email"]:focus ~ .group-btn-md,
form input[type="password"]:focus ~ .group-btn-md,
form input[type="number"]:focus ~ .group-btn-md,
form input[type="select"]:focus ~ .group-btn-md,
form textarea:focus ~ .group-btn-md {
  border-bottom: 2px solid #1976d2 !important;
  color: #1976d2 !important;
}

form input[type="text"]:disabled,
form input[type="email"]:disabled,
form input[type="password"]:disabled,
form input[type="number"]:disabled,
form input[type="select"]:disabled,
form textarea:disabled {
  border: none !important;
}

form input[type="radio"] {
  margin-right: 5px;
}

form input[type="checkbox"] {
  margin-right: 5px;
}

form .next-radio {
  margin-left: 20px;
}

form .form-span {
  resize: none;
  overflow: auto;
  padding-top: 10px !important;
  padding-bottom: 5px !important;
}

form textarea {
  resize: none;
  overflow: auto;
  padding-top: 10px !important;
  padding-bottom: 5px !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="select"],
textarea {
  height: 34px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  border-bottom: 2px solid #e0e0e0 !important;
  background: none !important;
  padding: 0 !important;
  -webkit-transition: all 0.5s !important;
  transition: all 0.5s !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="select"]:focus,
textarea:focus {
  border-bottom: 2px solid #1976d2 !important;
}

input[type="text"]:focus + .input-info,
input[type="email"]:focus + .input-info,
input[type="password"]:focus + .input-info,
input[type="number"]:focus + .input-info,
input[type="select"]:focus + .input-info,
textarea:focus + .input-info {
  opacity: 100;
}

input[type="text"]:focus ~ .group-btn-md,
input[type="email"]:focus ~ .group-btn-md,
input[type="password"]:focus ~ .group-btn-md,
input[type="number"]:focus ~ .group-btn-md,
input[type="select"]:focus ~ .group-btn-md,
textarea:focus ~ .group-btn-md {
  border-bottom: 2px solid #1976d2 !important;
  color: #1976d2 !important;
}

input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="select"]:disabled,
textarea:disabled {
  border-bottom: 2px solid transparent !important;
  cursor: inherit;
}

div.form-control {
  min-height: 300px;
  height: 100%;
}

.checkbox .form-control {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

input[type="checkbox"].form-control {
  -webkit-transition: all ease 3s;
  transition: all ease 3s;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  width: inherit;
  margin-top: 0;
}

.btn {
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 500 !important;
  outline: none !important;
  height: 32px;
  border-radius: 2px;
  text-transform: uppercase;
}

.btn:focus {
  outline: none !important;
}

.btn:active {
  outline: none !important;
}

.btn i {
  margin-right: 7px;
}

.btn.btn-secondary {
  background: #ff9a13;
  color: white;
}

.btn.btn-secondary:hover {
  background: #d87f11;
}

.btn.glyphicon {
  padding: 6px 12px !important;
  color: #fff !important;
  border-radius: 5px;
  margin-left: 2px !important;
}

.btn.btn-link {
  color: #ec407a;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 0px !important;
  padding-right: 0px !important;
  text-transform: uppercase;
  font-size: 16px;
}

.btn.btn-link:hover {
  text-decoration: none;
  color: #c2185b;
}

.btn-link-container .btn-link {
  margin-right: 20px;
}

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

.btn-primary.btn-icon:hover {
  color: #0d47a1;
}

.btn-primary.btn-icon:active {
  color: #0d47a1;
  background-color: transparent;
}

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

.btn-accent.btn-icon {
  color: #ec407a;
  background-color: transparent;
}

.btn-accent.btn-icon:hover {
  color: #c2185b;
  background-color: #e0e0e0;
}

.btn-accent.btn-icon:active {
  color: #c2185b;
  background-color: transparent;
}

.btn-accent.btn-icon:focus {
  color: #c2185b;
  background-color: transparent;
}

table tr th,
table tr td {
  padding: 10px 10px !important;
  vertical-align: middle !important;
}

table tr td.action,
table tr th.action {
  padding: 5px !important;
}

table tr th:first-child,
table tr td:first-child {
  padding-left: 10px !important;
}

table tr th:last-child,
table tr td:last-child {
  padding-right: 10px !important;
}

.full-card-width table tr th:first-child,
.full-card-width table tr td:first-child {
  padding-left: 20px !important;
}

.full-card-width table tr th:last-child,
.full-card-width table tr td:last-child {
  padding-right: 20px !important;
}

.modal-header,
.modal-footer {
  border: none !important;
}

.modal-dialog h4 {
  color: #1976d2;
}

.modal-content {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.modal-footer .btn.btn-link {
  margin-left: 15px;
}

@media (min-width: 768px) {
  .modal-xl {
    width: 90%;
    max-width: 1200px;
  }
}

.bootstrap-datetimepicker-widget th {
  padding: 6px !important;
}

.bootstrap-datetimepicker-widget td {
  padding: 6px !important;
}

.bootstrap-datetimepicker-widget .btn {
  padding: 6px 6px !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.bootstrap-datetimepicker-widget .timepicker td a:hover {
  background: none !important;
}

.bootstrap-datetimepicker-widget .timepicker td span {
  width: auto !important;
  height: auto !important;
  display: block !important;
  padding: 3px;
}

.hideFade {
  display: none;
}

.alert {
  margin-right: 2px;
}

.action-inline form {
  width: 40px;
  display: inline;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
  right: 0px !important;
  left: -5px !important;
  top: inherit !important;
  bottom: 8px !important;
}

.modal-footer {
  text-align: left !important;
}

.tooltip-transparent + .tooltip > .tooltip-inner {
  background-color: transparent !important;
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
  display: inline !important;
}

.selected {
  -webkit-box-shadow: 5px 12px 22px 2px #333;
          box-shadow: 5px 12px 22px 2px #333;
}

.invoice-style-image-upload {
  margin: 0px !important;
}

.twitter-typeahead .tt-query,
.twitter-typeahead .tt-hint {
  margin-bottom: 0;
}

.tt-hint {
  display: none;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #999;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

.tt-menu {
  min-width: 160px;
  margin-top: 2px;
  padding: 5px 0;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.tt-suggestion {
  display: block;
  padding: 3px 20px;
}

.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #428bca;
}

.tt-suggestion.tt-cursor a {
  color: #fff;
}

.tt-suggestion p {
  margin: 0;
}

.twitter-typeahead {
  display: block !important;
}

.tt-addon-suggestion ul {
  list-style-type: none;
}

.tt-big-text {
  font-size: 14px;
  font-weight: bold;
}

.tt-normal-text {
  font-size: 10px;
}

body {
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  background-color: #EDECEC;
}

h3 {
  font-weight: 300;
}

h3 span.parent-hint {
  font-weight: 400;
  line-height: 15px;
}

.btn-accent {
  color: white;
}

.btn-accent:focus,
.btn-accent:hover {
  color: white;
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 15px;
}

a {
  font-weight: 400;
}

*:focus {
  outline: none !important;
}

input[type=file] {
  color: transparent;
}

input[type=file]:after {
  content: " " attr(filename) " ";
  font-family: Roboto sans-serif;
  margin-left: 5px;
  color: #ec407a;
}

.back-arrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 26px;
  display: block;
  float: left;
  padding-right: 10px;
}

.back-arrow:focus,
.back-arrow:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.page .float-button {
  position: absolute;
  top: 10px;
  right: 15px;
}

.page .panel-heading {
  position: relative;
}

.page .panel-heading .float-button {
  position: absolute;
  top: 33px !important;
  right: 20px !important;
}

.modal-body .tab-content {
  padding-top: 25px;
}

.panel .panel-heading h3 {
  margin-bottom: 0 !important;
  font-size: 24px;
}

.panel h4.panel-title a {
  text-decoration: none;
}

.panel h4.panel-title a:hover {
  text-decoration: none;
}

.panel h3.panel-title a {
  font-weight: 200;
  text-decoration: none;
}

.panel h3.panel-title a:hover {
  text-decoration: none;
}

.panel .panel-collapse .panel-body {
  padding: 0;
}

.panel .panel-collapse .panel-body .content {
  padding: 15px;
}

.panel-material {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 0;
}

.panel-material .panel-heading {
  padding-left: 0;
  background: none;
  border-bottom: 1px solid #ec407a;
}

.panel-material .panel-body {
  padding: 15px 0;
}

.panel-material .panel-body table th {
  width: 15%;
}

.panel-material .panel-body table td,
.panel-material .panel-body table th {
  border: none;
  padding: 15px;
}

.panel-material .icon-link {
  color: rgba(0, 0, 0, 0.54);
  padding-left: 15px;
}

.panel-material .icon-link:hover {
  color: #ec407a;
}

.form-error input[type="email"],
.form-error input[type="number"],
.form-error input[type="password"],
.form-error input[type="text"],
.form-error textarea {
  border-bottom: 2px solid #e53935 !important;
}

.border-top {
  border-top: 1px #CCCCCC solid;
  margin-left: -20px;
  margin-right: -20px;
}

.border-bot {
  border-bottom: 1px #CCCCCC solid;
  margin-left: -20px;
  margin-right: -20px;
}

.border-top-inside {
  border-top: 1px #CCCCCC solid;
  margin-left: 0;
  margin-right: 0;
}

.border-bot-inside {
  border-bottom: 1px #CCCCCC solid;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}

.inside {
  margin-left: 0;
  margin-right: 0;
}

.inside {
  margin-left: 0;
  margin-right: 0;
}

.info-message {
  color: rgba(0, 0, 0, 0.26);
}

.no-margin-bot {
  margin-bottom: 0 !important;
}

.panel-card label {
  margin-top: 9px;
}

.panel-card .expansion-panel .expansion-panel-head {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  background-color: white;
}

.panel-card .expansion-panel .expansion-panel-head label {
  margin-top: 5px;
}

.panel-card .expansion-panel .expansion-panel-body {
  display: none;
}

.panel-card .expansion-panel .expansion-panel-body .panel-table td {
  border-top: none;
}

.panel-card .expansion-panel .expansion-panel-body .panel-table th {
  padding-top: 15px;
  padding-bottom: 15px;
}

.panel-card .expansion-panel .expansion-panel-body .panel-table .select2-container {
  margin-left: -8px;
}

.panel-card .expansion-panel .expansion-panel-body .expansion-panel-footer {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.panel-card .expansion-panel .expansion-panel-body .expansion-panel-footer .btn {
  padding-right: 9px !important;
}

.panel-card .expansion-panel .expansion-panel-body-open .panel-table td {
  border-top: none;
}

.panel-card .expansion-panel .expansion-panel-body-open .panel-table th {
  padding-top: 15px;
  padding-bottom: 15px;
}

.panel-card .expansion-panel .expansion-panel-body-open .panel-table .select2-container {
  margin-left: -8px;
}

.panel-card .expansion-panel .expansion-panel-body-open .expansion-panel-footer {
  padding-top: 0;
  padding-bottom: 0;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.panel-card .expansion-panel .expansion-panel-body-open .expansion-panel-footer .btn {
  padding-right: 9px !important;
}

.panel-card .expansion-panel .panel-toggle {
  padding-right: 9px;
}

.panel-card .expansion-panel .form-group {
  margin: 0 !important;
  padding-top: 16px;
  padding-bottom: 16px;
}

.form-padding {
  margin: 0 !important;
  padding-top: 5px;
  padding-bottom: 5px;
}

.error {
  color: #e53935;
  font-weight: bold;
}

.row-fluid {
  width: 100%;
  overflow: hidden;
}

.label-center {
  padding: 6px 12px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.26);
}

.no-margin-header {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: black;
}

.float-button-panel {
  margin-top: 26px;
}

.row-hover:hover {
  background-color: #f5f5f5;
}

.nav-bar-absolute {
  position: absolute;
  z-index: 100;
  top: 170px;
  padding-left: 37px;
  padding-right: 37px;
}

.list-form {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.btn-link-small {
  font-size: 14px !important;
  text-transform: none !important;
}

.btn-pink {
  background: #ec407a;
  color: white;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.btn-pink:hover {
  color: white;
}

.btn-pink:active {
  color: white;
}

.btn-pink:focus {
  color: white;
}

.btn-pink i {
  margin: 0 !important;
}

.no-margin {
  margin: 0;
}

.blue-divider {
  border-color: #0d47a1;
  margin: 1.5em -20px;
}

.show-more-onclick li:first-child,
.show-more-onclick tr:first-child {
  display: block !important;
}

.form-item .show-more-onclick li:first-child:not(:last-child) {
  cursor: pointer;
}

.show-more-onclick {
  margin: 0;
}

.show-more-onclick li:first-child:not(:last-child):after,
.show-more-onclick li:first-child:not(:last-child) td:after {
  content: '\F107';
  font-family: FontAwesome;
  margin-left: 5px;
  color: #ec407a;
}

.show-more-onclick li:first-child:not(:last-child) {
  cursor: pointer;
}

.show-more-onclick li.clicked:first-child:not(:last-child):after,
.show-more-onclick li.clicked:first-child:not(:last-child) td:after {
  content: '\F106';
}

.show-more-onclick {
  padding-left: 0 !important;
}

.show-more-onclick li,
.show-more-onclick tr {
  display: none;
  list-style-type: none;
}

@-webkit-keyframes fadein {
  from {
    display: none !important;
    height: 1%;
    opacity: 0;
  }

  to {
    display: block !important;
    height: 100%;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    display: none !important;
    height: 1%;
    opacity: 0;
  }

  to {
    display: block !important;
    height: 100%;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    display: block !important;
    height: 100%;
    opacity: 1;
  }

  to {
    display: none !important;
    height: 1%;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    display: block !important;
    height: 100%;
    opacity: 1;
  }

  to {
    display: none !important;
    height: 1%;
    opacity: 0;
  }
}

.fadein-tr {
  display: block !important;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: fadein;
          animation-name: fadein;
}

.fadeout-tr {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: fadeout;
          animation-name: fadeout;
}

.show-block {
  display: block !important;
}

.no-dot-list {
  padding: 0 !important;
}

.no-dot-list li {
  list-style-type: none;
}

.clickable {
  cursor: pointer;
}

.clickable li {
  cursor: pointer;
}

.page-toolbar-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 0 76px !important;
}

.fixed-float-button {
  top: 20px !important;
  position: fixed !important;
  right: 55px !important;
}

.fixed-one {
  top: 20px !important;
  right: 0px !important;
  background-color: #d32f2f !important;
}

.fixed-two {
  top: 20px !important;
  right: 80px !important;
  background-color: #388e3c !important;
}

.fixed-one:disabled,
.fixed-two:disabled {
  opacity: 0;
  cursor: not-allowed;
}

.fixed-one.fixed-float-button {
  right: 60px !important;
}

.fixed-two.fixed-float-button {
  right: 140px !important;
}

.slim-form-groups {
  margin-bottom: 10px !important;
}

.travel-agency-client {
  color: #6C9FD8;
}

.email-link {
  color: blue !important;
}

.table-row-click {
  cursor: pointer;
}

.disabled-wysiwyg {
  min-height: 150px;
}

.label-inline input {
  float: left;
}

.label-inline label {
  float: left;
  margin-top: 10px;
  margin-left: 5px;
}

.page {
  padding: 40px 37px;
}

.text-primary {
  color: #0d47a1;
}

.text-accent {
  color: #ec407a;
}

.page__login {
  background: #fff;
  padding: 0 !important;
}

.page__login .status-bar {
  margin-bottom: 3%;
}

.page__login .logo {
  display: block;
  margin: 0 auto 35px;
  width: 35%;
}

.page__login h5 {
  text-align: center;
  color: #616161;
  margin-bottom: 25px;
}

.page__login .login-panel {
  padding: 25px 40px;
  background: #fafafa;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

.page__login .btn-login {
  width: 100%;
  border-radius: 2px;
  color: #fafafa;
  font-weight: bold;
}

.page__login .btn-forgot-password {
  display: block !important;
  text-align: center;
  color: rgba(0, 0, 0, 0.54);
  text-transform: none;
}

.page__login .btn-forgot-password:hover {
  color: rgba(0, 0, 0, 0.87);
}

.finance__invoice-partner h6 {
  background: #f0f0f0;
  padding: 5px 10px;
}

.finance__invoice-partner table th {
  width: 350px;
}

.invoice-preview .card-head h3 {
  display: block !important;
  text-align: center !important;
  float: none !important;
}

.invoice-table tbody tr td {
  border-top: none;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.page.finance__invoice-create-confirm table td,
.page.finance__invoice-create-confirm table th {
  border: none;
}

.custom-image-upload {
  position: relative;
}

.custom-image-upload button {
  position: absolute;
  z-index: 1;
}

.custom-image-upload .img-input {
  z-index: 2;
  opacity: 0;
  position: absolute;
  height: 32px;
}

.custom-image-upload .img-input:hover + button {
  -webkit-box-shadow: 0px 0px 8px #000;
          box-shadow: 0px 0px 8px #000;
}

.img-container {
  position: relative;
}

.img-container.disabled img {
  cursor: default;
}

.img-container.disabled img:hover + .img-overlay {
  display: none;
  opacity: 0;
}

.img-container img {
  -webkit-transition: all ease-in .3s;
  transition: all ease-in .3s;
  width: 100%;
}

.img-container img:hover + .img-overlay {
  display: block;
  opacity: 1;
}

.img-container .img-overlay {
  pointer-events: none;
  position: absolute;
  opacity: 0.1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all ease-in .3s;
  transition: all ease-in .3s;
}

.img-container .img-overlay span {
  color: white;
  width: 100%;
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}

.image-input-preview:hover + .image-overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
}

.image-input-preview + .image-overlay {
  display: none;
}

.image-input-preview:hover + .image-overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
}

.small-margin-bottom {
  margin-bottom: 50px;
}

.ship__index .ship-card {
  background: #fff;
  height: 200px;
  margin-bottom: 30px;
}

.ship__index .ship-card__content {
  height: 170px;
  padding: 15px 20px;
}

.ship__index .ship-card__content h4 {
  margin-top: 0;
}

.ship__index .ship-card__content p {
  overflow: hidden;
}

.ship__index .ship-card__meta {
  height: 170px;
}

.ship__index .ship-card__meta ul li {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.54);
  text-align: left;
  float: left;
  margin-right: 15px;
}

.ship__index .ship-card__meta ul li span {
  display: inline-block;
  min-width: 32px;
}

.ship__index .ship-card__meta ul li i {
  min-width: 15px;
  margin-right: 5px;
}

.ship__index .ship-card__image {
  width: 110px;
  height: 110px;
  overflow: hidden;
  float: left;
  border-radius: 50%;
  margin-right: 20px;
  background: #f5f5f5;
}

.ship__index .ship-card__image img {
  height: inherit;
}

.ship__index .ship-card__action {
  text-align: right;
  padding: 0 20px;
}

.ship__index .ship-card__action a {
  display: inline-block;
  padding-left: 20px;
  text-transform: uppercase;
  font-weight: 500;
}

.ship__index .ship-card__action a:hover {
  text-decoration: none;
  color: #ec407a;
}

.ship__show #cabin-types table td.img {
  width: 100px;
}

.ship__show #cabin-types table td.img .round {
  width: 75px;
  height: 75px;
}

.ship__show #cabin-types table td.img .round img {
  height: inherit;
  display: block;
}

.contract__create h6 {
  background: #f0f0f0;
  padding: 5px 10px;
}

.contract__edit .table-no-border td,
.contract__edit .table-no-border th,
.contract__view .table-no-border td,
.contract__view .table-no-border th {
  border: none;
}

.contract__edit .table-no-border th,
.contract__view .table-no-border th {
  padding: 15px;
}

.contract__edit h6,
.contract__view h6 {
  background: #f0f0f0;
  padding: 5px 10px;
}

.contract__edit .span-label,
.contract__view .span-label {
  display: inline-block;
  width: 40px;
}

.status-bar {
  background: #0d47a1;
  min-height: 25px;
}

/* Hide for mobile, show later */

.sidebar {
  background: #f5f5f5;
  display: none;
}

body {
  background-color: #f8f7f7;
  overflow-x: hidden !important;
}

.sidebar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 101;
}

.location-info .toggle-menu,
.location-info .toggle-fixed-menu,
.menu-info .toggle-menu,
.menu-info .toggle-fixed-menu {
  float: left;
  display: inline-block;
  margin-right: 20px;
  margin-top: 2px;
}

.location-info .toggle-menu .bar,
.location-info .toggle-fixed-menu .bar,
.menu-info .toggle-menu .bar,
.menu-info .toggle-fixed-menu .bar {
  height: 2px;
  background-color: white;
  width: 18px;
  display: block;
}

.location-info .toggle-menu .bar:not(:nth-child(3)),
.location-info .toggle-fixed-menu .bar:not(:nth-child(3)),
.menu-info .toggle-menu .bar:not(:nth-child(3)),
.menu-info .toggle-fixed-menu .bar:not(:nth-child(3)) {
  margin-bottom: 4px;
}

.location-info .toggle-menu.inithide,
.location-info .toggle-fixed-menu.inithide,
.menu-info .toggle-menu.inithide,
.menu-info .toggle-fixed-menu.inithide {
  display: none;
}

.sidenav.inithide {
  z-index: 101;
}

.menu-info {
  background-color: #2196F3;
  margin-left: -15px;
  color: white;
  padding: 20px 15px 1px;
  position: fixed;
  top: 0;
  height: 63px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.menu-info .section-title {
  font-size: 20px;
}

.menu-info .user-actions {
  font-size: 20px;
  float: right;
}

.menu-info .user-actions .user {
  height: 33px;
  width: 33px;
  float: right;
  overflow: hidden;
  border-radius: 100%;
  margin-top: -5px;
}

.menu-info .user-actions .user a,
.menu-info .user-actions .user img {
  height: inherit;
  width: inherit;
}

.menu-info .user-actions .user.active {
  -webkit-box-shadow: 0 0 0 2px #ff9a13;
          box-shadow: 0 0 0 2px #ff9a13;
}

.menu-info .user-actions .actions {
  float: right;
  margin-left: 20px;
}

.menu-info .user-actions .actions a {
  color: white;
}

.menu-info .user-actions .actions a:first-child {
  margin-right: 10px;
}

.menu-info .user-actions .actions a.active {
  color: #ff9a13;
}

.menu-info .user-actions .actions .logout {
  float: right;
}

.menu-info .user-actions .actions .logout button {
  background-color: transparent;
  border: none;
}

.sidenav {
  z-index: 101;
}

.sidenav.hidden {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.87);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.87);
}

.sidenav .nav-sidebar {
  margin-right: -15px;
  margin-left: -20px;
}

.sidenav .sidenav-menu {
  position: fixed;
  top: 63px;
  bottom: 0;
  overflow-y: scroll;
  background-color: white;
  left: 0;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

.sidenav .sidenav-menu::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

.sidenav .sidenav-menu::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

.sidenav .sidenav-menu::-webkit-scrollbar-thumb {
  background-color: #d2d2d2;
}

.sidenav li.active a {
  background-color: transparent;
  color: #2196F3;
}

.sidenav li.active a:hover,
.sidenav li.active a:focus {
  background-color: #eee;
  color: #2196F3;
}

.topbar {
  width: 100%;
  background-color: #2196F3;
  position: fixed;
  top: 0;
  float: left;
  padding: 20px 0;
  z-index: 100;
}

.topbar a,
.topbar b,
.topbar i,
.topbar p,
.topbar small,
.topbar span {
  color: white;
}

.topbar .location-info .section-title {
  font-size: 20px;
}

.topbar .location-info .section-title i {
  vertical-align: middle !important;
}

.topbar .location-info .section-title a {
  color: #ff9a13 !important;
}

.topbar .menu-info {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.topbar.col-md-10 {
  border-left: 1px solid #1c7fcf;
}

.tabs-bar {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: -20px;
}

.tabs-bar .navbar {
  min-height: 0;
  background-color: transparent;
  border: none !important;
  margin-bottom: 0 !important;
}

.tabs-bar .navbar li {
  border-bottom: 2px solid transparent;
}

.tabs-bar .navbar li.active {
  border-color: #ff9a13;
}

.tabs-bar .navbar li a {
  text-transform: uppercase;
}

.page-with-toolbar .page {
  margin-top: 92px;
}

.page-with-toolbar .tabs-bar a.float-button {
  position: fixed;
  top: 63px;
  right: 35px;
}

.page-with-toolbar .float-button.fixed {
  position: fixed !important;
  top: 63px !important;
  right: 35px !important;
  z-index: 999999;
}

.float-button {
  background-color: #ff9a13 !important;
}

.float-button.fixed {
  position: fixed !important;
  top: 35px !important;
  right: 35px !important;
  z-index: 999999;
}

.page {
  margin-top: 62px;
}

.page.page__login {
  margin-top: 0px;
}

.page .tabs-bar a.float-button {
  position: fixed;
  top: 35px;
  right: 35px;
}

.hovered-background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 9;
  pointer-events: all;
}

.flipswitch {
  position: relative;
  background: #EEE;
  width: 56px !important;
  height: 28px;
  -webkit-appearance: initial;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  cursor: pointer;
  border: 1px solid #999;
  border-radius: 500px;
  margin: 0 !important;
  margin-top: 6px !important;
}

.flipswitch:after {
  position: absolute;
  height: calc(100% - 2px);
  width: calc(50% - 2px);
  display: block;
  background: #fff;
  border: 1px solid #999;
  border-radius: 500px;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
  -webkit-animation: moveUnchecked .4s ease;
          animation: moveUnchecked .4s ease;
  margin-top: 1px;
  margin-left: 1px;
  content: '';
}

.flipswitch.success:checked {
  background: rgba(76, 175, 80, 0.25);
}

.flipswitch.success:checked:after {
  background: #4caf50;
}

.flipswitch:checked {
  background: rgba(34, 150, 243, 0.25);
}

.flipswitch:checked:after {
  background: #2196F3;
  -webkit-animation: moveChecked .4s ease;
          animation: moveChecked .4s ease;
  left: 50%;
}

.flipswitch:disabled {
  cursor: initial !important;
}

@-webkit-keyframes moveChecked {
  from {
    left: 0;
  }

  to {
    left: 50%;
  }
}

@keyframes moveChecked {
  from {
    left: 0;
  }

  to {
    left: 50%;
  }
}

@-webkit-keyframes moveUnchecked {
  from {
    left: 50%;
  }

  to {
    left: 0;
  }
}

@keyframes moveUnchecked {
  from {
    left: 50%;
  }

  to {
    left: 0;
  }
}

.sidenav .nav > li {
  float: left;
  width: 100%;
}

.slidedown.active .slidedown-menu {
  display: block;
}

.slidedown.active .slidedown-menu li a {
  color: rgba(0, 0, 0, 0.87);
  background-color: transparent;
}

.slidedown.open .toggle-action {
  -webkit-transform: rotate(180deg) !important;
          transform: rotate(180deg) !important;
}

.slidedown .slidedown-toggle .toggle-action {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  width: auto;
  min-width: 0px;
  margin-right: 0px;
  margin-top: 2px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.slidedown .slidedown-menu {
  list-style: none;
  display: none;
  overflow: hidden;
  padding-left: 65px;
  border-top: 1px solid #d5d3d3;
  border-bottom: 1px solid #d5d3d3 !important;
}

.slidedown .slidedown-menu li a {
  font-weight: 500;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  float: left;
  display: block;
  width: 100%;
  text-decoration: none;
}

.slidedown .slidedown-menu li a:hover {
  color: #2196F3;
  background-color: transparent;
}

.height-150-overflow {
  height: 150px;
  overflow: hidden;
}

.toggle-height {
  position: absolute;
  right: 2px;
  top: 0;
}

td.action,
th.action {
  width: 20px;
}

@media (max-width: 767px) {
  .toggle-menu.inithide {
    display: inline-block !important;
  }
}

.btn-flat,
.btn-accent-flat {
  font-weight: 500;
  padding-left: 16px;
  padding-right: 16px;
}

.btn-flat.btn,
.btn.btn-accent-flat {
  background-color: transparent !important;
}

.btn-flat.btn-danger,
.btn-danger.btn-accent-flat {
  color: #f44336;
}

.btn-flat.btn-danger:hover,
.btn-danger.btn-accent-flat:hover {
  background-color: rgba(244, 67, 54, 0.25) !important;
}

.btn-flat.btn-danger:active,
.btn-danger.btn-accent-flat:active {
  background-color: transparent !important;
}

.btn-flat.btn-primary,
.btn-primary.btn-accent-flat {
  color: #2196F3;
}

.btn-flat.btn-primary:hover,
.btn-primary.btn-accent-flat:hover {
  background-color: rgba(33, 150, 243, 0.25) !important;
}

.btn-flat.btn-primary:active,
.btn-primary.btn-accent-flat:active {
  background-color: transparent !important;
}

.btn-flat.btn-accent,
.btn-accent.btn-accent-flat {
  color: #ec407a;
}

.btn-flat.btn-accent:hover,
.btn-accent.btn-accent-flat:hover {
  background-color: rgba(236, 64, 122, 0.25) !important;
}

.btn-flat.btn-accent:active,
.btn-accent.btn-accent-flat:active {
  background-color: transparent !important;
}

.btn-flat.btn-secondary,
.btn-secondary.btn-accent-flat {
  color: #ff9a13;
}

.btn-flat.btn-secondary:hover,
.btn-secondary.btn-accent-flat:hover {
  background-color: rgba(255, 154, 19, 0.25) !important;
}

.btn-flat.btn-secondary:active,
.btn-secondary.btn-accent-flat:active {
  background-color: transparent !important;
}

.btn-flat.btn-default,
.btn-default.btn-accent-flat {
  color: #000;
}

.btn-flat.btn-default:hover,
.btn-default.btn-accent-flat:hover {
  background-color: rgba(0, 0, 0, 0.25) !important;
}

.btn-flat.btn-success,
.btn-success.btn-accent-flat {
  color: #4caf50;
}

.btn-flat.btn-success:hover,
.btn-success.btn-accent-flat:hover {
  background-color: rgba(76, 175, 80, 0.25) !important;
}

.btn-flat.btn-success:active,
.btn-success.btn-accent-flat:active {
  background-color: transparent !important;
}

.btn-flat:hover,
.btn-accent-flat:hover,
.btn-flat:active,
.btn-accent-flat:active {
  text-decoration: none;
  background-color: transparent !important;
}

.btn-raised {
  font-weight: 500;
}

.image-upload input[type="file"] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.image-upload input[type="file"] + label {
  font-size: 1.25em;
  font-weight: 700;
  color: #2196F3;
  display: inline-block;
  cursor: pointer;
  padding: 10px 15px;
  pointer-events: all;
}

.image-upload input[type="file"] + label:hover {
  background-color: rgba(33, 150, 243, 0.25);
}

.image-upload input[type="file"] + label:before {
  content: '\F093';
  font-family: FontAwesome;
  margin-right: 20px;
}

.image-upload input[type="file"]:focus + label {
  background-color: rgba(33, 150, 243, 0.25);
}

.image-upload img {
  width: 100%;
}

.image-upload.form-group {
  margin: -20px -20px 20px -20px;
}

.image-upload label {
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 0px !important;
}

.notify-box {
  position: fixed;
  top: 0px;
  width: 500px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  background-color: #000;
  color: white;
  display: none;
  padding: 20px;
  z-index: 9999999999999;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
}

.notify-box .close-notify {
  text-transform: uppercase;
  color: #ff9a13;
}

.notify-box.bottom {
  top: auto;
  bottom: 0px;
  -webkit-box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.25);
}

.notify-box.by-vue {
  display: block;
}

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

.ml-mt-20 {
  margin-top: 20px;
  margin-left: 20px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-10 {
  margin-left: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-n10 {
  margin-bottom: -10px;
}

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

.card.paper.transparent {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .sidebar {
    position: fixed;
    top: 50px;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: block;
    padding: 20px;
    overflow-x: hidden;
    overflow-y: hidden;
    -ms-overflow-style: none;
    /* Scrollable contents if viewport is shorter than content. */
    background-color: #f5f5f5;
  }

  .sidebar::-webkit-scrollbar {
    width: 0 !important;
  }

  .sidebar:hover {
    overflow-y: auto;
  }
}

.sidebar-profile {
  margin-right: -20px;
  margin-left: -20px;
  margin-top: -20px;
  height: 150px;
  background: #eeeeee;
  padding: 15px 20px 0;
  position: relative;
}

.sidebar-profile .profile-dropdown {
  display: block;
  position: absolute;
  top: 10px;
  right: 0;
  color: #757575;
}

.sidebar-profile .profile-dropdown ul {
  top: 0;
  left: -140px;
  border-radius: 4px;
}

.sidebar-profile .profile-dropdown ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.sidebar-profile .profile-dropdown ul li i {
  min-width: 20px;
  width: 20px;
}

.sidebar-profile .profile-dropdown button {
  background: none;
  border: none;
}

.sidebar-profile .heart {
  background-color: red;
  display: inline-block;
  height: 30px;
  margin: 0 10px;
  position: absolute;
  top: 20px;
  right: 100px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 30px;
}

.sidebar-profile .heart:after,
.sidebar-profile .heart:before {
  content: "";
  background-color: red;
  border-radius: 50%;
  height: 30px;
  position: absolute;
  width: 30px;
}

.sidebar-profile .heart:before {
  top: -15px;
  left: 0;
}

.sidebar-profile .heart:after {
  left: 15px;
  top: 0;
}

.sidebar-profile img {
  height: inherit;
}

.sidebar-profile .profile-photo {
  width: 70px;
  text-align: center;
  background: #fff;
  height: 70px;
  overflow: hidden;
  display: block;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.sidebar-profile .event-info {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  margin-left: -20px;
  color: red;
}

.sidebar-profile .profile-photo {
  width: 70px;
  text-align: center;
  background: #fff;
  height: 70px;
  overflow: hidden;
  display: block;
  border-radius: 50%;
  border: 2px solid #fff;
  margin: 0 auto;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.sidebar-profile .profile-photo img {
  height: inherit;
}

.sidebar-profile .profile-info {
  display: block;
  list-style: none;
  margin: 10px 0 0 10px;
  padding: 0;
  text-align: center;
}

.sidebar-profile .profile-info li.usertype {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.54);
}

.sidebar-profile .profile-settings {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35px;
  line-height: 35px;
  padding: 0 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-sidebar {
  margin-right: -21px;
  /* 20px padding + 1px border */
  margin-bottom: 20px;
  margin-left: -20px;
}

.nav-sidebar > li > a {
  height: 64px;
  padding-right: 20px;
  padding-left: 20px;
}

.nav-sidebar > .active > a,
.nav-sidebar > .active > a:focus,
.nav-sidebar > .active > a:hover {
  color: #fff;
  background-color: #428bca;
}

.nav-sidebar-main li a {
  padding-right: 0 !important;
  padding-left: 0 !important;
  color: rgba(0, 0, 0, 0.87);
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-sidebar-main li a:hover {
  color: #0d47a1;
}

.nav-sidebar-main li a i {
  width: 20%;
  float: left;
  padding-right: 10px;
  padding-left: 20px;
  text-align: center;
}

.nav-sidebar-main li a span {
  vertical-align: middle;
  width: 80%;
  float: left;
  display: block;
  font-size: 16px;
  padding-right: 20px;
  font-weight: 500;
}

.nav-sidebar-main li a span .toggle-action {
  padding: 0;
}

.main .page-header {
  margin-top: 0;
}

.content {
  padding: 0;
}

.page-header {
  width: 100%;
  height: 100px;
  line-height: 110px;
  background: #0d47a1;
  color: #fff;
  -webkit-transition: height 100ms;
  transition: height 100ms;
  margin: 0 !important;
  border-bottom: 0;
  padding: 0 40px;
}

.page-header .prev-page {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.page-header .prev-page i {
  padding-bottom: 8px;
  padding-right: 20px;
}

.page-header .prev-page:hover {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.page-header span.section-title {
  font-size: 3.2rem;
  font-weight: 300;
  padding-left: 0;
}

.page-header span.section-title i {
  padding-bottom: 5px;
}

.page-toolbar {
  min-height: 50px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  padding: 0 40px;
  background: #0d47a1;
}

.page-toolbar .navbar.navbar-default {
  border: none;
  margin-bottom: 0;
}

.page-toolbar .navbar.navbar-default li a {
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  padding-left: 20px;
  padding-right: 20px;
}

.page-toolbar .navbar.navbar-default li ul.dropdown-menu li a {
  text-transform: none;
  font-weight: 400;
  margin-left: 0;
}

.page-toolbar .navbar.navbar-default li.active a {
  border-bottom: 3px solid #fff;
}

.page-toolbar .navbar.navbar-default li:first-child a {
  margin-left: -20px;
}

.page-toolbar .navbar .container-fluid,
.page-toolbar .navbar-collapse {
  padding-left: 0;
}

.page-toolbar .navbar-collapse.in {
  padding-left: 30px;
}

.page-toolbar .navbar-toolbar {
  position: relative;
}

.page-toolbar .navbar-toolbar a.float-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: inline-block;
  height: 55.5px;
  letter-spacing: 0.5px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  width: 55.5px;
  will-change: opacity, transform;
  z-index: 1;
  -webkit-perspective-origin: 27.75px 27.75px;
          perspective-origin: 27.75px 27.75px;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
  -webkit-transform-origin: 27.75px 27.75px;
          transform-origin: 27.75px 27.75px;
  background: #ec407a none repeat scroll 0 0/auto padding-box border-box;
  border: 0 none white;
  border-radius: 50% 50% 50% 50%;
  font: normal normal normal normal 15px/56px Roboto, sans-serif;
  outline: white none 0;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease-out 0s;
  transition: -webkit-box-shadow 0.3s ease-out 0s;
  transition: box-shadow 0.3s ease-out 0s;
  transition: box-shadow 0.3s ease-out 0s, -webkit-box-shadow 0.3s ease-out 0s;
  right: 5px;
  top: 20px;
}

.no-margin-form {
  margin: 0 !important;
}

.padding-form {
  padding: 5px;
}

.panel-card {
  padding-bottom: 0 !important;
}

.small-table {
  font-size: 14px;
}

.bold {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.87);
}

.exp-panel-card {
  padding: 0 !important;
}

.full-width-hr {
  margin: 0 -20px;
  padding: 10px 0;
}

.invisible {
  opacity: 0 !important;
}

.subheader:before {
  content: ' ';
  display: block;
}

.input-info {
  pointer-events: none;
  -webkit-transition: all 300ms !important;
  transition: all 300ms !important;
  opacity: 0;
}

.empty-label {
  width: 100%;
  overflow: visible;
}

table .bold-bottom {
  border-bottom: 2px solid #ddd;
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.align-center {
  text-align: center;
}

.group-btn-md {
  border: 0 !important;
  background-color: transparent;
  border-bottom: 2px solid #e0e0e0 !important;
  -webkit-transition: all 300ms !important;
  transition: all 300ms !important;
  padding: 0 !important;
}

.group-btn-md:focus {
  border-bottom: 2px solid #1976d2 !important;
}

.group-btn-md:hover {
  color: #1976d2;
}

.dataTables_filter,
.dataTables_info {
  display: none;
}

.guest-network-table,
.private-network-table,
.total_device_usage {
  overflow: auto;
}

table.fixedHeader-floating {
  position: fixed !important;
  top: 50px !important;
  background-color: white;
  margin-top: 0 !important;
}

table.fixedHeader-floating.no-footer {
  border-bottom-width: 0;
}

table.fixedHeader-locked {
  position: absolute !important;
  background-color: white;
}

@media print {
  table.fixedHeader-floating {
    display: none;
  }
}

.card-part-paddingless {
  margin-left: -20px !important;
  margin-right: -20px;
  margin-bottom: -20px !important;
}

.empty-label {
  width: 100%;
  overflow: visible;
}

.dropdown {
  position: relative !important;
}

.dropdown .dropdown-menu {
  left: inherit;
  padding: 0;
  margin: 0;
  z-index: 999999;
}

.dropdown .dropdown-menu a,
.dropdown .dropdown-menu button {
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  text-align: center;
  border: none;
  color: black;
  background-color: white;
}

.dropdown .dropdown-menu button:hover {
  background-color: #f5f5f5;
}

.badge-accent {
  background-color: #ec407a;
}

.badge-accent a {
  color: white;
}

.badge-accent a:active,
.badge-accent a:hover,
.badge-accent a:visited {
  text-decoration: none;
}

.badge-accent:hover {
  background-color: #1976d2;
}

.badge-hover-accent:hover {
  background-color: #1976d2;
  cursor: pointer;
}

.sub-toolbar {
  background-color: white;
  border: none !important;
}

.sub-toolbar .active {
  border-bottom: 3px #2196f3 solid;
}

.sub-toolbar li a {
  text-transform: uppercase !important;
  color: #2196f3 !important;
}

.dropdown {
  position: inherit !important;
}

.dropdown .dropdown-menu {
  left: inherit;
}

.commission-rate-table tbody p {
  margin-bottom: 1px !important;
}

.commission-rate-table tbody ul {
  margin-bottom: 1px !important;
}

.popover {
  max-width: 200px;
  height: 250px;
}

.loader,
.loader:after,
.loader:before {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: #0d47a1;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:after,
.loader:before {
  content: '';
  position: absolute;
  top: 0;
}

.scrollable-table {
  overflow-x: auto;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 100%, 80% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}

@keyframes load7 {
  0%, 100%, 80% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }

  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}

.btn-flat,
.btn-accent-flat {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-transform: uppercase;
}

.btn-flat:active,
.btn-accent-flat:active {
  background-color: #bdbdbd;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-flat:hover,
.btn-accent-flat:hover {
  background-color: #e0e0e0;
}

.btn-accent-flat {
  color: #ec407a;
}

.btn-accent-flat:hover {
  color: #c2185b;
}

.btn-accent-flat:focus {
  color: #ec407a;
}

.modal-xlg {
  width: 1300px;
}

.badge-primary {
  background-color: #1976d2;
}

h3 p {
  color: black;
}

.table-condensed tbody td {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

.pill-container {
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
}

.drag-zone {
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
  border-bottom: 2px solid #e0e0e0 !important;
  min-height: 58px;
}

.drag-zone .draggable {
  cursor: pointer;
  background-color: #ec407a;
  color: white;
  padding: 0 5px;
  display: inline-block;
  margin: 4px;
  border-radius: 3px;
}

.drag-zone .draggable .dropdown-btn {
  color: white;
}

.drag-zone .draggable .dropdown-btn:hover {
  text-decoration: none;
}

.drag-zone .draggable::after {
  content: ' ';
}

.drag-zone .draggable::before {
  content: ' ';
}

.drag-zone .draggable:hover {
  background-color: #1976d2;
}

.drag-zone .drag-zone-input {
  display: none;
}

.drag-zone-hover {
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
}

.txt-btn {
  border: none;
  padding: 0;
  margin: 0;
  background-color: white;
  color: #ec407a;
}

.txt-btn:hover {
  color: #1976d2;
}

.queue-element {
  display: none;
  width: 0 !important;
  height: 0 !important;
}

.remove-card {
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 100;
}

.with-summary-row tr:last-child {
  border-top: solid black 2px;
}

.text-right {
  text-align: right;
}

.table-list-ul {
  list-style: none;
  white-space: nowrap;
  padding-left: 0;
}

.fade-text {
  color: RGBA(0, 0, 0, 0.5);
}

.align-center {
  text-align: center;
}

.mtop-20 {
  margin-top: 20px;
}

.mtop-10 {
  margin-top: 10px;
}

.quotation-editor h1,
.quotation-editor h2,
.quotation-editor h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: #3c7534 !important;
}

.quotation-editor h4,
.quotation-editor h5,
.quotation-editor h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  color: #000000;
}

.quotation-editor h1 {
  font-size: 24px;
}

.quotation-editor h2 {
  font-size: 22px;
}

.quotation-editor h3 {
  font-size: 20px;
}

.quotation-editor h4 {
  font-size: 18px;
}

.quotation-editor h5 {
  font-size: 16px;
}

.quotation-editor h6 {
  font-size: 14px;
}

.quotation-editor p {
  font-size: 14px;
}

.page__tab {
  position: relative;
}

.page__tab .float-button {
  position: absolute;
  top: -10px;
  right: -5px;
}

.page__tab .paper-wrap .float-button,
.page__tab .card.paper .float-button {
  top: 10px;
  right: 15px;
}

.paper-wrap,
.card.paper,
.paper {
  background: #fff;
  padding: 20px;
}

.paper-wrap .header + .body,
.card.paper .header + .body,
.paper .header + .body {
  padding-top: 20px;
}

.paper-wrap .header + .footer,
.card.paper .header + .footer,
.paper-wrap .body + .footer,
.card.paper .body + .footer,
.paper-wrap .body + .body,
.card.paper .body + .body,
.paper .header + .footer,
.paper .body + .footer,
.paper .body + .body {
  padding-top: 20px;
}

.paper-wrap .header + .footer,
.card.paper .header + .footer,
.paper-wrap .body + .footer,
.card.paper .body + .footer,
.paper .header + .footer,
.paper .body + .footer {
  height: 52px;
}

.paper-wrap h3,
.card.paper h3,
.paper h3 {
  margin-top: 0px;
  color: #1976d2;
  margin-bottom: 25px;
}

.paper-wrap .parent-hint,
.card.paper .parent-hint,
.paper .parent-hint {
  padding-top: 5px;
  color: rgba(0, 0, 0, 0.54);
  display: block;
  font-size: 14px;
}

.paper-wrap .btn-card-toggle,
.card.paper .btn-card-toggle,
.paper .btn-card-toggle {
  padding-top: 10px;
  color: rgba(0, 0, 0, 0.26);
}

.paper-wrap .btn-card-toggle:hover,
.card.paper .btn-card-toggle:hover,
.paper .btn-card-toggle:hover {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.54);
}

.paper-wrap .card-head h3,
.card.paper .card-head h3,
.paper .card-head h3 {
  float: left;
}

.paper-wrap .card-head h1,
.card.paper .card-head h1,
.paper-wrap .card-head h2,
.card.paper .card-head h2,
.paper-wrap .card-head h3,
.card.paper .card-head h3,
.paper-wrap .card-head h4,
.card.paper .card-head h4,
.paper-wrap .card-head h5,
.card.paper .card-head h5,
.paper .card-head h1,
.paper .card-head h2,
.paper .card-head h3,
.paper .card-head h4,
.paper .card-head h5 {
  padding: 0;
  margin: 0;
}

.paper-wrap .card-head span,
.card.paper .card-head span,
.paper .card-head span {
  float: right;
}

.paper-wrap .header h1,
.card.paper .header h1,
.paper-wrap .header h2,
.card.paper .header h2,
.paper-wrap .header h3,
.card.paper .header h3,
.paper-wrap .header h4,
.card.paper .header h4,
.paper-wrap .header h5,
.card.paper .header h5,
.paper .header h1,
.paper .header h2,
.paper .header h3,
.paper .header h4,
.paper .header h5 {
  padding: 0;
  margin: 0;
}

.paper-wrap .md-line,
.card.paper .md-line,
.paper-wrap .md-line-full,
.card.paper .md-line-full,
.paper .md-line,
.paper .md-line-full {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
}

.paper-wrap .md-card-partial,
.card.paper .md-card-partial,
.paper-wrap .sub-card,
.card.paper .sub-card,
.paper .md-card-partial,
.paper .sub-card {
  background-color: #E3F2FD;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
}

.paper-wrap .md-card-partial .header,
.card.paper .md-card-partial .header,
.paper-wrap .sub-card .header,
.card.paper .sub-card .header,
.paper .md-card-partial .header,
.paper .sub-card .header {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.paper-wrap .md-card-partial .header + .body,
.card.paper .md-card-partial .header + .body,
.paper-wrap .sub-card .header + .body,
.card.paper .sub-card .header + .body,
.paper .md-card-partial .header + .body,
.paper .sub-card .header + .body {
  padding-top: 10px;
}

.paper-wrap .md-card-partial .header + .footer,
.card.paper .md-card-partial .header + .footer,
.paper-wrap .md-card-partial .body + .footer,
.card.paper .md-card-partial .body + .footer,
.paper-wrap .sub-card .header + .footer,
.card.paper .sub-card .header + .footer,
.paper-wrap .sub-card .body + .footer,
.card.paper .sub-card .body + .footer,
.paper .md-card-partial .header + .footer,
.paper .md-card-partial .body + .footer,
.paper .sub-card .header + .footer,
.paper .sub-card .body + .footer {
  padding-top: 10px;
}

.paper-wrap .md-card-partial .md-line,
.card.paper .md-card-partial .md-line,
.paper-wrap .sub-card .md-line,
.card.paper .sub-card .md-line,
.paper .md-card-partial .md-line,
.paper .sub-card .md-line {
  margin-top: 10px;
  margin-bottom: 10px;
  border-color: white;
  display: block;
}

.paper-wrap.paper-hover,
.paper-hover.card.paper,
.paper.paper-hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.paper-wrap-container .paper-wrap,
.paper-wrap-container .card.paper {
  margin-bottom: 25px;
}

.paper-wrap-container .paper-wrap .float-button,
.paper-wrap-container .card.paper .float-button {
  top: 15px;
  right: 15px;
}

.card.paper {
  margin-bottom: 25px;
  position: relative;
}

.card.paper .float-button {
  top: 10px;
  right: 15px;
}

.card.paper .card-head h3 {
  margin-bottom: 25px;
}

.card.paper .md-line {
  margin-top: 20px;
  margin-bottom: 20px;
}

.card.paper .md-line-full {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: -20px;
  margin-right: -20px;
}

.navbar-text {
  margin-bottom: 0 !important;
  margin-top: 6px !important;
}

.navbar-text label {
  color: #ec407a !important;
}

a.float-button,
button.float-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: inline-block;
  height: 55.5px;
  letter-spacing: 0.5px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  width: 55.5px;
  will-change: opacity, transform;
  z-index: 1;
  -webkit-perspective-origin: 27.75px 27.75px;
          perspective-origin: 27.75px 27.75px;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
  -webkit-transform-origin: 27.75px 27.75px;
          transform-origin: 27.75px 27.75px;
  background: #ec407a none repeat scroll 0% 0%/auto padding-box border-box;
  border: 0px none white;
  border-radius: 50% 50% 50% 50%;
  font: normal normal normal normal 15px/56px Roboto, sans-serif;
  outline: white none 0px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease-out 0s;
  transition: -webkit-box-shadow 0.3s ease-out 0s;
  transition: box-shadow 0.3s ease-out 0s;
  transition: box-shadow 0.3s ease-out 0s, -webkit-box-shadow 0.3s ease-out 0s;
}

.round {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  background: #eeeeee;
}

.round img {
  height: inherit;
}

.table-list th {
  border-bottom: 1px !important;
}

.table-list td {
  vertical-align: middle !important;
}

.table-list td.img {
  width: 100px;
  border: none !important;
}

.table-list td.action {
  text-align: right;
}

.table-list td.action a {
  font-weight: 500;
  margin-left: 15px;
  color: #9e9e9e;
}

.table-list td.action a:hover {
  color: #1976d2;
  text-decoration: none;
}

.table-list td ul {
  padding-left: 15px;
}

.table-list td ul.cruisedate-list {
  list-style: none;
  padding-left: 0px;
}

.table-list td ul.cruisedate-list span.label-cruisedate {
  font-weight: bold;
  display: inline-block;
  width: 50px;
  padding-right: 15px;
  text-align: right;
}

.table-list td span.td-label {
  display: inline-block;
  text-align: right;
  margin-right: 10px;
  font-size: inherit !important;
}

.table-list td span.td-label.small {
  width: 35px;
}

.table-list td span.td-label.large {
  width: 75px;
}

.table-key-value tbody tr:first-child th,
.table-key-value tbody tr:first-child td {
  border: none;
}

.table-key-value th,
.table-key-value td {
  border: none !important;
  padding: 15px !important;
}

.dataTables_info {
  color: rgba(0, 0, 0, 0.26);
}

.dataTables_filter {
  display: none;
}

table .bold-border {
  border-left: 2px solid !important;
  border-right: 2px solid !important;
  border-color: #ddd !important;
}

table .bold-border-left {
  border-left: 2px solid !important;
  border-color: #ddd !important;
}

table .bold-border-right {
  border-right: 2px solid !important;
  border-color: #ddd !important;
}

table thead .bold-border,
table thead .bold-border-left,
table thead .bold-border-right {
  border-bottom: 2px solid !important;
  border-color: #ddd !important;
}

table .warning {
  border-top: 2px solid !important;
  border-bottom: 2px solid !important;
  border-color: #ddd !important;
}

.filterbar {
  background: #fafafa;
  margin-bottom: 5px;
}

.filterbar .input-group-addon {
  border: none;
  background: #fafafa;
}

.filterbar .input-group {
  border-bottom: 2px solid transparent;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.filterbar .input-group input {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #fafafa;
}

.filterbar .input-group input:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #fafafa;
}

.reservation-cabins .select2-container,
.reservation-passenger .select2-container {
  width: 100% !important;
}

form .select2-container {
  width: 100% !important;
}

form .select2-container--disabled .select2-selection.select2-selection--single {
  border: none;
  background: none;
}

form .select2-container--disabled .select2-selection.select2-selection--single b {
  display: none;
}

form .select2-container--disabled .select2-selection.select2-selection--single .select2-selection__rendered {
  padding-left: 0px;
}

form .img-input-preview {
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}

.table-partner-allotment {
  display: none;
}

.table-partner-allotment th a {
  color: rgba(0, 0, 0, 0.54);
}

.table-partner-allotment th a:hover {
  color: #2196f3;
}

.table-partner-allotment th i {
  padding-left: 10px;
}

.table-partner-allotment tr:hover {
  background: none !important;
}

.table-partner-allotment tr.allotment-cabins-row:hover {
  background: none !important;
  border-top: none !important;
}

.table-partner-allotment tr.allotment-cabins-row td {
  border-top: none !important;
  padding-top: 0px !important;
}

.table-partner-allotment tr[class*="allotment-cabins-row-"]:hover {
  background: none !important;
  border-top: none !important;
}

.table-partner-allotment tr[class*="allotment-cabins-row-"] td {
  border-top: none !important;
  padding-top: 0px !important;
}

.table-partner-allotment .cb-allotment-mass-check {
  margin: 0px;
}

.table-partner-allotment .cb-allotment-mass-check label {
  min-height: 15px;
}

.modal h3 {
  margin-top: 0px;
  color: #1976d2;
  margin-bottom: 25px;
}

.modal .parent-hint {
  padding-top: 5px;
  color: rgba(0, 0, 0, 0.54);
  display: block;
  font-size: 14px;
}

table.full-width-table tr th:first-child,
table.full-width-table tr td:first-child {
  padding-left: 0 !important;
}

table.full-width-table tr th:last-child,
table.full-width-table tr td:last-child {
  padding-right: 0 !important;
}

.full-card-width {
  margin-left: -20px;
  margin-right: -20px;
}

.grid {
  width: 100%;
  display: grid;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  grid-gap: 10px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clear: both;
}

.grid-columns-1 {
  grid-template-columns: 100%;
}

.grid-columns-2 {
  grid-template-columns: 50% 50%;
}

.grid-columns-3 {
  grid-template-columns: 33% 33% 33%;
}

.grid-columns-3.grid-mid-half {
  grid-template-columns: 25% 50% 25%;
}

.grid-columns-3.grid-mid-large {
  grid-template-columns: 12.5% 75% 12.5%;
  margin: 0 10px;
  width: calc(100% - 20px);
}

.grid-columns-4 {
  grid-template-columns: 25% 25% 25% 25%;
  margin: 0 15px;
  width: calc(100% - 30px);
}

.grid-columns-5 {
  grid-template-columns: 20% 20% 20% 20% 20%;
  margin: 0 20px;
  width: calc(100% - 40px);
}

.grid-columns-5.grid-mid-half {
  grid-template-columns: 12.5% 12.5% 50% 12.5% 12.5%;
}

.grid-columns-5.grid-mid-third {
  grid-template-columns: 16.5% 17% 33% 17% 16.5%;
}

.grid-columns-5.grid-even-third {
  grid-template-columns: 12% 33% 12% 33% 12%;
}

.grid-columns-6 {
  grid-template-columns: 16% 16% 16% 16% 16% 16%;
}

.grid-columns-7 {
  grid-template-columns: 14% 14% 14% 14% 14% 14% 14%;
  margin: 0 15px;
  width: calc(100% - 30px);
}

.grid-columns-7.grid-mid-third {
  grid-template-columns: 11% 11% 11% 33% 11% 11% 11%;
}

.grid-columns-7.grid-mid-quarter {
  grid-template-columns: 12% 12% 12.5% 25% 12.5% 12% 12%;
}

.grid-columns-8 {
  grid-template-columns: 12% 12% 12% 12% 12% 12% 12% 12%;
}

.grid-tile {
  display: inline-grid;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 15px;
}

.grid-tile:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.grid-tile .tile-title {
  width: 100%;
  font-size: 24px;
  padding-bottom: 25px;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
}

.grid-tile .tile-info {
  width: 100%;
}

.grid-tile .tile-info .tile-info-row {
  margin-bottom: 20px;
  width: 100%;
  float: left;
  position: relative;
}

.grid-tile .tile-info .tile-info-row .tile-icon {
  margin-right: 20px;
  padding-top: 5px;
  float: left;
  font-size: 20px;
  color: #2196F3;
}

.grid-tile .tile-info .tile-info-row .tile-text {
  float: left;
  width: 100%;
}

.grid-tile .tile-info .tile-info-row .tile-text .tile-info-heading {
  color: rgba(0, 0, 0, 0.75);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.grid-tile .tile-info .tile-info-row .tile-text p {
  margin: 0;
  color: rgba(0, 0, 0, 0.54);
  line-height: 18px;
}

.grid-tile .tile-info .tile-info-row .tile-text.not-full {
  width: auto;
}

.grid-tile .tile-info .tile-info-row .tile-action {
  float: right;
  padding-top: 5px;
  cursor: pointer;
}

.grid-tile .tile-info .tile-info-row .tile-action a {
  color: #2196F3;
}

.grid-tile .tile-info .tile-info-row .tile-action a:hover {
  color: #1a619b;
}

.grid-tile .tile-actions {
  width: calc(100% + 30px);
  margin-left: -15px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: -5px;
  border-top: 2px solid #eceaea;
}

.grid-tile .tile-actions .grid-tile-action {
  font-size: 14px;
  color: #2196F3;
  padding: 0 !important;
}

.grid-tile .tile-actions .grid-tile-action:hover {
  color: #1a619b;
}

@media (max-width: 767px) {
  .grid-columns-xs-1 {
    grid-template-columns: 100%;
  }

  .grid-columns-xs-2 {
    grid-template-columns: 50% 50%;
  }

  .grid-columns-xs-3 {
    grid-template-columns: 33% 33% 33%;
  }

  .grid-columns-xs-3.grid-mid-half {
    grid-template-columns: 25% 50% 25%;
  }

  .grid-columns-xs-3.grid-mid-large {
    grid-template-columns: 12.5% 75% 12.5%;
    margin: 0 10px;
    width: calc(100% - 20px);
  }

  .grid-columns-xs-4 {
    grid-template-columns: 25% 25% 25% 25%;
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .grid-columns-xs-5 {
    grid-template-columns: 20% 20% 20% 20% 20%;
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .grid-columns-xs-5.grid-mid-half {
    grid-template-columns: 12.5% 12.5% 50% 12.5% 12.5%;
  }

  .grid-columns-xs-5.grid-mid-third {
    grid-template-columns: 16.5% 17% 33% 17% 16.5%;
  }

  .grid-columns-xs-5.grid-even-third {
    grid-template-columns: 12% 33% 12% 33% 12%;
  }

  .grid-columns-xs-6 {
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
  }

  .grid-columns-xs-7 {
    grid-template-columns: 14% 14% 14% 14% 14% 14% 14%;
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .grid-columns-xs-7.grid-mid-third {
    grid-template-columns: 11% 11% 11% 33% 11% 11% 11%;
  }

  .grid-columns-xs-7.grid-mid-quarter {
    grid-template-columns: 12% 12% 12.5% 25% 12.5% 12% 12%;
  }

  .grid-columns-xs-8 {
    grid-template-columns: 12% 12% 12% 12% 12% 12% 12% 12%;
  }
}

@media (min-width: 768px) {
  .grid-columns-sm-1 {
    grid-template-columns: 100%;
  }

  .grid-columns-sm-2 {
    grid-template-columns: 50% 50%;
  }

  .grid-columns-sm-3 {
    grid-template-columns: 33% 33% 33%;
  }

  .grid-columns-sm-3.grid-mid-half {
    grid-template-columns: 25% 50% 25%;
  }

  .grid-columns-sm-3.grid-mid-large {
    grid-template-columns: 12.5% 75% 12.5%;
    margin: 0 10px;
    width: calc(100% - 20px);
  }

  .grid-columns-sm-4 {
    grid-template-columns: 25% 25% 25% 25%;
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .grid-columns-sm-5 {
    grid-template-columns: 20% 20% 20% 20% 20%;
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .grid-columns-sm-5.grid-mid-half {
    grid-template-columns: 12.5% 12.5% 50% 12.5% 12.5%;
  }

  .grid-columns-sm-5.grid-mid-third {
    grid-template-columns: 16.5% 17% 33% 17% 16.5%;
  }

  .grid-columns-sm-5.grid-even-third {
    grid-template-columns: 12% 33% 12% 33% 12%;
  }

  .grid-columns-sm-6 {
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
  }

  .grid-columns-sm-7 {
    grid-template-columns: 14% 14% 14% 14% 14% 14% 14%;
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .grid-columns-sm-7.grid-mid-third {
    grid-template-columns: 11% 11% 11% 33% 11% 11% 11%;
  }

  .grid-columns-sm-7.grid-mid-quarter {
    grid-template-columns: 12% 12% 12.5% 25% 12.5% 12% 12%;
  }

  .grid-columns-sm-8 {
    grid-template-columns: 12% 12% 12% 12% 12% 12% 12% 12%;
  }
}

@media (min-width: 992px) {
  .grid-columns-md-1 {
    grid-template-columns: 100%;
  }

  .grid-columns-md-2 {
    grid-template-columns: 50% 50%;
  }

  .grid-columns-md-3 {
    grid-template-columns: 33% 33% 33%;
  }

  .grid-columns-md-3.grid-mid-half {
    grid-template-columns: 25% 50% 25%;
  }

  .grid-columns-md-3.grid-mid-large {
    grid-template-columns: 12.5% 75% 12.5%;
    margin: 0 10px;
    width: calc(100% - 20px);
  }

  .grid-columns-md-4 {
    grid-template-columns: 25% 25% 25% 25%;
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .grid-columns-md-5 {
    grid-template-columns: 20% 20% 20% 20% 20%;
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .grid-columns-md-5.grid-mid-half {
    grid-template-columns: 12.5% 12.5% 50% 12.5% 12.5%;
  }

  .grid-columns-md-5.grid-mid-third {
    grid-template-columns: 16.5% 17% 33% 17% 16.5%;
  }

  .grid-columns-md-5.grid-even-third {
    grid-template-columns: 12% 33% 12% 33% 12%;
  }

  .grid-columns-md-6 {
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
  }

  .grid-columns-md-7 {
    grid-template-columns: 14% 14% 14% 14% 14% 14% 14%;
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .grid-columns-md-7.grid-mid-third {
    grid-template-columns: 11% 11% 11% 33% 11% 11% 11%;
  }

  .grid-columns-md-7.grid-mid-quarter {
    grid-template-columns: 12% 12% 12.5% 25% 12.5% 12% 12%;
  }

  .grid-columns-md-8 {
    grid-template-columns: 12% 12% 12% 12% 12% 12% 12% 12%;
  }
}

@media (min-width: 1200px) {
  .grid-columns-lg-1 {
    grid-template-columns: 100%;
  }

  .grid-columns-lg-2 {
    grid-template-columns: 50% 50%;
  }

  .grid-columns-lg-3 {
    grid-template-columns: 33% 33% 33%;
  }

  .grid-columns-lg-3.grid-mid-half {
    grid-template-columns: 25% 50% 25%;
  }

  .grid-columns-lg-3.grid-mid-large {
    grid-template-columns: 12.5% 75% 12.5%;
    margin: 0 10px;
    width: calc(100% - 20px);
  }

  .grid-columns-lg-4 {
    grid-template-columns: 25% 25% 25% 25%;
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .grid-columns-lg-5 {
    grid-template-columns: 20% 20% 20% 20% 20%;
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .grid-columns-lg-5.grid-mid-half {
    grid-template-columns: 12.5% 12.5% 50% 12.5% 12.5%;
  }

  .grid-columns-lg-5.grid-mid-third {
    grid-template-columns: 16.5% 17% 33% 17% 16.5%;
  }

  .grid-columns-lg-5.grid-even-third {
    grid-template-columns: 12% 33% 12% 33% 12%;
  }

  .grid-columns-lg-6 {
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
  }

  .grid-columns-lg-7 {
    grid-template-columns: 14% 14% 14% 14% 14% 14% 14%;
    margin: 0 15px;
    width: calc(100% - 30px);
  }

  .grid-columns-lg-7.grid-mid-third {
    grid-template-columns: 11% 11% 11% 33% 11% 11% 11%;
  }

  .grid-columns-lg-7.grid-mid-quarter {
    grid-template-columns: 12% 12% 12.5% 25% 12.5% 12% 12%;
  }

  .grid-columns-lg-8 {
    grid-template-columns: 12% 12% 12% 12% 12% 12% 12% 12%;
  }
}

/*
 * Base structure
 */

/*
 * Global add-ons
 */

.dashboard__index span {
  display: block;
  font-size: 24px;
  margin-bottom: 10px;
}

.dashboard__index .card-row-new {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.75);
  margin: 10px 0px;
}

.dashboard__index hr {
  border-top: 4px solid;
  border-color: red;
  margin-bottom: 0px;
}

.dashboard__index .card.green {
  background-color: green;
  color: #fff !important;
}

.dashboard__index .card.green .card-row-new {
  color: inherit;
}

.dashboard__index .card.red {
  background-color: red;
  color: #fff !important;
}

.dashboard__index .card.red .card-row-new {
  color: inherit;
}

.dashboard__index .card.orange {
  background-color: orange;
  color: #fff !important;
}

.dashboard__index .card.orange .card-row-new {
  color: inherit;
}

.dashboard__index .card.blue {
  background-color: blue;
  color: #fff !important;
}

.dashboard__index .card.blue .card-row-new {
  color: inherit;
}

.dashboard__index i.background {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 70px;
  color: rgba(255, 255, 255, 0.7);
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/MaterialIcons-Regular.eot?e79bfd88537def476913f3ed52f4f4b3);
  /* For IE6-8 */
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(/fonts/MaterialIcons-Regular.woff2?570eb83859dc23dd0eec423a49e147fe) format("woff2"), url(/fonts/MaterialIcons-Regular.woff?012cf6a10129e2275d79d6adac7f3b02) format("woff"), url(/fonts/MaterialIcons-Regular.ttf?a37b0c01c0baf1888ca812cc0508f6e2) format("truetype");
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

.no-marginh1,
.no-marginh2,
.no-marginh3,
.no-marginh4,
.no-marginh5 {
  margin: 0;
}

h5 .btn.btn-icon {
  margin-top: -6px;
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.md-item-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.md-item-list li {
  font-family: "Roboto", sans-serif;
  vertical-align: middle;
  padding: 5px 0;
}

.md-item-list li:first-child {
  padding-top: 0;
}

.md-item-list li:last-child {
  padding-bottom: 0;
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: white;
  z-index: 99;
  overflow: hidden;
  text-transform: uppercase;
}

.nav-tabs > li > a,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  font-weight: 500;
  text-transform: uppercase;
}

.nav-tabs > li > a {
  color: #ff9a13;
}

.nav-tabs > li > a:hover {
  color: #d87f11;
}

a {
  color: #ff9a13;
}

a:hover {
  color: #d87f11;
}

.md-input-group {
  margin-bottom: 10px;
}

.md-input-group input {
  width: 100%;
}

.md-input-group .flatpickr-input {
  background-color: white !important;
}

table.table-condensed tr th,
table.table-condensed tr td {
  padding-top: 5px;
  padding-bottom: 5px;
}

.md-accent {
  color: #E91E63;
}

.md-accent:hover {
  color: #EC407A;
}

.btn.btn-icon {
  padding: 4px;
  border-radius: 500px;
  height: 34px;
  width: 34px;
}

.btn.btn-icon.btn-flat,
.btn.btn-icon.btn-accent-flat {
  padding: 5px;
}

td .btn.btn-flat.btn-icon,
td .btn.btn-icon.btn-accent-flat {
  border-radius: 50px;
}

button.md-accent {
  background-color: #E91E63;
  color: white;
}

button.md-accent:hover {
  color: white;
  background-color: #EC407A;
}

.clickable {
  cursor: pointer;
}

.md-fab {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  position: absolute;
  right: 25px;
  top: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: none;
  vertical-align: middle;
  padding-top: 7px;
  cursor: pointer;
}

.md-fab:focus {
  outline: none;
}

.fab-dd {
  position: inherit !important;
}

/* width */

::-webkit-scrollbar {
  width: 5px;
}

/* Track */

::-webkit-scrollbar-track {
  -webkit-box-shadow: grey;
          box-shadow: grey;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: #ff9a13;
}

.card-full {
  margin-left: -20px;
  margin-right: -20px;
}

.padding-bottom {
  padding-bottom: 20px;
}

.padding-right {
  padding-right: 20px;
}

.padding-left {
  padding-left: 20px;
}

.card .header {
  min-height: 24px;
}

.card .header .image {
  margin-top: -20px;
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}

.card .header .image img {
  width: 100%;
}

.card .header .actions {
  position: absolute;
  top: 20px;
  right: 20px;
}

.card .header .actions button.btn {
  margin-top: -4px;
  margin-right: -4px;
}

.card .header .actions button.btn-icon {
  margin-top: -5px;
  margin-right: -5px;
}

.card .header .actions .mdc-fab {
  margin-top: -10px;
  margin-right: -10px;
}

.card .header .actions button + button {
  margin-left: 10px;
}

.card .body {
  opacity: 1;
  -webkit-transition: all .5s ease-in;
  transition: all .5s ease-in;
}

.card .body .card-partial {
  position: relative;
  margin-left: -20px;
  margin-right: -20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.card .body .card-partial .row.form-row:last-child {
  margin-bottom: -20px;
}

.card .body .card-partial:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.card .footer {
  opacity: 1;
  -webkit-transition: all .5s ease-in;
  transition: all .5s ease-in;
}

.card.collapsed .body,
.card.collapsed .footer {
  display: none;
  opacity: 0;
}

.form-item {
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}

.form-item label {
  margin-bottom: 0;
}

.form-item p {
  height: 34px;
  line-height: 34px;
  margin-bottom: 0;
  cursor: default;
}

.form-item input {
  width: 100%;
  display: block;
}

.form-item textarea {
  width: 100%;
  display: block;
}

.form-item select {
  width: 100%;
}

.form-item input[type="checkbox"] {
  width: auto;
  margin: 0;
  display: inline-block;
}

.form-item input[type="checkbox"].flipswitch {
  display: block;
}

hr {
  margin-top: 0;
  margin-bottom: 20px;
}

.increment-input {
  width: 100%;
}

.increment-input button.btn.btn-icon {
  position: relative;
  float: left;
  z-index: 100;
  overflow: visible;
}

.increment-input button.btn.btn-icon i {
  margin-right: 0;
}

.increment-input input {
  position: relative;
  z-index: 99;
  float: left;
  width: calc(100% - 60px);
  height: 34px;
  border: none;
  margin-left: -4px;
  margin-right: -4px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.increment-input input::-webkit-inner-spin-button,
.increment-input input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.increment-input input:disabled {
  border-bottom: none;
  background-color: transparent;
}

.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.text-fade {
  color: rgba(0, 0, 0, 0.6);
}

table.input-table td input {
  width: 100%;
}

.mdc-chip--disabled {
  cursor: pointer;
  pointer-events: none;
}

.bootstrap-datetimepicker-widget {
  overflow: visible;
}

.mdc-btn-success {
  background-color: #28a745;
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-btn-success:not(:disabled) {
  background-color: #28a745;
}

.mdc-btn-success:not(:disabled) {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-btn-success::before,
.mdc-btn-success::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-success::before,
  .mdc-btn-success::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-btn-success:hover::before {
  opacity: 0.08;
}

.mdc-btn-success:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-success.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-btn-success:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-success:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-btn-success.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-btn-success::before,
.mdc-btn-success::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-success::before,
  .mdc-btn-success::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-btn-success:hover::before {
  opacity: 0.08;
}

.mdc-btn-success:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-success.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-btn-success:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-success:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-btn-success.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-chip-success {
  background-color: #28a745;
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-success::before,
.mdc-chip-success::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-success::before,
  .mdc-chip-success::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-chip-success:hover::before {
  opacity: 0.08;
}

.mdc-chip-success:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-success.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-chip-success:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-success:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-chip-success.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-chip-success:hover {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-success.mdc-chip--selected::before {
  opacity: 0.16;
}

.mdc-chip-success.mdc-chip--selected::before,
.mdc-chip-success.mdc-chip--selected::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-success.mdc-chip--selected::before,
  .mdc-chip-success.mdc-chip--selected::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-chip-success.mdc-chip--selected:hover::before {
  opacity: 0.24;
}

.mdc-chip-success.mdc-chip--selected:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-success.mdc-chip--selected.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.4;
}

.mdc-chip-success.mdc-chip--selected:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-success.mdc-chip--selected:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.48;
}

.mdc-chip-success.mdc-chip--selected.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.48;
}

.mdc-chip-success.mdc-chip--selected {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-success.mdc-chip--selected .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(255, 255, 255, 0.54);
}

.mdc-chip-success.mdc-chip--selected:hover {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-success .mdc-chip__checkmark-path {
  stroke: white;
  /* @alternate */
  stroke: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-success .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(255, 255, 255, 0.54);
}

.mdc-chip-success .mdc-chip__icon.mdc-chip__icon--trailing {
  color: rgba(255, 255, 255, 0.54);
}

.mdc-chip-success .mdc-chip__icon.mdc-chip__icon--trailing:hover {
  color: rgba(255, 255, 255, 0.62);
}

.mdc-chip-success .mdc-chip__icon.mdc-chip__icon--trailing:focus {
  color: rgba(255, 255, 255, 0.87);
}

.mdc-alert-success {
  border: 2px #28a745 solid;
  font-weight: bold;
}

.mdc-btn-danger {
  background-color: #D32F2F;
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-btn-danger:not(:disabled) {
  background-color: #D32F2F;
}

.mdc-btn-danger:not(:disabled) {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-btn-danger::before,
.mdc-btn-danger::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-danger::before,
  .mdc-btn-danger::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-btn-danger:hover::before {
  opacity: 0.08;
}

.mdc-btn-danger:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-danger.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-btn-danger:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-danger:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-btn-danger.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-btn-danger::before,
.mdc-btn-danger::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-danger::before,
  .mdc-btn-danger::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-btn-danger:hover::before {
  opacity: 0.08;
}

.mdc-btn-danger:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-danger.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-btn-danger:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-danger:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-btn-danger.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-chip-danger {
  background-color: #D32F2F;
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-danger::before,
.mdc-chip-danger::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-danger::before,
  .mdc-chip-danger::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-chip-danger:hover::before {
  opacity: 0.08;
}

.mdc-chip-danger:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-danger.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-chip-danger:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-danger:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-chip-danger.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-chip-danger:hover {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-danger.mdc-chip--selected::before {
  opacity: 0.16;
}

.mdc-chip-danger.mdc-chip--selected::before,
.mdc-chip-danger.mdc-chip--selected::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-danger.mdc-chip--selected::before,
  .mdc-chip-danger.mdc-chip--selected::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-chip-danger.mdc-chip--selected:hover::before {
  opacity: 0.24;
}

.mdc-chip-danger.mdc-chip--selected:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-danger.mdc-chip--selected.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.4;
}

.mdc-chip-danger.mdc-chip--selected:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-danger.mdc-chip--selected:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.48;
}

.mdc-chip-danger.mdc-chip--selected.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.48;
}

.mdc-chip-danger.mdc-chip--selected {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-danger.mdc-chip--selected .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(255, 255, 255, 0.54);
}

.mdc-chip-danger.mdc-chip--selected:hover {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-danger .mdc-chip__checkmark-path {
  stroke: white;
  /* @alternate */
  stroke: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-danger .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(255, 255, 255, 0.54);
}

.mdc-chip-danger .mdc-chip__icon.mdc-chip__icon--trailing {
  color: rgba(255, 255, 255, 0.54);
}

.mdc-chip-danger .mdc-chip__icon.mdc-chip__icon--trailing:hover {
  color: rgba(255, 255, 255, 0.62);
}

.mdc-chip-danger .mdc-chip__icon.mdc-chip__icon--trailing:focus {
  color: rgba(255, 255, 255, 0.87);
}

.mdc-alert-danger {
  border: 2px #D32F2F solid;
  font-weight: bold;
}

.mdc-btn-primary {
  background-color: #2296f3;
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-btn-primary:not(:disabled) {
  background-color: #2296f3;
}

.mdc-btn-primary:not(:disabled) {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-btn-primary::before,
.mdc-btn-primary::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-primary::before,
  .mdc-btn-primary::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-btn-primary:hover::before {
  opacity: 0.08;
}

.mdc-btn-primary:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-primary.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-btn-primary:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-primary:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-btn-primary.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-btn-primary::before,
.mdc-btn-primary::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-primary::before,
  .mdc-btn-primary::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-btn-primary:hover::before {
  opacity: 0.08;
}

.mdc-btn-primary:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-primary.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-btn-primary:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-primary:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-btn-primary.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-chip-primary {
  background-color: #2296f3;
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-primary::before,
.mdc-chip-primary::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-primary::before,
  .mdc-chip-primary::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-chip-primary:hover::before {
  opacity: 0.08;
}

.mdc-chip-primary:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-primary.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-chip-primary:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-primary:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32;
}

.mdc-chip-primary.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32;
}

.mdc-chip-primary:hover {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-primary.mdc-chip--selected::before {
  opacity: 0.16;
}

.mdc-chip-primary.mdc-chip--selected::before,
.mdc-chip-primary.mdc-chip--selected::after {
  background-color: white;
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-primary.mdc-chip--selected::before,
  .mdc-chip-primary.mdc-chip--selected::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-dark, white);
  }
}

.mdc-chip-primary.mdc-chip--selected:hover::before {
  opacity: 0.24;
}

.mdc-chip-primary.mdc-chip--selected:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-primary.mdc-chip--selected.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.4;
}

.mdc-chip-primary.mdc-chip--selected:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-primary.mdc-chip--selected:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.48;
}

.mdc-chip-primary.mdc-chip--selected.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.48;
}

.mdc-chip-primary.mdc-chip--selected {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-primary.mdc-chip--selected .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(255, 255, 255, 0.54);
}

.mdc-chip-primary.mdc-chip--selected:hover {
  color: white;
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-primary .mdc-chip__checkmark-path {
  stroke: white;
  /* @alternate */
  stroke: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-chip-primary .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(255, 255, 255, 0.54);
}

.mdc-chip-primary .mdc-chip__icon.mdc-chip__icon--trailing {
  color: rgba(255, 255, 255, 0.54);
}

.mdc-chip-primary .mdc-chip__icon.mdc-chip__icon--trailing:hover {
  color: rgba(255, 255, 255, 0.62);
}

.mdc-chip-primary .mdc-chip__icon.mdc-chip__icon--trailing:focus {
  color: rgba(255, 255, 255, 0.87);
}

.mdc-alert-primary {
  border: 2px #2296f3 solid;
  font-weight: bold;
}

.mdc-btn-secondary {
  background-color: #ff9a13;
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  color: white;
}

.mdc-btn-secondary:not(:disabled) {
  background-color: #ff9a13;
}

.mdc-btn-secondary:not(:disabled) {
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-btn-secondary::before,
.mdc-btn-secondary::after {
  background-color: rgba(0, 0, 0, 0.87);
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-secondary::before,
  .mdc-btn-secondary::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  }
}

.mdc-btn-secondary:hover::before {
  opacity: 0.04;
}

.mdc-btn-secondary:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-secondary.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-btn-secondary:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-secondary:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-btn-secondary.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-btn-secondary:not(:disabled) {
  color: white;
}

.mdc-btn-secondary::before,
.mdc-btn-secondary::after {
  background-color: rgba(0, 0, 0, 0.87);
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-secondary::before,
  .mdc-btn-secondary::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  }
}

.mdc-btn-secondary:hover::before {
  opacity: 0.04;
}

.mdc-btn-secondary:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-secondary.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-btn-secondary:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-secondary:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-btn-secondary.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-chip-secondary {
  background-color: #ff9a13;
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-secondary::before,
.mdc-chip-secondary::after {
  background-color: rgba(0, 0, 0, 0.87);
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-secondary::before,
  .mdc-chip-secondary::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  }
}

.mdc-chip-secondary:hover::before {
  opacity: 0.04;
}

.mdc-chip-secondary:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-secondary.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-chip-secondary:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-secondary:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-chip-secondary.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-chip-secondary:hover {
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-secondary.mdc-chip--selected::before {
  opacity: 0.08;
}

.mdc-chip-secondary.mdc-chip--selected::before,
.mdc-chip-secondary.mdc-chip--selected::after {
  background-color: rgba(0, 0, 0, 0.87);
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-secondary.mdc-chip--selected::before,
  .mdc-chip-secondary.mdc-chip--selected::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  }
}

.mdc-chip-secondary.mdc-chip--selected:hover::before {
  opacity: 0.12;
}

.mdc-chip-secondary.mdc-chip--selected:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-secondary.mdc-chip--selected.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.2;
}

.mdc-chip-secondary.mdc-chip--selected:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-secondary.mdc-chip--selected:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-chip-secondary.mdc-chip--selected.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.24;
}

.mdc-chip-secondary.mdc-chip--selected {
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-secondary.mdc-chip--selected .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(0, 0, 0, 0.54);
}

.mdc-chip-secondary.mdc-chip--selected:hover {
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-secondary .mdc-chip__checkmark-path {
  stroke: rgba(0, 0, 0, 0.87);
  /* @alternate */
  stroke: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-secondary .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(0, 0, 0, 0.54);
}

.mdc-chip-secondary .mdc-chip__icon.mdc-chip__icon--trailing {
  color: rgba(0, 0, 0, 0.54);
}

.mdc-chip-secondary .mdc-chip__icon.mdc-chip__icon--trailing:hover {
  color: rgba(0, 0, 0, 0.62);
}

.mdc-chip-secondary .mdc-chip__icon.mdc-chip__icon--trailing:focus {
  color: rgba(0, 0, 0, 0.87);
}

.mdc-alert-secondary {
  border: 2px #ff9a13 solid;
  font-weight: bold;
}

.mdc-btn-default {
  background-color: #E0E0E0;
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-btn-default:not(:disabled) {
  background-color: #E0E0E0;
}

.mdc-btn-default:not(:disabled) {
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-btn-default::before,
.mdc-btn-default::after {
  background-color: rgba(0, 0, 0, 0.87);
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-default::before,
  .mdc-btn-default::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  }
}

.mdc-btn-default:hover::before {
  opacity: 0.04;
}

.mdc-btn-default:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-default.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-btn-default:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-default:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-btn-default.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-btn-default::before,
.mdc-btn-default::after {
  background-color: rgba(0, 0, 0, 0.87);
}

@supports not (-ms-ime-align: auto) {
  .mdc-btn-default::before,
  .mdc-btn-default::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  }
}

.mdc-btn-default:hover::before {
  opacity: 0.04;
}

.mdc-btn-default:not(.mdc-ripple-upgraded):focus::before,
.mdc-btn-default.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-btn-default:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-btn-default:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-btn-default.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-chip-default {
  background-color: #E0E0E0;
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-default::before,
.mdc-chip-default::after {
  background-color: rgba(0, 0, 0, 0.87);
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-default::before,
  .mdc-chip-default::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  }
}

.mdc-chip-default:hover::before {
  opacity: 0.04;
}

.mdc-chip-default:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-default.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.mdc-chip-default:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-default:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.16;
}

.mdc-chip-default.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.16;
}

.mdc-chip-default:hover {
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-default.mdc-chip--selected::before {
  opacity: 0.08;
}

.mdc-chip-default.mdc-chip--selected::before,
.mdc-chip-default.mdc-chip--selected::after {
  background-color: rgba(0, 0, 0, 0.87);
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-default.mdc-chip--selected::before,
  .mdc-chip-default.mdc-chip--selected::after {
    /* @alternate */
    background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  }
}

.mdc-chip-default.mdc-chip--selected:hover::before {
  opacity: 0.12;
}

.mdc-chip-default.mdc-chip--selected:not(.mdc-ripple-upgraded):focus::before,
.mdc-chip-default.mdc-chip--selected.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.2;
}

.mdc-chip-default.mdc-chip--selected:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}

.mdc-chip-default.mdc-chip--selected:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.mdc-chip-default.mdc-chip--selected.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.24;
}

.mdc-chip-default.mdc-chip--selected {
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-default.mdc-chip--selected .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(0, 0, 0, 0.54);
}

.mdc-chip-default.mdc-chip--selected:hover {
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-default .mdc-chip__checkmark-path {
  stroke: rgba(0, 0, 0, 0.87);
  /* @alternate */
  stroke: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
}

.mdc-chip-default .mdc-chip__icon.mdc-chip__icon--leading {
  color: rgba(0, 0, 0, 0.54);
}

.mdc-chip-default .mdc-chip__icon.mdc-chip__icon--trailing {
  color: rgba(0, 0, 0, 0.54);
}

.mdc-chip-default .mdc-chip__icon.mdc-chip__icon--trailing:hover {
  color: rgba(0, 0, 0, 0.62);
}

.mdc-chip-default .mdc-chip__icon.mdc-chip__icon--trailing:focus {
  color: rgba(0, 0, 0, 0.87);
}

.mdc-alert-default {
  border: 2px #E0E0E0 solid;
  font-weight: bold;
}

.mdc-list {
  margin: 0;
}

.mdc-list .mdc-list-item {
  padding: 10px 16px;
  font-size: 16px;
}

.mdc-list .mdc-list-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.itinerary-table {
  width: 100%;
}

.itinerary-table .itinerary-row {
  overflow: hidden;
}

.itinerary-table .itinerary-row .itinerary-time {
  height: 50px;
  position: relative;
  padding-top: 16px;
}

.itinerary-table .itinerary-row .itinerary-line {
  height: 50px;
  position: relative;
}

.itinerary-table .itinerary-row .itinerary-line .dot {
  text-align: center;
  color: white;
  cursor: default;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.itinerary-table .itinerary-row .itinerary-line .dot span {
  display: block;
  margin-top: 1px;
}

.itinerary-table .itinerary-row .itinerary-line .dot:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.itinerary-table .itinerary-row .itinerary-info {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 50px;
  position: relative;
}

.itinerary-table .itinerary-row .itinerary-info:hover {
  cursor: pointer;
}

.itinerary-table .itinerary-row .itinerary-info:hover .action,
.itinerary-table .itinerary-row .itinerary-info:hover .day {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.itinerary-line.start .line {
  position: absolute;
  width: 2px;
  height: 50%;
  bottom: 0;
  left: calc(50% - 1px);
  background-color: #2196F3;
}

.itinerary-line.start .dot {
  position: absolute;
  width: 56px;
  height: 20px;
  top: 15px;
  left: calc(50% - 28px);
  background-color: #2196F3;
  border-radius: 50px;
}

.itinerary-line.end .line {
  position: absolute;
  width: 2px;
  height: 50%;
  top: 0;
  left: calc(50% - 1px);
  background-color: #2196F3;
}

.itinerary-line.end .dot {
  position: absolute;
  width: 56px;
  height: 20px;
  top: 15px;
  left: calc(50% - 28px);
  background-color: #2196F3;
  border-radius: 50px;
}

.itinerary-line.active .line {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: calc(50% - 1px);
  background-color: #2196F3;
}

.itinerary-line.active-action .line {
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  left: calc(50% - 1px);
  background-color: #2196F3;
}

.itinerary-line.active-action .dot {
  position: absolute;
  width: 56px;
  height: 20px;
  top: 15px;
  left: calc(50% - 28px);
  background-color: #2196F3;
  border-radius: 50px;
}

.itinerary-line.start-end .dot {
  position: absolute;
  width: 56px;
  height: 20px;
  top: 15px;
  left: calc(50% - 28px);
  background-color: #2196F3;
  border-radius: 50px;
}

.itinerary-time {
  text-align: right;
}

.itinerary-info {
  padding: 7px 5px;
}

.itinerary-info .chevron {
  margin-top: 6px;
  color: rgba(0, 0, 0, 0.16);
  float: left;
}

.itinerary-info .day {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  text-align: left;
  color: #2196F3;
  padding-top: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

.itinerary-info .action {
  height: 100%;
  border-radius: 3px;
  padding-left: 8px;
  padding-right: 8px;
  text-align: left;
  padding-top: 7px;
  border: 2px rgba(0, 0, 0, 0.16) solid;
}

.itinerary-info div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body {
  font-family: "Roboto", sans-serif !important;
  background-color: #EDECEC;
}

.page__tab {
  position: relative;
}

.page__tab .float-button {
  position: absolute;
  top: -10px;
  right: -5px;
}

.page__tab .paper-wrap .float-button,
.page__tab .card.paper .float-button {
  top: 10px;
  right: 15px;
}

.paper-wrap,
.card.paper,
.paper {
  background: #fff;
  padding: 20px;
}

.paper-wrap .header + .body,
.card.paper .header + .body,
.paper .header + .body {
  padding-top: 20px;
}

.paper-wrap .header + .footer,
.card.paper .header + .footer,
.paper-wrap .body + .footer,
.card.paper .body + .footer,
.paper-wrap .body + .body,
.card.paper .body + .body,
.paper .header + .footer,
.paper .body + .footer,
.paper .body + .body {
  padding-top: 20px;
}

.paper-wrap .header + .footer,
.card.paper .header + .footer,
.paper-wrap .body + .footer,
.card.paper .body + .footer,
.paper .header + .footer,
.paper .body + .footer {
  height: 52px;
}

.paper-wrap h3,
.card.paper h3,
.paper h3 {
  margin-top: 0px;
  color: #1976d2;
  margin-bottom: 25px;
}

.paper-wrap .parent-hint,
.card.paper .parent-hint,
.paper .parent-hint {
  padding-top: 5px;
  color: rgba(0, 0, 0, 0.54);
  display: block;
  font-size: 14px;
}

.paper-wrap .btn-card-toggle,
.card.paper .btn-card-toggle,
.paper .btn-card-toggle {
  padding-top: 10px;
  color: rgba(0, 0, 0, 0.26);
}

.paper-wrap .btn-card-toggle:hover,
.card.paper .btn-card-toggle:hover,
.paper .btn-card-toggle:hover {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.54);
}

.paper-wrap .card-head h3,
.card.paper .card-head h3,
.paper .card-head h3 {
  float: left;
}

.paper-wrap .card-head h1,
.card.paper .card-head h1,
.paper-wrap .card-head h2,
.card.paper .card-head h2,
.paper-wrap .card-head h3,
.card.paper .card-head h3,
.paper-wrap .card-head h4,
.card.paper .card-head h4,
.paper-wrap .card-head h5,
.card.paper .card-head h5,
.paper .card-head h1,
.paper .card-head h2,
.paper .card-head h3,
.paper .card-head h4,
.paper .card-head h5 {
  padding: 0;
  margin: 0;
}

.paper-wrap .card-head span,
.card.paper .card-head span,
.paper .card-head span {
  float: right;
}

.paper-wrap .header h1,
.card.paper .header h1,
.paper-wrap .header h2,
.card.paper .header h2,
.paper-wrap .header h3,
.card.paper .header h3,
.paper-wrap .header h4,
.card.paper .header h4,
.paper-wrap .header h5,
.card.paper .header h5,
.paper .header h1,
.paper .header h2,
.paper .header h3,
.paper .header h4,
.paper .header h5 {
  padding: 0;
  margin: 0;
}

.paper-wrap .md-line,
.card.paper .md-line,
.paper-wrap .md-line-full,
.card.paper .md-line-full,
.paper .md-line,
.paper .md-line-full {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
}

.paper-wrap .md-card-partial,
.card.paper .md-card-partial,
.paper-wrap .sub-card,
.card.paper .sub-card,
.paper .md-card-partial,
.paper .sub-card {
  background-color: #E3F2FD;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
}

.paper-wrap .md-card-partial .header,
.card.paper .md-card-partial .header,
.paper-wrap .sub-card .header,
.card.paper .sub-card .header,
.paper .md-card-partial .header,
.paper .sub-card .header {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.paper-wrap .md-card-partial .header + .body,
.card.paper .md-card-partial .header + .body,
.paper-wrap .sub-card .header + .body,
.card.paper .sub-card .header + .body,
.paper .md-card-partial .header + .body,
.paper .sub-card .header + .body {
  padding-top: 10px;
}

.paper-wrap .md-card-partial .header + .footer,
.card.paper .md-card-partial .header + .footer,
.paper-wrap .md-card-partial .body + .footer,
.card.paper .md-card-partial .body + .footer,
.paper-wrap .sub-card .header + .footer,
.card.paper .sub-card .header + .footer,
.paper-wrap .sub-card .body + .footer,
.card.paper .sub-card .body + .footer,
.paper .md-card-partial .header + .footer,
.paper .md-card-partial .body + .footer,
.paper .sub-card .header + .footer,
.paper .sub-card .body + .footer {
  padding-top: 10px;
}

.paper-wrap .md-card-partial .md-line,
.card.paper .md-card-partial .md-line,
.paper-wrap .sub-card .md-line,
.card.paper .sub-card .md-line,
.paper .md-card-partial .md-line,
.paper .sub-card .md-line {
  margin-top: 10px;
  margin-bottom: 10px;
  border-color: white;
  display: block;
}

.paper-wrap.paper-hover,
.paper-hover.card.paper,
.paper.paper-hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.paper-wrap-container .paper-wrap,
.paper-wrap-container .card.paper {
  margin-bottom: 25px;
}

.paper-wrap-container .paper-wrap .float-button,
.paper-wrap-container .card.paper .float-button {
  top: 15px;
  right: 15px;
}

.card.paper {
  margin-bottom: 25px;
  position: relative;
}

.card.paper .float-button {
  top: 10px;
  right: 15px;
}

.card.paper .card-head h3 {
  margin-bottom: 25px;
}

.card.paper .md-line {
  margin-top: 20px;
  margin-bottom: 20px;
}

.card.paper .md-line-full {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: -20px;
  margin-right: -20px;
}

.navbar-text {
  margin-bottom: 0 !important;
  margin-top: 6px !important;
}

.navbar-text label {
  color: #ec407a !important;
}

a.float-button,
button.float-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
  cursor: pointer;
  display: inline-block;
  height: 55.5px;
  letter-spacing: 0.5px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  width: 55.5px;
  will-change: opacity, transform;
  z-index: 1;
  -webkit-perspective-origin: 27.75px 27.75px;
          perspective-origin: 27.75px 27.75px;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
  -webkit-transform-origin: 27.75px 27.75px;
          transform-origin: 27.75px 27.75px;
  background: #ec407a none repeat scroll 0% 0%/auto padding-box border-box;
  border: 0px none white;
  border-radius: 50% 50% 50% 50%;
  font: normal normal normal normal 15px/56px Roboto, sans-serif;
  outline: white none 0px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease-out 0s;
  transition: -webkit-box-shadow 0.3s ease-out 0s;
  transition: box-shadow 0.3s ease-out 0s;
  transition: box-shadow 0.3s ease-out 0s, -webkit-box-shadow 0.3s ease-out 0s;
}

.round {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  background: #eeeeee;
}

.round img {
  height: inherit;
}

.table-list th {
  border-bottom: 1px !important;
}

.table-list td {
  vertical-align: middle !important;
}

.table-list td.img {
  width: 100px;
  border: none !important;
}

.table-list td.action {
  text-align: right;
}

.table-list td.action a {
  font-weight: 500;
  margin-left: 15px;
  color: #9e9e9e;
}

.table-list td.action a:hover {
  color: #1976d2;
  text-decoration: none;
}

.table-list td ul {
  padding-left: 15px;
}

.table-list td ul.cruisedate-list {
  list-style: none;
  padding-left: 0px;
}

.table-list td ul.cruisedate-list span.label-cruisedate {
  font-weight: bold;
  display: inline-block;
  width: 50px;
  padding-right: 15px;
  text-align: right;
}

.table-list td span.td-label {
  display: inline-block;
  text-align: right;
  margin-right: 10px;
  font-size: inherit !important;
}

.table-list td span.td-label.small {
  width: 35px;
}

.table-list td span.td-label.large {
  width: 75px;
}

.table-key-value tbody tr:first-child th,
.table-key-value tbody tr:first-child td {
  border: none;
}

.table-key-value th,
.table-key-value td {
  border: none !important;
  padding: 15px !important;
}

.dataTables_info {
  color: rgba(0, 0, 0, 0.26);
}

.dataTables_filter {
  display: none;
}

table .bold-border {
  border-left: 2px solid !important;
  border-right: 2px solid !important;
  border-color: #ddd !important;
}

table .bold-border-left {
  border-left: 2px solid !important;
  border-color: #ddd !important;
}

table .bold-border-right {
  border-right: 2px solid !important;
  border-color: #ddd !important;
}

table thead .bold-border,
table thead .bold-border-left,
table thead .bold-border-right {
  border-bottom: 2px solid !important;
  border-color: #ddd !important;
}

table .warning {
  border-top: 2px solid !important;
  border-bottom: 2px solid !important;
  border-color: #ddd !important;
}

.filterbar {
  background: #fafafa;
  margin-bottom: 5px;
}

.filterbar .input-group-addon {
  border: none;
  background: #fafafa;
}

.filterbar .input-group {
  border-bottom: 2px solid transparent;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.filterbar .input-group input {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #fafafa;
}

.filterbar .input-group input:focus {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #fafafa;
}

.reservation-cabins .select2-container,
.reservation-passenger .select2-container {
  width: 100% !important;
}

form .select2-container {
  width: 100% !important;
}

form .select2-container--disabled .select2-selection.select2-selection--single {
  border: none;
  background: none;
}

form .select2-container--disabled .select2-selection.select2-selection--single b {
  display: none;
}

form .select2-container--disabled .select2-selection.select2-selection--single .select2-selection__rendered {
  padding-left: 0px;
}

form .img-input-preview {
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}

.table-partner-allotment {
  display: none;
}

.table-partner-allotment th a {
  color: rgba(0, 0, 0, 0.54);
}

.table-partner-allotment th a:hover {
  color: #2196f3;
}

.table-partner-allotment th i {
  padding-left: 10px;
}

.table-partner-allotment tr:hover {
  background: none !important;
}

.table-partner-allotment tr.allotment-cabins-row:hover {
  background: none !important;
  border-top: none !important;
}

.table-partner-allotment tr.allotment-cabins-row td {
  border-top: none !important;
  padding-top: 0px !important;
}

.table-partner-allotment tr[class*="allotment-cabins-row-"]:hover {
  background: none !important;
  border-top: none !important;
}

.table-partner-allotment tr[class*="allotment-cabins-row-"] td {
  border-top: none !important;
  padding-top: 0px !important;
}

.table-partner-allotment .cb-allotment-mass-check {
  margin: 0px;
}

.table-partner-allotment .cb-allotment-mass-check label {
  min-height: 15px;
}

.modal h3 {
  margin-top: 0px;
  color: #1976d2;
  margin-bottom: 25px;
}

.modal .parent-hint {
  padding-top: 5px;
  color: rgba(0, 0, 0, 0.54);
  display: block;
  font-size: 14px;
}

table.full-width-table tr th:first-child,
table.full-width-table tr td:first-child {
  padding-left: 0 !important;
}

table.full-width-table tr th:last-child,
table.full-width-table tr td:last-child {
  padding-right: 0 !important;
}

.full-card-width {
  margin-left: -20px;
  margin-right: -20px;
}

