/* CASINO CARD COMPONENT1 CSS */
.casino_card_list_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.casino_card_list_item {
  background-color: #2b2b2b;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 35px;
  border-radius: 10px;
}

.casino_card_position {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 16px;
  font-weight: bold;
  background-color: #ffbc33;
  color: white;
  padding: 10px;
  border-radius: 10px 0px;
}

.casino_card_header {
  width: 30%;
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.casino_card_header img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}

.casino_card_header h2 {
  color: white;
  font-size: 1.75rem;
  font-family: "FIRAGO-MEDIUM";
  margin-top: 0px;
  margin-bottom: 0px;
  border-left: 0px;
  padding-left: 0px;
}

.casino_card_item_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  text-align: center;
}

.casino_card_offer {
  text-align: center;
}

.casino_card_offer span {
  color: white;
  font-size: 19px;
  font-weight: bold;
  line-height: 22px;
}

.casino_card_copy {
  font-size: 14px;
  color: #ffbc33;
}

.casino_card_copy i {
  color: #5fd551;
}

.casino_card_btns {
  width: 305px;
  text-align: center;
  /* display: flex;
  justify-content: space-between; */
}

.casino_card_btn {
  text-align: center;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
}

.casino_card_btn.claim {
  background-color: #5fd551;
  color: white;
  text-decoration: none;
  box-shadow: 0px 5px 15px 0px rgba(95, 213, 81, 0.2);
}

.casino_card_btn.read {
  background-color: white;
  text-decoration: none;
  color: #222831;
}

/* CASINO_REVIEW.php */
.casino_review_container {
  position: relative;
  display: flex;
  column-gap: 50px;
}

.sticky_left {
  background-color: #222831;
  width: 30%;
  height: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  position: sticky;
  top: 20px;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  overflow: hidden;
  padding-top: 20px;
  border-radius: 10px;
}

.sticky_right {
  width: 100%;
}

.casino_logo img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
}

.casino_name h2 {
  font-size: 37px;
  font-weight: 700;
}

.casino_offer_container {
  background-color: #eeeeee;
  padding: 20px 10px 30px 10px;
}

.casino_offer {
  color: #222831;
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 30px;
}

.casino_mobile_offer {
  display: none;
}

@media only screen and (max-width: 980px) {
  .casino_card_list_item {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
  }

  .casino_card_position {
    font-size: 22px;
  }

  .casino_card_header {
    width: 100%;
    justify-content: center;
  }

  .casino_card_item_container {
    width: 100%;
  }

  .casino_card_btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 10px;
  }

  .casino_review_container {
    flex-direction: column-reverse;
  }

  .sticky_left {
    height: 120px;
    background-color: white;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    bottom: 0px;
    padding: 0px 10px;
  }

  .casino_logo img {
    width: 100px;
    height: 100px;
  }

  .sticky_left {
    width: 100%;
  }

  .sticky_right {
    width: 100%;
  }

  .casino_name h1 {
    font-size: 32px;
  }

  .casino_offer_container {
    display: none;
  }

  .casino_mobile_offer {
    display: block;
  }
}

@media only screen and (max-width: 580px) {
  .casino_name {
    display: none;
  }
}
