@-webkit-keyframes ajax-spinner {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg); } }

@keyframes ajax-spinner {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg); } }

.full-card {
  position: relative; }
  .full-card .full-card__border-wrapper {
    position: relative;
    padding: 0.5rem; }
    .full-card .full-card__border-wrapper::before {
      content: '';
      opacity: 0; }
  @media (min-width: 1024px) {
    .full-card:hover .full-card__border-wrapper::before {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      border: 1px solid #F3F3F4;
      opacity: 1; } }
  .full-card .full-card__interior__bottom > * {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    z-index: 2; }

.full-card__feature-text {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 0.75rem 3rem;
  background-color: #CDCDCD;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  white-space: nowrap;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 1; }

.full-card__interior {
  padding: 1.5rem;
  background-color: #F3F3F4; }

.full-card__interior__top__media img {
  height: 100%;
  width: 100%; }

.full-card__interior__bottom__title * {
  margin-top: 4rem;
  margin-bottom: 0.5rem; }

.full-card__interior__bottom__description {
  margin-bottom: 2rem; }
  @media (min-width: 1024px) {
    .full-card__interior__bottom__description {
      min-height: 75px; } }

.full-card__interior__bottom__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem; }
  .full-card__interior__bottom__link > * {
    width: auto;
    padding: 8px 20px;
    text-decoration: none;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
    cursor: pointer;
    border: 2px solid #FFF;
    border-radius: 0;
    background-color: #000;
    color: #FFF;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    z-index: 3; }
    .full-card__interior__bottom__link > *:hover {
      background-color: #FFF;
      color: #000;
      text-decoration: none;
      -webkit-transition: all 150ms ease;
      transition: all 150ms ease; }
    .full-card__interior__bottom__link > *:hover a {
      color: #000; }
  .full-card__interior__bottom__link a {
    color: #FFF;
    text-decoration: none; }
