.update-plan__content {
    display: flex;
    flex-wrap:wrap ;
    gap: 30px;
}

.update-plan__title {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;

    margin-bottom: 8px;
}

.update-plan__description {
    color: var(--text-secondery);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.update-plan__item {
    cursor: pointer;
    min-width: 275px;
    border-radius: 10px;
    border: 0.5px solid var(--border-primary);
    box-shadow: 0px 1px 2px 0px rgba(91, 104, 113, 0.32), 0px 0px 1px 0px rgba(26, 32, 36, 0.32);
    transition: all .3s ease-in-out;
}

.update-plan__item:hover,
.update-plan__item.active {
    border-color: var(--accent-primary);
    transition: all .3s ease-in-out;
}

.update-plan__item.active {
    box-shadow: 0px 1px 4px 0px rgb(38, 167, 225, .5), 0px 0px 4px 0px rgb(38, 167, 225, .5);
    transform: scale(1.03);

    transition: all .3s ease-in-out;
}


.update-plan__item-header {
    position: relative;
    padding: 20px;
    border-bottom: 0.5px solid var(--border-primary);
}

.update-plan__item-price {
    color: var(--text-secondery);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.update-plan__item-price-number {
    color: var(--text-primary);
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
}

.update-plan__item-price-number.free {
    text-transform: capitalize;
    color: var(--accent-primary);
}

.update-plan__item-plan-name {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.update-plan__item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.update-plan__feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.update-plan__feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-plan__feature-item.unavailable {
    color: var(--text-secondery);
    padding-left: 0;
}

.update-plan__period {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 30px;
}

.update-plan__period-btn {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;

    padding: 10px 15px;
    border-radius: 8px;
    background: white;
    border: 1px solid var(--border-primary);

    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
}

.update-plan__period-btn::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(38, 167, 225, .5);
    border-radius: inherit;
    box-shadow: 0 0 0 1px var(--border-primary), 0 0.625em 0 0 transparent;
    transform: translate3d(0, 0.5em, -1em);
    transition: transform 0.3s, box-shadow 0.3s;
}

.update-plan__period-btn:hover {
    border-color: var(--accent-primary);
}

.update-plan__period-btn:hover::before {
    box-shadow: 0 0 0 1px var(--accent-primary), 0 0.625em 0 0 transparent;
}

.update-plan__period-btn.active {
    background: rgb(38, 167, 225, .5);
    border-color: rgb(38, 167, 225, .5);
    color: white;
    transform: translate(0em, 0.5em);
}

.update-plan__period-btn.active::before {
    box-shadow: 0 0 0 1px var(--border-primary), 0 0.625em 0 0 transparent;
    transform: translate3d(0, 0, -1em);
    transition: transform 0.3s, box-shadow 0.3s;
}

.update-plan__discount {
    position: absolute;
    z-index: 20;
    right: 15px;
    top: 50%;

    transform: rotate(-45deg) translateY(-50%);
}

.update-plan__discount-number {
    text-align: center;
    color: var(--accent-primary);

    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}

.update-plan__discount-number span {
    font-size: 24px;
    font-weight: 500;
    color: var(--accent-primary);
}

.update-plan__discount-text {
    color: var(--accent-primary);
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
}