#plan {
    position: relative;
    z-index: 2;
    background-image: var(--plan--background_image);
    background-color: var(--plan--background_color);
}

.plan-pic {
    width: 864px;
    margin: 40px auto 0;
    max-width: none;

}

.plan-pic img {
    width: auto;
    height: 500px;
    border: 4px solid #FFFFFF;
    box-shadow: 0px 4px 32px 8px rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    background: #fff;
}

.plan-select-i {
    width: 256px;
}

.plan-select {
    margin-top: 26px;
    justify-content: center;
}

.dynamic-selector-ui-wrap {
    padding: 2px;
    border-radius: 24px;
    background-image: linear-gradient(calc(1deg * var(--plan--tab_line_color--degree)), var(--plan--tab_line_color--color_start), var(--plan--tab_line_color--color_end));
    cursor: pointer;
    position: relative;
}

.dynamic-selector-ui {
    padding: 6px 16px;
    isolation: isolate;
    border-radius: 24px;
/*    background: rgba(<?= $mc_3['r'] ?>, <?= $mc_3['g'] ?>, <?= $mc_3['b'] ?>, 0.7);*/
}

.dynamic-selector-ui-wrap .-arrow {
    background-image: var(--mc-chevron-up);
    width: 14px;
    height: 100%;
    position: absolute;
    background-size: contain;
    right: 1em;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
}

.info-tab-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
/*    background: rgba(<?= $mc_3['r'] ?>, <?= $mc_3['g'] ?>, <?= $mc_3['b'] ?>, 0.8);*/
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 24px 0;
    /*        max-height: 252px;*/
    /*        overflow-y: auto;*/
    z-index: 10;
}

.info-tab-options[data-showb="1"] {
    display: block;
}

.info-tab-options::-webkit-scrollbar {
    width: 6px;
}

.info-tab-options::-webkit-scrollbar-track {
    background: transparent;
}

.info-tab-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
}

.info-tab-option {
/*    background: rgba(<?= $mc_4['r'] ?>, <?= $mc_4['g'] ?>, <?= $mc_4['b'] ?>, 0);*/
    cursor: pointer;
    padding: 8px 24px;
    transition: all .3s;
}

.info-tab-option:hover {
/*    background: rgba(<?= $mc_4['r'] ?>, <?= $mc_4['g'] ?>, <?= $mc_4['b'] ?>, 0.3);*/
}

.dynamic-selector-ui[data-show-options="-1"]~.info-tab-options {
    display: none;
}

.selected-label {
    pointer-events: none;
    display: block;
    width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dynamic-selector--bg-close {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 5;
    cursor: default;
    display: none;
}

.dynamic-selector-ui[data-show-options="1"] .dynamic-selector--bg-close {
    display: block;
}

.-arrow {
    transition: all .3s;
    transform: rotate(180deg);
}

.dynamic-selector-ui[data-show-options="1"]~.-arrow {
    transform: rotate(0deg);
}

/*-- Mobile Version --*/
@media (max-width: 1319px) {
    .plan-select {
        flex-flow: column wrap;
        padding: 0 1rem;
    }

    #plan .-line {
        display: none;
    }

    .plan-select-i {
        width: 100%;
    }

    .plan-pic {
        width: calc(100% - 2rem);
        box-sizing: border-box;
        margin-top: 32px;
    }

    .plan-pic img {
        width: 100%;
        height: auto;
    }

    #plan .-line {
        height: 8px;
        width: 1px;
        background-color: var(--ci-grey-300);
        position: relative;
        top: 15px;
    }
    .plan-menu-content {
        padding: 0 1rem;
    }

}

/*-- Mobile Version --*/
@media (max-width: 767px) {
    .plan-menu-content{
        padding-left:0 ;
        padding-right:0 ;
    }
}
/*
#plan{
    --mc-tab-border-cl:var(--ci-grey-300);
}*/
#plan .info-tab-txt{
    color: var(--plan--new_tab_block--item_text);
}
#plan .info-tab{
    background: var(--plan--new_tab_block--bg_color);
}
#plan .info-tab.-active .info-tab-txt,
#plan .info-tab:hover .info-tab-txt{
    color: var(--plan--new_tab_block--item_text_hover_active);
}