.z-2 {
  z-index: 2 !important;
}

.tired-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 2 columns by default */
  row-gap: 16px;
}

.tired-grid .grid-item p {
  font-weight: 700;
  font-size: 20px;
  padding: 10px 0 0;
}

.tired-grid .grid-item {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}

.subscription-tiers {
  padding: 90px 0;
}

.cl-primary {
  color: var(--primary) !important;
}

.text-green {
  color: #43b02a !important;
}

.subtiers-body-list {
  padding: 17px 0 16px !important;
  border-bottom: 1px solid var(--EEE) !important;
  display: flex !important;
  gap: 5px 10px !important;
}

.cmn-table-main .table {
  margin: 0;
}

.cmn-table-main {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #EBEBEB;
}

.cmn-table-main .table tbody tr:last-child td {
  border-bottom: none;
}

.cmn-table-main th {
  font-size: var(--base);
  font-weight: var(--fw700);
  color: var(--141414);
  padding: 18px 22px;
}

.cmn-table-main td {
  font-size: var(--base);
  font-weight: var(--fw500);
  color: var(--545454);
  padding: 21px 22px;
  vertical-align: middle;
}

.cmn-table-main td strong {
  font-weight: var(--fw700);
  color: var(--141414);
}

.cmn-table-main th,
.cmn-table-main td {
  text-align: center;
}

.prmotor-refer-sectiontwo {
  padding: 90px 0;
}

.cmn-table-main th:not(:last-child),
.cmn-table-main td:not(:last-child) {
  border-right: 1px solid #dee2e6;
}

.cmn-table-main th {
  background: var(--primarylight);
  border-bottom: none;
}



@media (min-width: 768px) {
  .tired-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }

  .tired-grid .grid-item:not(:last-child) {
    position: relative;
  }

  .tired-grid .grid-item {
    padding: 0 12px;
  }

  .tired-grid {
    position: relative;
  }

  .tired-grid .grid-item:nth-of-type(odd)::after {
    content: "";
    position: absolute;
    background: red;
    width: 1px;
    height: 50px;
    right: 0;
    margin: auto 0;
    background: #dee2e6;
  }
  
}

@media (min-width: 992px) {
  .tired-grid {
    grid-template-columns: repeat(2, 1fr); /* 3 columns on large screens */
  }

  .subtiers-heading {
    font-size: 24px;
    font-weight: var(--fw700);
  }

  .subtiers-heading.text-green {
    font-size: 18px;
    font-weight: var(--fw700);
  }

  /* .subscription-tiers .cmn-heading h2 {
    font-size: 26px;
    font-weight: var(--fw700);
  } */

}

@media (min-width: 1200px) {
  .tired-grid {
    grid-template-columns: repeat(
      6,
      1fr
    ); /* 3 columns on extra large screens */
  }

  .tired-grid .grid-item:first-child {
    padding-left: 0;
  }

  .tired-grid .grid-item:last-child {
    padding-right: 0;
  }

  .tired-grid .grid-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 45px;
    background: #dee2e6;
    width: 1px;
    margin: auto 0;
  }
}

@media (max-width: 991px) {
  .subscription-tiers {
    padding: 45px 0;
  }

  .cmn-table-main th {
    white-space: nowrap;
    padding: 13px 22px;
  }

  .cmn-table-main td {
    padding: 20px 18px;
  }

  .prmotor-refer-sectiontwo {
    padding: 45px 0;
  }

}

@media (max-width: 767px) {
  .tired-grid .grid-item:not(:last-child) {
    position: relative;
  }

  .tired-grid .grid-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100px;
    background: #dee2e6;
    height: 1px;
    margin: 0 auto;
  }

  .tired-grid .grid-item:first-child {
    padding-top: 0;
  }

  .tired-grid .grid-item:last-child {
    padding-bottom: 0;
  }

  .tired-grid .grid-item p {
    font-size: 18px;
  }

  .tired-grid {
    row-gap: 0;
  }

  .subscription-tiers {
    padding: 30px 0;
  }

  .subtiers-heading {
    font-size: 20px;
  }

  .subtiers-heading.text-green {
    font-size: 16px;
  }

  .prmotor-refer-sectiontwo {
    padding: 30px 0;
  }

}
.logo-txt {
  margin-left: 8px;
  max-width: 161px;
  min-width: 161px;
  transition: all ease-in-out 500ms;
  opacity: 1;
}