.sinle-offer-new {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 50px;
  border: 1px solid var(--blue);
  height: calc(((var(--vh, 1vh) * 100) - var(--headerHeight) - 100px));
}

.sinle-offer-new .wrapper {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  height: 100%;
}

.sinle-offer-new .offers-left {
  background: #f2f4f7;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border-inline-end: 1px solid var(--blue);
}

.sinle-offer-new .offer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 1px solid var(--blue);
  position: relative;
}
.sinle-offer-new .offer-item:has(+ .add-link) {
  border-bottom-color: transparent;
}
.sinle-offer-new .offer-item:hover {
  /*background: #0c86ba99;
  transform: translateX(5px);*/
}
.sinle-offer-new .add-link:hover {
  border-color: #01b67a;
  background: #f0fdf4;
  color: #01b67a;
}

.sinle-offer-new .offer-item.active,
.sinle-offer-new .coupon-item.active {
  background: var(--blue);
}

.sinle-offer-new .main-content {
  background: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  min-height: calc(100vh - 230px);
}

.sinle-offer-new .promo-header {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 15px 30px;
  text-align: center;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sinle-offer-new .promo-header h1 {
  color: white;
  font-size: 2.5em;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  letter-spacing: 2px;
}

.sinle-offer-new .image-viewer {
  background: #f5f5f5;
  padding: 10% 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sinle-offer-new .slider-container {
  position: relative;
  width: 100%;
  /*height: calc(100vh - 370px);*/
  overflow: hidden;
  border-radius: 10px;
  min-height: 400px;
}

.sinle-offer-new .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.sinle-offer-new .slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sinle-offer-new .slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sinle-offer-new .slide-placeholder {
  font-size: 4em;
  color: white;
}

.sinle-offer-new .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5em;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10;
}

.sinle-offer-new .slider-nav:hover {
  background: var(--blue);
}

.sinle-offer-new .slider-nav.prev {
  left: 20px;
}

.sinle-offer-new .slider-nav.next {
  right: 20px;
}

.sinle-offer-new .slider-nav.active {
  display: flex;
}

.sinle-offer-new .slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.sinle-offer-new .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.sinle-offer-new .dot.active {
  background: var(--blue);
  transform: scale(1.3);
}

.sinle-offer-new .viewer-title {
  text-align: center;
  font-size: 1.5em;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.sinle-offer-new .coupons-right {
  background: #f2f4f7;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border-inline-start: 1px solid var(--blue);
}

.sinle-offer-new .coupon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 1px solid var(--blue);
  position: relative;
}
.sinle-offer-new .offer-item:has(+ .add-link) {
  border-bottom-color: transparent;
}
.sinle-offer-new .coupon-item:hover {
  /*background: rgb(4 115 178 / 79%);
  transform: translateX(-5px);*/
}

.sinle-offer-new .welcome-message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #666;
  font-size: 1.5em;
}

.sinle-offer-new .image-viewer .slick-arrow {
  top: 42%;
}

.sinle-offer-new .offer-item:has(.media-wrapper),
.sinle-offer-new .coupon-item:has(.media-wrapper) {
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 10px;
}
.sinle-offer-new .media-wrapper {
  position: relative;
  padding-top: 76%;
  overflow: hidden;
  width: 100%;
  margin-bottom: 7px;
}
.sinle-offer-new .media-wrapper > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.sinle-offer-new .add-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px dashed #d1d5db;
  transition: all 0.2s;
  cursor: pointer;
  color: #115c7c;
  aspect-ratio: 1/1;
}
.sinle-offer-new .offer-action img {
  height: auto;
  width: 100%;
  max-width: 20px;
  object-fit: cover;
  margin: 0px;
  position: static;
}
.offer-action a.delete-item img {
  max-width: 17px;
}
.sinle-offer-new .offer-action {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  margin-bottom: 10px;
  position: absolute;
  top: 0;
  z-index: 9;
}
.sinle-offer-new .offer-action > a {
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  background-color: var(--blue);
  padding: 0px;
}
.sinle-offer-new .offer-item.active .offer-action > a:not(:hover),
.sinle-offer-new .coupon-item.active .offer-action > a:not(:hover) {
  background-color: var(--gold);
}
/*.sinle-offer-new .offer-item.active .offer-action > a:not(:hover) > img,
.sinle-offer-new .coupon-item.active .offer-action > a:not(:hover) > img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(36%) saturate(5020%) hue-rotate(200deg) brightness(98%) contrast(101%);
}*/
.sinle-offer-new .offer-action > a:hover {
  background-color: var(--gold);
}
.sinle-offer-new .flyer-data {
  line-height: 1.2;
}
.sinle-offer-new .offer-action > a + a {
  border-inline-start: 0;
}
.sinle-offer-new .flyer-data small {
  font-weight: 400;
  color: var(--blue);
  font-size: 12px;
}
.sinle-offer-new .offer-item.active .flyer-data small,
.sinle-offer-new .coupon-item.active .flyer-data small {
  color: #ffffff;
}
.sinle-offer-new .media-wrapper:has(.pdf-icon) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  padding: 10px;
}
.sinle-offer-new .media-wrapper .pdf-icon {
  max-width: 50px;
}
.sinle-offer-new .media-wrapper .pdf-icon svg path {
  stroke: var(--blue);
}
.sinle-offer-new .media-wrapper:has(.pdf-icon) p {
  font-size: 12px;
  color: var(--blue);
  line-height: 1.4;
}
.sinle-offer-new .offer-action > a:has(+ a) {
  margin-inline-end: 1px;
}
.sinle-offer-new .coupons-right:has(.no-data-msg),
.sinle-offer-new .offers-left:has(.no-data-msg) {
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background-color: #ffffff;
  padding: 10px;
  text-align: center;
}
.offer-content-wrapper {
  margin: 30px 0px;
}
.sinle-offer-new .coupons-right::-webkit-scrollbar,
.sinle-offer-new .offers-left::-webkit-scrollbar {
  width: 4px;
}
.sinle-offer-new .coupons-right::-webkit-scrollbar-thumb,
.sinle-offer-new .offers-left::-webkit-scrollbar-thumb {
  background-color: rgb(0 43 91 / 25%);
}
.single-offer-page .details-columns-wrapper {
  margin-top: 0px;
}
.sinle-offer-new .image-viewer:has(#pdfLoader) {
  padding: 20px;
}
.sinle-offer-new .slider-container #pdfViewer {
  transform: scale(1.5);
}
.sinle-offer-new .slider-container #pdfViewer canvas {
  transform: scale(0.5);
}

/*-*/

.coupon_list_row {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: start;
  margin: -4px;
}
.coupon_list_row .coupon-column {
  padding: 4px;
}

.coupon_list_row.grid_view .coupon-column {
  width: 20%;
}

.coupon_list_row .coupon-column .coupon-item {
  background: #f2f4f7;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
.coupon_list_row .coupon-column .coupon-item .media-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: calc(100% + 12%);
}
.coupon_list_row .coupon-column .coupon-item .media-wrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.coupon_list_row .coupon-column .coupon-item .coupon-content {
  padding: 15px;
  color: var(--blue);
  font-weight: 500;
  display: none;
}

/*-*/
@media only screen and (min-width: 992px) {
  .single-offer-page .sidebar-inner {
    height: calc(((var(--vh, 1vh) * 100) - var(--headerHeight) - 100px));
  }
  .single-offer-page .sidebar-inner .sidebar-banner {
    border-radius: 14px;
    overflow: hidden;
    height: calc(50% - 15px);
  }
  .single-offer-page .sidebar-inner .sidebar-banner img {
    height: 100%;
    object-fit: cover;
  }
}

@media only screen and (max-width: 1199px) {
  .coupon_list_row.grid_view .coupon-column {
    width: 25%;
  }
}

@media only screen and (max-width: 991px) {
  .sinle-offer-new {
    height: auto;
  }
  .sinle-offer-new .wrapper {
    display: flex;
    flex-direction: column;
  }
  .sinle-offer-new .offers-left,
  .sinle-offer-new .coupons-right {
    max-height: 200px;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: auto;
    width: 100%;
  }
  .sinle-offer-new .image-viewer {
    min-height: initial;
    aspect-ratio: 1/1;
    border-top: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    height: 100%;
    padding: 20px;
  }
  .sinle-offer-new .main-content {
    min-height: initial;
  }
  .sinle-offer-new .offers-left > div,
  .sinle-offer-new .coupons-right > div {
    min-width: 140px;
    max-width: 140px;
    border-bottom: none;
    border-inline-end: 1px solid var(--blue);
  }
  .sinle-offer-new .coupons-right > div:has(+ .add-link) {
    border-inline-start-color: transparent;
  }
  .sinle-offer-new .add-link {
    width: auto;
    height: auto;
    min-width: 150px;
  }
  .sinle-offer-new .coupons-right::-webkit-scrollbar,
  .sinle-offer-new .offers-left::-webkit-scrollbar {
    width: 100%;
    height: 4px;
  }
  .coupon_list_row.grid_view .coupon-column {
    width: 33.33%;
  }
}
@media only screen and (max-width: 767px) {
  .coupon_list_row.grid_view .coupon-column {
    width: 50%;
  }
}
@media only screen and (max-width: 400px) {
  .coupon_list_row.grid_view .coupon-column {
    width: 100%;
  }
}
