/*! UIkit 3.3.2 | http://www.getuikit.com | (c) 2014 - 2019 YOOtheme | MIT License */
/* ========================================================================
   Component: Form
 ========================================================================== */
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset list
 */
.mdp-grid {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * Grid cell
 * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
 * Reset margin for e.g. paragraphs
 */
.mdp-grid > * {
  margin: 0;
}
/*
 * Remove margin from the last-child
 */
.mdp-grid > * > :last-child {
  margin-bottom: 0;
}
/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.mdp-grid {
  margin-left: -30px;
}
.mdp-grid > * {
  padding-left: 30px;
}
/* Vertical */
.mdp-grid + .mdp-grid,
.mdp-grid > .mdp-grid-margin,
* + .mdp-grid-margin {
  margin-top: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .mdp-grid {
    margin-left: -40px;
  }
  .mdp-grid > * {
    padding-left: 40px;
  }
  /* Vertical */
  .mdp-grid + .mdp-grid,
  .mdp-grid > .mdp-grid-margin,
  * + .mdp-grid-margin {
    margin-top: 40px;
  }
}
/*
 * Small
 */
/* Horizontal */
.mdp-grid-small,
.mdp-grid-column-small {
  margin-left: -15px;
}
.mdp-grid-small > *,
.mdp-grid-column-small > * {
  padding-left: 15px;
}
/* Vertical */
.mdp-grid + .mdp-grid-small,
.mdp-grid + .mdp-grid-row-small,
.mdp-grid-small > .mdp-grid-margin,
.mdp-grid-row-small > .mdp-grid-margin,
* + .mdp-grid-margin-small {
  margin-top: 15px;
}
/*
 * Medium
 */
/* Horizontal */
.mdp-grid-medium,
.mdp-grid-column-medium {
  margin-left: -30px;
}
.mdp-grid-medium > *,
.mdp-grid-column-medium > * {
  padding-left: 30px;
}
/* Vertical */
.mdp-grid + .mdp-grid-medium,
.mdp-grid + .mdp-grid-row-medium,
.mdp-grid-medium > .mdp-grid-margin,
.mdp-grid-row-medium > .mdp-grid-margin,
* + .mdp-grid-margin-medium {
  margin-top: 30px;
}
/*
 * Large
 */
/* Horizontal */
.mdp-grid-large,
.mdp-grid-column-large {
  margin-left: -40px;
}
.mdp-grid-large > *,
.mdp-grid-column-large > * {
  padding-left: 40px;
}
/* Vertical */
.mdp-grid + .mdp-grid-large,
.mdp-grid + .mdp-grid-row-large,
.mdp-grid-large > .mdp-grid-margin,
.mdp-grid-row-large > .mdp-grid-margin,
* + .mdp-grid-margin-large {
  margin-top: 40px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .mdp-grid-large,
  .mdp-grid-column-large {
    margin-left: -70px;
  }
  .mdp-grid-large > *,
  .mdp-grid-column-large > * {
    padding-left: 70px;
  }
  /* Vertical */
  .mdp-grid + .mdp-grid-large,
  .mdp-grid + .mdp-grid-row-large,
  .mdp-grid-large > .mdp-grid-margin,
  .mdp-grid-row-large > .mdp-grid-margin,
  * + .mdp-grid-margin-large {
    margin-top: 70px;
  }
}
/*
 * Collapse
 */
/* Horizontal */
.mdp-grid-collapse,
.mdp-grid-column-collapse {
  margin-left: 0;
}
.mdp-grid-collapse > *,
.mdp-grid-column-collapse > * {
  padding-left: 0;
}
/* Vertical */
.mdp-grid + .mdp-grid-collapse,
.mdp-grid + .mdp-grid-row-collapse,
.mdp-grid-collapse > .mdp-grid-margin,
.mdp-grid-row-collapse > .mdp-grid-margin {
  margin-top: 0;
}
/* Divider
 ========================================================================== */
.mdp-grid-divider > * {
  position: relative;
}
.mdp-grid-divider > :not(.mdp-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
}
/* Vertical */
.mdp-grid-divider.mdp-grid-stack > .mdp-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
}
/*
 * Default
 */
/* Horizontal */
.mdp-grid-divider {
  margin-left: -60px;
}
.mdp-grid-divider > * {
  padding-left: 60px;
}
.mdp-grid-divider > :not(.mdp-first-column)::before {
  left: 30px;
}
/* Vertical */
.mdp-grid-divider.mdp-grid-stack > .mdp-grid-margin {
  margin-top: 60px;
}
.mdp-grid-divider.mdp-grid-stack > .mdp-grid-margin::before {
  top: -30px;
  left: 60px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .mdp-grid-divider {
    margin-left: -80px;
  }
  .mdp-grid-divider > * {
    padding-left: 80px;
  }
  .mdp-grid-divider > :not(.mdp-first-column)::before {
    left: 40px;
  }
  /* Vertical */
  .mdp-grid-divider.mdp-grid-stack > .mdp-grid-margin {
    margin-top: 80px;
  }
  .mdp-grid-divider.mdp-grid-stack > .mdp-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}
/*
 * Small
 */
/* Horizontal */
.mdp-grid-divider.mdp-grid-small,
.mdp-grid-divider.mdp-grid-column-small {
  margin-left: -30px;
}
.mdp-grid-divider.mdp-grid-small > *,
.mdp-grid-divider.mdp-grid-column-small > * {
  padding-left: 30px;
}
.mdp-grid-divider.mdp-grid-small > :not(.mdp-first-column)::before,
.mdp-grid-divider.mdp-grid-column-small > :not(.mdp-first-column)::before {
  left: 15px;
}
/* Vertical */
.mdp-grid-divider.mdp-grid-small.mdp-grid-stack > .mdp-grid-margin,
.mdp-grid-divider.mdp-grid-row-small.mdp-grid-stack > .mdp-grid-margin {
  margin-top: 30px;
}
.mdp-grid-divider.mdp-grid-small.mdp-grid-stack > .mdp-grid-margin::before {
  top: -15px;
  left: 30px;
}
.mdp-grid-divider.mdp-grid-row-small.mdp-grid-stack > .mdp-grid-margin::before {
  top: -15px;
}
.mdp-grid-divider.mdp-grid-column-small.mdp-grid-stack > .mdp-grid-margin::before {
  left: 30px;
}
/*
 * Medium
 */
/* Horizontal */
.mdp-grid-divider.mdp-grid-medium,
.mdp-grid-divider.mdp-grid-column-medium {
  margin-left: -60px;
}
.mdp-grid-divider.mdp-grid-medium > *,
.mdp-grid-divider.mdp-grid-column-medium > * {
  padding-left: 60px;
}
.mdp-grid-divider.mdp-grid-medium > :not(.mdp-first-column)::before,
.mdp-grid-divider.mdp-grid-column-medium > :not(.mdp-first-column)::before {
  left: 30px;
}
/* Vertical */
.mdp-grid-divider.mdp-grid-medium.mdp-grid-stack > .mdp-grid-margin,
.mdp-grid-divider.mdp-grid-row-medium.mdp-grid-stack > .mdp-grid-margin {
  margin-top: 60px;
}
.mdp-grid-divider.mdp-grid-medium.mdp-grid-stack > .mdp-grid-margin::before {
  top: -30px;
  left: 60px;
}
.mdp-grid-divider.mdp-grid-row-medium.mdp-grid-stack > .mdp-grid-margin::before {
  top: -30px;
}
.mdp-grid-divider.mdp-grid-column-medium.mdp-grid-stack > .mdp-grid-margin::before {
  left: 60px;
}
/*
 * Large
 */
/* Horizontal */
.mdp-grid-divider.mdp-grid-large,
.mdp-grid-divider.mdp-grid-column-large {
  margin-left: -80px;
}
.mdp-grid-divider.mdp-grid-large > *,
.mdp-grid-divider.mdp-grid-column-large > * {
  padding-left: 80px;
}
.mdp-grid-divider.mdp-grid-large > :not(.mdp-first-column)::before,
.mdp-grid-divider.mdp-grid-column-large > :not(.mdp-first-column)::before {
  left: 40px;
}
/* Vertical */
.mdp-grid-divider.mdp-grid-large.mdp-grid-stack > .mdp-grid-margin,
.mdp-grid-divider.mdp-grid-row-large.mdp-grid-stack > .mdp-grid-margin {
  margin-top: 80px;
}
.mdp-grid-divider.mdp-grid-large.mdp-grid-stack > .mdp-grid-margin::before {
  top: -40px;
  left: 80px;
}
.mdp-grid-divider.mdp-grid-row-large.mdp-grid-stack > .mdp-grid-margin::before {
  top: -40px;
}
.mdp-grid-divider.mdp-grid-column-large.mdp-grid-stack > .mdp-grid-margin::before {
  left: 80px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .mdp-grid-divider.mdp-grid-large,
  .mdp-grid-divider.mdp-grid-column-large {
    margin-left: -140px;
  }
  .mdp-grid-divider.mdp-grid-large > *,
  .mdp-grid-divider.mdp-grid-column-large > * {
    padding-left: 140px;
  }
  .mdp-grid-divider.mdp-grid-large > :not(.mdp-first-column)::before,
  .mdp-grid-divider.mdp-grid-column-large > :not(.mdp-first-column)::before {
    left: 70px;
  }
  /* Vertical */
  .mdp-grid-divider.mdp-grid-large.mdp-grid-stack > .mdp-grid-margin,
  .mdp-grid-divider.mdp-grid-row-large.mdp-grid-stack > .mdp-grid-margin {
    margin-top: 140px;
  }
  .mdp-grid-divider.mdp-grid-large.mdp-grid-stack > .mdp-grid-margin::before {
    top: -70px;
    left: 140px;
  }
  .mdp-grid-divider.mdp-grid-row-large.mdp-grid-stack > .mdp-grid-margin::before {
    top: -70px;
  }
  .mdp-grid-divider.mdp-grid-column-large.mdp-grid-stack > .mdp-grid-margin::before {
    left: 140px;
  }
}
/* Match child of a grid cell
 ========================================================================== */
/*
 * Behave like a block element
 * 1. Wrap into the next line
 * 2. Take the full width, at least 100%. Only if no class from the Width component is set.
 * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
 */
.mdp-grid-match > *,
.mdp-grid-item-match {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
}
.mdp-grid-match > * > :not([class*='mdp-width']),
.mdp-grid-item-match > :not([class*='mdp-width']) {
  /* 2 */
  box-sizing: border-box;
  width: 100%;
  /* 3 */
  flex: auto;
}
/* ========================================================================
   Component: Card
 ========================================================================== */
.mdp-card {
  position: relative;
  box-sizing: border-box;
  transition: box-shadow 0.1s ease-in-out;
}
/* Sections
 ========================================================================== */
.mdp-card-header {
  padding: 15px 30px;
}
.mdp-card-footer {
  padding: 15px 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-card-header {
    padding: 20px 40px;
  }
  .mdp-card-footer {
    padding: 20px 40px;
  }
}
/*
 * Micro clearfix
 */
.mdp-card-body::before,
.mdp-card-body::after,
.mdp-card-header::before,
.mdp-card-header::after,
.mdp-card-footer::before,
.mdp-card-footer::after {
  content: "";
  display: table;
}
.mdp-card-body::after,
.mdp-card-header::after,
.mdp-card-footer::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.mdp-card-body > :last-child,
.mdp-card-header > :last-child,
.mdp-card-footer > :last-child {
  margin-bottom: 0;
}
/* Media
 ========================================================================== */
/*
 * Reserved alignment modifier to style the media element, e.g. with `border-radius`
 * Implemented by the theme
 */
/* Title
 ========================================================================== */
.mdp-card-title {
  font-size: 1.5rem;
  line-height: 1.4;
}
/* Badge
 ========================================================================== */
.mdp-card-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
/*
 * Remove margin from adjacent element
 */
.mdp-card-badge:first-child + * {
  margin-top: 0;
}
/* Hover modifier
 ========================================================================== */
.mdp-card-hover:not(.mdp-card-default):not(.mdp-card-primary):not(.mdp-card-secondary):hover {
  background: #fff;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.mdp-card-default {
  background: #fff;
  color: #666;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.mdp-card-default .mdp-card-title {
  color: #333;
}
.mdp-card-default.mdp-card-hover:hover {
  background-color: #fff;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.mdp-card-default .mdp-card-header {
  border-bottom: 1px solid #e5e5e5;
}
.mdp-card-default .mdp-card-footer {
  border-top: 1px solid #e5e5e5;
}
/*
 * Primary
 */
.mdp-card-primary {
  background: #1e87f0;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.mdp-card-primary .mdp-card-title {
  color: #fff;
}
.mdp-card-primary.mdp-card-hover:hover {
  background-color: #1e87f0;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/*
 * Secondary
 */
.mdp-card-secondary {
  background: #222;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.mdp-card-secondary .mdp-card-title {
  color: #fff;
}
.mdp-card-secondary.mdp-card-hover:hover {
  background-color: #222;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
/* Size modifier
 ========================================================================== */
/*
 * Small
 */
.mdp-card-small.mdp-card-body,
.mdp-card-small .mdp-card-body {
  padding: 20px 20px;
}
.mdp-card-small .mdp-card-header {
  padding: 13px 20px;
}
.mdp-card-small .mdp-card-footer {
  padding: 13px 20px;
}
/*
 * Large
 */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-card-large.mdp-card-body,
  .mdp-card-large .mdp-card-body {
    padding: 70px 70px;
  }
  .mdp-card-large .mdp-card-header {
    padding: 35px 70px;
  }
  .mdp-card-large .mdp-card-footer {
    padding: 35px 70px;
  }
}
/*
     * Default
     */
.mdp-card-body > .mdp-nav-default {
  margin-left: -30px;
  margin-right: -30px;
}
.mdp-card-body > .mdp-nav-default:only-child {
  margin-top: -15px;
  margin-bottom: -15px;
}
.mdp-card-body .mdp-nav-default > li > a,
.mdp-card-body .mdp-nav-default .mdp-nav-header,
.mdp-card-body .mdp-nav-default .mdp-nav-divider {
  padding-left: 30px;
  padding-right: 30px;
}
.mdp-card-body .mdp-nav-default .mdp-nav-sub {
  padding-left: 45px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-card-body > .mdp-nav-default {
    margin-left: -40px;
    margin-right: -40px;
  }
  .mdp-card-body > .mdp-nav-default:only-child {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  .mdp-card-body .mdp-nav-default > li > a,
  .mdp-card-body .mdp-nav-default .mdp-nav-header,
  .mdp-card-body .mdp-nav-default .mdp-nav-divider {
    padding-left: 40px;
    padding-right: 40px;
  }
  .mdp-card-body .mdp-nav-default .mdp-nav-sub {
    padding-left: 55px;
  }
}
/*
     * Small
     */
.mdp-card-small > .mdp-nav-default {
  margin-left: -20px;
  margin-right: -20px;
}
.mdp-card-small > .mdp-nav-default:only-child {
  margin-top: -5px;
  margin-bottom: -5px;
}
.mdp-card-small .mdp-nav-default > li > a,
.mdp-card-small .mdp-nav-default .mdp-nav-header,
.mdp-card-small .mdp-nav-default .mdp-nav-divider {
  padding-left: 20px;
  padding-right: 20px;
}
.mdp-card-small .mdp-nav-default .mdp-nav-sub {
  padding-left: 35px;
}
/*
     * Large
     */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-card-large > .mdp-nav-default {
    margin: 0;
  }
  .mdp-card-large > .mdp-nav-default:only-child {
    margin: 0;
  }
  .mdp-card-large .mdp-nav-default > li > a,
  .mdp-card-large .mdp-nav-default .mdp-nav-header,
  .mdp-card-large .mdp-nav-default .mdp-nav-divider {
    padding-left: 0;
    padding-right: 0;
  }
  .mdp-card-large .mdp-nav-default .mdp-nav-sub {
    padding-left: 15px;
  }
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
.mdp-overlay {
  padding: 30px 30px;
}
/*
 * Remove margin from the last-child
 */
.mdp-overlay > :last-child {
  margin-bottom: 0;
}
/* Icon
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.mdp-overlay-default {
  background: rgba(255, 255, 255, 0.8);
}
/*
 * Primary
 */
.mdp-overlay-primary {
  background: rgba(34, 34, 34, 0.8);
}
/* ========================================================================
   Component: Article
 ========================================================================== */
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * Adopts `mdp-icon`
 */
.mdp-slidenav {
  padding: 20px;
  transition: color 0.1s ease-in-out;
  display: flex;
  text-decoration: none;
}
/* Hover + Focus */
.mdp-slidenav:hover,
.mdp-slidenav:focus {
  outline: none;
  text-decoration: none;
}
/* OnClick */
.mdp-slidenav:active {
  text-decoration: none;
}
a.mdp-slidenav {
  text-decoration: none !important;
}
/* Icon modifier
 ========================================================================== */
/*
 * Previous
 */
/*
 * Next
 */
/* Size modifier
 ========================================================================== */
.mdp-slidenav-large {
  padding: 10px 10px;
}
/* Container
 ========================================================================== */
.mdp-slidenav-container {
  display: flex;
}
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.mdp-dotnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -12px;
}
/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.mdp-dotnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 12px;
}
/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.mdp-dotnav > * > * {
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  background: transparent;
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.2s ease-in-out;
  transition-property: background-color, border-color;
}
/* Hover + Focus */
.mdp-dotnav > * > :hover,
.mdp-dotnav > * > :focus {
  outline: none;
  border-color: transparent;
}
/* OnClick */
.mdp-dotnav > * > :active {
  border-color: transparent;
}
/* Active */
.mdp-dotnav > .mdp-active > * {
  border-color: transparent;
}
/* Modifier: 'mdp-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.mdp-dotnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -12px;
}
/* 2 */
.mdp-dotnav-vertical > * {
  padding-left: 0;
  padding-top: 12px;
}
/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.mdp-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/* Container
 ========================================================================== */
/*
 * 1. Clip child elements
 */
.mdp-slider-container {
  /* 1 */
  overflow: hidden;
}
/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 */
.mdp-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
}
/*
 * 1. Reset list style without interfering with grid
 * 2. Prevent displaying the callout information on iOS.
 */
.mdp-slider-items:not(.mdp-grid) {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}
.mdp-slider-items.mdp-grid {
  flex-wrap: nowrap;
}
/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 * 2. Create position context
 * 3. Disable horizontal panning gestures in IE11 and Edge
 * 4. Suppress outline on focus
 */
.mdp-slider-items > * {
  /* 1 */
  flex: none;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}
/* 4 */
.mdp-slider-items > :focus {
  outline: none;
}
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='mdp-animation-'] {
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*='mdp-child-width'] > * {
  box-sizing: border-box;
  width: 100%;
}
.mdp-child-width-1-2 > * {
  width: 50%;
}
.mdp-child-width-1-3 > * {
  width: calc(100% * 1 / 3.001);
}
.mdp-child-width-1-4 > * {
  width: 25%;
}
.mdp-child-width-1-5 > * {
  width: 20%;
}
.mdp-child-width-1-6 > * {
  width: calc(100% * 1 / 6.001);
}
.mdp-child-width-auto > * {
  width: auto;
}
/*
 * 1. Reset the `min-width`, which is set to auto by default, because
 *    flex items won't shrink below their minimum intrinsic content size.
 *    Using `1px` instead of `0`, so items still wrap into the next line,
 *    if they have zero width and padding and the predecessor is 100% wide.
 */
.mdp-child-width-expand > :not([class*='mdp-width']) {
  flex: 1;
  /* 1 */
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mdp-child-width-1-1\@s > * {
    width: 100%;
  }
  .mdp-child-width-1-2\@s > * {
    width: 50%;
  }
  .mdp-child-width-1-3\@s > * {
    width: calc(100% * 1 / 3.001);
  }
  .mdp-child-width-1-4\@s > * {
    width: 25%;
  }
  .mdp-child-width-1-5\@s > * {
    width: 20%;
  }
  .mdp-child-width-1-6\@s > * {
    width: calc(100% * 1 / 6.001);
  }
  .mdp-child-width-auto\@s > * {
    width: auto;
  }
  .mdp-child-width-expand\@s > :not([class*='mdp-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mdp-child-width-1-1\@m > * {
    width: 100%;
  }
  .mdp-child-width-1-2\@m > * {
    width: 50%;
  }
  .mdp-child-width-1-3\@m > * {
    width: calc(100% * 1 / 3.001);
  }
  .mdp-child-width-1-4\@m > * {
    width: 25%;
  }
  .mdp-child-width-1-5\@m > * {
    width: 20%;
  }
  .mdp-child-width-1-6\@m > * {
    width: calc(100% * 1 / 6.001);
  }
  .mdp-child-width-auto\@m > * {
    width: auto;
  }
  .mdp-child-width-expand\@m > :not([class*='mdp-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-child-width-1-1\@l > * {
    width: 100%;
  }
  .mdp-child-width-1-2\@l > * {
    width: 50%;
  }
  .mdp-child-width-1-3\@l > * {
    width: calc(100% * 1 / 3.001);
  }
  .mdp-child-width-1-4\@l > * {
    width: 25%;
  }
  .mdp-child-width-1-5\@l > * {
    width: 20%;
  }
  .mdp-child-width-1-6\@l > * {
    width: calc(100% * 1 / 6.001);
  }
  .mdp-child-width-auto\@l > * {
    width: auto;
  }
  .mdp-child-width-expand\@l > :not([class*='mdp-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .mdp-child-width-1-1\@xl > * {
    width: 100%;
  }
  .mdp-child-width-1-2\@xl > * {
    width: 50%;
  }
  .mdp-child-width-1-3\@xl > * {
    width: calc(100% * 1 / 3.001);
  }
  .mdp-child-width-1-4\@xl > * {
    width: 25%;
  }
  .mdp-child-width-1-5\@xl > * {
    width: 20%;
  }
  .mdp-child-width-1-6\@xl > * {
    width: calc(100% * 1 / 6.001);
  }
  .mdp-child-width-auto\@xl > * {
    width: auto;
  }
  .mdp-child-width-expand\@xl > :not([class*='mdp-width']) {
    flex: 1;
    min-width: 1px;
  }
}
/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*='mdp-width'] {
  box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}
/* Halves */
.mdp-width-1-2 {
  width: 50%;
}
/* Thirds */
.mdp-width-1-3 {
  width: calc(100% * 1 / 3.001);
}
.mdp-width-2-3 {
  width: calc(100% * 2 / 3.001);
}
/* Quarters */
.mdp-width-1-4 {
  width: 25%;
}
.mdp-width-3-4 {
  width: 75%;
}
/* Fifths */
.mdp-width-1-5 {
  width: 20%;
}
.mdp-width-2-5 {
  width: 40%;
}
.mdp-width-3-5 {
  width: 60%;
}
.mdp-width-4-5 {
  width: 80%;
}
/* Sixths */
.mdp-width-1-6 {
  width: calc(100% * 1 / 6.001);
}
.mdp-width-5-6 {
  width: calc(100% * 5 / 6.001);
}
/* Pixel */
.mdp-width-small {
  width: 150px;
}
.mdp-width-medium {
  width: 300px;
}
.mdp-width-large {
  width: 450px;
}
.mdp-width-xlarge {
  width: 600px;
}
.mdp-width-xxlarge {
  width: 750px;
}
/* Auto */
.mdp-width-auto {
  width: auto;
}
/* Expand */
.mdp-width-expand {
  flex: 1;
  min-width: 1px;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  /* Whole */
  .mdp-width-1-1\@s {
    width: 100%;
  }
  /* Halves */
  .mdp-width-1-2\@s {
    width: 50%;
  }
  /* Thirds */
  .mdp-width-1-3\@s {
    width: calc(100% * 1 / 3.001);
  }
  .mdp-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .mdp-width-1-4\@s {
    width: 25%;
  }
  .mdp-width-3-4\@s {
    width: 75%;
  }
  /* Fifths */
  .mdp-width-1-5\@s {
    width: 20%;
  }
  .mdp-width-2-5\@s {
    width: 40%;
  }
  .mdp-width-3-5\@s {
    width: 60%;
  }
  .mdp-width-4-5\@s {
    width: 80%;
  }
  /* Sixths */
  .mdp-width-1-6\@s {
    width: calc(100% * 1 / 6.001);
  }
  .mdp-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .mdp-width-small\@s {
    width: 150px;
  }
  .mdp-width-medium\@s {
    width: 300px;
  }
  .mdp-width-large\@s {
    width: 450px;
  }
  .mdp-width-xlarge\@s {
    width: 600px;
  }
  .mdp-width-xxlarge\@s {
    width: 750px;
  }
  /* Auto */
  .mdp-width-auto\@s {
    width: auto;
  }
  /* Expand */
  .mdp-width-expand\@s {
    flex: 1;
    min-width: 1px;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* Whole */
  .mdp-width-1-1\@m {
    width: 100%;
  }
  /* Halves */
  .mdp-width-1-2\@m {
    width: 50%;
  }
  /* Thirds */
  .mdp-width-1-3\@m {
    width: calc(100% * 1 / 3.001);
  }
  .mdp-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .mdp-width-1-4\@m {
    width: 25%;
  }
  .mdp-width-3-4\@m {
    width: 75%;
  }
  /* Fifths */
  .mdp-width-1-5\@m {
    width: 20%;
  }
  .mdp-width-2-5\@m {
    width: 40%;
  }
  .mdp-width-3-5\@m {
    width: 60%;
  }
  .mdp-width-4-5\@m {
    width: 80%;
  }
  /* Sixths */
  .mdp-width-1-6\@m {
    width: calc(100% * 1 / 6.001);
  }
  .mdp-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .mdp-width-small\@m {
    width: 150px;
  }
  .mdp-width-medium\@m {
    width: 300px;
  }
  .mdp-width-large\@m {
    width: 450px;
  }
  .mdp-width-xlarge\@m {
    width: 600px;
  }
  .mdp-width-xxlarge\@m {
    width: 750px;
  }
  /* Auto */
  .mdp-width-auto\@m {
    width: auto;
  }
  /* Expand */
  .mdp-width-expand\@m {
    flex: 1;
    min-width: 1px;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Whole */
  .mdp-width-1-1\@l {
    width: 100%;
  }
  /* Halves */
  .mdp-width-1-2\@l {
    width: 50%;
  }
  /* Thirds */
  .mdp-width-1-3\@l {
    width: calc(100% * 1 / 3.001);
  }
  .mdp-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .mdp-width-1-4\@l {
    width: 25%;
  }
  .mdp-width-3-4\@l {
    width: 75%;
  }
  /* Fifths */
  .mdp-width-1-5\@l {
    width: 20%;
  }
  .mdp-width-2-5\@l {
    width: 40%;
  }
  .mdp-width-3-5\@l {
    width: 60%;
  }
  .mdp-width-4-5\@l {
    width: 80%;
  }
  /* Sixths */
  .mdp-width-1-6\@l {
    width: calc(100% * 1 / 6.001);
  }
  .mdp-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .mdp-width-small\@l {
    width: 150px;
  }
  .mdp-width-medium\@l {
    width: 300px;
  }
  .mdp-width-large\@l {
    width: 450px;
  }
  .mdp-width-xlarge\@l {
    width: 600px;
  }
  .mdp-width-xxlarge\@l {
    width: 750px;
  }
  /* Auto */
  .mdp-width-auto\@l {
    width: auto;
  }
  /* Expand */
  .mdp-width-expand\@l {
    flex: 1;
    min-width: 1px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Whole */
  .mdp-width-1-1\@xl {
    width: 100%;
  }
  /* Halves */
  .mdp-width-1-2\@xl {
    width: 50%;
  }
  /* Thirds */
  .mdp-width-1-3\@xl {
    width: calc(100% * 1 / 3.001);
  }
  .mdp-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }
  /* Quarters */
  .mdp-width-1-4\@xl {
    width: 25%;
  }
  .mdp-width-3-4\@xl {
    width: 75%;
  }
  /* Fifths */
  .mdp-width-1-5\@xl {
    width: 20%;
  }
  .mdp-width-2-5\@xl {
    width: 40%;
  }
  .mdp-width-3-5\@xl {
    width: 60%;
  }
  .mdp-width-4-5\@xl {
    width: 80%;
  }
  /* Sixths */
  .mdp-width-1-6\@xl {
    width: calc(100% * 1 / 6.001);
  }
  .mdp-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }
  /* Pixel */
  .mdp-width-small\@xl {
    width: 150px;
  }
  .mdp-width-medium\@xl {
    width: 300px;
  }
  .mdp-width-large\@xl {
    width: 450px;
  }
  .mdp-width-xlarge\@xl {
    width: 600px;
  }
  .mdp-width-xxlarge\@xl {
    width: 750px;
  }
  /* Auto */
  .mdp-width-auto\@xl {
    width: auto;
  }
  /* Expand */
  .mdp-width-expand\@xl {
    flex: 1;
    min-width: 1px;
  }
}
/* ========================================================================
   Component: Height
 ========================================================================== */
[class*='mdp-height'] {
  box-sizing: border-box;
}
/*
 * Only works if parent element has a height set
 */
.mdp-height-1-1 {
  height: 100%;
}
/*
 * Useful to create image teasers
 */
.mdp-height-viewport {
  min-height: 100vh;
}
/*
 * Pixel
 * Useful for `overflow: auto`
 */
.mdp-height-small {
  height: 150px;
}
.mdp-height-medium {
  height: 300px;
}
.mdp-height-large {
  height: 450px;
}
.mdp-height-max-small {
  max-height: 150px;
}
.mdp-height-max-medium {
  max-height: 300px;
}
.mdp-height-max-large {
  max-height: 450px;
}
/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.mdp-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.mdp-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}
.mdp-text-meta a {
  color: #999;
}
.mdp-text-meta a:hover {
  color: #666;
  text-decoration: none;
}
/* Size modifiers
 ========================================================================== */
.mdp-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}
.mdp-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}
/* Weight modifier
 ========================================================================== */
.mdp-text-light {
  font-weight: 300;
}
.mdp-text-normal {
  font-weight: 400;
}
.mdp-text-bold {
  font-weight: 700;
}
.mdp-text-lighter {
  font-weight: lighter;
}
.mdp-text-bolder {
  font-weight: bolder;
}
/* Style modifier
 ========================================================================== */
.mdp-text-italic {
  font-style: italic;
}
/* Transform modifier
 ========================================================================== */
.mdp-text-capitalize {
  text-transform: capitalize !important;
}
.mdp-text-uppercase {
  text-transform: uppercase !important;
}
.mdp-text-lowercase {
  text-transform: lowercase !important;
}
/* Color modifiers
 ========================================================================== */
.mdp-text-muted {
  color: #999 !important;
}
.mdp-text-emphasis {
  color: #333 !important;
}
.mdp-text-primary {
  color: #1e87f0 !important;
}
.mdp-text-secondary {
  color: #222 !important;
}
.mdp-text-success {
  color: #32d296 !important;
}
.mdp-text-warning {
  color: #faa05a !important;
}
.mdp-text-danger {
  color: #f0506e !important;
}
/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in Chrome, Firefox, Safari, Edge and Opera
 *    Default color is set to transparent
 * 2. Container fits the text
 * 3. Fallback color for IE11
 */
.mdp-text-background {
  /* 1 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 2 */
  display: inline-block;
  /* 3 */
  color: #1e87f0 !important;
}
@supports (-webkit-background-clip: text) {
  .mdp-text-background {
    background-color: #1e87f0;
  }
}
/* Alignment modifiers
 ========================================================================== */
.mdp-text-left {
  text-align: left !important;
}
.mdp-text-right {
  text-align: right !important;
}
.mdp-text-center {
  text-align: center !important;
}
.mdp-text-justify {
  text-align: justify !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mdp-text-left\@s {
    text-align: left !important;
  }
  .mdp-text-right\@s {
    text-align: right !important;
  }
  .mdp-text-center\@s {
    text-align: center !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mdp-text-left\@m {
    text-align: left !important;
  }
  .mdp-text-right\@m {
    text-align: right !important;
  }
  .mdp-text-center\@m {
    text-align: center !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-text-left\@l {
    text-align: left !important;
  }
  .mdp-text-right\@l {
    text-align: right !important;
  }
  .mdp-text-center\@l {
    text-align: center !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .mdp-text-left\@xl {
    text-align: left !important;
  }
  .mdp-text-right\@xl {
    text-align: right !important;
  }
  .mdp-text-center\@xl {
    text-align: center !important;
  }
}
/*
 * Vertical
 */
.mdp-text-top {
  vertical-align: top !important;
}
.mdp-text-middle {
  vertical-align: middle !important;
}
.mdp-text-bottom {
  vertical-align: bottom !important;
}
.mdp-text-baseline {
  vertical-align: baseline !important;
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.mdp-text-nowrap {
  white-space: nowrap;
}
/*
 * 1. Make sure a max-width is set after which truncation can occur
 * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 * 3. Fix for table cells
 */
.mdp-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 2 */
th.mdp-text-truncate,
td.mdp-text-truncate {
  max-width: 0;
}
/*
 * 1. Wrap long words onto the next line and break them if they are too long to fit
 * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
 * 3. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
 *    Must use `break-all` to support IE11 and Edge
 * Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
 */
.mdp-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
}
/* 3 */
th.mdp-text-break,
td.mdp-text-break {
  word-break: break-all;
}
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Works with iframes and embedded content
 * 1. Reset responsiveness for embedded content
 * 2. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
.mdp-cover {
  /* 1 */
  max-width: none;
  /* 2 */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
iframe.mdp-cover {
  pointer-events: none;
}
/* Container
 ========================================================================== */
/*
 * 1. Parent container which clips resized object
 * 2. Needed if the child is positioned absolute. See note above
 */
.mdp-cover-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  position: relative;
}
/* ========================================================================
   Component: Background
 ========================================================================== */
/* Color
 ========================================================================== */
.mdp-background-default {
  background-color: #fff;
}
.mdp-background-muted {
  background-color: #f8f8f8;
}
.mdp-background-primary {
  background-color: #1e87f0;
}
.mdp-background-secondary {
  background-color: #222;
}
/* Size
 ========================================================================== */
.mdp-background-cover,
.mdp-background-contain {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.mdp-background-cover {
  background-size: cover;
}
.mdp-background-contain {
  background-size: contain;
}
/* Position
 ========================================================================== */
.mdp-background-top-left {
  background-position: 0 0;
}
.mdp-background-top-center {
  background-position: 50% 0;
}
.mdp-background-top-right {
  background-position: 100% 0;
}
.mdp-background-center-left {
  background-position: 0 50%;
}
.mdp-background-center-center {
  background-position: 50% 50%;
}
.mdp-background-center-right {
  background-position: 100% 50%;
}
.mdp-background-bottom-left {
  background-position: 0 100%;
}
.mdp-background-bottom-center {
  background-position: 50% 100%;
}
.mdp-background-bottom-right {
  background-position: 100% 100%;
}
/* Repeat
 ========================================================================== */
.mdp-background-norepeat {
  background-repeat: no-repeat;
}
/* Attachment
 ========================================================================== */
/*
 * 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
 */
.mdp-background-fixed {
  background-attachment: fixed;
  /* 1 */
  backface-visibility: hidden;
}
/*
 * Exclude touch devices because `fixed` doesn't work on iOS and Android
 */
@media (pointer: coarse) {
  .mdp-background-fixed {
    background-attachment: scroll;
  }
}
/* Image
 ========================================================================== */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .mdp-background-image\@s {
    background-image: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .mdp-background-image\@m {
    background-image: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .mdp-background-image\@l {
    background-image: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .mdp-background-image\@xl {
    background-image: none !important;
  }
}
/* Blend modes
 ========================================================================== */
.mdp-background-blend-multiply {
  background-blend-mode: multiply;
}
.mdp-background-blend-screen {
  background-blend-mode: screen;
}
.mdp-background-blend-overlay {
  background-blend-mode: overlay;
}
.mdp-background-blend-darken {
  background-blend-mode: darken;
}
.mdp-background-blend-lighten {
  background-blend-mode: lighten;
}
.mdp-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}
.mdp-background-blend-color-burn {
  background-blend-mode: color-burn;
}
.mdp-background-blend-hard-light {
  background-blend-mode: hard-light;
}
.mdp-background-blend-soft-light {
  background-blend-mode: soft-light;
}
.mdp-background-blend-difference {
  background-blend-mode: difference;
}
.mdp-background-blend-exclusion {
  background-blend-mode: exclusion;
}
.mdp-background-blend-hue {
  background-blend-mode: hue;
}
.mdp-background-blend-saturation {
  background-blend-mode: saturation;
}
.mdp-background-blend-color {
  background-blend-mode: color;
}
.mdp-background-blend-luminosity {
  background-blend-mode: luminosity;
}
/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*='mdp-align'] {
  display: block;
  margin-bottom: 30px;
}
* + [class*='mdp-align'] {
  margin-top: 30px;
}
/*
 * Center
 */
.mdp-align-center {
  margin-left: auto;
  margin-right: auto;
}
/*
 * Left/Right
 */
.mdp-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}
.mdp-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mdp-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .mdp-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mdp-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }
  .mdp-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-align-left\@l {
    margin-top: 0;
    float: left;
  }
  .mdp-align-right\@l {
    margin-top: 0;
    float: right;
  }
  .mdp-align-left,
  .mdp-align-left\@s,
  .mdp-align-left\@m,
  .mdp-align-left\@l {
    margin-right: 40px;
  }
  .mdp-align-right,
  .mdp-align-right\@s,
  .mdp-align-right\@m,
  .mdp-align-right\@l {
    margin-left: 40px;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .mdp-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }
  .mdp-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.mdp-panel {
  position: relative;
  box-sizing: border-box;
}
/*
 * Micro clearfix
 */
.mdp-panel::before,
.mdp-panel::after {
  content: "";
  display: table;
}
.mdp-panel::after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.mdp-panel > :last-child {
  margin-bottom: 0;
}
/*
 * Scrollable
 */
.mdp-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.mdp-clearfix::before {
  content: "";
  display: table-cell;
}
/* 2 */
.mdp-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.mdp-float-left {
  float: left;
}
.mdp-float-right {
  float: right;
}
/* 1 */
[class*='mdp-float-'] {
  max-width: 100%;
}
/* Overfow
 ========================================================================== */
.mdp-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 * Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
 */
.mdp-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.mdp-overflow-auto > :last-child {
  margin-bottom: 0;
}
/* Resize
 ========================================================================== */
.mdp-resize {
  resize: both;
}
.mdp-resize-vertical {
  resize: vertical;
}
/* Display
 ========================================================================== */
.mdp-display-block {
  display: block !important;
}
.mdp-display-inline {
  display: inline !important;
}
.mdp-display-inline-block {
  display: inline-block !important;
}
/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Force hardware acceleration without creating a new stacking context
 *    to fix 1px glitch when combined with overlays and transitions in Webkit
 * 6. Clip child elements
 */
[class*='mdp-inline'] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  -webkit-backface-visibility: hidden;
}
.mdp-inline-clip {
  /* 6 */
  overflow: hidden;
}
/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.mdp-preserve-width,
.mdp-preserve-width canvas,
.mdp-preserve-width img,
.mdp-preserve-width svg,
.mdp-preserve-width video {
  max-width: none;
}
/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.mdp-responsive-width,
.mdp-responsive-height {
  box-sizing: border-box;
}
/*
 * 1. Set a maximum width. `important` needed to override `mdp-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.mdp-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}
/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.mdp-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}
/* Border
 ========================================================================== */
.mdp-border-circle {
  border-radius: 50%;
}
.mdp-border-pill {
  border-radius: 500px;
}
.mdp-border-rounded {
  border-radius: 5px;
}
/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.mdp-inline-clip[class*='mdp-border-'] {
  -webkit-transform: translateZ(0);
}
/* Box-shadow
 ========================================================================== */
.mdp-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.mdp-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.mdp-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.mdp-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/*
 * Hover
 */
[class*='mdp-box-shadow-hover'] {
  transition: box-shadow 0.1s ease-in-out;
}
.mdp-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.mdp-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.mdp-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}
.mdp-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}
/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
 *    Solved by using `before` and add position context to child elements.
 */
@supports (filter: blur(0)) {
  .mdp-box-shadow-bottom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }
  .mdp-box-shadow-bottom::before {
    content: '';
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
  }
  /* 3 */
  .mdp-box-shadow-bottom > * {
    position: relative;
  }
}
/* Drop cap
 ========================================================================== */
/*
 * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=214004
 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=317933
 * 3. Caused by 1.: Edge creates two nested `::first-letter` containers, one for each selector
 *    This doubles the `font-size` exponential when using the `em` unit.
 */
.mdp-dropcap::first-letter,
.mdp-dropcap > p:first-of-type::first-letter {
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 4.5em;
  line-height: 1;
  margin-bottom: -2px;
}
/* 2 */
@-moz-document url-prefix() {
  .mdp-dropcap::first-letter,
  .mdp-dropcap > p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}
/* 3 */
@supports (-ms-ime-align: auto) {
  .mdp-dropcap > p:first-of-type::first-letter {
    font-size: 1em;
  }
}
/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.mdp-logo {
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #666;
  /* 1 */
  text-decoration: none;
}
/* Hover + Focus */
.mdp-logo:hover,
.mdp-logo:focus {
  color: #666;
  outline: none;
  /* 1 */
  text-decoration: none;
}
.mdp-logo-inverse {
  display: none;
}
/* Disabled State
 ========================================================================== */
.mdp-disabled {
  pointer-events: none;
}
/* Drag State
 ========================================================================== */
/*
 * 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons
 * 2. Fix dragging over iframes
 */
.mdp-drag,
.mdp-drag * {
  cursor: move;
}
/* 2 */
.mdp-drag iframe {
  pointer-events: none;
}
/* Dragover State
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.mdp-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}
/* Blend modes
 ========================================================================== */
.mdp-blend-multiply {
  mix-blend-mode: multiply;
}
.mdp-blend-screen {
  mix-blend-mode: screen;
}
.mdp-blend-overlay {
  mix-blend-mode: overlay;
}
.mdp-blend-darken {
  mix-blend-mode: darken;
}
.mdp-blend-lighten {
  mix-blend-mode: lighten;
}
.mdp-blend-color-dodge {
  mix-blend-mode: color-dodge;
}
.mdp-blend-color-burn {
  mix-blend-mode: color-burn;
}
.mdp-blend-hard-light {
  mix-blend-mode: hard-light;
}
.mdp-blend-soft-light {
  mix-blend-mode: soft-light;
}
.mdp-blend-difference {
  mix-blend-mode: difference;
}
.mdp-blend-exclusion {
  mix-blend-mode: exclusion;
}
.mdp-blend-hue {
  mix-blend-mode: hue;
}
.mdp-blend-saturation {
  mix-blend-mode: saturation;
}
.mdp-blend-color {
  mix-blend-mode: color;
}
.mdp-blend-luminosity {
  mix-blend-mode: luminosity;
}
/* Transform
========================================================================== */
.mdp-transform-center {
  transform: translate(-50%, -50%);
}
/* Transform Origin
========================================================================== */
.mdp-transform-origin-top-left {
  transform-origin: 0 0;
}
.mdp-transform-origin-top-center {
  transform-origin: 50% 0;
}
.mdp-transform-origin-top-right {
  transform-origin: 100% 0;
}
.mdp-transform-origin-center-left {
  transform-origin: 0 50%;
}
.mdp-transform-origin-center-right {
  transform-origin: 100% 50%;
}
.mdp-transform-origin-bottom-left {
  transform-origin: 0 100%;
}
.mdp-transform-origin-bottom-center {
  transform-origin: 50% 100%;
}
.mdp-transform-origin-bottom-right {
  transform-origin: 100% 100%;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.mdp-flex {
  display: flex;
}
.mdp-flex-inline {
  display: inline-flex;
}
/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.mdp-flex::before,
.mdp-flex::after,
.mdp-flex-inline::before,
.mdp-flex-inline::after {
  display: none;
}
/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.mdp-flex-left {
  justify-content: flex-start;
}
.mdp-flex-center {
  justify-content: center;
}
.mdp-flex-right {
  justify-content: flex-end;
}
.mdp-flex-between {
  justify-content: space-between;
}
.mdp-flex-around {
  justify-content: space-around;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mdp-flex-left\@s {
    justify-content: flex-start;
  }
  .mdp-flex-center\@s {
    justify-content: center;
  }
  .mdp-flex-right\@s {
    justify-content: flex-end;
  }
  .mdp-flex-between\@s {
    justify-content: space-between;
  }
  .mdp-flex-around\@s {
    justify-content: space-around;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mdp-flex-left\@m {
    justify-content: flex-start;
  }
  .mdp-flex-center\@m {
    justify-content: center;
  }
  .mdp-flex-right\@m {
    justify-content: flex-end;
  }
  .mdp-flex-between\@m {
    justify-content: space-between;
  }
  .mdp-flex-around\@m {
    justify-content: space-around;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-flex-left\@l {
    justify-content: flex-start;
  }
  .mdp-flex-center\@l {
    justify-content: center;
  }
  .mdp-flex-right\@l {
    justify-content: flex-end;
  }
  .mdp-flex-between\@l {
    justify-content: space-between;
  }
  .mdp-flex-around\@l {
    justify-content: space-around;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .mdp-flex-left\@xl {
    justify-content: flex-start;
  }
  .mdp-flex-center\@xl {
    justify-content: center;
  }
  .mdp-flex-right\@xl {
    justify-content: flex-end;
  }
  .mdp-flex-between\@xl {
    justify-content: space-between;
  }
  .mdp-flex-around\@xl {
    justify-content: space-around;
  }
}
/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.mdp-flex-stretch {
  align-items: stretch;
}
.mdp-flex-top {
  align-items: flex-start;
}
.mdp-flex-middle {
  align-items: center;
}
.mdp-flex-bottom {
  align-items: flex-end;
}
/* Direction
 ========================================================================== */
.mdp-flex-row {
  flex-direction: row;
}
.mdp-flex-row-reverse {
  flex-direction: row-reverse;
}
.mdp-flex-column {
  flex-direction: column;
}
.mdp-flex-column-reverse {
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.mdp-flex-nowrap {
  flex-wrap: nowrap;
}
.mdp-flex-wrap {
  flex-wrap: wrap;
}
.mdp-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.mdp-flex-wrap-stretch {
  align-content: stretch;
}
.mdp-flex-wrap-top {
  align-content: flex-start;
}
.mdp-flex-wrap-middle {
  align-content: center;
}
.mdp-flex-wrap-bottom {
  align-content: flex-end;
}
.mdp-flex-wrap-between {
  align-content: space-between;
}
.mdp-flex-wrap-around {
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.mdp-flex-first {
  order: -1;
}
.mdp-flex-last {
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mdp-flex-first\@s {
    order: -1;
  }
  .mdp-flex-last\@s {
    order: 99;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mdp-flex-first\@m {
    order: -1;
  }
  .mdp-flex-last\@m {
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-flex-first\@l {
    order: -1;
  }
  .mdp-flex-last\@l {
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .mdp-flex-first\@xl {
    order: -1;
  }
  .mdp-flex-last\@xl {
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.mdp-flex-none {
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.mdp-flex-auto {
  flex: auto;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.mdp-flex-1 {
  flex: 1;
}
/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.mdp-margin {
  margin-bottom: 20px;
}
* + .mdp-margin {
  margin-top: 20px !important;
}
.mdp-margin-top {
  margin-top: 20px !important;
}
.mdp-margin-bottom {
  margin-bottom: 20px !important;
}
.mdp-margin-left {
  margin-left: 20px !important;
}
.mdp-margin-right {
  margin-right: 20px !important;
}
/* Small
 ========================================================================== */
.mdp-margin-small {
  margin-bottom: 10px;
}
* + .mdp-margin-small {
  margin-top: 10px !important;
}
.mdp-margin-small-top {
  margin-top: 10px !important;
}
.mdp-margin-small-bottom {
  margin-bottom: 10px !important;
}
.mdp-margin-small-left {
  margin-left: 10px !important;
}
.mdp-margin-small-right {
  margin-right: 10px !important;
}
/* Medium
 ========================================================================== */
.mdp-margin-medium {
  margin-bottom: 40px;
}
* + .mdp-margin-medium {
  margin-top: 40px !important;
}
.mdp-margin-medium-top {
  margin-top: 40px !important;
}
.mdp-margin-medium-bottom {
  margin-bottom: 40px !important;
}
.mdp-margin-medium-left {
  margin-left: 40px !important;
}
.mdp-margin-medium-right {
  margin-right: 40px !important;
}
/* Large
 ========================================================================== */
.mdp-margin-large {
  margin-bottom: 40px;
}
* + .mdp-margin-large {
  margin-top: 40px !important;
}
.mdp-margin-large-top {
  margin-top: 40px !important;
}
.mdp-margin-large-bottom {
  margin-bottom: 40px !important;
}
.mdp-margin-large-left {
  margin-left: 40px !important;
}
.mdp-margin-large-right {
  margin-right: 40px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-margin-large {
    margin-bottom: 70px;
  }
  * + .mdp-margin-large {
    margin-top: 70px !important;
  }
  .mdp-margin-large-top {
    margin-top: 70px !important;
  }
  .mdp-margin-large-bottom {
    margin-bottom: 70px !important;
  }
  .mdp-margin-large-left {
    margin-left: 70px !important;
  }
  .mdp-margin-large-right {
    margin-right: 70px !important;
  }
}
/* XLarge
 ========================================================================== */
.mdp-margin-xlarge {
  margin-bottom: 70px;
}
* + .mdp-margin-xlarge {
  margin-top: 70px !important;
}
.mdp-margin-xlarge-top {
  margin-top: 70px !important;
}
.mdp-margin-xlarge-bottom {
  margin-bottom: 70px !important;
}
.mdp-margin-xlarge-left {
  margin-left: 70px !important;
}
.mdp-margin-xlarge-right {
  margin-right: 70px !important;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-margin-xlarge {
    margin-bottom: 140px;
  }
  * + .mdp-margin-xlarge {
    margin-top: 140px !important;
  }
  .mdp-margin-xlarge-top {
    margin-top: 140px !important;
  }
  .mdp-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }
  .mdp-margin-xlarge-left {
    margin-left: 140px !important;
  }
  .mdp-margin-xlarge-right {
    margin-right: 140px !important;
  }
}
/* Auto
 ========================================================================== */
.mdp-margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.mdp-margin-auto-top {
  margin-top: auto !important;
}
.mdp-margin-auto-bottom {
  margin-bottom: auto !important;
}
.mdp-margin-auto-left {
  margin-left: auto !important;
}
.mdp-margin-auto-right {
  margin-right: auto !important;
}
.mdp-margin-auto-vertical {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mdp-margin-auto\@s {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mdp-margin-auto-left\@s {
    margin-left: auto !important;
  }
  .mdp-margin-auto-right\@s {
    margin-right: auto !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mdp-margin-auto\@m {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mdp-margin-auto-left\@m {
    margin-left: auto !important;
  }
  .mdp-margin-auto-right\@m {
    margin-right: auto !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-margin-auto\@l {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mdp-margin-auto-left\@l {
    margin-left: auto !important;
  }
  .mdp-margin-auto-right\@l {
    margin-right: auto !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .mdp-margin-auto\@xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mdp-margin-auto-left\@xl {
    margin-left: auto !important;
  }
  .mdp-margin-auto-right\@xl {
    margin-right: auto !important;
  }
}
/* Remove
 ========================================================================== */
.mdp-margin-remove {
  margin: 0 !important;
}
.mdp-margin-remove-top {
  margin-top: 0 !important;
}
.mdp-margin-remove-bottom {
  margin-bottom: 0 !important;
}
.mdp-margin-remove-left {
  margin-left: 0 !important;
}
.mdp-margin-remove-right {
  margin-right: 0 !important;
}
.mdp-margin-remove-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mdp-margin-remove-adjacent + *,
.mdp-margin-remove-first-child > :first-child {
  margin-top: 0 !important;
}
.mdp-margin-remove-last-child > :last-child {
  margin-bottom: 0 !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mdp-margin-remove-left\@s {
    margin-left: 0 !important;
  }
  .mdp-margin-remove-right\@s {
    margin-right: 0 !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mdp-margin-remove-left\@m {
    margin-left: 0 !important;
  }
  .mdp-margin-remove-right\@m {
    margin-right: 0 !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-margin-remove-left\@l {
    margin-left: 0 !important;
  }
  .mdp-margin-remove-right\@l {
    margin-right: 0 !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .mdp-margin-remove-left\@xl {
    margin-left: 0 !important;
  }
  .mdp-margin-remove-right\@xl {
    margin-right: 0 !important;
  }
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
.mdp-padding {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-padding {
    padding: 40px;
  }
}
/* Small
 ========================================================================== */
.mdp-padding-small {
  padding: 15px;
}
/* Large
 ========================================================================== */
.mdp-padding-large {
  padding: 30px;
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-padding-large {
    padding: 70px;
  }
}
/* Remove
 ========================================================================== */
.mdp-padding-remove {
  padding: 0 !important;
}
.mdp-padding-remove-top {
  padding-top: 0 !important;
}
.mdp-padding-remove-bottom {
  padding-bottom: 0 !important;
}
.mdp-padding-remove-left {
  padding-left: 0 !important;
}
.mdp-padding-remove-right {
  padding-right: 0 !important;
}
.mdp-padding-remove-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.mdp-padding-remove-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* ========================================================================
   Component: Position
 ========================================================================== */
/* Directions
 ========================================================================== */
/*
 * 1. Prevent content overflow if `max-width: 100%` is used inside position container.
 */
[class*='mdp-position-top'],
[class*='mdp-position-bottom'],
[class*='mdp-position-left'],
[class*='mdp-position-right'],
[class*='mdp-position-center'] {
  position: absolute !important;
  /* 1 */
  max-width: 100%;
}
/* Edges
 ========================================================================== */
/* Don't use `width: 100%` because it is wrong if the parent has padding. */
.mdp-position-top {
  top: 0;
  left: 0;
  right: 0;
}
.mdp-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}
.mdp-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}
.mdp-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}
/* Corners
 ========================================================================== */
.mdp-position-top-left {
  top: 0;
  left: 0;
}
.mdp-position-top-right {
  top: 0;
  right: 0;
}
.mdp-position-bottom-left {
  bottom: 0;
  left: 0;
}
.mdp-position-bottom-right {
  bottom: 0;
  right: 0;
}
/*
 * Center
 * 1. Fix text wrapping if content is larger than 50% of the container.
 */
.mdp-position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 1 */
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}
/* Vertical */
[class*='mdp-position-center-left'],
[class*='mdp-position-center-right'] {
  top: 50%;
  transform: translateY(-50%);
}
.mdp-position-center-left {
  left: 0;
}
.mdp-position-center-right {
  right: 0;
}
.mdp-position-center-left-out {
  right: 100%;
  width: max-content;
}
.mdp-position-center-right-out {
  left: 100%;
  width: max-content;
}
/* Horizontal */
.mdp-position-top-center,
.mdp-position-bottom-center {
  left: 50%;
  transform: translateX(-50%);
  /* 1 */
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}
.mdp-position-top-center {
  top: 0;
}
.mdp-position-bottom-center {
  bottom: 0;
}
/* Cover
 ========================================================================== */
.mdp-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* Utility
 ========================================================================== */
.mdp-position-relative {
  position: relative !important;
}
.mdp-position-absolute {
  position: absolute !important;
}
.mdp-position-fixed {
  position: fixed !important;
}
.mdp-position-z-index {
  z-index: 1;
}
/* Margin modifier
 ========================================================================== */
/*
 * Small
 */
.mdp-position-small {
  max-width: calc(100% - (15px * 2));
  margin: 15px;
}
.mdp-position-small.mdp-position-center {
  transform: translate(-50%, -50%) translate(-15px, -15px);
}
.mdp-position-small[class*='mdp-position-center-left'],
.mdp-position-small[class*='mdp-position-center-right'] {
  transform: translateY(-50%) translateY(-15px);
}
.mdp-position-small.mdp-position-top-center,
.mdp-position-small.mdp-position-bottom-center {
  transform: translateX(-50%) translateX(-15px);
}
/*
 * Medium
 */
.mdp-position-medium {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}
.mdp-position-medium.mdp-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.mdp-position-medium[class*='mdp-position-center-left'],
.mdp-position-medium[class*='mdp-position-center-right'] {
  transform: translateY(-50%) translateY(-30px);
}
.mdp-position-medium.mdp-position-top-center,
.mdp-position-medium.mdp-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
/*
 * Large
 */
.mdp-position-large {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}
.mdp-position-large.mdp-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.mdp-position-large[class*='mdp-position-center-left'],
.mdp-position-large[class*='mdp-position-center-right'] {
  transform: translateY(-50%) translateY(-30px);
}
.mdp-position-large.mdp-position-top-center,
.mdp-position-large.mdp-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-position-large {
    max-width: calc(100% - (50px * 2));
    margin: 50px;
  }
  .mdp-position-large.mdp-position-center {
    transform: translate(-50%, -50%) translate(-50px, -50px);
  }
  .mdp-position-large[class*='mdp-position-center-left'],
  .mdp-position-large[class*='mdp-position-center-right'] {
    transform: translateY(-50%) translateY(-50px);
  }
  .mdp-position-large.mdp-position-top-center,
  .mdp-position-large.mdp-position-bottom-center {
    transform: translateX(-50%) translateX(-50px);
  }
}
/* ========================================================================
   Component: Transition
 ========================================================================== */
/* Toggle (Hover + Focus)
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.mdp-transition-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/*
 * Remove outline for `tabindex`
 */
.mdp-transition-toggle:focus {
  outline: none;
}
/* Transitions
 ========================================================================== */
/*
 * The toggle is triggered on touch devices by two methods:
 * 1. Using `:focus` and tabindex
 * 2. Using `:hover` and a `touchstart` event listener registered on the document
 *    (Doesn't work on Surface touch devices)
 *
 * Note: Transitions don't work with `mdp-postion-center-*` classes because they also use `transform`,
 *       therefore it's recommended to use an extra `div` for the transition.
 */
.mdp-transition-fade,
[class*='mdp-transition-scale'],
[class*='mdp-transition-slide'] {
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
  opacity: 0;
}
/*
 * Fade
 */
.mdp-transition-toggle:hover .mdp-transition-fade,
.mdp-transition-toggle:focus .mdp-transition-fade,
.mdp-transition-active.mdp-active .mdp-transition-fade {
  opacity: 1;
}
/*
 * Scale
 */
.mdp-transition-scale-up {
  transform: scale(1, 1);
}
.mdp-transition-scale-down {
  transform: scale(1.1, 1.1);
}
/* Show */
.mdp-transition-toggle:hover .mdp-transition-scale-up,
.mdp-transition-toggle:focus .mdp-transition-scale-up,
.mdp-transition-active.mdp-active .mdp-transition-scale-up {
  opacity: 1;
  transform: scale(1.1, 1.1);
}
.mdp-transition-toggle:hover .mdp-transition-scale-down,
.mdp-transition-toggle:focus .mdp-transition-scale-down,
.mdp-transition-active.mdp-active .mdp-transition-scale-down {
  opacity: 1;
  transform: scale(1, 1);
}
/*
 * Slide
 */
.mdp-transition-slide-top {
  transform: translateY(-100%);
}
.mdp-transition-slide-bottom {
  transform: translateY(100%);
}
.mdp-transition-slide-left {
  transform: translateX(-100%);
}
.mdp-transition-slide-right {
  transform: translateX(100%);
}
.mdp-transition-slide-top-small {
  transform: translateY(-10px);
}
.mdp-transition-slide-bottom-small {
  transform: translateY(10px);
}
.mdp-transition-slide-left-small {
  transform: translateX(-10px);
}
.mdp-transition-slide-right-small {
  transform: translateX(10px);
}
.mdp-transition-slide-top-medium {
  transform: translateY(-50px);
}
.mdp-transition-slide-bottom-medium {
  transform: translateY(50px);
}
.mdp-transition-slide-left-medium {
  transform: translateX(-50px);
}
.mdp-transition-slide-right-medium {
  transform: translateX(50px);
}
/* Show */
.mdp-transition-toggle:hover [class*='mdp-transition-slide'],
.mdp-transition-toggle:focus [class*='mdp-transition-slide'],
.mdp-transition-active.mdp-active [class*='mdp-transition-slide'] {
  opacity: 1;
  transform: translate(0, 0);
}
/* Opacity modifier
 ========================================================================== */
.mdp-transition-opaque {
  opacity: 1;
}
/* Duration modifiers
 ========================================================================== */
.mdp-transition-slow {
  transition-duration: 0.7s;
}
/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden],
.mdp-hidden {
  display: none !important;
}
/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mdp-hidden\@s {
    display: none !important;
  }
}
/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mdp-hidden\@m {
    display: none !important;
  }
}
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mdp-hidden\@l {
    display: none !important;
  }
}
/* Large screen and bigger */
@media (min-width: 1600px) {
  .mdp-hidden\@xl {
    display: none !important;
  }
}
/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .mdp-visible\@s {
    display: none !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .mdp-visible\@m {
    display: none !important;
  }
}
/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .mdp-visible\@l {
    display: none !important;
  }
}
/* Desktop and smaller */
@media (max-width: 1599px) {
  .mdp-visible\@xl {
    display: none !important;
  }
}
/* Visibility
 ========================================================================== */
.mdp-invisible {
  visibility: hidden !important;
}
/* Toggle (Hover + Focus)
 ========================================================================== */
/*
 * Hidden
 * 1. The toggle is triggered on touch devices using `:focus` and tabindex
 * 2. The target stays visible if any element within receives focus through keyboard
 *    Doesn't work in Edge, yet.
 * 3. Can't use `display: none` nor `visibility: hidden` because both are not focusable.
 *
 */
/* 1 + 2 */
.mdp-visible-toggle:not(:hover):not(:focus) .mdp-hidden-hover:not(:focus-within) {
  /* 3 */
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
/*
 * Invisible
 */
/* 1 + 2 */
.mdp-visible-toggle:not(:hover):not(:focus) .mdp-invisible-hover:not(:focus-within) {
  /* 3 */
  opacity: 0 !important;
}
/*
 * 1. Prevent tab highlighting on iOS.
 */
.mdp-visible-toggle {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}
/*
 * Remove outline for `tabindex`
 */
.mdp-visible-toggle:focus {
  outline: none;
}
/* Touch
 ========================================================================== */
/*
 * Hide if primary pointing device has limited accuracy, e.g. a touch screen.
 * Works on mobile browsers: Safari, Chrome and Android browser
 */
@media (pointer: coarse) {
  .mdp-hidden-touch {
    display: none !important;
  }
}
/*
 * Hide if primary pointing device is accurate, e.g. mouse.
 * 1. Fallback for IE11 and Firefox, because `pointer` is not supported
 * 2. Reset if supported
 */
/* 1 */
.mdp-hidden-notouch {
  display: none !important;
}
@media (pointer: coarse) {
  .mdp-hidden-notouch {
    display: block !important;
  }
}

/* .\\ */
.mdp-dotnav-container .mdp-dotnav {
  margin: 20px; }

.elementor img.mdp-cover {
  max-width: none; }

.mdp-glider-elementor-box {
  margin-left: -10px;
  margin-right: -10px; }
.mdp-glider-elementor-box > .mdp-position-relative {
  overflow: hidden;
  padding: 10px; }
.mdp-glider-elementor-box .mdp-card-default {
  overflow: hidden; }
.mdp-glider-elementor-box .mdp-slider-items li > .mdp-cover-container {
  line-height: 0; }
.mdp-glider-elementor-box .mdp-slider-items li > .mdp-cover-container > div {
  line-height: 1.5;
  z-index: 2; }
.mdp-glider-elementor-box .mdp-slider-items li > .mdp-cover-container:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-color: transparent; }

.mdp-cover-stretch img{
  width: 100%;
}

/** RTL Support */
.rtl .mdp-position-center-left {
  left: auto;
  right: 0; }

.rtl .mdp-position-center-right {
  right: auto;
  left: 0; }
