.oea-offer-listing {
  position: relative;
  margin-bottom: 30px;
}

.oea-offer-listing.no-gap .item-animation-wrapper:first-of-type .item {
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.oea-offer-listing.no-gap
  .item-animation-wrapper:not(:first-of-type):not(:last-of-type)
  .item {
  border-radius: 0 !important;
}

.oea-offer-listing.no-gap .item-animation-wrapper:last-of-type .item {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.oea-offer-listing .offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.oea-offer-listing .title {
  margin: 0;
  color: var(--main-text-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.oea-offer-listing .title a {
  text-decoration: none;
}

.oea-offer-listing .text {
  line-height: 20px;
  font-size: 15px;
}

.oea-offer-listing .read-more {
  display: block;
  color: #334dfe;
  font-size: 13px;
  cursor: pointer;
  margin-top: 6px;
}

.oea-offer-listing .offer-block {
  margin: 0 auto;
  display: block;
  font-size: 18px;
  line-height: 20px;
  padding: 13px 20px;
  text-transform: uppercase;
  background: none var(--gssbtnbg);
  color: var(--gssbtncolor);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  border: none;
}

.oea-offer-listing .coupon {
  display: flex;
  align-items: center;
  vertical-align: top;
  cursor: pointer;
  border: 1px dashed green;
  text-align: center;
  position: relative;
  font-size: 14px;
  clear: both;
  line-height: 18px;
  background-color: #e9ffdd;
  color: green;
  border-radius: 4px;
  margin-top: 12px;
}

.oea-offer-listing .coupon:hover {
  border: 1px dashed #000;
}

.oea-offer-listing .coupon:hover svg {
  color: #000;
}

.oea-offer-listing .coupon svg {
  font-size: 14px;
  padding: 6px 6px 6px 0;
  width: 35px;
  fill: #007501;
}

.oea-offer-listing .coupon .coupon-text {
  width: 100%;
  background: none transparent;
  border: none;
  text-align: center;
  padding: 6px 15px;
  font-size: 16px;
}

.oea-offer-listing .coupon.expired_coupon {
  border: 1px dashed grey;
  background: #d3d3d3;
  color: grey;
}

.oea-offer-listing .coupon.expired_coupon .coupon-text {
  text-decoration: line-through;
}

.oea-offer-listing .coupon.expired_coupon svg {
  display: none;
}

.oea-offer-listing .badge,
.oea-offer-listing .oea-offer-listing-coupon {
  display: block;
}

.oea-offer-listing .badge-text {
  font-size: 11px;
  line-height: 1;
  text-shadow: none;
  padding: 5px 10px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  display: table-cell;
  background-color: #0b74ff;
  color: #ffffff;
}

.oea-offer-listing .time-offer {
  font-size: 10px;
  line-height: 20px;
}

.oea-offer-listing .item-animation-wrapper:first-of-type .item {
  margin-top: 0;
}

.oea-offer-listing .item-animation-wrapper:not(:first-of-type) .item {
  margin-top: calc(-1 * var(--offer-listing-border-width-bottom, 1px));
}

.oea-offer-listing .item {
  width: 100%;
  border-width: var(--offer-listing-border-width-top, 1px)
    var(--offer-listing-border-width-right, 1px)
    var(--offer-listing-border-width-bottom, 1px)
    var(--offer-listing-border-width-left, 1px);
  border-style: solid;
  border-color: #dcdcdc;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  transition: all var(--all-transition, 0.6s) ease,
    box-shadow var(--shadow-transition, 0.6s) ease,
    border var(--border-transition, 0.6s) ease,
    border-radius var(--border-transition, 0.6s) ease;
}

.oea-offer-listing .item .wrapper {
  background: #fff;
  border-width: 0;
  position: relative;
  transition: padding var(--padding-transition, 0.6s) ease;
}

.oea-offer-listing .item:hover {
  z-index: 1;
}

.oea-offer-listing .image {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
}

.oea-offer-listing .image figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

.oea-offer-listing .image figure img {
  border-radius: 4px;
}

.oea-offer-listing .score {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}

.oea-offer-listing .score .userscore {
  display: inline-block;
  padding: 3px 5px;
  background: #fffffff5;
  font-size: 14px;
  border-radius: 4px;
  line-height: 18px;
  box-shadow: 0 2px 5px #4e4e4e0f;
  line-height: 18px;
  margin: 0 15px;
}

.oea-offer-listing .score svg {
  height: 12px;
  width: 12px;
}

.oea-offer-listing .score span {
  display: block;
  background-color: #c00;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  padding: 0.5rem;
}

.oea-offer-listing .score .score-red {
  background-color: #940000;
}

.oea-offer-listing .score .score-orange {
  background-color: #ff7b00;
}

.oea-offer-listing .score .score-yellow {
  background-color: #ffc700;
}

.oea-offer-listing .score .score-light-green {
  background-color: #92cb06;
}

.oea-offer-listing .score .score-green {
  background-color: #39970a;
}

.oea-offer-listing .content {
  flex-grow: 1;
  flex-basis: 0;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
}

.oea-offer-listing .cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 20px;
  width: 100%;
  text-align: center;
}

.oea-offer-listing .cta .button {
  margin: 0;
  display: block;
  font-size: 17px;
  line-height: 20px;
  padding: 13px 20px;
  text-transform: uppercase;
  background: #ff6200;
  color: #111;
  fill: #111;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
}

.oea-offer-listing .cta .button a {
  color: #fff;
}

.oea-offer-listing .cta .price ins {
  text-decoration: none;
}

.oea-offer-listing .price {
  margin: 0 0 8px 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 24px;
  color: #111;
}

.oea-offer-listing .price span {
  display: inline-block;
}

.oea-offer-listing .price del {
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
  font-size: 80%;
  font-weight: 400;
  color: grey;
  opacity: 0.4;
}

.oea-offer-listing .price del .amount {
  text-decoration: line-through;
}

.oea-offer-listing .disclaimer {
  padding: 10px 15px;
  font-size: 11.5px;
  color: grey;
  background-color: rgb(69 126 153 / 10%);
}

@media only screen and (min-width: 768px) {
  .oea-offer-listing .item .wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .oea-offer-listing .image {
    min-width: 160px;
    max-width: 160px;
  }

  .oea-offer-listing .content {
    text-align: inherit;
  }

  .oea-offer-listing .cta {
    min-width: 200px;
    max-width: 200px;
  }

  .oea-offer-listing .price {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .oea-offer-listing .offer-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .oea-offer-listing .offer-list .item-animation-wrapper {
    width: 100%;
    margin-bottom: 0;
  }

  .oea-offer-listing .offer-list .item-animation-wrapper .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .oea-offer-listing .badge {
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
  }

  .oea-offer-listing .badge .badge-text {
    display: block !important;
  }

  .oea-offer-listing .content .text ul {
    text-align: left;
  }
  
.oea-offer-listing .item {
  opacity: 1;
  transform: none;
  transition: all var(--all-transition, 0.6s) ease,
    border var(--border-transition, 0.6s) ease,
    box-shadow var(--shadow-transition, 0.6s) ease;
}

.oea-offer-listing .item.oea-hover-scale:hover {
  transform: scale(1.05);
}

.oea-offer-listing .item.oea-hover-lift:hover {
  transform: translateY(-10px);
}

.oea-offer-listing .item.oea-hover-rotate:hover {
  transform: rotate(5deg);
}

.oea-offer-listing .item.oea-hover-flip:hover {
  transform: rotateY(180deg);
}

.oea-offer-listing .item-animation-wrapper {
  opacity: 1;
  transform: none;
}

.oea-offer-listing.oea-animate-on-scroll .item-animation-wrapper {
  opacity: 0;
  transform: translateY(20px);
}

.oea-offer-listing.oea-animate-on-scroll .item-animation-wrapper.oea-fade-in {
  animation: fadeIn forwards;
}

.oea-offer-listing.oea-animate-on-scroll
  .item-animation-wrapper.oea-fade-in-up {
  animation: fadeInUp forwards;
}

.oea-offer-listing.oea-animate-on-scroll
  .item-animation-wrapper.oea-fade-in-down {
  animation: oeaFadeInDown forwards;
}

.oea-offer-listing.oea-animate-on-scroll
  .item-animation-wrapper.oea-fade-in-left {
  animation: oeaFadeInLeft forwards;
}

.oea-offer-listing.oea-animate-on-scroll
  .item-animation-wrapper.oea-fade-in-right {
  animation: oeaFadeInRight forwards;
}

.oea-offer-listing.oea-animate-on-scroll .item-animation-wrapper.oea-zoom-in {
  animation: oeaZoomIn forwards;
}

.oea-offer-listing.oea-animate-on-scroll .item-animation-wrapper.oea-bounce-in {
  animation: bounceIn forwards;
}

.oea-offer-listing.oea-animate-on-scroll .item-animation-wrapper.oea-flip-in {
  animation: oeaFlipIn forwards;
}

.oea-offer-listing.oea-animate-on-scroll .item-animation-wrapper.oea-rotate-in {
  animation: oeaRotateIn forwards;
}
@media (max-width: 768px) {
  .oea-disable-animation-mobile .item-animation-wrapper {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .oea-disable-animation-mobile .item:hover {
    animation: none !important;
    transform: none !important;
    transition-property: color, background-color, border-color, border-radius,
      border-width, box-shadow, opacity !important;
  }
}
