.custom-card {
  position: relative;
  z-index: 555;
  max-width: 20rem;
  min-height: 20rem;
  width: 90%;
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
  box-shadow: 1px 12px 25px rgba(0, 0, 0, 0.78);
  border-radius: 2.25rem;
}

.custom-card::before {
  position: absolute;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.25rem;
  z-index: -1;
  border: 0.155rem solid transparent;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.custom-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8em 1.5em;
}

.custom-card-header .date {
  color: #ddd;
}

.custom-card-header svg {
  color: #fff;
  width: 2.5rem;
  cursor: pointer;
}

.custom-card-body {
  text-align: center;
  padding: 1.5em;
}

.custom-card-body h3 {
  color: #fff;
  font-size: 1.375rem;
  margin-top: 0.625em;
  text-transform: capitalize;
  font-weight: 600;
}

.custom-card-body p {
  color: #ddd;
}

.custom-progress {
  margin-top: 0.938rem;
}

.custom-progress-bar {
  width: 100%;
  background: #363636;
  height: 0.313rem;
  border-radius: 3.125rem;
  position: relative;
}

.custom-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 3.125rem;
}

.custom-progress span {
  color: #fff;
  font-weight: 600;
}

.custom-card-footer {
  display: flex;
  justify-content: space-between;
  padding: 0.7em 1.5em;
  background: #151419;
  border-bottom-left-radius: 2.25rem;
  border-bottom-right-radius: 2.25rem;
}

.custom-card-footer ul {
  display: flex;
  align-items: center;
}

.custom-card-footer ul li {
  list-style: none;
  margin-right: -0.625rem;
}

.custom-card-footer ul li img {
  border-radius: 50%;
  width: 1.875rem;
  height: 1.875rem;
  object-fit: cover;
}


.custom-btn-countdown {
  background: #222127;
  color: #fff;
  border-radius: 2em;
  padding: 0.625rem 1.5rem;
}

.custom-green {
  background: radial-gradient(ellipse at right top, #107667ed 0%, #151419 47%, #151419 100%);
}

.custom-green::before {
  background: linear-gradient(45deg, #232228, #232228, #01c3a8) border-box;
}

.custom-green .custom-btn-add {
  background: #01c3a8;
}

.custom-green .custom-progress-bar::after {
  width: 90%;
  background: #01c3a8;
}
.custom-blue {
  background: radial-gradient(ellipse at right top, #104a76ed 0%, #151419 47%, #151419 100%);
}

.custom-blue::before {
  background: linear-gradient(45deg, #232228, #232228, #017ac3) border-box;
}

.custom-blue .custom-btn-add {
  background: #017ac3;
}

.custom-red {
  background: radial-gradient(ellipse at right top, #761010ed 0%, #151419 47%, #151419 100%);
}

.custom-red::before {
  background: linear-gradient(45deg, #232228, #232228, #c30101) border-box;
}



.custom-orange {
  background: radial-gradient(ellipse at right top, #765010ed 0%, #151419 47%, #151419 100%);
}



