.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.textHeader {
  color: #939393;
}

.icon-header {
  color: #f1b291;
}

.bg-pink {
  background: #f575b2;
  padding: 10px;
  color: #ffffff;
}

.bg-darkpink {
  background: #f4b1bd;
  color: #ffffff;
}

.btn-pink {
  background: #e8317e;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #e00e66 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 4px 0 0 #e00e66, 0 8px 8px 1px rgba(0, 0, 0, 0.5);
}

.bg-blue {
  background: #7acec1;
  color: #fff;
  padding: 10px;
}

.bg-red {
  background: #f57576;
  color: #ffffff;
  padding: 10px;
}

.btn-blue {
  background: #5cc5b6;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #5cc5b6 inset, 0 0 0 2px rgba(255, 255, 255, 0.15) inset, 0 4px 0 0 #5cc5b6, 0 8px 8px 1px rgba(0, 0, 0, 0.5);
}

