/* #region https://suran.atlassian.net/browse/INF-1190 */
/* Format tiles for Essential Help Center */
#content > section.pages > ul > li > div[data-component='tile'] {
    height: fit-content;
}

#content > section.pages > ul > li > div[data-component='tile'] > div.tile-body > div.tile-text {
    display: none;
}
/* #endregion INF-1190 */

/* #region INF-1173 */
body > header > div.header-content > div.header-links > ul > li.cdm-nav-button:not(.on-hover) {
    position: relative;
}
body
    > header
    > div.header-content
    > div.header-links
    > ul
    > li.cdm-nav-button
    .render-link-dropdown:not(.full) {
    display: none;
}
body > header > div.header-content > div.header-links > ul > li.cdm-nav-button[button-active] {
    background-color: #474747 !important;
    border-radius: 5px;
}
body
    > header
    > div.header-content
    > div.header-links
    > ul
    > li.cdm-nav-button[button-active]
    .render-link-dropdown {
    display: flex;
}
body
    > header
    > div.header-content
    > div.header-links
    > ul
    > li.cdm-nav-button[button-active]:not(.on-hover)
    a {
    text-decoration: none !important;
    width: 100%;
}
body
    > header
    > div.header-content
    > div.header-links
    > ul
    > li.cdm-nav-button
    > a
    > svg.caret-down {
    display: inline;
    margin-left: 3px;
    width: 12px;
    height: 12px;
    fill: none;
    stroke: #ffffff; /* White color */
    stroke-width: 3; /* Adjust thickness here */
    stroke-linecap: round; /* Rounds the ends */
    stroke-linejoin: round; /* Rounds the bottom tip */
}
.render-link-dropdown {
    background-color: white;
    border-radius: 5px;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 225px;
    padding: 0 0.5rem;
    border: 1px solid #c2c2c2;
}
.render-link-dropdown.full {
    opacity: 0;
    display: grid;
    width: 90vw;
    max-width: 1450px;
    min-height: 20px;
    padding: 2rem;
    transition: opacity 0.1s ease-in-out;
    right: 3rem;
    top: calc(100% - 0.5rem);
}
.render-link-dropdown.full.show {
    opacity: 1;
}
.render-link-dropdown .dropdown-column-title h3 {
    color: #e61125;
}
.render-link-dropdown ul {
    width: 100%;
    padding: 0.5rem 0;
    flex-direction: column;
}

.render-link-dropdown ul > li {
    width: 100%;
    padding: 0.5rem 0.5rem;
    cursor: pointer;
}
.render-link-dropdown.full ul > li {
    margin: 0 1rem 0 0;
}
.render-link-dropdown ul > li.selected,
.render-link-dropdown ul > li:hover {
    background-color: #ebebeb;
}
.render-link-dropdown ul > li.selected {
    border-radius: 10px;
}
.render-link-dropdown a {
    color: #000c34 !important;
}
.render-link-dropdown a.bold {
    font-weight: 600;
}
.render-link-dropdown ul > li > a {
    text-decoration: none !important;
    display: block;
    height: 100%;
    width: 100%;
}
/* #endregion INF-1173 */