/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

.tier-red {
  background: linear-gradient(135deg, #cc0000, #ff4d4d);
  color: white;
}
.tier-silver {
  background: linear-gradient(135deg, #c0c0c0, #e0e0e0);
  color: black;
}
.tier-gold {
  background: linear-gradient(135deg, #ffd700, #ffef85);
  color: black;
}
.tier-platinum {
  background: linear-gradient(135deg, #e5e4e2, #ffffff);
  color: black;
}

.perks th, td {
  vertical-align: middle;
  text-align: center;
}

.image-container {
  position: relative;
  width: 72px;
  height: 72px;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container .img-1 {
  opacity: 0.5;
  z-index: 1;
}

.image-container .img-2 {
  opacity: 1;
  margin-left: 50px;
  z-index: 2;
}

body.card {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body.card::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://scontent-lhr6-2.xx.fbcdn.net/v/t39.30808-6/418171963_10233104307098220_3731013093743839422_n.jpg?stp=cp6_dst-jpg_tt6&_nc_cat=105&ccb=1-7&_nc_sid=536f4a&_nc_ohc=5rv_yjiTMHoQ7kNvgFW9rIh&_nc_oc=AdimsA-5LOQdSALJUlF-08Ptmd8yzxlpfockAevsagdwXMYJKPhDkfNLHQyT3ML1_uo&_nc_zt=23&_nc_ht=scontent-lhr6-2.xx&_nc_gid=AIARGenKZFoEJJGxojQrCcs&oh=00_AYDaFxg-_j3qkrOm7g6mqtRYcwMybpgC054S3OForMZgYQ&oe=67BFC89C) no-repeat center center fixed;
    background-size: cover;
    opacity: 0.5; /* Adjust this for desired transparency */
    z-index: -1; /* Ensures it stays in the background */
}

.ways-to-earn th {
            background-color: #343a40;
            color: white;
            text-align: center;
        }
.ways-to-earn td {
    text-align: center;
}
.ways-to-earn-category {
    font-weight: bold;
    background-color: #f8f9fa;
}


img.card {
  transition: all .2s ease-in-out;
}

img.card:hover {
   transition: all 0.2s ease-in-out;
   transform: scale(2);
}
