/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 20px;
  font-weight: 600;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

.card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
    color: #4154f1;
    background: #f6f6fe;
  
  }
  
  
  .smallModal {
    max-width:calc(100vw - 30px);
    margin:auto;
  }

  /* Hide on small devices, show on medium and large */
.hide-sm-show-md-lg {
  display: none;
}

@media (min-width: 768px) {  /* Example: Tablets and larger */
  .hide-sm-show-md-lg {
    display: inline-flex;
  }
  .smallModal {
    max-width:unset
  }
}

/* Show on small devices, hide on medium and large */
.show-sm-hide-md-lg {
  display: inline-flex;
}

@media (min-width: 768px) {  /* Example: Tablets and larger */
  .show-sm-hide-md-lg {
    display: none;
  }

}
