/* OFFERS WIDGET */
.offers-widget {
  max-width: 380px;
}
.od-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 8px;
}
.od-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    90.35deg,
    rgba(0, 0, 0, 0.65) 0.98%,
    rgba(0, 0, 0, 0) 99.94%
  );
  border-radius: 5px;
}
.od-image {
  display: flex;
}
.od-image img {
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
}
.od-bk {
  position: absolute;
  top: 10px;
  left: 20px;
  display: flex;
}
.od-bk img {
  max-width: 100%;
  height: auto;
}
.od-bonus-type {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: #ffffff;
  position: absolute;
  top: 42px;
  left: 20px;
}
.od-button {
  position: absolute;
  background: rgba(77, 76, 72, 0.8);
  display: block;
  height: 150%;
  top: -25%;
  right: -10px;
  width: 117px;
  transform: rotate(10deg);
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.od-button span {
  font-weight: 600;
  text-align: center;
  display: block;
  height: 38px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  transform: rotate(-10deg);
  line-height: 38px;
}
.od-button span.bonus {
  color: #ffffff;
  font-size: 16px;
}
.od-button span.link {
  color: #303030;
  font-size: 14px;
  text-transform: capitalize;
  display: none;
}
.od-button:hover span.bonus {
  display: none;
}
.od-button:hover span.link {
  display: block;
}
.od-button:hover {
  width: 158px;
  background-color: #fdd71c;
}
@media screen and (max-width: 768px) {
  .offers-content {
    width: 100%;
    margin: auto;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .od-item {
    width: 48%;
  }
  .offers-content .btn.small-text {
    width: 100%;
  }
  .od-button {
    width: 80px;
  }
}
@media screen and (max-width: 650px) {
  .offers-content {
    justify-content: space-evenly;
  }
}
@media screen and (max-width: 550px) {
  .od-item {
    width: 100%;
    margin-left: 15px;
    margin-right: 15px;
  }
  .od-button {
    width: 117px;
  }
}
@media screen and (max-width: 390px) {
  .od-button {
    width: 81px;
  }
  .od-button:hover {
    width: 101px;
  }
}
