body {
    margin: 0;
    padding: 0;
}

.wrapperForAllTooltips {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: #A7B7BA;
}

/* C13- Tool Tip Component - Desktop CSS Code Start */
.wrapperForTooltip {
    display: flex;
    width: fit-content;
    gap: 6px;
    position: relative;
}

.tooltipLayout {
    display: none;
    flex-direction: column;
    width: max-content;
    min-width: 120px;
    max-width: 288px;
    position: absolute;
    bottom: 100%;
    transform: translateZ(0);
    z-index: 998;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tooltipBody {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-2, 8px);
    border-radius: 2px;
    gap: 8px;
    box-sizing: border-box;
    z-index: 1;
    box-shadow: 2px 3px 10px 2px rgba(0, 0, 0, 0.3);
    background-color: #fffaec;
    overflow-wrap: break-word;
    word-wrap: break-word;
    /* max-height: calc(8 * 18px);  */
    overflow: hidden;
}

.tooltipText {
    position: relative;
    color: var(--text-secondary, #000);
    font-family: var(--Fonts-Family-Text, "Open Sans");
    font-size: var(--Fonts-Size-Text-Small, 14px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--Fonts-Line-Height-x-sm, 18px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tooltipTextLink {
    position: relative;
    text-decoration: underline;
    color: var(--text-link, #1A76C5);
    font-family: var(--Fonts-Family-Text, "Open Sans");
    font-size: var(--Fonts-Size-Text-Small, 14px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--Fonts-Line-Height-xx-sm, 16px);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.tooltipCaretItem {
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 16px;
    z-index: 1;
}

/* CSS code for Image & Bullet list added in tooltip - Start */
.tooltipImg>img {
    width: 100%;
}

.bulletedList {
    margin: 0;
}

.bulletedText {
    color: var(--text-secondary, #000);
    font-size: 14px;
    font-weight: 400;
    line-height: var(--Fonts-Line-Height-x-sm, 18px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

/* CSS code for Image & Bullet list added in tooltip - End */

/* Down Center, Left, Right - CSS code start */
.tooltipLayout[data-tooltip='down-center'] .tooltipCaretItem {
    align-items: center;
}

.tooltipLayout[data-tooltip='down-left'] .tooltipCaretItem {
    align-items: flex-start;
}

.tooltipLayout[data-tooltip='down-right'] .tooltipCaretItem {
    align-items: flex-end;
}

/* Down Center, Left, Right - CSS code end */

/* Up Center, Left, Right - CSS code start */
.tooltipLayout[data-tooltip='up-center'],
.tooltipLayout[data-tooltip='up-left'],
.tooltipLayout[data-tooltip='up-right'] {
    display: none;
    flex-direction: column-reverse;
    position: absolute;
    bottom: 100%;
    height: fit-content;
}

.tooltipLayout[data-tooltip='up-center'] .tooltipCaretItem {
    align-items: center;
}

.tooltipLayout[data-tooltip='up-left'] .tooltipCaretItem {
    align-items: flex-start;
}

.tooltipLayout[data-tooltip='up-right'] .tooltipCaretItem {
    align-items: flex-end;
}

.tooltipLayout[data-tooltip='up-center'] .tooltipCaretItem>.vectorIcon,
.tooltipLayout[data-tooltip='up-left'] .tooltipCaretItem>.vectorIcon,
.tooltipLayout[data-tooltip='up-right'] .tooltipCaretItem>.vectorIcon {
    transform: rotate(180deg);
}

/* Up Center, Left, Right - CSS code end */

/* Right Center - CSS code start */
.tooltipLayout[data-tooltip='right-center'] {
    flex-direction: row;
    align-items: center;
    display: none;
    min-width: 126px;
    position: absolute;
    height: fit-content;
}

.tooltipLayout[data-tooltip='right-center'] .tooltipCaretItem {
    padding: 16px 0px;
    margin-left: -4px;
    z-index: 998;
}

.tooltipLayout[data-tooltip='right-center'] .tooltipCaretItem>.vectorIcon {
    transform: rotate(270deg);
}

/* Right Center - CSS code end */

/* Left Center - CSS code start */
.tooltipLayout[data-tooltip='left-center'] {
    flex-direction: row-reverse;
    align-items: center;
    display: none;
    min-width: 126px;
    position: absolute;
    height: fit-content;
}

.tooltipLayout[data-tooltip='left-center'] .tooltipCaretItem {
    flex-direction: row;
    align-items: center;
    padding: 16px 0px;
    margin-right: -4px;
}

.tooltipLayout[data-tooltip='left-center'] .tooltipCaretItem>.vectorIcon {
    transform: rotate(90deg);
}

/* Left Center - CSS code end */

.vectorIcon {
    width: 12px;
    height: 6px;
}

.buttonAlertIcon {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    width: fit-content;
}

.alertIcon {
    width: 20px;
    height: 20px;
}

/* C13- Tool Tip Component - Desktop CSS Code End */

@media screen and (max-width: 1023.9px) {

    /* C13- Tool Tip Component - Mobile CSS Code Start */

    .tooltipBody {
        gap: 4px;
    }

    .tooltipText {
        font-size: 12px;
        font-weight: 400;
        line-height: var(--Fonts-Line-Height-xxx-sm, 14px);
    }

    .tooltipTextLink {
        font-size: 12px;
        font-weight: 600;
        line-height: var(--Fonts-Line-Height-xxx-sm, 14px);
    }

    .alertIcon {
        width: 16px;
        height: 16px;
    }

    /* CSS code for Image & Bullet list added in tooltip - Start */
    .bulletedText {
        font-size: 12px;
        font-weight: 400;
        line-height: var(--Fonts-Line-Height-xxx-sm, 14px);
    }
    /* CSS code for Image & Bullet list added in tooltip - End */

    /* C13- Tool Tip Component - Mobile CSS Code End */

}