.specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: auto
}

.specs .spec {
    font-size: 18px;
    font-weight: 500;
    display: flex
}

.specs .spec.ram {
    --type: "GB ram"
}

.specs .spec.ssd {
    --type: "GB ssd"
}

.specs .spec::after {
    content: var(--type);
    font-weight: 400;
    display: inline-block;
    color: #999
}

.specs .spec::before {
    content: '';
    background-image: url("/assets/images/icons/checkmark.svg");
    width: 15px;
    aspect-ratio: 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-right: 8px
}

.plan {
    padding: 20px;
    border: 1px solid #2b2b2b;
    border-radius: 5px;
    transition: border-color .2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    min-width: 300px
}

.plan:hover {
    border-color: #999
}

.plan .button {
    margin-top: 40px;
    align-self: center
}

.plan__name {
    font-weight: 600;
    font-size: 24px
}

.plan__price {
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: start;
    gap: 8px;
    margin-top: 20px
}

.plan__price--hidden {
    display: none
}

.plan__price::before {
    content: '$';
    color: #999;
    font-size: 16px;
    font-weight: 400
}

.plan .spec.cpu {
    --type: "% cpu"
}

.plan .spec.ram {
    --type: "MB ram"
}

.plan .spec.traffic {
    --type: "TB "
}

.plan .spec.net {
    --type: "GBit shared"
}

.plan .spec.priority {
    --type: attr(data-priority)
}

.plan .spec.priority::after {
    margin-left: 4px
}

.plans__list {
    margin-top: 40px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))
}

    .iframe-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 102vw;
      height: 150vh;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }

    iframe {
      width: 100vw;
      height: 100vh;
      border: none;
      transform: scale(1);
      transform-origin: top center;
      overflow: hidden;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE/Edge */
    }

    iframe::-webkit-scrollbar {
      display: none;
    }
