.offers-inner-container {
    padding: 1.5em 0px;
}

.wrapper {
    max-width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
}

.wrapper {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 20px;
}

.offers-inner-container > .wrapper {
    position: relative;
    z-index: 1;
}

@media (min-width: 700px) {
    .wrapper {
        max-width: 1137px;
    }
}

.desktop {
    display: flex;
    flex-direction: column;
}

.offers-header {
    color: rgb(255, 255, 255);
    font-size: 0.8em;
    position: relative;
    border-radius: 0.5em;
}

.offers-header__inner {
    display: flex;
    align-items: center;
    min-height: 3.125em;
}

.offers-header .header-item {
    width: 100%;
    text-align: center;
    font-weight: 600;
    line-height: 1;
}

.offers-header .header-item.top,
.offers-header .header-item.rating,
.offers-header .header-item.welcome,
.offers-header .header-item.payment,
.offers-header .header-item.play {
    flex: 1 1 0%;
	font-size: 16px;
}





/* Offers */
.operators-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin-left: auto;
}

.operator-item {
  display: flex;
  position: relative;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 1.3em;
  border-radius: 10px 2.5em 0 2.5em;
  min-height: 7em;
}

.operator-item .border {
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
  border-radius: 4px 4px 4px 4px;
  z-index: -1;
}

span+.operator-item {
  margin-top: 0;
}

.operator-item+span {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.222222222222222;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 8px;
  color: #ffffff80;
}

.operator-item+span a {
  text-decoration: underline;
  color: #ffffff80;
}

.operator-item__inner {
  display: flex;
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #36295b 0%, #36295b 100%);
  /* padding: 1.25em 2.25em; */
  /* border-radius: 0.5rem; */
  justify-content: space-between;
  column-gap: 10px;
}

.operator-item__inner .number {
  position: absolute;
  right: calc(100% + 1em);
  color: #7d59d8;
  text-align: center;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.33);
  font-size: 2em;
  font-weight: 600;
  top: 50%;
  transform: translateY(-50%);
}

.operator-item__inner .ribbon {
  top: -12px;
  left: -16px;
}

.operator-item__inner .ribbon.right {
  right: -1px;
  left: unset;
  border-radius: 0 10px 0 10px;
  top: -1px;
  background-color: #0036c0;
}

.operator-item__inner .offer-bonus {
  text-align: center;
  position: relative;
  max-width: 10.8em;
}

.operator-item__inner .offer-bonus .bonus {
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

.operator-item__inner .offer-rating {
  text-align: center;
  position: relative;
}

.operator-item__inner .offer-rating .rating {
  color: #4078FE;
  text-align: center;
  font-size: 1.4em;
  font-weight: 800;
  line-height: 71.429%;
  padding-bottom: 8px;
}

.operator-item__inner.expanded .offer-rating {
  padding-top: 20px;
  /* Adjust as needed */
}

.operator-item__inner.expanded .offer-btn {
  padding-top: 20px;
  /* Adjust as needed */
}

.operator-item__inner .min-deposit {
  color: #FF60A3;
  text-align: center;
  font-family: "Roboto Flex";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 133.333% */
}

/* .min-deposit__text {
  color: #C7C8F6;
} */

.operator-item__inner .offer-btn .play-now-btn {
  font-size: 16px;
  font-weight: 800;
  line-height: 133.333%;
  text-align: center;
  margin: 0 auto;
  background: linear-gradient(180deg, #4078FE 0%, #3155BE 100%);
  border-radius: 0 15px;
  color: #fff;
  text-transform: uppercase;
  padding: 0.5em 2em;
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}

.operator-item__inner .offer-btn .promocode.play-now-btn {
  background: transparent;
  border: 1px solid #d1d5dd;
  color: #d1d5dd;
  font-weight: 500;
  letter-spacing: 4px;
  margin-top: 0.5em;
  line-height: 1;
  position: relative;
}

.operator-item__inner .offer-btn .promocode.play-now-btn input {
  display: none;
}

.tooltiptext {
  visibility: hidden;
  width: 115px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 6px;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;

  font-size: 10px;
  letter-spacing: normal;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.operator-item__inner .offer-btn .promocode.play-now-btn:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.offers-inner-container>.wrapper {
  position: relative;
  z-index: 1;
}

.offers-inner-container::after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: hard-light;
}

.operator-item__inner>* {
  display: grid;
  align-content: center;
}

.operator-item__inner .offer-logo {
  justify-content: center;
  background-color: #241E40;
  padding: 0.15em;
  width: 13.35em;
  border-bottom-left-radius: 0.5em;
  border-top-left-radius: 10px;
  fill: rgba(36, 30, 64, 0.55);
}

.operator-item__inner .offer-logo img {
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}

.ribbon {
  display: block;
  position: absolute;
  border-radius: 0px 9px 0px 10px;
  background-color: #ec9d04;
  overflow: visible;
  z-index: 10;
  padding: 6px 18px;
  color: #fff;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  font-size: 0.6em;
  font-style: normal;
  font-weight: 700;
}

.operator-item__inner .offer-rating {
  padding: 0 1em;
}

.offers-inner-container {
  padding: 1.5em 0;
}



.stars-container {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.stars-container:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "★★★★★";
  color: #d3d3d3;
}

.stars-container:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "★★★★★";
  color: #ffcb0f;
  overflow: hidden;
}

.star-100:after {
  width: 100%;
}

.star-95:after {
  width: 95%;
}

.star-90:after {
  width: 90%;
}

.star-85:after {
  width: 85%;
}

.star-80:after {
  width: 80%;
}

.star-75:after {
  width: 75%;
}

.star-70:after {
  width: 70%;
}

.star-65:after {
  width: 65%;
}

.star-60:after {
  width: 60%;
}

.star-55:after {
  width: 55%;
}

.star-50:after {
  width: 50%;
}

.star-40:after {
  width: 40%;
}

.star-45:after {
  width: 45%;
}

.star-35:after {
  width: 35%;
}

.star-30:after {
  width: 30%;
}

.star-25:after {
  width: 25%;
}

.star-20:after {
  width: 20%;
}

.star-15:after {
  width: 15%;
}

.star-10:after {
  width: 10%;
}

.user-rating {
  font-family: inherit;
  font-size: 14px;
  padding-bottom: 4px;
      color: #ffffff;
}

a.visit.site {
  color: #ff8a00;
  text-align: center;
  font-family: "Roboto Flex";
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  text-decoration-line: underline;
  padding-top: 5px;
}

.offer-payments {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(34px, 1fr));
    justify-content: center;
    align-content: center;
    max-width: 140px;
    overflow: hidden;
    cursor: pointer;
}

.offer-payments img {
	max-width: 27px;
	object-fit: contain;
}

.content-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  flex-wrap: wrap;
  /* row-gap: 24px; */
}


.operator-item__inner .min-deposit {
    color: #FF60A3;
    text-align: center;
    font-family: "Roboto Flex";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}