/**
 * The default transition, used when the element is visible
 * since the beginning of the animation
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The enter transition, used when the element is not visible on the screen
 * since the beginning of the animation and become visible
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The leave transition, used when the element is visible on the screen
 * since the beginning of the animation and is removed
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The stand transition, used when the element is going to accelerate,
 * like movements from bottom to top
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The out transition, used when the element is going to deaccelerate,
 * like movements from top to bottom
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * Structure - The main styles for html and body tags
 */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  box-sizing: border-box;
}

body {
  min-height: 100%;
  margin: 0;
  position: relative;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: var(--md-background);
  color: var(--md-on-background);
}

/**
 * Overrides - Apply fluid media styles
 */
audio,
img,
object,
embed,
canvas,
video,
iframe {
  max-width: 100%;
  font-style: italic;
  vertical-align: middle;
}
audio:not(.md-image),
img:not(.md-image),
object:not(.md-image),
embed:not(.md-image),
canvas:not(.md-image),
video:not(.md-image),
iframe:not(.md-image) {
  height: auto;
}

/**
 * Suppress the focus outline on links that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 */
[tabindex="-1"]:focus {
  outline: none !important;
}

:not(input, textarea)::selection {
  background-color: var(--md-secondary);
  color: var(--md-on-secondary);
}

/**
 * Links & Buttons
 */
a:not(.md-button) {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-property: color, background-color, opacity;
  text-decoration: none;
  color: var(--md-primary);
}
a:not(.md-button):hover {
  text-decoration: underline;
  opacity: 0.8;
}
a:not(.md-button).md-accent {
  color: var(--md-secondary);
}
a:not(.md-button):focus {
  text-decoration: none;
}

a.md-button {
  text-decoration: none;
}

button:focus {
  outline: none;
}

/**
 * Text and Titles - Implement all guidelines for text content
 */
.md-caption {
  font-size: 12px;
  letter-spacing: 0.4px;
  line-height: 16px;
}

.md-body-1,
body {
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 24px;
}

.md-body-2 {
  font-size: 14px;
  letter-spacing: 0.25px;
  line-height: 20px;
}

.md-subheading {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 24px;
}

.md-subtitle-1 {
  font-size: 16px;
  letter-spacing: 0.15px;
  line-height: 24px;
}

.md-headline-6 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15px;
  line-height: 24px;
}

.md-headline-5 {
  font-size: 24px;
  letter-spacing: 0.18px;
  line-height: 24px;
}

.md-headline-4 {
  font-size: 34px;
  line-height: 36px;
}

.md-headline-3 {
  font-size: 48px;
  line-height: 56px;
}

.md-headline-2 {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 72px;
}

.md-headline-1 {
  font-size: 96px;
  font-weight: 300;
  letter-spacing: -1.5px;
  line-height: 112px;
}

/**
 * The elevation transition duration
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The elevation transition duration
 * ---
 * @access private
 * @type transition
 * @group transition
 */
.md-elevation-0 {
  background-color: var(--md-elevation-0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.14), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

.md-elevation-1 {
  background-color: var(--md-elevation-1);
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
}

.md-elevation-2 {
  background-color: var(--md-elevation-2);
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.md-elevation-3 {
  background-color: var(--md-elevation-3);
  box-shadow: 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

.md-elevation-4 {
  background-color: var(--md-elevation-4);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}

.md-elevation-6 {
  background-color: var(--md-elevation-6);
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}

.md-elevation-8 {
  background-color: var(--md-elevation-8);
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.md-elevation-12 {
  background-color: var(--md-elevation-12);
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.md-elevation-16 {
  background-color: var(--md-elevation-16);
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.md-elevation-24 {
  background-color: var(--md-elevation-24);
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
}

/**
 * The layout system breakpoints
 * ---
 * @access private
 * @type layout
 * @group layout
 */
/**
 * The available gutter sizes
 * ---
 * @access private
 * @type layout
 * @group layout
 */
/**
 * The layout system breakpoints
 * ---
 * @access private
 * @type layout
 * @group layout
 */
/**
 * The available gutter sizes
 * ---
 * @access private
 * @type layout
 * @group layout
 */
/**
 * Breakpoint
 */
/**
 * Base
 */
/**
 * Layout Item
 */
/**
 * Hide Element
 */
.md-layout {
  display: flex;
  flex-wrap: wrap;
  /**
   * Alignments
   */
}
.md-layout .md-layout {
  flex: 1;
}
.md-layout .md-layout-nowrap {
  flex-wrap: nowrap;
}
.md-layout.md-centered {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.md-layout.md-gutter {
  margin-right: -20px;
  margin-left: -20px;
}
.md-layout.md-gutter > .md-layout-item {
  padding-right: 20px;
  padding-left: 20px;
}
@media (max-width: 1903px) {
  .md-layout.md-gutter {
    margin-right: -20px;
    margin-left: -20px;
  }
  .md-layout.md-gutter > .md-layout-item {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1280px) {
  .md-layout.md-gutter {
    margin-right: -12px;
    margin-left: -12px;
  }
  .md-layout.md-gutter > .md-layout-item {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media (max-width: 960px) {
  .md-layout.md-gutter {
    margin-right: -8px;
    margin-left: -8px;
  }
  .md-layout.md-gutter > .md-layout-item {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media (max-width: 600px) {
  .md-layout.md-gutter {
    margin-right: -4px;
    margin-left: -4px;
  }
  .md-layout.md-gutter > .md-layout-item {
    padding-right: 4px;
    padding-left: 4px;
  }
}
.md-layout.md-alignment-top-left {
  justify-content: flex-start;
  align-items: flex-start;
}
.md-layout.md-alignment-top-center {
  justify-content: center;
  align-items: flex-start;
}
.md-layout.md-alignment-top-right {
  justify-content: flex-end;
  align-items: flex-start;
}
.md-layout.md-alignment-top-space-around {
  justify-content: space-around;
  align-items: flex-start;
}
.md-layout.md-alignment-top-space-between {
  justify-content: space-between;
  align-items: flex-start;
}
.md-layout.md-alignment-center-left {
  justify-content: flex-start;
  align-items: center;
}
.md-layout.md-alignment-center, .md-layout.md-alignment-center-center {
  justify-content: center;
  align-items: center;
}
.md-layout.md-alignment-center-right {
  justify-content: flex-end;
  align-items: center;
}
.md-layout.md-alignment-center-space-around {
  justify-content: space-around;
  align-items: center;
}
.md-layout.md-alignment-center-space-between {
  justify-content: space-between;
  align-items: center;
}
.md-layout.md-alignment-bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
}
.md-layout.md-alignment-bottom-center {
  justify-content: center;
  align-items: flex-end;
}
.md-layout.md-alignment-bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
}
.md-layout.md-alignment-bottom-space-around {
  justify-content: space-around;
  align-items: flex-end;
}
.md-layout.md-alignment-bottom-space-between {
  justify-content: space-between;
  align-items: flex-end;
}
.md-layout.md-alignment-space-around-left {
  justify-content: flex-start;
  align-items: space-around;
}
.md-layout.md-alignment-space-around-center {
  justify-content: center;
  align-items: space-around;
}
.md-layout.md-alignment-space-around-right {
  justify-content: flex-end;
  align-items: space-around;
}
.md-layout.md-alignment-space-around-space-around {
  justify-content: space-around;
  align-items: space-around;
}
.md-layout.md-alignment-space-around-space-between {
  justify-content: space-between;
  align-items: space-around;
}
.md-layout.md-alignment-space-between-left {
  justify-content: flex-start;
  align-items: space-between;
}
.md-layout.md-alignment-space-between-center {
  justify-content: center;
  align-items: space-between;
}
.md-layout.md-alignment-space-between-right {
  justify-content: flex-end;
  align-items: space-between;
}
.md-layout.md-alignment-space-between-space-around {
  justify-content: space-around;
  align-items: space-between;
}
.md-layout.md-alignment-space-between-space-between {
  justify-content: space-between;
  align-items: space-between;
}

/**
 * Layout item
 */
.md-layout-item {
  flex: 1 1;
}
.md-layout-item.md-layout {
  margin: 0;
}
.md-layout-item.md-size {
  flex: 1 1;
}
.md-layout-item.md-size-5 {
  min-width: 5%;
  max-width: 5%;
  flex: 0 1 5%;
}
.md-layout-item.md-size-10 {
  min-width: 10%;
  max-width: 10%;
  flex: 0 1 10%;
}
.md-layout-item.md-size-15 {
  min-width: 15%;
  max-width: 15%;
  flex: 0 1 15%;
}
.md-layout-item.md-size-20 {
  min-width: 20%;
  max-width: 20%;
  flex: 0 1 20%;
}
.md-layout-item.md-size-25 {
  min-width: 25%;
  max-width: 25%;
  flex: 0 1 25%;
}
.md-layout-item.md-size-30 {
  min-width: 30%;
  max-width: 30%;
  flex: 0 1 30%;
}
.md-layout-item.md-size-35 {
  min-width: 35%;
  max-width: 35%;
  flex: 0 1 35%;
}
.md-layout-item.md-size-40 {
  min-width: 40%;
  max-width: 40%;
  flex: 0 1 40%;
}
.md-layout-item.md-size-45 {
  min-width: 45%;
  max-width: 45%;
  flex: 0 1 45%;
}
.md-layout-item.md-size-50 {
  min-width: 50%;
  max-width: 50%;
  flex: 0 1 50%;
}
.md-layout-item.md-size-55 {
  min-width: 55%;
  max-width: 55%;
  flex: 0 1 55%;
}
.md-layout-item.md-size-60 {
  min-width: 60%;
  max-width: 60%;
  flex: 0 1 60%;
}
.md-layout-item.md-size-65 {
  min-width: 65%;
  max-width: 65%;
  flex: 0 1 65%;
}
.md-layout-item.md-size-70 {
  min-width: 70%;
  max-width: 70%;
  flex: 0 1 70%;
}
.md-layout-item.md-size-75 {
  min-width: 75%;
  max-width: 75%;
  flex: 0 1 75%;
}
.md-layout-item.md-size-80 {
  min-width: 80%;
  max-width: 80%;
  flex: 0 1 80%;
}
.md-layout-item.md-size-85 {
  min-width: 85%;
  max-width: 85%;
  flex: 0 1 85%;
}
.md-layout-item.md-size-90 {
  min-width: 90%;
  max-width: 90%;
  flex: 0 1 90%;
}
.md-layout-item.md-size-95 {
  min-width: 95%;
  max-width: 95%;
  flex: 0 1 95%;
}
.md-layout-item.md-size-33 {
  min-width: 33.3333%;
  max-width: 33.3333%;
  flex: 0 1 33.3333%;
}
.md-layout-item.md-size-66 {
  min-width: 66.6666%;
  max-width: 66.6666%;
  flex: 0 1 66.6666%;
}
.md-layout-item.md-size-100 {
  min-width: 100%;
  max-width: 100%;
  margin-left: 0 !important;
  flex: 1 1 100%;
}
@media (min-width: 1904px) {
  .md-layout-item.md-xlarge-size {
    flex: 1 1;
  }
  .md-layout-item.md-xlarge-size-5 {
    min-width: 5%;
    max-width: 5%;
    flex: 0 1 5%;
  }
  .md-layout-item.md-xlarge-size-10 {
    min-width: 10%;
    max-width: 10%;
    flex: 0 1 10%;
  }
  .md-layout-item.md-xlarge-size-15 {
    min-width: 15%;
    max-width: 15%;
    flex: 0 1 15%;
  }
  .md-layout-item.md-xlarge-size-20 {
    min-width: 20%;
    max-width: 20%;
    flex: 0 1 20%;
  }
  .md-layout-item.md-xlarge-size-25 {
    min-width: 25%;
    max-width: 25%;
    flex: 0 1 25%;
  }
  .md-layout-item.md-xlarge-size-30 {
    min-width: 30%;
    max-width: 30%;
    flex: 0 1 30%;
  }
  .md-layout-item.md-xlarge-size-35 {
    min-width: 35%;
    max-width: 35%;
    flex: 0 1 35%;
  }
  .md-layout-item.md-xlarge-size-40 {
    min-width: 40%;
    max-width: 40%;
    flex: 0 1 40%;
  }
  .md-layout-item.md-xlarge-size-45 {
    min-width: 45%;
    max-width: 45%;
    flex: 0 1 45%;
  }
  .md-layout-item.md-xlarge-size-50 {
    min-width: 50%;
    max-width: 50%;
    flex: 0 1 50%;
  }
  .md-layout-item.md-xlarge-size-55 {
    min-width: 55%;
    max-width: 55%;
    flex: 0 1 55%;
  }
  .md-layout-item.md-xlarge-size-60 {
    min-width: 60%;
    max-width: 60%;
    flex: 0 1 60%;
  }
  .md-layout-item.md-xlarge-size-65 {
    min-width: 65%;
    max-width: 65%;
    flex: 0 1 65%;
  }
  .md-layout-item.md-xlarge-size-70 {
    min-width: 70%;
    max-width: 70%;
    flex: 0 1 70%;
  }
  .md-layout-item.md-xlarge-size-75 {
    min-width: 75%;
    max-width: 75%;
    flex: 0 1 75%;
  }
  .md-layout-item.md-xlarge-size-80 {
    min-width: 80%;
    max-width: 80%;
    flex: 0 1 80%;
  }
  .md-layout-item.md-xlarge-size-85 {
    min-width: 85%;
    max-width: 85%;
    flex: 0 1 85%;
  }
  .md-layout-item.md-xlarge-size-90 {
    min-width: 90%;
    max-width: 90%;
    flex: 0 1 90%;
  }
  .md-layout-item.md-xlarge-size-95 {
    min-width: 95%;
    max-width: 95%;
    flex: 0 1 95%;
  }
  .md-layout-item.md-xlarge-size-33 {
    min-width: 33.3333%;
    max-width: 33.3333%;
    flex: 0 1 33.3333%;
  }
  .md-layout-item.md-xlarge-size-66 {
    min-width: 66.6666%;
    max-width: 66.6666%;
    flex: 0 1 66.6666%;
  }
  .md-layout-item.md-xlarge-size-100 {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    flex: 1 1 100%;
  }
}
@media (max-width: 1903px) {
  .md-layout-item.md-large-size {
    flex: 1 1;
  }
  .md-layout-item.md-large-size-5 {
    min-width: 5%;
    max-width: 5%;
    flex: 0 1 5%;
  }
  .md-layout-item.md-large-size-10 {
    min-width: 10%;
    max-width: 10%;
    flex: 0 1 10%;
  }
  .md-layout-item.md-large-size-15 {
    min-width: 15%;
    max-width: 15%;
    flex: 0 1 15%;
  }
  .md-layout-item.md-large-size-20 {
    min-width: 20%;
    max-width: 20%;
    flex: 0 1 20%;
  }
  .md-layout-item.md-large-size-25 {
    min-width: 25%;
    max-width: 25%;
    flex: 0 1 25%;
  }
  .md-layout-item.md-large-size-30 {
    min-width: 30%;
    max-width: 30%;
    flex: 0 1 30%;
  }
  .md-layout-item.md-large-size-35 {
    min-width: 35%;
    max-width: 35%;
    flex: 0 1 35%;
  }
  .md-layout-item.md-large-size-40 {
    min-width: 40%;
    max-width: 40%;
    flex: 0 1 40%;
  }
  .md-layout-item.md-large-size-45 {
    min-width: 45%;
    max-width: 45%;
    flex: 0 1 45%;
  }
  .md-layout-item.md-large-size-50 {
    min-width: 50%;
    max-width: 50%;
    flex: 0 1 50%;
  }
  .md-layout-item.md-large-size-55 {
    min-width: 55%;
    max-width: 55%;
    flex: 0 1 55%;
  }
  .md-layout-item.md-large-size-60 {
    min-width: 60%;
    max-width: 60%;
    flex: 0 1 60%;
  }
  .md-layout-item.md-large-size-65 {
    min-width: 65%;
    max-width: 65%;
    flex: 0 1 65%;
  }
  .md-layout-item.md-large-size-70 {
    min-width: 70%;
    max-width: 70%;
    flex: 0 1 70%;
  }
  .md-layout-item.md-large-size-75 {
    min-width: 75%;
    max-width: 75%;
    flex: 0 1 75%;
  }
  .md-layout-item.md-large-size-80 {
    min-width: 80%;
    max-width: 80%;
    flex: 0 1 80%;
  }
  .md-layout-item.md-large-size-85 {
    min-width: 85%;
    max-width: 85%;
    flex: 0 1 85%;
  }
  .md-layout-item.md-large-size-90 {
    min-width: 90%;
    max-width: 90%;
    flex: 0 1 90%;
  }
  .md-layout-item.md-large-size-95 {
    min-width: 95%;
    max-width: 95%;
    flex: 0 1 95%;
  }
  .md-layout-item.md-large-size-33 {
    min-width: 33.3333%;
    max-width: 33.3333%;
    flex: 0 1 33.3333%;
  }
  .md-layout-item.md-large-size-66 {
    min-width: 66.6666%;
    max-width: 66.6666%;
    flex: 0 1 66.6666%;
  }
  .md-layout-item.md-large-size-100 {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    flex: 1 1 100%;
  }
}
@media (max-width: 1280px) {
  .md-layout-item.md-medium-size {
    flex: 1 1;
  }
  .md-layout-item.md-medium-size-5 {
    min-width: 5%;
    max-width: 5%;
    flex: 0 1 5%;
  }
  .md-layout-item.md-medium-size-10 {
    min-width: 10%;
    max-width: 10%;
    flex: 0 1 10%;
  }
  .md-layout-item.md-medium-size-15 {
    min-width: 15%;
    max-width: 15%;
    flex: 0 1 15%;
  }
  .md-layout-item.md-medium-size-20 {
    min-width: 20%;
    max-width: 20%;
    flex: 0 1 20%;
  }
  .md-layout-item.md-medium-size-25 {
    min-width: 25%;
    max-width: 25%;
    flex: 0 1 25%;
  }
  .md-layout-item.md-medium-size-30 {
    min-width: 30%;
    max-width: 30%;
    flex: 0 1 30%;
  }
  .md-layout-item.md-medium-size-35 {
    min-width: 35%;
    max-width: 35%;
    flex: 0 1 35%;
  }
  .md-layout-item.md-medium-size-40 {
    min-width: 40%;
    max-width: 40%;
    flex: 0 1 40%;
  }
  .md-layout-item.md-medium-size-45 {
    min-width: 45%;
    max-width: 45%;
    flex: 0 1 45%;
  }
  .md-layout-item.md-medium-size-50 {
    min-width: 50%;
    max-width: 50%;
    flex: 0 1 50%;
  }
  .md-layout-item.md-medium-size-55 {
    min-width: 55%;
    max-width: 55%;
    flex: 0 1 55%;
  }
  .md-layout-item.md-medium-size-60 {
    min-width: 60%;
    max-width: 60%;
    flex: 0 1 60%;
  }
  .md-layout-item.md-medium-size-65 {
    min-width: 65%;
    max-width: 65%;
    flex: 0 1 65%;
  }
  .md-layout-item.md-medium-size-70 {
    min-width: 70%;
    max-width: 70%;
    flex: 0 1 70%;
  }
  .md-layout-item.md-medium-size-75 {
    min-width: 75%;
    max-width: 75%;
    flex: 0 1 75%;
  }
  .md-layout-item.md-medium-size-80 {
    min-width: 80%;
    max-width: 80%;
    flex: 0 1 80%;
  }
  .md-layout-item.md-medium-size-85 {
    min-width: 85%;
    max-width: 85%;
    flex: 0 1 85%;
  }
  .md-layout-item.md-medium-size-90 {
    min-width: 90%;
    max-width: 90%;
    flex: 0 1 90%;
  }
  .md-layout-item.md-medium-size-95 {
    min-width: 95%;
    max-width: 95%;
    flex: 0 1 95%;
  }
  .md-layout-item.md-medium-size-33 {
    min-width: 33.3333%;
    max-width: 33.3333%;
    flex: 0 1 33.3333%;
  }
  .md-layout-item.md-medium-size-66 {
    min-width: 66.6666%;
    max-width: 66.6666%;
    flex: 0 1 66.6666%;
  }
  .md-layout-item.md-medium-size-100 {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    flex: 1 1 100%;
  }
}
@media (max-width: 960px) {
  .md-layout-item.md-small-size {
    flex: 1 1;
  }
  .md-layout-item.md-small-size-5 {
    min-width: 5%;
    max-width: 5%;
    flex: 0 1 5%;
  }
  .md-layout-item.md-small-size-10 {
    min-width: 10%;
    max-width: 10%;
    flex: 0 1 10%;
  }
  .md-layout-item.md-small-size-15 {
    min-width: 15%;
    max-width: 15%;
    flex: 0 1 15%;
  }
  .md-layout-item.md-small-size-20 {
    min-width: 20%;
    max-width: 20%;
    flex: 0 1 20%;
  }
  .md-layout-item.md-small-size-25 {
    min-width: 25%;
    max-width: 25%;
    flex: 0 1 25%;
  }
  .md-layout-item.md-small-size-30 {
    min-width: 30%;
    max-width: 30%;
    flex: 0 1 30%;
  }
  .md-layout-item.md-small-size-35 {
    min-width: 35%;
    max-width: 35%;
    flex: 0 1 35%;
  }
  .md-layout-item.md-small-size-40 {
    min-width: 40%;
    max-width: 40%;
    flex: 0 1 40%;
  }
  .md-layout-item.md-small-size-45 {
    min-width: 45%;
    max-width: 45%;
    flex: 0 1 45%;
  }
  .md-layout-item.md-small-size-50 {
    min-width: 50%;
    max-width: 50%;
    flex: 0 1 50%;
  }
  .md-layout-item.md-small-size-55 {
    min-width: 55%;
    max-width: 55%;
    flex: 0 1 55%;
  }
  .md-layout-item.md-small-size-60 {
    min-width: 60%;
    max-width: 60%;
    flex: 0 1 60%;
  }
  .md-layout-item.md-small-size-65 {
    min-width: 65%;
    max-width: 65%;
    flex: 0 1 65%;
  }
  .md-layout-item.md-small-size-70 {
    min-width: 70%;
    max-width: 70%;
    flex: 0 1 70%;
  }
  .md-layout-item.md-small-size-75 {
    min-width: 75%;
    max-width: 75%;
    flex: 0 1 75%;
  }
  .md-layout-item.md-small-size-80 {
    min-width: 80%;
    max-width: 80%;
    flex: 0 1 80%;
  }
  .md-layout-item.md-small-size-85 {
    min-width: 85%;
    max-width: 85%;
    flex: 0 1 85%;
  }
  .md-layout-item.md-small-size-90 {
    min-width: 90%;
    max-width: 90%;
    flex: 0 1 90%;
  }
  .md-layout-item.md-small-size-95 {
    min-width: 95%;
    max-width: 95%;
    flex: 0 1 95%;
  }
  .md-layout-item.md-small-size-33 {
    min-width: 33.3333%;
    max-width: 33.3333%;
    flex: 0 1 33.3333%;
  }
  .md-layout-item.md-small-size-66 {
    min-width: 66.6666%;
    max-width: 66.6666%;
    flex: 0 1 66.6666%;
  }
  .md-layout-item.md-small-size-100 {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    flex: 1 1 100%;
  }
}
@media (max-width: 600px) {
  .md-layout-item.md-xsmall-size {
    flex: 1 1;
  }
  .md-layout-item.md-xsmall-size-5 {
    min-width: 5%;
    max-width: 5%;
    flex: 0 1 5%;
  }
  .md-layout-item.md-xsmall-size-10 {
    min-width: 10%;
    max-width: 10%;
    flex: 0 1 10%;
  }
  .md-layout-item.md-xsmall-size-15 {
    min-width: 15%;
    max-width: 15%;
    flex: 0 1 15%;
  }
  .md-layout-item.md-xsmall-size-20 {
    min-width: 20%;
    max-width: 20%;
    flex: 0 1 20%;
  }
  .md-layout-item.md-xsmall-size-25 {
    min-width: 25%;
    max-width: 25%;
    flex: 0 1 25%;
  }
  .md-layout-item.md-xsmall-size-30 {
    min-width: 30%;
    max-width: 30%;
    flex: 0 1 30%;
  }
  .md-layout-item.md-xsmall-size-35 {
    min-width: 35%;
    max-width: 35%;
    flex: 0 1 35%;
  }
  .md-layout-item.md-xsmall-size-40 {
    min-width: 40%;
    max-width: 40%;
    flex: 0 1 40%;
  }
  .md-layout-item.md-xsmall-size-45 {
    min-width: 45%;
    max-width: 45%;
    flex: 0 1 45%;
  }
  .md-layout-item.md-xsmall-size-50 {
    min-width: 50%;
    max-width: 50%;
    flex: 0 1 50%;
  }
  .md-layout-item.md-xsmall-size-55 {
    min-width: 55%;
    max-width: 55%;
    flex: 0 1 55%;
  }
  .md-layout-item.md-xsmall-size-60 {
    min-width: 60%;
    max-width: 60%;
    flex: 0 1 60%;
  }
  .md-layout-item.md-xsmall-size-65 {
    min-width: 65%;
    max-width: 65%;
    flex: 0 1 65%;
  }
  .md-layout-item.md-xsmall-size-70 {
    min-width: 70%;
    max-width: 70%;
    flex: 0 1 70%;
  }
  .md-layout-item.md-xsmall-size-75 {
    min-width: 75%;
    max-width: 75%;
    flex: 0 1 75%;
  }
  .md-layout-item.md-xsmall-size-80 {
    min-width: 80%;
    max-width: 80%;
    flex: 0 1 80%;
  }
  .md-layout-item.md-xsmall-size-85 {
    min-width: 85%;
    max-width: 85%;
    flex: 0 1 85%;
  }
  .md-layout-item.md-xsmall-size-90 {
    min-width: 90%;
    max-width: 90%;
    flex: 0 1 90%;
  }
  .md-layout-item.md-xsmall-size-95 {
    min-width: 95%;
    max-width: 95%;
    flex: 0 1 95%;
  }
  .md-layout-item.md-xsmall-size-33 {
    min-width: 33.3333%;
    max-width: 33.3333%;
    flex: 0 1 33.3333%;
  }
  .md-layout-item.md-xsmall-size-66 {
    min-width: 66.6666%;
    max-width: 66.6666%;
    flex: 0 1 66.6666%;
  }
  .md-layout-item.md-xsmall-size-100 {
    min-width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    flex: 1 1 100%;
  }
}

/**
 * Hide Element
 */
.md-hide {
  display: none;
}

@media (min-width: 1904px) {
  .md-xlarge-hide {
    display: none;
  }
}
@media (max-width: 1903px) {
  .md-large-hide {
    display: none;
  }
}
@media (max-width: 1280px) {
  .md-medium-hide {
    display: none;
  }
}
@media (max-width: 960px) {
  .md-small-hide {
    display: none;
  }
}
@media (max-width: 600px) {
  .md-xsmall-hide {
    display: none;
  }
}
/**
 * The elevation transition duration
 * ---
 * @access private
 * @type transition
 * @group transition
 */
.md-state-container {
  position: relative;
}
.md-state-container > .md-state-content {
  position: relative;
  z-index: 2;
}
.md-state-container > .md-state-overlay {
  background-color: currentcolor;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.md-state-container:hover > .md-state-overlay {
  opacity: 0.04;
}
.md-state-container.md-focused > .md-state-overlay {
  opacity: 0.12;
}
.md-state-container.md-selected > .md-state-overlay, .md-state-container:active > .md-state-overlay {
  opacity: 0.08;
}
.md-state-container.md-dragged {
  background-color: var(--md-elevation-8);
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.md-state-container.md-dragged > .md-state-overlay {
  opacity: 0.08;
}
.md-state-container[disabled] {
  color: var(--md-on-surface-disabled);
}
.md-state-container[disabled] > .md-state-overlay {
  display: none;
}

.md-state-container.md-content-on-surface {
  color: var(--md-on-surface);
  background-color: var(--md-surface);
}

.md-state-container.md-content-is-primary {
  color: var(--md-on-primary);
  background-color: var(--md-surface);
  color: var(--md-primary);
}

.md-state-container.md-content-is-assect {
  color: var(--md-on-secondary);
  background-color: var(--md-surface);
  color: var(--md-secondary);
}

.md-state-container.md-content-on-primary {
  color: var(--md-on-primary);
  background-color: var(--md-primary);
}
.md-state-container.md-content-on-primary > .md-state-overlay {
  background-color: #fff;
}
.md-state-container.md-content-on-primary[disabled] {
  background-color: var(--md-surface-disabled);
}

.md-state-container.md-content-on-accent {
  color: var(--md-on-secondary);
  background-color: var(--md-secondary);
}
.md-state-container.md-content-on-accent > .md-state-overlay {
  background-color: #fff;
}
.md-state-container.md-content-on-accent[disabled] {
  background-color: var(--md-surface-disabled);
}