.dolphin-btn {
  	border-radius: 5px !important;
    background: white !important;
    border: 1px solid #ECF0F1!important;
    color: #5d6d7e !important;
    font-size: 13px !important;
    margin:1px;
    padding:3px;
    text-align: center;
    color: #3498DB !important;
    text-decoration: none;
}
 
.dolphin-btn-cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dolphin-btn-cards__item {
  display: flex;
  padding: 1px;
  @media(min-width: 40rem) {
    width: 50%;
  }
  @media(min-width: 56rem) {
    width: 33.3333%;
  }
}

.dolphin-btn-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  &:hover {
    .card__image {
      filter: contrast(100%);
    }
  }
}

.dolphin-btn-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 5px;
  width: 230px;
  height: 290px;
}

.dolphin-btn-card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(95%);
  //filter: saturate(180%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(.43,.41,.22,.91);;
  &::before {
    content: "";
	  display: block;
    padding-top: 56.25%; // 16:9 aspect ratio
  }
  @media(min-width: 40rem) {
    &::before {
      padding-top: 66.6%; // 3:2 aspect ratio
    }
  }
}

.dolphin-btn-card__title {
  color: @gray-dark;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dolphin-btn-card__text {
  flex: 1 1 auto;
  font-size: 10px;
  margin: 0px;
}

.truncate-220 {
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 220px;
	vertical-align: bottom;
}
