.unbox-top-nav {
  position: relative;
  border-bottom: 1px solid #edeef1;
}

a.nav-item-active {
  color: #e00000;
}
.nav-item-active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 149px;
  border-bottom: 2px solid #e00000;
}

a.unbox-btn-link {
  width: 191px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  border-radius: 25px;
}

a.unbox-btn-link.-outline {
  border: 1px solid #e00000;
  color: #e00000;
}

a.unbox-btn-link.-primary {
  background-color: #e00000;
  color: #fff;
}

a.announcement-btn-link {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  border-radius: 25px;
  background-color: #fff;
  color: #e00000;
  border: 1px solid #e00000;
}

a.announcement-btn-disabled {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  line-height: 20px;
  border-radius: 25px;
  background-color: #fff;
  color: rgba(26, 28, 30, 0.12);
  border: 1px solid rgba(26, 28, 30, 0.12);
}

.hide-new-row-desktop {
  display: none;
}
.hide-new-row-mobile {
  display: block;
}

.unbox-card {
  box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  gap: 4px;
}

section.bg-campaign {
  background: linear-gradient(
    138deg,
    #fff 42.36%,
    #ffd8e7 63.92%,
    #e7deff 78.35%,
    #bee9ff 100%
  );
}

.unbox-text-gradient {
  background: linear-gradient(
    310deg,
    #00c8ff -11.31%,
    #07c0f8 -4.45%,
    #1dace8 4.71%,
    #408bcc 15%,
    #6f60a9 27.58%,
    #b3207a 41.31%,
    #cc1550 51.61%,
    #e20b2d 61.9%,
    #f20514 71.05%,
    #fb0105 80.2%,
    #f00 87.07%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: max-content;
}

.unbox-text-primary {
  color: #e00000;
}

.unbox-accordion {
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--tds-sys-light-outline-variant, #f0f0f3);
  background: var(--tds-sys-light-surface, #fff);
}

.unbox-accordion-header {
  cursor: pointer;
  padding: 16px;
  width: 100%;
  text-align: left;
  transition: 0.3s ease;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.unbox-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.unbox-accordion-content div {
  padding: 16px;
}

.unbox-accordion-header.active::after {
  content: '';
  background-image: url('../images/icon.svg');
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  min-width: 24px;
  transform: rotate(180deg);
}

.unbox-accordion-header::after {
  content: '';
  background-image: url('../images/icon.svg');
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.announcement-card {
  box-shadow: 0px 1px 6px 1px rgba(0, 0, 0, 0.08);
  padding: 16px;
  background-color: #ffffff;
}
@media (max-width: 480px) {
  .hide-new-row-desktop {
    display: block;
  }
  .hide-new-row-mobile {
    display: none;
  }
  a.unbox-btn-link {
    width: 151px;
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  .hide-new-row-desktop {
    display: block;
  }
  .hide-new-row-mobile {
    display: none;
  }
}
