.data-provider {
  display: flex;
  flex-direction: row;
  align-items: center;

  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  margin: 20px 0;
  padding: 20px;
}

.data-provider .data-provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  margin: 0 0.5rem;
  height: auto;
  flex-shrink: 0;
}

.data-provider .data-provider-logo img {
  width: 100%;
}

.data-provider .data-provider-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-right: 20px;
  margin-left: 20px;
}
.data-provider .data-provider-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.data-provider .data-provider-description {
  font-size: 16px;
}

.data-provider .data-provider-cta {
  flex-shrink: 0;
}
