.freedom-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 3%;
  top: 30%;
  /* transform: translateX(-50%); */
  font-size: clamp(14px, 2vw, 20px);
  font-weight: bold;
  color: black;
  background: linear-gradient(to bottom right, green, yellow, orange, red);
  z-index: 10;
  width: clamp(80px, 12vw, 120px);
  height: clamp(80px, 12vw, 120px);
  text-align: center;
  border-radius: 50%;
  border: 3px black solid;
  .free {
    font-size: clamp(16px, 2.4vw, 24px);
  }
}

.freedom-check {
  position: absolute;
  z-index: 555;
  left: calc(3% + clamp(80px, 12vw, 120px) + 6px);
  top: 4%;
  padding: 20px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #fafafa;
  overflow-y: scroll;
  height: 80vh;
  width: clamp(400px, 42vw, 500px);
  border: 1px solid gray;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  .still-free {
    font-size: 32px;
  }
}

/* Tier titles */
.tier-header {
  font-size: 20px;
  font-weight: 600;
  /* background-color: #e8e8e8; */
  padding: 10px 12px;
  margin: 20px 0 10px;
  /* border-left: 6px solid #666; */
  border-top: 1px gray solid;
  border-radius: 4px;
  cursor: pointer;
  color: blue;
}

/* Collapsed body content */
.tier-body {
  padding: 10px 15px;
  background-color: #fff;
  border-left: 3px solid #ddd;
  margin-bottom: 15px;
}

/* Item titles with rating box */
.tier-body h3 {
  font-size: 16px;
  margin: 10px 0 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.stage-auth {
  font-size: 24px;
}

/* Rating box */
.rating-box {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 3px;
  border: 1px solid #000;
  flex-shrink: 0;
  border-radius: 2px;
}

/* List items */
.tier-body ul {
  padding-left: 20px;
  margin-top: 4px;
}

.tier-body li {
  font-size: 14px;
  margin-bottom: 6px;
}

.rating-summary {
  display: flex;
  flex-shrink: 0;
  margin-left: 22px;
  font-size: 14px;
}

.rating-heading {
  margin-bottom: 0;
}

.overall-summary {
  margin-top: 10px;
}

.hidden {
  display: none;
}

.verdict {
  text-align: center;
  color: blue;
}