#vertical-slider {
    width: 100%;
    height: 85px;
}
.main-bttns {
    display: flex;
    gap: 15px;
}
.main-bttns .bttn {
    padding: 0 25px;
    min-width: 160px;
    display: flex;
    justify-content: space-around;
}
.main-bttns a:first-of-type .bttn {
    background: var(--color__6);
}

.value-container .scale > div.dictation {
    bottom: calc(250px * 0.21);
}
.value-container .scale > div.starter {
    bottom: calc(250px * 0.435);
    transform: translateY(10px);
}
.value-container .scale > div.expert {
    bottom: calc(250px * 0.66);
}
.value-container .scale > div.practice {
    bottom: calc(250px * 0.435);
    transform: translateY(-10px);
}

.plan.starter::before {
    content: "BEST VALUE";
    font-weight: 800;
    font-size: 1rem;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
}
.plan.expert::before {
    content: none;
}

.plan.starter .bttn, .plan.starter::before {
    background: var(--color__4);
    color: var(--color__2);
}
.plan.expert .bttn {
    background: var(--color__2);
    color: var(--color__5);
}
#pricing .content b {
    font-weight: 200;
    color: var(--color__3);
}
.plan-name {
    font-weight: 700;
    font-size: .85rem;
}
h3.big {
    font-size: 20px;
    margin-bottom: 5px;
}
.trial {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    padding: 5px 25px;
    border-radius: 5px;
    background: var(--color__6);
}
.free .trial {
    background: transparent;
}
.plan .price {
    margin-top: 15px;
}
.annual-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 5px;
    margin-top: 55px;
    position: relative;
}
.annual-toggle [type="checkbox"] {
    appearance: none;
    position: relative;
    padding: 0;
    border-radius: 15px;
    width: 50px;
    height: 25px;
    border: none;
    cursor: pointer;
    background-color: var(--color__3);
    margin-left: 0;
}
.annual-toggle [type="checkbox"]::before {
    display: block;
    position: absolute;
    border-radius: 25px;
    content: ' ';
    width: 21px;
    height: 21px;
    left: 2px;
    top: 2px;
    opacity: 1;
    background-color: white;
    transition: 250ms;
}

.annual-toggle [type="checkbox"]:checked::before {
    left: 27px;
    background-color: var(--color__2);
}

.annual-toggle:has([type="checkbox"]:checked) > .save25 {
    display: block;
}

.save25 {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translate(-50%);
    font-size: .9rem;
    font-weight: 400;
    padding: .75rem 1rem;
    background: var(--color__4);
    color: var(--color__2);
    border-radius: 15px;
    white-space: nowrap;
    display: none;
}
.save25::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: calc(50% - 10px);
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    background: var(--color__4);
}

.blog-post.post-20250523 {
    background-image: url(../blog/20250523/image.webp);
}

.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) {
    .plan-name {
        font-size: .5rem;
        line-height: 1.5rem;
    }
}
@media only screen and (max-width: 465px) {
    .main-bttns .bttn {
        min-width: 125px;
    }
}