body {
    background: var(--color__5);
}
header {
    position: relative;
}
footer {
    background: var(--color__1);
}
.wrapper.inner {
    padding-top: 0;
}
.features-table {
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    position: relative;
}
.features-table p {
    margin: 0;
    font-size: 16px;
    font-weight: 200;
    line-height: 26px;
}
.features-table .header {
    position:sticky;
    top: 0;
    background: white;
}
.features-table .header .row {
    background: white;
    border-bottom: 1px solid var(--color__3);
}
.features {
    display: grid;
    align-items: center;
}
.features-table a {
    text-decoration: none !important;
}
.row {
    padding: 15px;
    display: grid;
    grid-template-columns: auto repeat(5, 125px);
    column-gap: 15px;
    align-items: center;
}
.row .bttn {
    display: grid;
    padding: 0;
    text-align: center;
    width: unset;
    justify-items: center;
    position: relative;
}
.bttn.lav {
    background: var(--color__3);
    color: var(--color__5);
}
.bttn.dark {
    background: var(--color__2);
    color: var(--color__5);
}
.row p:not(p:first-of-type) {
    text-align: center;
    font-weight: 400;
}
.row p:last-of-type:not(.header p) {
    border-left: 1px solid var(--color__3);
}
.features .row:nth-of-type(odd) {
    background: #F8F7F8;
}
.plan-name {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.tooltip {
    position: absolute;
    background: var(--color__2);
    left: 50%;
    bottom: -39px;
    transform: translate(-50%);
    color: white;
    font-size: 12px;
    line-height: 2rem;
    padding: 0 1rem;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}
.tooltip::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    width: 10px;
    aspect-ratio: 1;
    transform: rotate(45deg) translateX(-50%);
    background: var(--color__2);
}
.bttn:hover > .tooltip {
    opacity: 1;
    visibility: visible;
}

.b-white,
.b-white > p:first-of-type {
    background-color: white !important;
}
.b-grey,
.b-grey > p:first-of-type {
    background-color: #F8F7F8 !important;
}
.indent {
    padding-left: 50px;
}

@media only screen and (max-width: 950px) {
    .row {
        grid-template-columns: auto repeat(5, 95px);
        column-gap: 5px;
    }
    .plan-name {
        font-size: 10px;
    }
}

@media only screen and (max-width: 750px) {
    .features-table p, .bttn {
        font-size: 14px;
    }
    .header .bttn {
        height: 25px;
        transform: translateY(-3px);
    }
    .row {
        grid-template-columns: calc(100vh / 5) repeat(5, 75px);
        padding: 0;
    }
    .row > *:not(.header .row > *), .header .row p:first-of-type {
        padding: 10px;
    }
    .header .row p:first-of-type {
        background: white;
        z-index: 3;
    }
    .header{
        background: white;
        z-index: 2;
        width: fit-content;
    }
    .features-table {
        position: sticky;
        top: 0;
        overflow: scroll;
        max-height: calc(100vh - 175px);
    }
    .row p:first-of-type {
        position: sticky;
        left: 0;
        box-shadow: 3px 0px 7px rgba(0, 0, 0, 0.05);
    }
    .features-table p, .bttn {
        font-size: 12px;
    }
    .features .row > p:first-of-type {
        background: white;
    }
    .features .row:nth-of-type(odd) > p:first-of-type {
        background: #F8F7F8;
    }
    .content {
        padding: 75px 0;
    }
    .plan-name {
        font-size: 8px;
        transform: translateY(0);
        line-height: .5rem;
    }
}