/* CASINO CARD COMPONENT1 CSS */
.container {
  width: 1024px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}

.desk_list {
  display: block;
}

.mob_list {
  display: none;
}

.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: #232c3e;
  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: #0066ff;
  color: white;
  padding: 10px;
  border-radius: 10px 0px;
}

.casino_card_header {
  width: 200px;
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.casino_card_header img {
  background-color: white;
  width: 65px;
  height: 65px;
  border-radius: 10px;
}

.casino_card_header h2 {
  color: white;
  font-size: 22px;
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 0px;
  border-left: 0px;
  padding-left: 0px;
}

.casino_card_copy {
  width: 200px;
  font-size: 14px;
  color: #ffbc33;
}

.casino_card_copy i {
  color: #5fd551;
}

.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);
}

.flex {
  display: flex;
  flex-direction: column;
}

.casin_card_promotion {
  text-align: center;
}

.casin_card_promotion p {
  font-size: 22px;
  color: white;
  margin: 10px 0px 10px 0px;
}

@media only screen and (max-width: 980px) {
  .casino_card_list_item {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    padding: 15px 65px;
  }

  .casino_card_position {
    font-size: 22px;
  }

  .casino_card_header {
    width: 100%;
    justify-content: flex-start;
  }

  .casino_card_header img {
    width: 80px;
    height: 80px;
  }

  .casino_card_copy {
    width: 100%;
    font-size: 15px;
    text-align: 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;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
  }

  .desk_list {
    display: none;
  }

  .mob_list {
    display: block;
  }
}
