.plan-card {
    flex: 1;
    position: relative;
    min-width: 200px;
    max-width: 220px;
}

.plan-card-header {
    box-shadow: var(--rz-shadow-2);
    padding: 1rem;
}

.plan-card-description {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 175px;
    box-shadow: var(--rz-shadow-2);
}

.plan-card-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 130px;
    box-shadow: var(--rz-shadow-2);
}

.plan-card-join {
    display: flex;
    align-items: center;
    justify-content: center;
}

.normal-plan {
    box-shadow: inset 0 0 0 1px var(--rz-base-400);
    border-radius: var(--rz-border-radius);
}

.professional-plan {
    border: 1px solid var(--rz-warning);
    border-bottom-left-radius: var(--rz-border-radius);
    border-bottom-right-radius: var(--rz-border-radius);
}

.professional-plan-label {
    position: absolute;
    top: -35px;
    width: 100%;
    height: 35px;
    background: var(--rz-warning);
    color: var(--rz-text-contrast-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border-top-left-radius: var(--rz-border-radius);
    border-top-right-radius: var(--rz-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--rz-warning);
}

.annual-bonus {
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: 100px;
    transform: translateX(-50%);
    background-color: var(--rz-success);
    border-radius: 30px 30px 30px 0;
    padding: 0.5rem;
    font-size: 12px;
    font-weight: bold;
    font-style: oblique;
    text-align: center;
    opacity: 0;
    transition: opacity 0.52s ease-out, transform 0.52s ease-out;
    color: var(--rz-text-contrast-color);
    width: max-content;
}

.annual-bonus:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 7px solid var(--rz-success-dark);
    border-right: 7px solid transparent;
}

.annual-bonus.visible {
    opacity: 1;
}
