
.plan-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
}
.plan-container2 {
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 10px;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
    font-size: 10px;
}

/*.plan {*/
/*    padding: inherit;*/
/*    background-color: #f9f9f9;*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 8px;*/
/*    width: 100%;*/
/*    max-width: 250px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
/*}*/

.plan {
    padding: inherit;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    /*width: 100%;*/
    /*max-width: 250px;*/
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px); /* Moves it upward */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); /* Optional: adjust the shadow on hover */
}

.plan-header {
    background-color: #3554D1;
    color: white;
    padding: 9px;
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.plan-item {
    position: relative;
    font-size: 12px;
    padding: 10px;
    border-top: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.plan-item2 {
    font-size: 12px;
    padding: 10px;
    border-top: 1px solid #ddd;
    align-items: center;
    justify-content: space-between;
}

.plan-item i {
    margin-right: 5px;
    color: #3554D1;
}
.plan-item2 i {
    margin-right: 5px;
    color: #3554D1;
}

.plan-total {
    font-weight: bold;
    padding: 15px;
    background-color: #eef1ff;
    text-align: center;
}

.tooltip-text {
    /*position: relative;*/
    cursor: pointer;
}

/*.tooltip-text .tooltip-popup {*/
/*    visibility: hidden;*/
/*    background-color: #003b95;*/
/*    color: #fff;*/
/*    !*text-align: center;*!*/
/*    border-radius: 5px;*/
/*    padding: 5px;*/
/*    position: absolute;*/
/*    z-index: 1;*/
/*    bottom: 125%;*/
/*    left: 110%;*/
/*    transform: translateX(-50%);*/
/*    width: 500px;*/
/*    opacity: 0;*/
/*    transition: opacity 0.3s;*/
/*}*/
.tooltip-text .tooltip-popup {
    visibility: hidden;
    background-color: #003b95;
    color: #fff;
    /* text-align: center; */
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 11;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}
.tooltip-text:hover .tooltip-popup {
    visibility: visible;
    opacity: 1;
}
tooltip-popup ol {
    margin: o!important;
    padding: 0;
}

/*.tooltip-popup::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 50%;*/
/*    margin-left: -5px;*/
/*    border-width: 5px;*/
/*    border-style: solid;*/
/*    border-color: #3554D1 transparent transparent transparent;*/
/*}*/

.tooltip-popup::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 85%;
    transform: translateX(-50%);
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #3554D1 transparent transparent transparent;
}