:root {
  --primary-color: #10BAB2;
}

.fa-ul li {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  color: #7a7a7a;
}

.user,
.retailer,
.delivery {
  display: flex;
  flex-direction: row !important;
  border: none !important;
}

.segment {
  border: 1.5px solid #d0cfcf;
  width: 23em !important;
  height: 45px;
  border-radius: 8px;
}

.segment-btn {
  width: 49%;
  cursor: pointer;
  box-shadow: none !important;
  border-radius: 8px !important;
}

.segment-btn.active {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.segment-btn:hover {
  /* color: black; */
  border-color: transparent !important;
}

.segment-btn.active:hover {
  color: white;
}

.content-container {
  margin-top: 20px;
}

.content-box {
  display: none;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
}

.subscription-card {
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  text-align: center;
  box-shadow: none;
  max-width: 400px;
  min-width: 300px;
  margin: auto;
  margin-top: 2em;
  position: relative;
  padding: 20px;
  overflow: auto;
}

.subscription-card img {
  position: absolute;
  top: -2px;
  right: 1em;
}

.plane {
  font-size: 20px;
  border: 1.5px solid var(--primary-color);
  font-weight: 600;
  width: 5em;
  border-radius: 10px;
  color: var(--primary-color);
}

.price {
  font-size: 28px;
  color: #ff3b3b;
  margin-bottom: -6px;
  text-decoration: line-through;
}

.center-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.discounted-price h1 {
  font-size: 50px;
  font-weight: 600;
}

.discounted-price p {
  font-size: 18px;
}

.frequency {
  font-size: 16px;
  color: #666;
}

.hr-line {
  width: 90%;
  border: 1px solid black;
}

.benefits {
  text-align: left;
  margin-top: 5px;
}

.benefits li {
  list-style: none;
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
}

.benefits li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.btn-container {
  margin-top: 15px;
  width: 90%;
}

.buy-btn {
  width: 100%;
  border-radius: 20px !important;
  font-size: 16px !important;
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

@media only screen and (max-width: 992px) {

  .user,
  .retailer,
  .delivery {
    flex-direction: column !important;
  }
}

@media only screen and (max-width: 1200px) {
  .subscription-card {
    padding: 15px;
  }
}