.x-divider {
  display: block;
  height: 0;
  max-height: 0;
  border-style: solid;
  border-width: thin 0 0 0;
  opacity: 0.12;
}

.x-card {
  position: relative;
  display: inline-block;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-transition-duration: 0.28s;
          transition-duration: 0.28s;
  -webkit-transition-property: opacity, background, -webkit-box-shadow;
  transition-property: opacity, background, -webkit-box-shadow;
  transition-property: box-shadow, opacity, background;
  transition-property: box-shadow, opacity, background, -webkit-box-shadow;
}
.x-card .x-divider {
  margin: 0 12px 4px 12px;
}
.x-card-progress-linear {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  z-index: 9;
}
.x-card.x-card--hover:hover {
  -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.x-card.x-card--elevated {
  background: #fff;
  color: black;
  -webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.x-card.x-card--tonal .x-card-underlay {
  background: currentColor;
  opacity: 0.12;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.x-card.x-card--outlined {
  border: 1px solid currentColor;
}
.x-card.x-card--flat {
  background: #fff;
  color: black;
}
.x-card-media {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.x-card-media > img {
  width: 100%;
}
.x-card-title {
  font-size: 20px;
  padding: 16px;
}
.x-card-title + .x-card-subtitle {
  margin-top: -16px;
  padding-top: 0;
}
.x-card-title + .x-card-content {
  padding-top: 0;
}
.x-card-subtitle {
  opacity: 0.6;
  font-size: 14px;
  padding: 16px;
}
.x-card-subtitle + .x-card-content {
  padding-top: 0;
}
.x-card-content {
  padding: 16px;
}
.x-card-body {
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.x-card-footer {
  padding: 8px;
}