span.hover:hover {
    cursor: pointer;
}

.search-container {
    position: relative;
}

.search-buffer {
    height: 40vh;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 50px rgba(224, 224, 224, 0.65);
    border-radius: 58px;
    overflow: hidden;
    /* width: 100%; */
    min-width: 600px;
    height: 30px;
}

.search-bar select, .search-bar input, .search-bar a {
    margin: 0;
    height: 30px;
    box-sizing: border-box;
}

.search-bar select {
    box-shadow: none;
    border: none;
    width: 128px;
    font-size: 12px;
    background-color: var(--alignvu-background);
    border-top-left-radius: 58px;
    border-bottom-left-radius: 58px;
    padding: 0px 15px;
    color: #9c9c9c;
}

.search-bar select:focus {
    outline: none;
}

.search-bar input[type="search"] {
    padding: 9px 15px;
    border: none;
    width: 100%;
    background-color: white;
}

.search-profile .vendor-filter-menu {
    margin-left: 200px;
    margin-top: 100px;
}


.search-results .modal-content,
.search-profile .modal-content,
.latency-search-results .modal-content {
    min-width: 80%;
    height: calc(100vh - 200px);
    padding: 20px;
}

.search-profile .modal-body,
.search-results .modal-body,
.latency-search-results .modal-body {
    overflow: hidden;
    overflow-y: scroll;
    padding: 0 5px;
}

.search-results .search-result-container-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: fit-content(1em);
    grid-gap: 1em;
}

.search-results .search-result-container-grid.entity-overview {
    grid-template-columns: 4fr 2fr;
}

.search-results .search-result-container-grid .entity-overview-column {
    overflow: hidden;
    overflow-y: scroll;
    border: 2px solid #d1d3d2;
    border-radius: 8px;
    padding: 1em;
}

.search-results .search-filter-component {
    display: grid;
    grid-template-columns: 15px 1fr;
    grid-gap: 5px;
    align-items: start;
}

.search-results .search-filter-component.indent {
    margin-left: 10px;
}

.search-results .search-filter-component [onclick] {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    word-break: break-all;
}

.search-results .search-filter-component[data-type="sort"] {
    align-items: center;
}

.entity-overview-card .entity-overview-tags {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 5px;
}

.entity-overview-card .search-result-data-block {
    grid-gap: 5px;
    flex-wrap: wrap;
}

.entity-overview-card .search-result-data-block h4 {
    font-size: 13px;
    margin: 0;
}

.entity-overview-card .search-result-data-block p {
    font-size: 13px;
    margin: 0;
}

.search-results .entity-overview-card .search-result-header h3.search-result-name {
    margin: 0;
    padding: 0;
}

.search-results .search-filter-component.parent {
    grid-template-columns: 1fr 15px;
    align-items: center;
    margin-top: .5em;
}

.search-results .search-filter-component.showmore {
    grid-template-columns: 1fr;
    margin-top: 5px;
}

.search-results .search-filter-component.showmore button {
    height: 20px;
    width: 100%
}

.search-results .search-results-grid .search-results-filter-panel .search-results-filter-facet-terms .search-facet-term-container {
    display: grid;
    grid-gap: 2px;
    margin: 0.5em 0;
    max-height: 10vh;
    overflow-y: scroll;
}

.search-results .search-results-grid .search-results-filter-panel .search-results-filter-facet-terms .search-facet-term-container button {
    height: 20px;
    width: 100%
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graph {
    display: grid;
    grid-template-columns: 90px 120px 140px;
    min-height: 20px;
    align-items: center;
    grid-gap: 6px;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graph[data-btn] {
    grid-template-columns: 90px 1fr;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graph[data-btn] a {
    grid-column: 2/3;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graph[data-btn] a button {
    height: 17px;
    font-size: 11px;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graph svg {
    /* height: 20px; */
    width: 75px;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graph div.changeGraphWidth {
    /* width: 75px; */
    /* height: 20px; */
    border-right: 2px solid #8f868e;
    padding-right: 2px;
    display: flex;
    flex-direction: row-reverse;
    grid-gap: 2px;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graph p {
    font-size: 11px;
    padding: 0;
    margin: 0;
    word-break: break-word;
    width: fit-content;
}

.search-results div.search-metric-child-value:hover div.search-tooltip {
    display: block;
}

.search-results div.search-metric-child-value {
    position: relative;
    width: fit-content;
}

.search-results div.search-metric-child-value div.search-tooltip {
    display: none;
    position: absolute;
    right: 25px;
    bottom: 10px;
    font-size: 11px;
    background-color: white;
    line-height: 20px;
    white-space: nowrap;
    padding: 0 5px;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    box-sizing: border-box;
    font-weight: normal;
    z-index: 10;
    box-shadow: 0px 0px 10px #c9c9c963;
}

.search-results div.search-metric-child-value div.search-tooltip p {
    color: var(--alignvu-alignify-grey);
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graph svg.valueGraph {
    width: 120px;
}

.search-results .search-results-filter-panel p {
    margin: 0;
}

.search-results .search-results-filter-panel p.search-results-filter-title {
    color: var(--alignvu-alignify-grey);
}

.search-results .search-results-filter-container {
    position: sticky;
    width: 100%;
    /* height: fit-content; */
    top: 75px;
    max-height: calc(100vh - 210px);
    overflow: hidden;
}

.search-results .search-results-filter-panel .search-filter-component span[onclick] {
    cursor: pointer;
    font-weight: bolder;
    font-size: 15px;
}

.search-results .search-results-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    margin-top: 20px;
    grid-gap: 10px;
}

.search-results .filter-footer {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-top: 2em;
}

.search-results .search-results-filter-section {
    height: fit-content;
    position: sticky;
}

.search-results .search-results-filter-facet-terms {
    margin-top: 0.5em;
    border-bottom: 1px solid #d4d4d4;
    margin-bottom: 5px;
}

.search-results .search-results-filter-facet-terms p.facet-name {
    font-size: 14px;
    font-weight: bold;
    color: var(--alignvu-text);
}

.search-results .filters {
    margin: 0 0 0.5em 0;
    overflow-y: scroll;
    max-height: calc(100vh - 600px);
}

.search-results-filter-panel #search-facet-filter-button {
    margin: 5px 0;
}

.search-results .search-results-filter-panel p.search-results-filter-title {
    color: var(--alignvu-alignify-grey);
    font-weight: bold;
    /* margin: 1em 0 0 0; */
}

.search-results .search-results-filter-panel .search-filter-component p {
    font-size: 13px;
    color: var(--alignvu-text);
    font-weight: lighter;
}

.search-results .search-results-filter-panel .search-filter-component.parent p span.facet-name,
.search-results .search-results-filter-panel .search-filter-component.parent p {
    font-weight: bold;
    font-size: 14px;
}

.search-results .search-results-filter-panel .search-filter-component p span.facet-name {
    font-weight: normal;
}

.search-results .search-results-filter-panel .search-filter-component input[type="checkbox"] {
    margin: 2px;
    padding: 0;
    margin-top: 4px;
}

.search-results .search-results-metric-summary-container {
    padding: 10px;
    border-radius: 10px;
    background: var(--alignvu-white);
    margin: 10px 0;
    box-shadow: 0px 0px 5px 1px rgb(151 151 151 / 30%);
    overflow-x: scroll;
    /* width: calc(100vw - 380px); */
}

.search-results .search-results-metric-summary-container .search-results-metric-summary {
    /* width: 400px; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    grid-gap: 5px;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary:not(:last-child) {
    border-right: 2px solid #dfdfdf91;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary h2 {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    display: flex;
    grid-gap: 5px;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary h2 .count-summary {
    display: flex;
    grid-gap: 2px;
}

.search-results .search-results-metric-summaries {
    display: flex;
    /* justify-content: center; */
    align-items: flex-start;
    grid-gap: 1em;
    /* width: 100%; */
    flex-wrap: wrap;
}

.search-results .search-results-latency-summaries {
    margin-top: 20px;
}

.search-results .search-results-latency-summaries table .first {
    min-width: 250px;
    max-width: 325px;
    position: sticky;
    left: 0;
}

.search-results .search-results-latency-summaries table td {
    font-size: 13px;
}

.search-results .search-results-latency-summaries table th,
.search-results .search-results-latency-summaries table td {
    min-width: 50px;
}

.search-results .search-results-latency-summaries .search-results-latency-table-container {
    width: 100%;
    overflow: scroll;
}

.search-results .search-results-latency-summaries table,
.search-results .search-results-latency-summaries table th,
.search-results .search-results-latency-summaries table td { /* border: 1px solid black; */
    border-collapse: collapse;
}

.search-results .search-results-latency-summaries table th,
.search-results .search-results-latency-summaries table td {
    text-align: start;
    vertical-align: top;
    background: white;
    padding: 2px 5px;
    border-right: 1px solid #dfdfdf91;
}

.search-results .search-results-latency-summaries table td .latency-row {
    display: flex;
    grid-gap: 2px;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graphs {
    width: 100%;
    height: 100%;
}

.search-results .search-results-metric-summary-container .search-results-metric-summary .search-results-metric-graphs {
    display: grid;
    grid-gap: 2px;
}

.search-results .change-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 28px;
    border-radius: 3px;
    /* margin-left: 5px; */
    font-size: 8px;
}

.search-results .change-badge[onclick] {
    cursor: pointer;
}

.search-results .change-badge p {
    color: white;
    font-size: 9px !important;
}

.search-results .change-badge.add {
    background-color: var(--alignvu-added);
}

.search-results .change-badge.change {
    background-color: var(--alignvu-changed);
}

.search-results .change-badge.delete {
    background-color: var(--alignvu-removed);
}

.search-results .search-results-filter-panel #search-sort-by {
    display: flex;
    justify-content: space-between;
}

.search-result-tags a:hover p.tooltip {
    display: block;
}

.search-result-tags a p.tooltip {
    display: none;
    position: absolute;
    left: 80px;
    top: 15px;
    font-size: 11px;
    background-color: white;
    color: var(--alignvu-alignify-grey);
    line-height: 20px;
    white-space: nowrap;
    padding: 0 5px;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    box-sizing: border-box;
    font-weight: normal;
    box-shadow: 0px 0px 10px #c9c9c963;
}

.search-results .search-results-filter-panel #search-sort-by label {
    color: var(--alignvu-alignify-grey);
}

.search-results .search-results-filter-panel {
    margin-top: 8px;
}

.search-results .search-bar input[type="search"] {
    width: 100%;
}

.search-results .search-bar {
    width: 50%;
}

.search-bar input[type="search"]::placeholder {
    color: #9c9c9c;
}

.search-bar input[type="search"]:focus {
    outline: none;
}

.search-bar a {
    background-color: var(--alignvu-alignify-grey);
    color: white;
    border: none;
    border-top-right-radius: 58px;
    border-bottom-right-radius: 58px;
    padding: 9px 0 9px 10px;
    width: 50px;
    cursor: pointer;
}

.search-results-container, .search-recent {
    width: 73%;
    background-color: /*var(--alignvu-white);rgba(150, 159, 156, 0.1);*/ var(--alignvu-background);
    box-shadow: 0px 20px 30px rgba(219, 219, 219, 0.719);
    /* padding: 20px 30px 20px 30px; */
    border-radius: 5px;
    position: absolute;
    z-index: 999999;
    overflow: hidden;
    right: 40px;
    top: 35px;
}

.search-auto-suggest-container {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    align-items: start;
    grid-gap: 1rem;
}

.search-auto-suggest-entity-tag {
    background-color: var(--alignvu-alignify-grey);
    border-radius: 3px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar-selected-suggestions {
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: row;
}

.search-bar-selected-suggestions .search-bar-selected-badge {
    background-color: var(--alignvu-background);
    padding: 2px 10px;
    border-radius: 15px;
    color: #9d9d9d;
    display: grid;
    grid-template-columns: 1fr 10px;
    align-items: center;
    justify-items: center;
    align-content: center;
    grid-gap: 5px;
    height: 30px;
    width: max-content;
}

.search-bar-selected-suggestions .search-bar-selected-badge p {
    padding: 0;
    margin: 0;
    font-size: 11px;
}

.search-auto-suggest-entity-tag p {
    color: white;
    font-size: 13px;
}

.search-auto-suggestion {
    box-sizing: border-box;
    border: 1px solid #f7f7f7;
    background-color: white;
    border-radius: 3px;
    height: fit-content;
    /* display: grid; */
    /* justify-content: space-between; */
    /* align-items: center; */
    /* padding: 4px 8px; */
    /* grid-gap: 8px; */
    /* grid-auto-flow: column; */
    /* grid-auto-columns: min-content 1fr; */
}

.search-bar-selected-suggestions .search-bar-selected-badge *[onclick],
.search-auto-suggestion *[onclick] {
    cursor: pointer;
}

.search-auto-suggestions,
.search-auto-suggestions .search-auto-suggestion,
.search-auto-suggestions .search-auto-suggestion td {
    border-collapse: collapse;
    padding: 4px 8px;
}

.search-auto-suggestion td:first-child {
    width: max-content;
}

.search-auto-suggestion td {
    width: 100%;
}

.search-auto-suggestion p {
    font-size: 13px;
    margin: 0;
    padding: 0;
}

.search-recent p {
    font-size: 13px;
}

p.search-recent-label {
    color: #9c9c9c;
    margin-bottom: 0.5rem;
}

.search-recent-entity-types, .seach-recent-searches {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-content: space-between;
    grid-gap: 1rem;
    margin-bottom: 1rem;
}

.search-recent-entity-tag, .search-recent-term {
    box-sizing: border-box;
    width: 100%;
    padding: 0 10px;
    border-radius: 3px;
    height: 30px;
    displaY: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.search-recent-entity-tag {
    background-color: var(--alignvu-alignify-grey);
}

.search-recent-entity-tag p {
    color: white;
}

.search-recent-term {
    border: 1px solid var(--alignvu-alignify-grey);
    background-color: white;
}

.search-recent-term p {
    color: var(--alignvu-alignify-grey);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem
}

.search-header h1 {
    font-size: 20px;
    margin: 0;
}

.search-results h2 {
    margin: 0;
    font-size: 18px;
    color: var(--alignvu-text);
}

.search-results-header {
    width: 100%;
    margin: 0 -45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 45px;
    background-color: var(--alignvu-background);
}

.search-results-header-buttons button, .search-results-header-buttons select {
    width: 140px;
    height: 30px;
    text-align: center;
    box-shadow: none;
}

.search-results-filters {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-result-entity-type-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.search-results-entity-type-filter, .search-results-filter {
    background-color: var(--alignvu-background);
    height: 30px;
    width: 140px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.search-results-entity-type-filter {
    margin-right: 10px;
}

.search-results-entity-type-filter:hover {
    background-color: var(--alignvu-alignify-grey);
}

.search-results-entity-type-filter:hover p {
    color: white;
}

.search-results-filter {
    background-color: var(--alignvu-alignify-grey);
    margin: 16px 0 0 0;
}

.search-results-filter p {
    color: white;
    margin: 0 2px;
}

.search-results-entity-type-filter p, .search-results-filter p {
    font-size: 13px;
}

.search-results-dropdown-filter {
    position: fixed;
}

.search-results-active-filter {
    background-color: var(--alignvu-alignify-grey) !important;
}

.search-results-active-filter p {
    color: white;
}

.search-results-dropdown-options {
    width: 200px;
    border-radius: 4px;
    margin-top: 5px;
}

.dropdown-filter-checkboxes {
    display: flex;
    justify-content: start;
    align-items: center;

}

.dropdown-filter-checkboxes:nth-child(odd) {
    background-color: #d1d1d1;
}

.dropdown-filter-checkboxes:nth-child(even) {
    background-color: #dddddd;
}

.dropdown-filter-checkboxes:nth-child(odd):hover {
    background-color: var(--alignvu-alignify-grey);
}

.dropdown-filter-checkboxes:nth-child(even):hover {
    background-color: var(--alignvu-alignify-grey);
}

.dropdown-filter-checkboxes:nth-child(odd):hover label {
    color: white;
}

.dropdown-filter-checkboxes:nth-child(even):hover label {
    color: white;
}

.dropdown-filter-checkboxes label {
    font-size: 12px;
    line-height: 30px;
    width: 100%;
}

.search-results-dropdown-buttons {
    display: flex;
    justify-content: space-evenly;
}

.search-results-dropdown-buttons button {
    width: 66.666666px;
    border-radius: 0px;
}

.search-results-dropdown-buttons .mapping-form-button {
    background-color: white;
}


.search-results-facet-filters {
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    width: calc(100vw - 309.5px);
    height: 380px;
    background-color: #cccccc;
    margin: 0 -45px;
    padding: 0 45px
}

.search-results-facet-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    background-color: #dddddd;
    margin: 0 -45px;
    padding: 0 20px;
}

.search-results-facet-filters-header p {
    font-size: 18px;
}

.search-results-facet-filters p {
    font-weight: lighter;
}

.search-results-facet-filters-container p {
    font-size: 12px;
    font-weight: 400;
}

.search-results-facet-filters-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
    margin: 0 -45px;
}

.search-results-tier-1, .search-results-tier-2 {
    border-right: 1px solid #999999;
}

.search-results-facet-filter {
    overflow-y: auto;
    overflow-x: hidden;
}

.search-results-facet-filter a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    cursor: pointer;
}


.search-results-tier-3 a.active p {
    color: white;
}

.search-results-facet-filter a:hover {
    background-color: #96bdc0;
}

.search-results-facet-filter a:nth-child(even) {
    background-color: #dddddd;
}

.search-results-facet-filter a.active {
    background-color: #96bdc0;
}

.search-results-tier-3 a.active {
    background-color: var(--alignvu-alignify-grey);
}


.search-results-facet-filters-header-buttons .mapping-form-button {
    /* width: 150px; */
}

.search-results-facet-filters-header-buttons .mapping-form-button-colored {
    /* width: 105px;*/
}

.search-results-x-close {
    vertical-align: middle;
    padding-left: 15px;
    cursor: pointer;
}

.search-results .in-page-actions {
    justify-content: space-between;
    /* width: 100%; */
}

.search-results .in-page-actions p {
    margin: 0;
}

.search-results .search-results-latency-summaries .in-page-actions p {
    font-size: 13px;
}

.search-results .in-page-action-button p {
    font-size: 14px;
    color: var(--alignvu-alignify-grey);
    font-weight: lighter;
}

.search-result-card {
    box-sizing: border-box;
    min-height: 150px;
    background-color: white;
    box-shadow: 0px 0px 14px 8px rgb(151 151 151 / 30%);
    padding: 5px 20px;
    border-radius: 5px;
    margin: 0 0 1rem 0;
}

.search-result-card h3, .search-result-card span.search-entity-expansion, .search-result-card span.search-change-expansion {
    font-size: 16px;
    word-break: break-word;
}

.search-result-card .entity-overview-card h3 {
    font-size: 13px;
}

.search-result-card .search-result-tag.teal {
    font-weight: bold;
    border-width: 2px;
}

.search-results #search-basisoflink-modal .basisoflink-content table,
.search-results #search-basisoflink-modal .basisoflink-content table tr,
.search-results #search-basisoflink-modal .basisoflink-content table tr td {
    border: 1px solid #dfdfdf91;
    border-collapse: collapse;
    padding: 2px;
    width: 100%;
}

.search-results #search-basisoflink-modal .basisoflink-content table tr td.first {
    font-weight: normal;
}

.search-results #search-basisoflink-modal .basisoflink-content table tr td {
    vertical-align: top;
    width: fit-content;
    font-weight: lighter;
    font-size: 14px;
}

.search-profile .profile-same-attribute-modal .profile-possible-field-value {
    font-weight: bold;
}

.search-profile .data-card table thead {
    background-color: white;
    position: sticky;
    top: 230px;
}

.search-profile .profile-same-attribute-modal .modal-content {
    width: 50%;
}

.search-profile .profile-same-attribute-modal .modal-scroll-content {
    overflow-y: scroll;
    max-height: calc(100vh - 350px);
}

.search-profile .profile-same-attribute-modal .modal-scroll-content .search-result-tag {
    margin: 0;
}

.search-profile .profile-same-attribute-modal .modal-scroll-content table,
.search-profile .profile-same-attribute-modal .modal-scroll-content tr,
.search-profile .profile-same-attribute-modal .modal-scroll-content tr th,
.search-profile .profile-same-attribute-modal .modal-scroll-content tr td {
    padding: 0;
    vertical-align: top;
    border-collapse: collapse;
    /* border:1px solid grey; */
    border-bottom: 1px solid #d4d4d4;
    padding: 2px 5px;
    width: max-content;
    box-sizing: border-box;
}

.search-profile .profile-rgc-vendor-timestamp-modal .modal-scroll-content table,
.search-profile .profile-rgc-vendor-timestamp-modal .modal-scroll-content tr,
.search-profile .profile-rgc-vendor-timestamp-modal .modal-scroll-content tr th,
.search-profile .profile-rgc-vendor-timestamp-modal .modal-scroll-content tr td {
    vertical-align: top;
    border-collapse: collapse;
    box-sizing: border-box;
}

.search-profile .profile-rgc-vendor-timestamp-modal .modal-scroll-content tr th,
.search-profile .profile-rgc-vendor-timestamp-modal .modal-scroll-content tr td {
    padding: 5px 20px 0 0;
}

.search-profile .profile-same-attribute-modal .modal-scroll-content tr td {
    border: unset;
}

.search-profile .profile-same-attribute-modal .modal-scroll-content table {
    width: 100%;
}

.search-profile .profile-same-attribute-modal .modal-scroll-content tr th,
.search-profile .profile-same-attribute-modal .modal-scroll-content tr td {
    min-width: 100px;
    padding: 5px;
    max-width: 500px;
}

.search-profile .profile-same-attribute-modal .modal-scroll-content tr td a {
    font-size: 12px;
}

.search-profile .profile-same-attribute-modal .modal-scroll-content tr td a[onclick] {
    text-decoration: underline;
    text-decoration-style: dotted;
    cursor: pointer;
}

.search-profile .data-card table {
    /* min-width: calc(100vw - 420px); */
    /* width: 100%; */
    width: 100%;
}

.search-profile .data-card > .search-result-data-rows {
    /* overflow-x: scroll; */
    /* width: calc(100vw - 400px); */
    /* overflow: scroll; */
    /* max-height: calc(100vh - 500px); */
    display: unset;
}


.search-profile .search-result-tag.teal.datafeed-pill {
    border-width: 2px;
    font-weight: bold;
    /* display: flex; */
    flex-direction: column;
}

.search-result-card .entity-overview-card .search-result-tag {
    font-size: 10px;
}

.search-result-card h3[onclick] {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.search-result-card h3[onclick], .search-result-card span.search-entity-expansion[onclick], .search-result-card span.search-change-expansion[onclick] {
    cursor: pointer;
}

.search-result-card span.search-entity-expansion, .search-result-card span.search-change-expansion {
    color: #606060;
    background-color: var(--alignvu-background);
    padding: 10px;
    display: flex;
    margin-top: 10px;
    align-items: center;
    grid-gap: 5px;
}

.search-result-card span.search-change-expansion span {
    display: flex;
    align-items: center;
}

.search-result-card .search-change-area {
    padding-top: 10px;
    padding-bottom: 20px;
}

.search-results .search-result-card .search-change-area .search-change-area-header,
.search-results .search-result-card .search-change-area .search-change-area-row {
    display: grid;
    grid-template-columns: 125px 100px 1fr;
    grid-gap: 5px;
}

.latency-search-results .search-result-card .search-change-area .search-change-area-header-extra,
.latency-search-results .search-result-card .search-change-area .search-change-area-row-extra {
    display: grid;
    grid-template-columns: 125px 1fr 1fr;
    grid-gap: 5px;
    align-items: start;
}

.latency-search-results .search-result-card .search-change-area .search-change-area-header,
.latency-search-results .search-result-card .search-change-area .search-change-area-row {
    display: grid;
    grid-template-columns: 125px 100px 350px 100px 1fr;
    grid-gap: 5px;
}

.latency-search-results .search-result-card .search-change-area .search-change-area-row:not(:last-child) {
    margin-bottom: 10px;
}

.latency-search-results .search-results-grid {
    margin-top: 10px;
}

.latency-search-results .search-result-card .search-change-area .latency-metric-datafeedid {
    word-break: break-word;
}

.search-results .search-result-card .search-change-area .search-change-area-header-extra,
.search-results .search-result-card .search-change-area .search-change-area-row-extra {
    display: grid;
    grid-template-columns: 125px 1fr 1fr;
    grid-gap: 5px;
    align-items: start;
}

.search-result-card .search-change-area .search-change-area-header p,
.search-result-card .search-change-area .search-change-area-row p {
    font-size: 12px;
    color: var(--alignvu-text);
    margin: 0;
    padding: 0;
}

.search-result-card .search-change-area .search-change-area-header p {
    font-weight: bold;
}

.profile-history-change-detail {
    display: grid;
    grid-gap: 5px;
    align-items: start;
}

.search-result-card .search-change-area .search-change-area-row .profile-history-change-detail[data-typeofchange="Added"] {
    grid-column: 2;
}

.search-result-card .search-change-area .search-change-area-row .profile-history-change-detail[data-typeofchange="Removed"] {
    grid-column: 3;
}

.search-result-card .search-change-area .search-change-area-row p[onclick] {
    cursor: pointer;
}

.search-result-card .search-change-area .search-change-area-row .search-change-detail-refcode {
    grid-column: 1;
    width: fit-content;
    display: flex;
    grid-gap: 5px;
}

.search-result-card .search-change-area .search-change-area-row .profile-history-change-detail-group {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-gap: 5px;
}

.search-result-card .search-change-area .search-change-area-row button {
    height: 20px;
}

.search-result-card .search-change-area .search-change-area-row .profile-history-change-detail-group p {
    margin: 0;
    padding: 0;
    word-break: break-word;
}

.search-result-card .search-change-area .search-change-area-row .profile-history-change-detail-group span[onclick] {
    cursor: pointer;
}

.search-result-data-row-3 {
    padding-top: 20px;
}

.search-result-card .search-change-area table, .search-result-data-row-3 table {
    /* color: #333333; */
    font-size: 13px;
}

.search-result-card .search-change-area table th, .search-result-card .search-change-area table td, .search-result-data-row-3 table th, .search-result-data-row-3 table td {
    text-align: left;
    vertical-align: top;
    padding-right: 2rem;
    font-size: 13px;
}

.search-result-card table th {
    font-weight: bold;
    font-size: 13px;
}

.search-result-card .search-change-area table th.nowrap, .search-result-card .search-change-area table td.nowrap, .search-result-data-row-3 table th, .search-result-data-row-3 table td.nowrap {
    white-space: nowrap;
}

.search-result-card .search-change-area table div.row {
    display: block;
}

.search-result-card .search-change-area table div.bold {
    font-weight: bold;
}

.search-result-card .search-change-area table div.field {
    display: inline;
    width: 10%;
    padding-right: 20px;
}

.search-result-card .search-change-area table div.value {
    display: inline;
    width: calc(90% - 20px);
}

.search-entity-expansion-area {
    /* background-color: var(--alignvu-background); */
    /* margin-bottom: 5px; */
    display: flex;
    flex-direction: column;
    width: 100%;
    grid-gap: 1em;
}

.search-entity-expansion-area .entity-overview-card {
    display: flex;
    grid-gap: 5px;
    flex-direction: column;
    flex-wrap: wrap;
}

.search-entity-expansion-area .entity-overview-card:not(:last-child) {
    border-bottom: 2px solid #dfdfdf91;
    padding-bottom: 1em;
}

.search-entity-expansion-area .search-result-card {
    border: 2px solid #979797;
    margin-bottom: 5px;
}

.search-result-card h3 img, .search-results-facet-filter img {
    transform: rotate(180deg);
}

.search-result-card h3 span {
    font-size: 14px;
    font-weight: lighter;
}

.search-results-header-bar {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
}

.search-results .in-page-actions.search-results-header-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* padding: 0; */
}

.search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.search-result-header .recordData {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    width: 40%;
}

.search-result-header .recordData.related {
    align-items: flex-end;
    margin-left: 10px;
    width: 40%;
}

.search-result-header .recordData .recordDataHeader,
.search-result-header .recordData .search-result-tags-parent {
    display: flex;
    grid-gap: 5px;
    align-items: center;
}

.search-result-header .recordData .search-result-tag {
    margin: 0;
}

.search-result-header .header-end {
    display: flex;
    justify-content: end;
    align-items: center;
}

.search-result-tags {
    display: flex;
    justify-content: end;
    align-items: center;
    grid-gap: 5px;
}

.search-results-selected-facets .search-result-tags p {
    font-size: 11px;
}

.search-result-tags a[onclick] {
    cursor: pointer;
    position: relative;
}

.search-result-connection-tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-result-tag, .search-result-connection-tag {
    box-sizing: border-box;
    padding: 0px 20px;
    font-size: 11px;
    text-align: center;
    min-height: 20px;
    border-radius: 100px;
    display: flow-root;
    justify-content: center;
    align-items: center;
    /* margin: 0 0.5rem; */
    width: fit-content;
    height: fit-content;
}

h4 a.search-result-tag {
    display: inline;
}

.search-result-connection-tag {
    width: 150px;
}

.search-result-tag {
    padding: 0px 10px;
}

.search-result-tag.green {
    border: 1px solid var(--alignvu-green);
    color: var(--alignvu-green);
}

.search-result-tag.samedaychange {
    background-color: var(--alignvu-purple);
    color: white;
}

.search-result-tag.orange {
    border: 1px solid var(--alignvu-amber);
    color: var(--alignvu-amber);
    white-space: nowrap;
}

.search-result-tag.added {
    border: 1px solid var(--alignvu-added);
    color: var(--alignvu-added);
}

.search-result-tag.changed {
    border: 1px solid var(--alignvu-changed);
    color: var(--alignvu-changed);
}

.search-result-tag.removed {
    border: 1px solid var(--alignvu-removed);
    color: var(--alignvu-removed);
}

.search-result-tag.added:hover {
    background-color: var(--alignvu-added);
    color: white;
}

.search-result-tag.changed:hover {
    background-color: var(--alignvu-changed);
    color: white;
}

.search-result-tag.removed:hover {
    background-color: var(--alignvu-removed);
    color: white;
}

.search-result-tag[onclick] {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.search-result-tag.orange[onclick]:hover {
    color: var(--alignvu-white);
    background-color: var(--alignvu-amber);
}

.search-result-tag.red {
    border: 1px solid var(--alignvu-red);
    color: var(--alignvu-red);
}

.search-result-tag.teal {
    border: 1px solid var(--alignvu-alignify-grey);
    color: var(--alignvu-alignify-grey);
}

.search-result-tag.teal[onclick]:hover {
    color: var(--alignvu-white);
    background-color: var(--alignvu-alignify-grey);
}

.search-result-connection-tag.active {
    border: 1px solid var(--alignvu-alignify-grey);
    color: var(--alignvu-alignify-grey);
}

.search-result-connection-tag.inactive {
    border: 1px solid var(--alignvu-text);
    color: var(--alignvu-text);
}

.search-result-match-score {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 10px;
}

.search-result-match-score-1, .search-result-match-score-2,
.search-result-match-score-3, .search-result-match-score-4,
.search-result-match-score-5, .search-result-match-score-6,
.search-result-match-score-7, .search-result-match-score-8,
.search-result-match-score-9, .search-result-match-score-10 {
    width: 12px;
    height: 20px;
    border: 1px solid var(--alignvu-white);
    background-color: var(--alignvu-alignify-grey);
    margin: 0;
    padding: 0;
}

.search-result-match-score-1 {
    border-top-left-radius: 14.5px;
    border-bottom-left-radius: 14.5px;
}

.search-result-match-score-10 {
    border-top-right-radius: 14.5px;
    border-bottom-right-radius: 14.5px;
}

.search-result-match-score .inactive {
    height: 18px;
    background-color: white;
    border: 1px solid var(--alignvu-alignify-grey);
}

.search-result-data-row-1, .search-result-data-row-2 {
    display: flex;
    justify-content: space-between;
    align-items: start;
    grid-gap: 5px;
    /* width: 100%; */
}

.search-result-data-row-1 > div, .search-result-data-row-2 > div {
    display: flex;
    justify-content: start;
    align-items: start;
    grid-gap: 1rem;
}

.search-result-data-row-1 .id-block, .search-result-data-row-2 .id-block {
    text-align: right;

}

.search-result-data-row-1 .id-block .search-result-data-block p,
.search-result-data-row-1 .id-block .search-result-data-block h4,
.search-result-data-row-2 .id-block .search-result-data-block p,
.search-result-data-row-2 .id-block .search-result-data-block h4 {
    margin-right: 0;
    /* margin-left: 1rem; */
}

/*.search-result-data-row-2 {
    display: flex;
    justify-content: start;
    align-items: start;
}*/


.search-result-data-block {
    display: flex;
    justify-content: start;
    align-items: start;
    margin: 0;
}


.search-result-data-block.pin-right {
    justify-content: end;
}

.search-profile h4, .search-profile-body th {
    font-size: 21px;
    margin: 10px 0;
    margin-left: 20px;
    display: flex;
    align-items: center;
    grid-gap: 5px;
    flex-wrap: wrap;
}

.search-profile h4 {
    margin: unset;
}

.search-profile-body th, .search-profile-body td {
    /* min-width: 100px; */
    word-break: normal;
    vertical-align: top;
    text-align: left;
    /* padding-right: 20px; */
    padding-bottom: 10px;
    max-width: 300px;
    box-sizing: border-box;
}

@media only screen and (max-width: 1200px) {
    .search-profile-body th, .search-profile-body td {
        min-width: unset;
    }
}

.search-profile td.feedrecord {
    /* display: flex; */
    grid-gap: 5px;
    align-items: center;
}

.search-profile-body .feedrecord {
    width: max-content;
    /* max-width: unset; */
    /* min-width: max-content !important; */
}

.search-profile-body th.last, .search-profile-body td.last {
    padding-right: 0px;
}

.search-profile-body th {
    display: table-cell;
    vertical-align: bottom;
    border-bottom: 1px solid #d4d4d4;
}

.search-profile-body th.expand:hover, .search-profile-body td.expand:hover {
    cursor: pointer;
}

.search-profile-body th.wider, .search-profile-body td.wider {
    min-width: 300px;
    max-width: 350px;
    word-break: break-word;
}

.search-profile-body .boldText {
    font-weight: bold;
}

.search-profile-body td a[onclick] {
    text-decoration: underline;
    cursor: pointer;
    text-decoration-style: dotted;
}

.search-profile-body td a {
    display: table-cell;
    /* word-break: keep-all; */
    vertical-align: middle;
    word-break: break-word;
}

.search-profile-body td img {
    max-width: 30px;
}

.profile-notes-expand:hover {
    cursor: pointer;
}

.search-result-data-block h4, .search-result-footer .fieldname, .search-profile-body th {
    font-size: 13px;
    margin: 0;
    margin-right: 0rem;
}

.search-results .search-result-footer p, .search-results .search-result-footer .fieldname {
    font-size: 11px;
    font-style: normal;
    margin-right: 0px;
}

.search-result-footer em {
    font-weight: bold;
    font-size: 13px;
    color: var(--alignvu-red);
}

.search-result-data-block p, .search-profile-body td p,
.search-result-data-block p, .search-profile-body td {
    font-size: 13px;
    margin: 0;
    margin-right: 1rem;
    margin-bottom: 1rem;
    word-break: break-word;
    height: fit-content;
}

.search-profile-body td .enrichedRGCValue {
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.search-result-data-block p, .search-profile-body td p {
    margin: 0;
}

.search-result-data-block p span[onclick] {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.search-result-data-block p span {
    font-size: 11px;
}

.search-profile p[onclick], .search-profile-body td[onclick] {
    text-decoration: underline;
    text-decoration-style: dotted;
}

.search-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -45px -45px 0 -45px;
    padding: 45px 45px 0 45px;
    background-color: #e7eceb;
}

.search-profile-header-search-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-profile-header-search-summary button {
    /* width: 180px; */
}

.search-results .search-entity-tooltip-container {
    position: relative;
}

.search-results .search-entity-tooltip-container:hover p.search-entity-tooltip {
    display: block;
}

.search-results .search-entity-tooltip-container p.search-entity-tooltip {
    display: none;
    position: absolute;
    left: 0px;
    top: 10px;
    font-size: 11px;
    background-color: white;
    color: var(--alignvu-alignify-grey);
    line-height: 20px;
    padding: 0 5px;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    box-sizing: border-box;
    font-weight: normal;
    box-shadow: 0px 0px 10px #c9c9c963;
    max-width: 260px;
    width: 250px;
    word-break: break-word;
    /* white-space: pre; */
}

.search-profile-header-search-summary p {
    font-size: 14px;
    margin: 0 0.25rem;
}

.search-profile-header-search-summary a p {
    color: var(--alignvu-alignify-grey);
    margin-left: 0.5rem;
    cursor: pointer;
}

.search-profile-header-search-summary a p:hover {
    text-decoration: underline;
}

.search-profile-header-buttons select {
    box-shadow: none;
    padding: 0 20px;
}

.search-profile-name {
    text-decoration: underline;
}

.search-profile-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -45px;
    padding: 0 45px 28px 45px;
    background-color: #e7eceb;
}

.search-profile-summary-details h2 {
    margin: 10px 0;
    font-size: 28px;
    font-weight: normal;
}

.search-profile-summary-details div {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.search-profile-summary-details p {
    margin-right: 1rem;
    font-weight: lighter;
}

.search-profile-summary-details .details-container {
    display: flex;
    justify-content: start;
    align-items: center;
}

.search-profile-summary-details .details-container > div {
    display: flex;
    justify-content: start;
}

.search-profile-summary-details .details-container > div p {
    box-sizing: border-box;
    margin: 0;
    margin-right: 30px;
    font-size: 14px;
}

.status-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
}

.s1-b2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.s1-b2 img {
    margin-right: 0.5rem;
    border-radius: 50%;
}

.s1-b4 p {
    display: flex;
    justify-content: start;
    align-items: center;
}

.status-circle.Inactive {
    display: block;
    background-color: #c95457;
    margin-right: 0.5rem;
}

.status-circle.Active {
    display: block;
    background-color: #54c95e;
    margin-right: 0.5rem;
}

.s1-b5 span {
    color: var(--alignvu-alignify-grey);
}

.search-profile .news {
    margin: 0 -45px 0 0;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}


.search-profile .news .card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
}

.search-profile .news .card .header {
    box-sizing: border-box;
    background-color: rgba(22, 146, 157, 0.6);
    height: 50px;
    padding: 10px 10px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.search-profile .news .card h6 {
    color: white;
    font-size: 18px;
    margin: 0;
    font-weight: normal;
}

.search-profile .news .card .body {
    padding: 20px 11px;
    min-height: 150px;
    border-right: 0.5px solid #d2d1cd;
    border-bottom: 0.5px solid #d2d1cd;
    border-left: 0.5px solid #d2d1cd;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.search-profile-summary-display {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    margin-top: 18px;
}

.search-profile-summary-display img {
    width: 30px;
    height: auto;
}

.search-profile-summary-tags {
    margin: 8px 0 0 0;
}

.search-profile-summary-tags a {
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 135px;
    height: 30px;
    border: 1px solid var(--alignvu-text);
    border-radius: 3px;
    font-size: 14px;
    margin-left: 0.5rem;
}

.search-profile-tabs-container {
    margin: 0 -45px;
    background-color: var(--alignvu-background);
    box-shadow: 0px 5px 10px #e9e9e9bd;
}

.search-profile-tabs {
    box-sizing: border-box;
    margin: 0 45px;
    display: flex;
    justify-content: start;
    align-items: center;
    width: calc(100% - 90px);
    border-top: 1px solid #d4d4d4;
}

.search-profile-tab {
    box-sizing: border-box;
    height: 40px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-profile-tab:hover {
    background-color: #ececec;
}

.search-profile-tab:hover p {
    color: var(--alignvu-alignify-grey);
}

.search-profile-tab.active {
    border-bottom: 3px solid var(--alignvu-alignify-grey);
}

.search-profile-tab.active p {
    color: var(--alignvu-alignify-grey);
    font-weight: normal;
}

.search-profile-tab p {
    font-size: 14px;
    font-weight: lighter;
    color: var(--alignvu-text);
}

.search-profile-body {
    display: grid;
    /*grid-template-columns: 1fr 285px;
    height: 65vh;
    margin-bottom: -45px*/
    grid-gap: 30px;
    /* grid-template-columns: 1fr; */
}

.profile-card {
    box-sizing: border-box;
    border: 1px solid #d4d4d4;
    background-color: white;
    border-radius: 2px;
    min-height: 100px;
    margin: 0.5rem 0;
    padding: 13px 18px;
}

.search-profile-data-container {
    margin-top: 20px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 20px 15px;
    color: var(--alignvu-text);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.search-profile-contents {
    padding: 1rem;
}

.search-profile-contents p {
    font-weight: lighter;
    font-size: 14px;
}

.search-profile-contents-list, .search-profile-connections-legend {
    margin: 10px 0;
}

.search-profile-contents-list a, .search-profile-contents-list a:visited {
    text-decoration: none;
    color: var(--alignvu-text);
}

.search-profile-contents-list a:hover p {
    color: var(--alignvu-alignify-grey);
    text-decoration: underline;
    border-color: var(--alignvu-alignify-grey);
}

.search-profile-contents-list a.active p {
    color: var(--alignvu-alignify-grey);
    border-color: var(--alignvu-alignify-grey);
    font-weight: normal;
}

.search-profile-contents-list a p {
    padding: 5px 12px;
    border-left: 3px solid #d4d4d4;
    cursor: pointer;
}

.search-profile-summary-container .search-profile-data-container p {
    font-size: 10px;
    margin-bottom: 20px;
}

.search-profile-summary-container .search-profile-data-container h4 {
    font-weight: normal;
    font-size: 18px;
}

.search-profile-summary-container .search-profile-data-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

.search-profile-summary-left {
    border-right: 1px solid #d4d4d4;
}

p.search-profile-summary-right-header {
    font-size: 12px;
    margin-bottom: 6px;
}

.search-profile-additional-info-container .profile-biography-container,
.search-profile-additional-info-container .profile-individual-info-container,
.search-profile-additional-info-container .profile-names-container,
.search-profile-additional-info-container .profile-core-entity-details-container {
    width: 100%;
}

.search-profile-additional-info-container .profile-individual-info-container .profile-card div,
.search-profile-additional-info-container .profile-names-container .profile-card div,
.search-profile-additional-info-container .profile-core-entity-details-container .profile-card div {
    border-bottom: #dddddd;
}

.search-profile-additional-info-container .profile-address,
.search-profile-additional-info-container .profile-contact-information,
.search-profile-additional-info-container .profile-individual-links {
    width: 31%;
}

.search-profile-additional-info-container .profile-address,
.search-profile-additional-info-container .profile-contact-information {
    margin-right: 0.5rem;
}

.search-profile-additional-info-container .search-profile-data-container p {
    font-size: 14px;
    color: var(--alignvu-text);
}

.search-profile-data-container h4 {
    font-size: 19px;
    color: var(--alignvu-text);
    margin: 0;
}

.search-profile-customer-container .profile-value-as-a-customer-container,
.search-profile-customer-container .profile-profit-income,
.search-profile-customer-container .profile-recent-activity-container,
.search-profile-customer-container .profile-expenses-report-container {
    width: 49%;
}

.search-profile-customer-container .profile-accounts-container,
.search-profile-customer-container .profile-transaction-history-container {
    width: 100%;
}

.search-profile-compliance-container .profile-pep,
.search-profile-compliance-container .profile-sanctions,
.search-profile-compliance-container .profile-crime,
.search-profile-compliance-container .profile-cdd {
    width: 49%;
}

.search-profile-compliance-container .profile-list-sanctions-map-container,
.search-profile-compliance-container .profile-list-regulatory-sanctions-container {
    width: 100%;
}

.search-profile-connections-container .profile-relationship-visualisation {
    width: 100%;
}

.search-profile-connections-container .profile-family-members,
.search-profile-connections-container .profile-related-individuals,
.search-profile-connections-container .profile-related-locations,
.search-profile-connections-container .profile-related-organisations {
    width: 49%;
}

.search-profile-changes-container, .search-profile-change {
    width: 100%;
}

.search-profile-change {
    display: flex;
    justify-content: start;
    align-items: center;
}

.search-profile-change-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #202043;
    margin-right: 16px;
}

.search-profile-change h5 {
    font-size: 21px;
    margin: 0 0 7px 0;
}

.search-profile-change p {
    font-size: 13px;
}

.search-profile-change p.search-profile-change-details {
    font-size: 11px;
    margin: 15px 0 10px 0;
}

.search-profile-connections-legend {
    background-color: #f4f4f4;
    padding: 10px 11px;
}

.profile-legend-row {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 8px 0;
}

.profile-legend-row p {
    color: #333333;
    font-size: 12px;
    font-weight: normal;
}

.profile-legend {
    height: 11px;
    width: 11px;
    border-radius: 50%;
    margin-right: 0.5rem
}

.profile-legend.linked-externally {
    background-color: #4b6fcc;
}

.profile-legend.not-linked-externally {
    background-color: #abc2ff;
}

.profile-changes-filters {
    width: 80%;
}

.profile-changes-filters select {
    width: 100%;
    box-shadow: none;
    font-weight: lighter;
    margin: 10px 0;
}

.profile-changes-dates {
    margin: 15px 0;
}

.profile-changes-date-picker-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.profile-changes-date-picker-row input[type="date"] {
    height: 30px;
    width: 115px;
    color: var(--alignvu-alignify-grey);
    border: 1px solid var(--alignvu-alignify-grey);
    border-radius: 3px;
    background-color: white !important;
    box-shadow: none;
}

.profile-changes-date-picker-row input[type="date"]:focus {
    outline: none;
}

.profile-changes-date-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

.profile-changes-date-buttons button {
    /* width: 95px; */
}

.search-profile .profile-header {
    /* margin-left: -45px; */
    /* margin-right: -45px; */
    padding-left: 45px;
    padding-right: 45px;
    position: sticky;
    top: 0;
    background-color: var(--alignvu-background);
    /* box-shadow: 0px 5px 10px #e9e9e9bd; */
    z-index: 2;
}

.search-profile .profile-header .history-breadcrumbs {

    display: flex;

    grid-gap: 5px;
}

.search-profile .title-banner {
    width: 100%;
    margin-left: -45px;
    padding-left: 45px;
    padding-right: 45px;
    background-color: #e7eceb;
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-gap: 10px;
    align-items: center;
    justify-items: center;
}

.search-profile .title-banner img {
    float: left;
    width: 100px;
    padding: 20px;
}

.search-profile .title-banner .title {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
    padding: 10px 0;
}

.search-profile .title-banner .title .details {
    display: flex;
    grid-gap: 5px;
}

.search-profile .title-banner .id, .search-profile .title-banner .entity_value_toggle, .search-profile .title-banner .cleaned_value_toggle {
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    grid-gap: 5px;
    align-items: center;
}

.search-profile .title-banner .profile_toggles {
    width: 100%;
}

.search-profile .title-banner .entity_value_toggle, .search-profile .title-banner .cleaned_value_toggle {
    clear: none;
    width: auto;
    margin-left: 50px;
}

.search-profile .title-banner .entity_value_toggle .consolidation-source-switch {
    justify-content: right;
}

.search-profile .title-banner .id a, .search-profile .title-banner .details a {
    display: inline;
}

.search-profile .title-banner .title h2 {
    font-size: 25px;
}

#profile-map {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.map-popup {
    border-radius: 3px;
}

.gm-style .gm-style-iw-c {
    border-radius: 10px !important;
    padding: 5px 10px;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.9);
}

.gm-style .gm-style-iw-c div {
    background-color: rgba(255, 255, 255, 0);
}

.gm-style .gm-style-iw-d::-webkit-scrollbar-track, .gm-style .gm-style-iw-d::-webkit-scrollbar-track-piece {
    background-color: rgba(255, 255, 255, 0);
}

.gm-style button {
    display: none !important;
}

.gm-style .gm-style-iw-t::after {
    background: none;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: none;
}


.map-popup p, .map-popup h6 {
    font-size: 10px;
    margin: 0;
}

.map-popup h6 {
    text-align: center;
}

.map-popup p {
    text-align: center;
    color: var(--alignvu-alignify-grey);
}

.search-profile .about-banner .about .entity-type {
    padding: 20px 0;
}

.search-profile .front-page {
    /* display: grid; */
    /* width: calc(100vw - 360px); */
    /* box-sizing: border-box; */
}

.data-cards-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    justify-content: start;
    align-items: start;
    width: 95%;
}

.data-cards-half .data-card {
    width: 100%;
    height: 100%;
}

.search-profile-quicklinks-container {
    padding-top: 15px;
    padding-bottom: 15px;
    height: 49px;
    box-sizing: border-box;
}

.search-profile-quicklinks-container a {
    font-size: 14px;
    color: var(--alignvu-text);
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
}

.search-profile span[onclick] {
    cursor: pointer;
}

.search-profile .sanction-badge {
    width: 75px;
    height: 20px;
    border: 1px solid #9e9e9e;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /* margin-bottom: 5px; */
}

.search-profile .search-header-container span {
    /* padding-left: 30px; */
    font-size: 14px;
}

.search-profile .search-profile-container-header {
    display: flex;
    grid-gap: 1em;
    align-items: center;
}

.search-profile .profile-relationships-search-container {
    display: flex;
    grid-gap: 5px;
    align-items: center;
}

.search-profile .profile-relationships-search-container .mapping-form-input {
    margin: 0;
}

.search-profile .search-profile-container-header .profile-section-summary {
    display: flex;
    grid-gap: 1em;
}

.search-profile .search-profile-container-header .profile-section-summary span {
    padding: 5px;
}

.search-profile .search-profile-container-header .profile-section-summary span[data-isselected] {
    background: var(--alignvu-pale-grey);
    border-radius: 5px;
}

.search-profile .search-profile-container-header .profile-relationships-search-container input {
    font-size: smaller !important;
}

.search-profile .search-profile-body .profile-history-change-details .profile-history-change-object {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-gap: 5px;
}

.search-profile .search-profile-body .profile-history-change-details .profile-history-change-object p {
    word-break: break-word;
}

.search-profile .search-profile-body .profile-history-change-details .profile-history-change-object:not(:first-child) {
    border-top: 1px solid #bababa33;
}

.search-profile .search-profile-body .profile-history-change-details p.profile-history-rgc {
    grid-column: 1;
}

.search-profile .search-profile-body .profile-history-change-details p[onclick] {
    cursor: pointer;
    font-weight: bold;
}

.search-profile .search-profile-body .profile-history-change-details .profile-history-change-detail[data-change="ADDED"] {
    grid-column: 2;
}

.search-profile .search-profile-body .profile-history-change-details .profile-history-change-detail[data-change="REMOVED"] {
    grid-column: 3;
}

.search-profile .search-profile-body .profile-history-change-details {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    grid-gap: 2em 1em;
    align-items: start;
}

.search-profile .search-profile-body .search-profile-history-sticky {
    display: grid;
    position: sticky;
    top: 110px;
    grid-template-columns: 250px 150px 1fr;
    grid-gap: 5px;
    background: #e7eceb;
    padding: 0 65px;
    margin: 15px -45px;
}

.search-profile .search-profile-body .profile-history-change-details .profile-history-change-detail {
    display: grid;
    /* grid-template-columns: 150px 1fr; */
    grid-gap: 1em;
    align-items: start;
}

.search-profile .data-card .profile-history-data {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 250px 150px 1fr;
}

.search-profile .data-card .profile-history-data .profile-history-change-date {
    display: flex;
    grid-gap: 5px;
    /* grid-template-columns: 1fr 1fr; */
    align-items: flex-start;
}

.search-profile .data-card .profile-history-data p {
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.search-profile-body #profile-lists td.last {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

.search-profile #search-profile-date-interval label {
    font-size: 16px;
    color: var(--alignvu-text);
    margin: 0;
    margin-right: 5px;
}

.search-profile #search-profile-date-interval select {
    padding: 2px;
}

.search-profile .details-tab .search-header-container {
    display: flex;
    /* position: sticky; */
    /* top: 340px; */
    color: var(--alignvu-text) !important;
    /* background-color: var(--alignvu-background); */
    flex-direction: column;
    margin: 10px 0;
}

.search-profile .details-tab .search-header-container .search-profile-header-left-container {
    display: flex;
    justify-content: space-between;
}

.search-profile .details-tab .search-header-container input[type="text"], .search-profile .details-tab .search-header-container input[type="text"]:focus {
    background-color: transparent;
    color: var(--alignvu-text);
    outline: none;
    border: 0px;
    font-size: smaller;
    width: unset;
}

.search-profile .details-tab .search-header-container .search-profile-extra-header-tag {
    margin-top: 0;
}

.search-profile .details-tab a.profile-link-anchor-offset {
    top: -250px;
    display: block;
    position: relative;
    visibility: hidden;
}

.data-card {
    /* box-sizing: border-box; */
    background-color: white;
    border-left: 3px solid var(--alignvu-alignify-grey);
    padding: 20px 20px 20px 20px;
    box-shadow: 0 2px 10px 5px rgba(146, 146, 146, 0.1);
    border-right: 0.5px solid #d2d1cd;
    border-bottom: 0.5px solid #d2d1cd;
    border-top: 0.5px solid #d2d1cd;
    border-radius: 3px;
    flex-wrap: wrap;
    /* margin-bottom: 30px; */
    /* width: calc(100vw - 400px); */
    /* box-sizing: border-box; */
}

.data-card .footer-flags {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-card > div {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
}

.data-card > p, .footer-flags p {
    font-weight: lighter;
}

.data-card p span.cleaned {
    color: var(--alignvu-green);
    font-size: 13px;
}

.data-card p span.not-cleaned {
    color: var(--alignvu-red-tint);
    font-size: 13px;
}

.footer-flags p {
    font-size: 14px;
}

.data-point {
    min-width: 150px;
    max-height: 100px;
}

.data-point .header {
    margin: 0 1rem 0 0;
    font-weight: lighter;
    font-size: 12px;
}

.data-point .value {
    margin: 0px 1rem 10px 0;
    font-size: 16px;
}

.search-results .search-result-tags .tooltip-parent {
    position: relative;
}

.search-results .search-result-tags .tooltip-parent:hover p.tooltip {
    display: block;
}

.search-results .search-result-tags .tooltip-parent p.tooltip {
    display: none;
    position: absolute;
    right: 0px;
    bottom: 10px;
    font-size: 11px;
    background-color: white;
    color: var(--alignvu-alignify-grey);
    line-height: 20px;
    white-space: nowrap;
    padding: 0 5px;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    box-sizing: border-box;
    font-weight: normal;
    box-shadow: 0px 0px 10px #c9c9c963;
}

.search-profile .ref-codes-head {
    min-width: 100px;
}

.profile-same-attribute-modal,
.profile-rgc-vendor-timestamp-modal {
    z-index: 10003;
}

.search-profile .search-profile-related-record-header {
    position: sticky;
    top: 230px;
    background: white;
    padding: 10px 0;
    width:100%;
}

.search-profile .search-profile-related-record-header,
.search-profile .search-profile-related-record-row {
    display: grid;
    grid-template-columns: 150px repeat(3, minmax(100px, 1fr));
    grid-gap: 1em 5px;
    grid-auto-flow: column;
}

.search-profile .search-profile-related-record-row p {
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.search-profile .search-profile-related-record-entity-types {
    grid-gap: 5px;
}

.search-profile .search-profile-related-record-row .flex-col[data-feedtype="Issuer"] {
    grid-column: 2;
}

.search-profile .search-profile-related-record-row .flex-col[data-feedtype="Aggregator"] {
    grid-column: 3;
}

.search-profile .search-profile-related-record-row .flex-col[data-feedtype="Integration"] {
    grid-column: 4;
}