﻿.info-card-link {
  display: block;
  color: black;
}

.info-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: white;
  padding: 32px;
}
.info-card:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 4px 8px 0px;
  pointer-events: none;
}
.info-card:before {
  transition: box-shadow 0.25s ease-in-out;
}
.info-card:hover:before {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 16px 32px 0px;
}
.info-card .icon {
  display: none;
  flex-shrink: 0;
  text-align: left;
  border-radius: 1000px;
  background-color: rgba(134, 62, 168, 0.1);
  color: #863EA8;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: 32px;
}
@media screen and (min-width: 700px) {
  .info-card .icon {
    display: flex;
    width: 56px;
    height: 56px;
    font-size: 37.3333333333px;
  }
}
.info-card.qct-info-card-muted .icon {
  background-color: rgba(115, 115, 115, 0.1);
  color: #737373;
}
.info-card .detail {
  flex: 1;
  font-size: 16px;
  width: calc(100% - 88px);
  overflow: hidden;
}
.info-card .detail .sub-heading {
  color: #666666;
  font-weight: 300;
  margin-bottom: 8px;
}
.info-card .detail .heading {
  font-weight: 700;
  margin-bottom: 8px;
}
.info-card .detail .text {
  overflow-wrap: break-word;
}
