/**
 * Settings Tabs Navigation Styles
 *
 * Styles for popup editor settings tabs navigation
 * Loaded on: Popup editor pages
 */

/* popup setting tabs */
.tabs_list ul li {
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    padding: 8px 15px;
}

.vertical_tabs {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
}

.v_tabs_content {
    position: relative;
    width: 70%;
}

.tabs_list ul {
    gap: 10px;
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.instant_popup_setting .tabs_content {
    background: white;
    padding: 20px;
    border-radius: 6px;
}

.instant_popup_setting {
    padding: 0;
    width: 100%;
}

.tab_content {
    display: none;
}

.tab_content.active {
    display: block;
}

ul.v_tabs_list li {
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    padding: 6px 15px;
    color: black;
    margin: 2px 0;
    line-height: 28px;
}

ul.v_tabs_list {
    border-radius: 6px;
    padding: 20px 0;
    width: 200px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0px;
}

ul.v_tabs_list li.active,
.tabs_list ul li.active {
    color: white;
    background: #1A73E8;
    font-weight: 600;
}

.v_tabs_content .v_tab_content {
    display: none;
}

.v_tabs_content .active {
    padding: 20px 0;
    display: block;
}

/* Top bar tabs */
.ipb_top_bar ul.list,
.instant_popup_setting .tabs_list ul {
    margin: 5px 0;
    display: flex;
    gap: 25px;
}

.instant_popup_setting .tabs_list {
    padding: 0.3rem 1rem;
    background: white;
    margin: 0 0 15px 0;
    border-radius: 6px;
}

.ipb_top_bar ul.list li a,
.instant_popup_setting .tabs_list ul li a {
    transition: 0.5s ease all;
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
}

.ipb_top_bar ul.list li,
.instant_popup_setting .tabs_list ul li {
    margin: 0;
}

.ipb_top_bar ul.list li a:hover,
.ipb_top_bar ul.list li a.active,
.instant_popup_setting .tabs_list ul li.active {
    background: #D8E7FB;
    color: #1A73E8;
    font-weight: 600;
}

/* Setting tab specific */
.ipb_setting_tab {
    padding: 10px;
    background: white;
    gap: 20px;
    width: 97%;
    display: flex;
}

.ipb_setting_tab .tabs_list {
    border-radius: 6px;
    padding: 20px 0;
    width: 200px;
    overflow: hidden;
    border: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin: 0px;
}

.ipb_setting_tab .tabs_list ul li {
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    padding: 6px 15px;
    color: black;
    margin: 2px 0;
    line-height: 28px;
    background: white;
    color: black;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.ipb_setting_tab .tabs_list ul li.active {
    color: white;
    background: #1A73E8;
}

.ipb_setting_tab .tabs_list ul li.active img {
    filter: invert(1);
}
