/* Tab Component CSS Starts here */

#tabSwitcher .custom-tab-switcher-v2-link {
    font-size: 18px !important;
    line-height: 20px !important;
    font-weight: 700 !important;
}

#Div1 ul,
#Div1 ol,
#Div2 ul,
#Div2 ol,
#Div3 ul,
#Div3 ol,
#Div4 ul,
#Div4 ol {
    list-style: initial;
    /* Ensures default bullet or number styling */
    padding-left: 40px;
    /* Adds standard padding for indentation */
    margin-bottom: 1rem;
    /* Adds space below the list */
    padding-bottom: 20px;
    /* Adds 20px bottom padding */
}

#Div1 ul li,
#Div1 ol li,
#Div2 ul li,
#Div2 ol li,
#Div3 ul li,
#Div3 ol li,
#Div4 ul li,
#Div4 ol li {
    margin-bottom: 0.5rem;
    /* Adds space between list items */
    line-height: 1.5;
    /* Improves readability with a bit more line height */
}

.ia-twoplusone,
.ia-pagecontent-head {
    float: inherit;
}

.notch {
    content: "";
    position: absolute;
    bottom: -29px;
    left: calc(50% - 50px);
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 30px solid transparent;
    z-index: 1000;
}

.custom-tab-switcher-v2 {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1500px;
    margin: auto;
}

.custom-tab-switcher-v2-link-container {
    display: flex;
    position: relative;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    text-align: center;
    border-bottom: 1px solid #00093a;
}

.custom-tab-switcher-v2-link {
    position: relative;
    padding: 10px 20px;
    background-color: #f2f2f2;
    color: #00093a;
    cursor: pointer;
    border: 1px solid #00093a;
    border-bottom: none;
    border-radius: 2px 2px 0 0;
    margin-right: 10px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 1.25;
    font-weight: normal;
    width: 100%;
}

.custom-tab-switcher-v2-link:last-child {
    margin-right: 0;
}

.custom-tab-switcher-v2-link-active {
    background-color: #fff;
    color: #00093a;
    border-bottom: 1px solid #fff;
    bottom: -1px;
}

.custom-tab-switcher-v2-container {
    width: 100%;
    border: 1px solid #00093a;
    border-top: none;
    padding: 48px 48px 80px 48px;
}

.custom-tab-switcher-v2-footer {
    width: 100%;
    border-radius: 0 0 5px 5px;
    border-top: none;
}

@media screen and (max-width: 767px) {
    .custom-tab-switcher-v2 {
        padding: 1em;
    }

    .custom-tab-switcher-v2-link-container {
        flex-direction: column;
        border-bottom: none;
        text-align: left;
    }

    .custom-tab-switcher-v2-link:not(:first-of-type) {
        margin-top: 16px;
    }

    .custom-tab-switcher-v2-link {
        width: 100%;
        margin-right: 0;
        border: 1px solid #00093a;
        border-radius: 0;
        margin-bottom: -1px;
        background-color: #fff !important;
    }

    .custom-tab-switcher-v2-link-active {
        border-bottom: 1px solid #00093a;
        color: #fff !important;
        background-color: #00093a !important;
    }

    .custom-tab-switcher-v2-link::after {
        content: "+";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .custom-tab-switcher-v2-link-active::after {
        content: "\2013";
    }

    .custom-tab-switcher-v2-container {
        display: none;
        border-top: 1px solid #00093a;
        padding: 30px 10px;
    }

    .custom-tab-switcher-v2-container.active {
        display: block;
    }
}
/* Tab Component CSS Ends here */