.offers-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #14121d;
}
.offers-container__title{
  display: block;
  width: 100%;
  text-align: center;
}
.offers-container__title h2{
  font-family: "Zilla Slab", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 1rem auto;
}
.offer-block {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.mobile-link {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}
.offer-inner-block {
  display: flex;
  justify-content: space-between;
  background-color: #211e2f;
  min-height: 140px;
}
.offer-left-block,
.offer-right-block {
  width: 50%;
  display: flex;
  align-items: center;
}
.offer-left-block {
  padding: 1rem;
}
.offer-logo {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-logo img {
  width: 100%;
  padding: 0 .5rem;
} 
.rating-container {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-votes,
.offer-score {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stars-container {
  position: relative;
  display: inline-block;
  color: transparent;
  font-size: 20px;
  margin-bottom: 0.7rem;
}
.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-90:after {
  width: 90%;
}
.star-80:after {
  width: 80%;
}
.star-70:after {
  width: 70%;
}
.star-50:after {
  width: 50%;
}
.offer-votes span {
  font-size: .9rem;
  font-weight: 700;
}
.offer-score {
  align-items: flex-end;
  padding-right: 1rem;
}
.site-rating {
  margin-bottom: 0.3rem;
  font-size: 2.5rem;
  color: var(--highlight);
}
.site-rating-text {
  font-size: .9rem;
  font-weight: 700;
}
.offer-right-block {
  background-color: #03173E;
  border-radius: 10px;
}
.offer-right-block:hover {
  background-color: #011336;
}
.welcome-bonus-block {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  line-height: 1.5rem;
}
.welcome-title {
  margin-bottom: 0.5rem;
}
.btn-block {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer-btn {
  width: 13rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  color: var(--main-font);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--btn);
  border-top: 3px solid transparent;
  box-shadow: 0 5px 8px 0 #999999b3;
  transform: scale(1);
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.offer-btn:hover {
  transform: scale(1.1);
  background: #26d313;
}
.label-container {
  width: 100%;
  padding: 0.5rem;
  color: #b8b7bd;
  font-size: .75rem;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .mobile-link {
    display: block;
  }
  .offer-right-block {
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient( 180deg, #0a0232, #272353);
    border-radius: 0;
  }
  .welcome-bonus-block {
    margin-bottom: 1.5rem;
  }
  .btn-block,
  .welcome-bonus-block {
    width: 100%;
  }
  .offer-left-block {
    flex-direction: column;
  }
  .offer-logo {
    width: 90%;
    margin-bottom: 1rem;
  }
  .rating-container {
    width: 100%;
    justify-content: space-between;
  }
  .offer-votes {
    align-items: flex-start;
  }
  .offer-btn {
    border-radius: 2rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .03rem;
    text-shadow: 0 3px 3px #0000005c;
    background: #26d313;
    -webkit-box-shadow: 0 5px 8px 0 #14121db3;
    box-shadow: 0 5px 8px 0 #14121db3;
    -webkit-transition: .15s ease-out;
    -o-transition: .15s ease-out;
    transition: .15s ease-out;
  }
  .offer-btn:active,
  .offer-btn:hover {
    transform: scale(1) translateY(3px);
    background: var(--btn);
  }
}
