.plans-list-handler {
    width: 100%;
    height: fit-content;
    padding: 20px 3%;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.plans-list-flexbox {
    display: flex;
    gap: 10px;
}

.plans-box-container {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 15px;
    background-color: #78f1ef;
    border-radius: 14px;
}

.plan-box-holder {
    width: 80%;
    display: flex;
    flex-direction: column;
    row-gap: 9px;
}

.plans-box {
    border-radius: 14px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    background-color: #fff;
    padding: 10px;
}

.plan-name {
    font-size: 22px;
    font-weight: 550;
    text-align: center;
    text-overflow: ellipsis;
}

.plan-percentage {
    font-size: 29px;
    font-weight: bold;
    text-align: center;
    margin-top: 6px;
}

.plan-column-percentage-count {
    width: 100%;
    height: 5px;
    border-radius: 20px;
    margin-top: 6px;
}

.percentage-plan-flexbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-count-per {
    width: calc(var(--percentage-count) * 1%);
    height: 100%;
    background-color: #78f1ef;
}

.plan-graph-box {
    width: 100%;
    height: fit-content;
}

.plan-box-contents {
    width: 100%;
    height: fit-content;
    border-radius: 14px;
    background-color: #fff;
    padding: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.plan-contents-control {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

.plan-list-title-container {
    width: 100%;
    height: fit-content;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

.plan-list-title {
    font-weight: bold;
    font-size: 24px;
    color: #78f1ef;
}

.plan-list-subtitle {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

.plan-list-subtitle2 {
    font-size: 18px;
    text-align: center;
    width: 70%;
}

@media screen and (max-width: 810px) {
    .plans-list-flexbox {
        flex-direction: column;
    }

    .plan-box-holder {
        width: 90%;
    }

    .plan-list-title {
        font-size: 15.5px;
    }

    .plan-list-subtitle {
        font-size: 25px;
    }

    .plan-list-subtitle2 {
        width: 90%;
        font-size: 14.5px;
    }
}
