.product-card {
  border-radius: 20px;
  padding: 24px;
  background-color: white;
  box-shadow: 1px 1px 10px gray;
  width: 100px;
}

.product-card-title {
  font-size: 20px;
  font-weight: 700;

  font-size: clamp(
    16px,
    calc(20px + (20 - 16) * ((100vw - 350px) / (1800 - 350))),
    20px
  );
}

.inf {
  background-color: #0000000d;
  border-radius: 24px;
  color: #00000080;
  padding: 4px 12px;
  font-size: 12px;
}

.border_top {
  border-top: 1px solid #0000001f;
}

.link {
  background-color: #217af933;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  color: #217af9;
}

.register {
  background-color: #217af9;
  border: none;
  color: white;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
}

.widgets {
  display: flex;
  column-gap: 8px;
  position: absolute;
  top: -1rem;
}

.closing_today {
  background-color: #e43d3d;
  color: white;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 2rem;
  font-weight: 500;
}

.trending_now {
  background-color: #fb6c09;
  color: white;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 2rem;
  font-weight: 500;
}

.students {
  background-color: #2d8993;
  color: white;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 2rem;
  font-weight: 500;
}

.olymp-logo {
  max-width: 89px;
  max-height: 89px;
}

.notif-sign{
  border: none;
  color: white;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
  background-color: #217AF933;
  color: #217af9;
}

:host {
  display: flex;
  flex: 1 1 0;
}

.product_card_modal_bg{
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: black;
  opacity: 0.6;
  z-index: 1;
}

.product_card_modal_email{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 320px;
  transform: translate(-50% , -50%);
  /* opacity: 0.6; */
  z-index: 3;
}


@media (max-width: 950px) {
  .product-card {
    padding: 20px;
  }
}
