/* Qualification / certification line icons (Safety Certifications sheet). */
.cert-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #202020;
  background: #fff;
  color: #202020;
  box-sizing: border-box;
}
.cert-icon svg { width: 22px; height: 22px; display: block; }
.cert-icon.expiring { border-color: #A71F23; color: #A71F23; }
.cert-icon.expired { border-color: #A71F23; background: #A71F23; color: #fff; }
.cert-icon-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #202020;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  padding: 1px 3px;
  letter-spacing: 0.02em;
}
.cert-icon.expired .cert-icon-badge { background: #fff; color: #A71F23; }
.cert-icon.expiring .cert-icon-badge { background: #A71F23; color: #fff; }
