.dito-ott-popups {
  .overlay {
    display: none;
    background: #000;
    opacity: 0.5;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .overlay.active {
    display: block;
  }
  .popup h3 {
    color: var(--Black, #2A2A2A);
    text-align: center;
    font-family: Outfit;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px; /* 116% */
  }
  @media screen and (max-width: 767px) {
    .popup h3 {
      margin-top: 24px;
      color: var(--Black, #2A2A2A);
      text-align: center;

      /* Mobile H1 */
      font-family: Outfit;
      font-size: 26px;
      font-style: normal;
      font-weight: 700;
      line-height: 32px; /* 123.077% */
    }
  }
  .popup {
    overflow: auto;
    border-radius: 40px;
    z-index: 1000;
    display: none;
    background: white;
    max-height: 90vh;
    width: 1024px;
    max-width: 90vw;
    padding: 64px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  @media screen and (max-width: 1440px) {
    .popup {
      padding: 32px;
    }
  }
  @media screen and (max-width: 767px) {
    .popup {
      padding: 24px;
    }
  }
  .popup.active {
    display: block;
  }
  .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    background-color: #DB1229;
    border: none;
    border-radius: 50%;
    cursor: pointer;
  }
  /* Create the cross */
  .close-btn::before,
  .close-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 3px;
    background-color: #fff;
    transform-origin: center;
  }

  .close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  @media screen and (max-width: 1440px) {
    .box-container {
      gap: 12px;
    }
  }
  @media screen and (max-width: 767px) {
    .box-container {
      gap: 8px;
    }
  }
.item-wrapper {
  position: relative;
  padding: 2px;
  border-radius: 32px 32px 32px 0;
  border: 1px solid #ECEFF1;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.item-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    #ff1a1a 0%,
    #ff4d1a 15%,
    #ff7a1a 30%,
    #a3476b 50%,
    #5a2a7a 70%,
    #2a2a8a 85%,
    #1a1a7a 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.item {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 142px;
  height: 128px;
  padding: 14px;
  justify-content: space-between;
  align-items: center;

  background: #fff;
  border-radius: 30px 30px 30px 0;
}

.item-wrapper:hover::before {
  opacity: 1;
}

.item-wrapper:hover {
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {

  .item-wrapper {
    border-radius: 24px 24px 24px 0;
    padding: 2px;
  }

  .item-wrapper::before {
    border-radius: inherit; 
  }

  .item {
    width: 100px;
    height: 100px;
    padding: 6px;
    gap: 8px;
    border-radius: 22px 22px 22px 0;
  }
}
  .item .img-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
  }
  }
  .item img {
    object-fit: contain;
    max-height: 70px; 
  }
  .item p {
    text-align: center;
    margin: 0;
    color: var(--Black, #2A2A2A);
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
  }
  @media screen and (max-width: 1024px) {
    .item p {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 400px) {
    .item p {
      font-size: 12px;
    }
  }
}