/* #region Plans */

.content>.plans {
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
}

@media (max-width: 767px) {
  .content>.plans {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
}

/* #endregion */

/* #region Plan */

.plan:first-of-type {
  --col: var(--color-green);
}

.plan:nth-of-type(2) {
  --col: var(--color-blue);
}

.plan:last-of-type {
  --col: var(--color-orange);
}

.plan>header {
  background-color: var(--col);
  padding-top: 30px;
  padding-bottom: 30px;
}

.plan>header::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 3px solid white;
}

.plan>header>span {
  font-size: 40px;
}

.plan>header>span::before {
  content: '$';
  position: absolute;
  top: -1px;
  left: -20px;
  font-size: 25px;
}

.plan li>p::before {
  font-family: "Font Awesome 7 Free";
  font-weight: bold;
  margin-right: 10px;
}

.plan li.pros>p::before {
  content: '\f00c';
  color: var(--color-green);
}

.plan li.cons>p::before {
  content: '\f00d';
  color: var(--color-red);
}

.plan li>i {
  cursor: pointer;
  transition: color var(--main-trans-duration);
}

.plan li>i:hover {
  color: var(--col);
}

.plan>a {
  background-color: var(--col);
}

.plan.current>a {
  display: none;
}

.plan:not(.current)>p {
  display: none;
}

/* #endregion */