/*
NOTE: Autprefixing is done with the in browser version see https://autoprefixer.github.io/

Using this support string
'last 4 versions, not ie <= 10, not ie_mob <= 10'
*/

.Card {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  width: 100%;
  max-width: 980px;
  background: #fff;
  -webkit-box-flex: 1;
          flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
}

.Card-icon {
  border-radius: 50%;
  background-color: #ebedee;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  display: -webkit-box;
  display: flex;
  flex-shrink: 0;
}

.Card-delimiter {
  background: #ced3d5;
  height: 1px;
  width: 100%;
  border: none;
  margin: 0;
}

@media only screen and (min-device-width: 426px) {
  .Card {
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(60,78,88,0.30);
            box-shadow: 0 1px 2px 0 rgba(60,78,88,0.30);
    min-height: 640px;
  }

  .Card-content {
    padding: 24px 80px 0;
  }

  .Card-header {
    padding: 8px 0;
  }
}

@media print {
  .Card {
    max-width: 100%;
  }
}