// vendor cards start
.ac-single-card.vendor-card {
  outline: 1px solid $color-border;
  transition: 0s ease-in-out;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: $secondary-light-gray;
  min-width: 215px;
  padding: 30px 20px 20px;
  cursor: pointer;

  &.is-small {
    padding: 16px;
    .ac-card-logo {
      width: 48px;
      height: 48px;
      margin-bottom: 12px;
      padding: 8px;
    }
  }

  .ac-card-name {
    p {
      font-size: 1rem;
      color: $color-heading;
      line-height: 1;
      font-weight: 500;

      &.free {
        color: $ac-primary;
      }
    }
  }
  .ac-card-logo {
    width: 70px;
    height: 70px;
    border: 1px solid $color-border;
    background-color: $white-100;
    border-radius: 50%;
    padding: 16px;
    margin-inline: auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;

    img {
      width: 100%;
      height: auto;
    }
  }
  &.is-selected {
    outline: 2px solid $ac-primary !important;
  }
  &:hover {
    outline: 2px solid $ac-primary;

    .ac-card-title {
      h4 {
        a {
          color: $ac-primary;
        }
      }
    }
  }
}
