.raffle-card {
  width: 100%;
  display: flex;
  border-radius: var(--br-10);
  height: 100%;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.raffle-card-indicator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15rem;
  height: .4rem;
  border-radius: 0 0 6.25rem 6.25rem;
}

.raffle-card-header {
  display: flex;
  flex-direction: column;
}

.raffle-card-image {
  height: 16rem;
  position: absolute;
  width: 22rem;
}

.raffle-card-details {
  width: 100%;
  position: relative;
  display: flex;
  height: 100%;
  padding: 2rem;
  flex-direction: column;
  justify-content: space-between;
  min-height: 18.75rem;
}

.raffle-card-title {
  font-size: 22px;
  font-weight: 700;
}

.raffle-card-subtitle {
  margin: 0 0 15px;
  color: #aaa;
  font-size: 14px;
}

.raffle-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.raffle-card-price {
  border-radius: 10px;
  font-weight: var(--font-weight-8);
  font-size: 17px;
  padding: .5rem 1rem;
  background: var(--bg);
  color: var(--money);
}

.raffle-card__button {
  background: var(--button);
  color: var(--text-custom);
  padding: .5rem 1rem;
  font-weight: var(--font-weight-5);
  border-radius: var(--br-10);
  font-size: var(--font-size-m);
  border: 2px solid #ffffff04;
  transition: .25s;
  cursor: pointer;
}

.raffle-card__button:hover 
{
  color: var(--text-default);
  background: var(--span);
}


.raffle-none-content {
  border-radius: var(--br-10);
  background: var(
  --card);
  position: relative;
  display: flex;
  height: 100%;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.raffle-none-img {
  left: 0;
  top: 0;
  height: 100%;
  object-fit: none;
  position: absolute;
  width: 100%;
}

.raffle-none-header {
  position: relative;
  display: flex;
  height: 100%;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.raffle-none-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.raffle-none-info-text {
  font-size: 25px;
  font-weight: 700;
}

.raffle-none-info-desc {
  color: #aaa;
  font-size: 15px;
}

.raffle-admin-btn {
  border: unset;
  background: unset;
  padding: unset;
  z-index: 1;
  top: 1rem;
  position: absolute;
  right: 1.5rem;
}

.raffle-admin-btn:hover {
  background: unset;
}

.raffle-admin-btn:focus {
  border: unset;
}

.raffle-admin-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.raffle-none-btn {
  gap: 0.5rem;
  font-size: 17px;
  display: flex;
  background: var(--span);
  color: var(--text-default);
  padding: 10px 15px;
  font-weight: var(--font-weight-7);
  border-radius: var(--br-7);
  transition: all 0.25s;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.card.raffle-preview {
  background: var(--transparent-2-w);
}