.bg-primary {
  background: #2f55d4;
}

.bg-secondary {
  background: #5a6d90;
}

.bg-success {
  background: #2eca8b;
}

.bg-danger {
  background: #e43f52;
}

.bg-warning {
  background: #f17425;
}

.bg-info {
  background: #17a2b8;
}

.bg-light {
  background: #f8f9fc;
}

.bg-white {
  background: #fff;
}

.bg-dark {
  background: #3c4858;
}

.bg-muted {
  background: #8492a6;
}

.bg-soft-primary {
  background: rgba(47, 85, 212, 0.1);
}

.bg-soft-secondary {
  background: rgba(90, 109, 144, 0.1);
}

.bg-soft-success {
  background: rgba(46, 202, 139, 0.1);
}

.bg-soft-danger {
  background: rgba(228, 63, 82, 0.1);
}

.bg-soft-warning {
  background: rgba(241, 116, 37, 0.1);
}

.bg-soft-info {
  background: rgba(23, 162, 184, 0.1);
}

.bg-soft-light {
  background: rgba(248, 249, 252, 0.1);
}

.bg-soft-dark {
  background: rgba(60, 72, 88, 0.1);
}

.bg-soft-muted {
  background: rgba(132, 146, 166, 0.1);
}

.card-icon {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 1px;
  pointer-events: none;
  margin: 30px 0;
}
@media only screen and (max-width: 992px) {
  .card-icon {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 450px) {
  .card-icon {
    grid-template-columns: 1fr;
  }
}
.card-icon .card-icon-content {
  text-align: center;
  box-shadow: 0 0 0 1px #EEEEEE;
  min-height: 268px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  position: relative;
  padding: 30px;
}
.card-icon .card-icon-content .card-icon-title {
  padding-top: 15px;
  font-size: 1.25rem;
  line-height: 1.5rem;
  z-index: 1;
}
.card-icon .card-icon-content .draw-svg {
  position: relative;
  z-index: 1;
}
.card-icon .card-icon-content .draw-svg svg path {
  fill: #292E6F;
}
.card-icon .card-icon-content .draw-svg img {
  max-width: 100%;
  height: auto;
}
.card-icon .card-icon-content a {
  z-index: 0;
  pointer-events: all;
}
.card-icon .card-icon-content a:hover {
  background: #292E6F;
}
.card-icon .card-icon-content a:hover ~ .card-icon-title {
  color: #fff;
}
.card-icon .card-icon-content a:hover ~ div svg path {
  fill: #fff !important;
}
.card-icon svg {
  width: 100px;
  height: 100px;
}

/*# sourceMappingURL=icon_card.css.map */
