#promo-banner {
  padding-bottom: 3%;
  min-height: 135px;
}

#promo-wrapper.preload {
  visibility: hidden;
  pointer-events: none;
}

.dsnes-promo-tile {
  display: flex !important;
  width: 23.4375rem;
  padding: 1.5rem 1rem 0rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dsnes-promo-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}

.dsnes-promo-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dsnes-promo-title {
  all: unset;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.01563rem;
  color: #655032;
}

.dsnes-promo-description {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.01563rem;
  color: #655032;
}

.dsnes-promo-subtext {
  all: unset;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.01563rem;
  color: #17171a;
}

.dsnes-promo-codes-container {
  display: flex;
  gap: 0.75rem;
}

.dsnes-promo-codes {
  display: flex;
  gap: 0.5rem;
}

.dsnes-promo-offer-code {
  border: 0;
  color: black;
  border-radius: 0.25rem;
  background: #e0c99e;
  height: 1rem;
  padding: 0 0.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  display: flex;
  line-height: 120%;
  align-self: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  cursor: pointer;
}

.dsnes-notification-container {
  position: fixed;
  top: 5rem;
  left: 50%;
  z-index: 9999;
  transform: translateX(-50%);
}
.dsnes-notification {
  align-items: center;
  background-color: #f6f6f6;
  border-radius: 0.5rem;
  box-sizing: border-box;
  color: #17171a;
  display: flex;
  gap: 0.5rem;
  inline-size: 100%;
  padding: 1rem;
  text-align: start;
  background-color: #e9f1ee;
}
.dsnes-notification > p {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.015625rem;
  line-height: 1.5;
  line-height: 1.2;
  margin: 0;
  padding-top: 0.125rem;
}
.dsnes-notification > button {
  all: unset;
  cursor: pointer;
  height: 24px;
}

/* Custom styles for Slick arrows */
.dsnes-promo-slick-prev,
.dsnes-promo-slick-next {
  background-color: transparent;
  color: none; /* Arrow color */
  border: none; /* Remove default border */
  width: 40px; /* Width of the arrows */
  height: 40px; /* Height of the arrows */
  display: flex; /* Center align */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  position: absolute;
  top: 40%;
  z-index: 2;
  cursor: pointer;
}
/* Positioning arrows */
.dsnes-promo-slick-prev {
  left: 5%; /* Position from the left */
}
.dsnes-promo-slick-next {
  right: 5%; /* Position from the right */
}
.dsnes-promo-modal-list {
  list-style: none;
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.slick-dots > li > button {
  opacity: 0;
}
.slick-dots > li {
  height: 8px;
  width: 8px;
  background-color: rgb(204, 204, 204);
  border: 1px solid rgb(204, 204, 204);
  border-radius: 50%;
  margin: 0px 5px;
}
.slick-dots > .slick-active {
  background-color: rgb(0, 0, 0);
  border: 1px solid rgb(0, 0, 0);
}

@media screen and (max-width: 767px) {
  .dsnes-promo-body {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .dsnes-promo-tags {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  .dsnes-promo-detail-footer {
    display: none;
  }

  .dsnes-promo-codes {
    flex-direction: column;
    gap: 0.25rem;
  }

  .dsnes-promo-offer-code {
    align-self: flex-start;
  }
}

@media screen and (min-width: 768px) {
  #promo-banner {
    padding-bottom: 1%;
  }

  .dsnes-promo-tile {
    width: 47rem;
    padding: 1.5rem 1rem 1rem;
  }

  .dsnes-promo-body {
    align-items: center;
  }

  .dsnes-promo-detail-tag {
    display: none;
  }

  .dsnes-promo-details {
    flex-direction: row;
    gap: 2rem;
  }

  .dsnes-promo-title {
    font-size: 1.25rem;
  }

  .dsnes-promo-subtext {
    align-self: center;
  }

  .dsnes-promo-subtext::after {
    content: ':';
  }
}

