@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap');
ui-view {
    height: initial;
    overflow: visible;
}

md-autocomplete md-autocomplete-wrap md-progress-linear {
    top: 42px;
}
md-autocomplete[md-floating-label] .md-show-clear-button button {
    top: 14px;
}
md-autocomplete.input-container-autocomplete md-autocomplete-wrap {
    box-shadow: none;
    height: 30px;
}
md-autocomplete.input-container-autocomplete input {
    line-height: 24px;
    height: 24px;
    margin: 0;
    font-size: inherit;
    padding: 0px 4px;
}
md-icon.overlay-add-icon {
	position: absolute;
    bottom: 5px;
    right: 6px;
    font-size: 11px;
    background: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    min-width: 14px;
    min-height: 14px;
    border: 2px solid;
    box-sizing: border-box;
}

.form-avatar {
    width: 100px;
    margin: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-avatar-img {
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    object-fit: cover;
}
.form-avatar-caption {
    font-size: 12px;
    margin: 4px 0px;
    font-weight: 500;
}

.button.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.link {
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    color: #3B3885;
}
.link:hover {
    text-decoration: underline;
}

.input-group {
    display: flex;
    align-items: center;
    overflow: hidden;
}
.input-container {
    display: flex;
    flex-direction: column;
    margin: 0px 4px;
    position: relative;
    overflow: hidden;
    padding: 2px 0px;
}
.input-container label {
    color: black;
    font-size: 14px;
    font-weight: bold;
}
.input-container select, .input-container input, md-autocomplete.input-container-autocomplete {
    width: 200px;
    height: 32px;
    box-sizing: border-box;
    margin: 4px 0px;
    min-height: 32px;
    min-width: 32px;
    border: 1px solid #aaa;
    font-size: 13px;
    border-radius: 3px;
    padding: 0px 4px;
    max-width: 100%;
}
.input-container textarea {
    width: 100%;
    box-sizing: border-box;
    margin: 4px 0px;
    min-height: 64px;
    border: 1px solid #aaa;
    font-size: 13px;
    border-radius: 3px;
    padding: 8px;
    overflow: hidden;
    resize: vertical;
}
.input-container input.invalid{
	border-color:red;
}
.input-container:first-child {
    margin-left: 0px;
}
.entry-label {
    color: black;
    font-size: 14px;
    font-weight: bold;
}
.cke {
    margin-top: 4px !important;
    display: inline-block;
}
.entry-text {
    width: 100%;
    max-width: 850px;
    margin-top: 4px;
    color: #555;
    font-size: 13px;
    margin: 8px 0px;
    line-height: 1.25;
}
.input-container [ng-message] {
    position: absolute;
    color: #c71010;
    bottom: 0px;
    font-size: 10px;
    left: 4px;
    font-weight: bold;
}
.input-container .error-spacer {
    height: 12px;
}

.wiki-home {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: "Poppins";
}
.wiki-toolbar {
    display: flex;
    height: 64px;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc;
}
.searcher {
    width: 450px;
    height: 100%;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 24px;
}
.searcher md-icon {
    position: absolute;
    top: 10px;
    left: 11px;
    pointer-events: none;
    z-index: 1;
}
.searcher input {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border: 0px;
    padding-left: 50px;
}
.master-slave {
    display: flex;
    overflow: hidden;
    flex: 1;
}
.master {
    width: 340px;
    flex: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overflow-x: hidden;
    box-shadow: 0px 0px 2px #3B3885;
}
.master-toolbar {
    display: flex;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    position: relative;
    background: #3B3885;
    box-sizing: border-box;
    /* margin: 4px; */
}
.master-toolbar md-icon{
    color: #7598C5;
}
.master-toolbar-searcher {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-bottom: 1px solid #3B3885;
}
.master-toolbar .search-button {
    position: absolute;
    right: 0px;
}

.master-toolbar-searcher.ng-hide-add {
	transition:.3s ease-in-out all;
}
.master-toolbar-searcher.ng-hide-add.ng-hide-add-active {
}



.master-toolbar-searcher.ng-hide-add .master-toolbar-searcher-background{
	transform:scale(50);
}
.master-toolbar-searcher.ng-hide-add.ng-hide-add-active .master-toolbar-searcher-background{
	transform:scale(0);
}
.master-toolbar-searcher.ng-hide-add button{
	transform:scale(1);
	transition: 0.3s ease-in-out all;
}
.master-toolbar-searcher.ng-hide-add.ng-hide-add-active button{
	transform:scale(0);
}

.master-toolbar-searcher.ng-hide-remove .master-toolbar-searcher-background{
	transform:scale(0);
}
.master-toolbar-searcher.ng-hide-remove.ng-hide-remove-active  .master-toolbar-searcher-background{
	transform:scale(50);
}
.master-toolbar-searcher.ng-hide-add .master-toolbar-searcher-background{
	transition:0.15s ease-in-out all 0.15s;
	transform:scale(50);
}
.master-toolbar-searcher.ng-hide-add.ng-hide-add-active  .master-toolbar-searcher-background{
	transform:scale(0);
}


.master-toolbar-searcher.ng-hide-remove button{
	transform:scale(0);
	transition: 0.3s ease-in-out all;
}
.master-toolbar-searcher.ng-hide-remove.ng-hide-remove-active button{
	transform:scale(1);
}

.master-toolbar-searcher input{
	transition:0.2s ease-in-out all 0.3s;
}
.master-toolbar-searcher.ng-hide-remove input{
	opacity:0;
}
.master-toolbar-searcher.ng-hide-remove.ng-hide-remove-active  input{
	opacity:1;
}
.master-toolbar-searcher.ng-hide-add input{
	transition:0.2s ease-in-out all;
	opacity:1;
}
.master-toolbar-searcher.ng-hide-add.ng-hide-add-active  input{
	opacity:0;
}


/*
.master-toolbar-searcher.ng-hide-remove {
	transform: translateX(-100%);
	transition:0.5s ease-in-out all;
	opacity:0;
}
.master-toolbar-searcher.ng-hide-remove.ng-hide-remove-active {
	transform: translateX(0%);
	opacity:1;
}
*/

.master-status {
    display: flex;
    align-items: center;
    padding: 0px;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    flex: none;
    position: relative;
    background: #3B3885;
    box-sizing: border-box;
}
.master-status md-icon{
    color: #7598C5;
}
.master-status-button {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-family: "Poppins";
    font-size: 12px;
    color: #7598C5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(36, 84, 135, 0.1);
    cursor: pointer;
}
.master-status .md-icon-button{
    color: white;
    padding: 0px 10px;
    min-width: 50px;
    margin:0;
    border-radius: 0;
}
.master-status .md-icon-button:hover{
    background-color: #315E9F !important;
}
.master-status .md-icon-button:hover md-icon{
    color: white;
}
.master-status .md-icon-button md-icon.overlay-add-icon {
    background: white;
    color: #7598C5;
}

.master-status .md-icon-button.selected{
    background: #315E9F;
} 
.master-status .md-icon-button.selected md-icon{
    color: white;
} 

.master-status-button.selected {
    background: #3B3885;
    color: white;
}
.master-toolbar-searcher-background {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    left: 308px;
    top: 24px;
    transform: scale(54);
    transition: 0.3s ease-in-out all;
}
.master-toolbar-searcher input {
    position: absolute;
    border: 0px;
    padding: 0px 5px;
    padding-right: 44px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: transparent;
}
.master-toolbar-searcher button {
    position: absolute;
    right: 0px;
    top: 0;
}
.master-toolbar .button {
    flex: 1;
    text-transform: uppercase;
    font-weight: 600;
}
.master-toolbar .home-button {
    margin: 0px;
    position: absolute;
    left: 8px;
}
.master-toolbar-button{
    height: 40px;
    color: white;
    padding: 0px 10px;
    min-width: 50px;
    margin:0;
}
.master-toolbar-button:hover{
    background-color: #315E9F !important;
}
.master-toolbar-button:hover md-icon{
    color: white;
}
.master-toolbar-button.selected{
    background: #315E9F;
} 
.master-toolbar-button.selected md-icon{
    color: white;
} 
.master-content {
    overflow: auto;
    flex: 1;
}
.master-item {
    display: flex;
    cursor: pointer;
    /* border-bottom: 1px solid #ccc; */
    position: relative;
    margin: 8px;
}
.master-item-avatar {
    width: 50px;
    height: 50px;
    margin: 12px;
    flex: none;
}
.master-item-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}
.master-item-avatar .master-item-avatar-backface {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: scale(0.75);
    transform-origin: top left;
    box-shadow: -1px 0px 2px rgba(0, 0, 0, 0.3);
    z-index: 1;
    object-fit: contain;
    background: white;
}

.master-item-avatar .master-item-avatar-frontface {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: scale(0.75);
    transform-origin: bottom right;
    /* box-shadow: 2px 1px 3px rgba(0, 0, 0, 0.2); */
    object-fit: contain;
    background: white;
}
.master-item-data {
    display: flex;
    flex-direction: column;
    margin: 10px 0px;
    flex: 1;
    padding-right: 60px;
}
.master-item-title {
    font-size: 14px;
    color: #1f63bc;
    font-weight: 500;
    width: 100%;
    padding-bottom: 2px;
}
.master-item-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    /* margin-top: 4px; */
}
.master-tags {
    display: none;
    margin: 4px 0px;
}
.master-tag {
    display: inline-block;
    font-size: 10px;
    background: #3B3885;
    color: white;
    border-radius: 24px;
    margin-right: 5px;
    padding: 4px 8px;
    font-weight: 500;
}
.master-caption {
    margin-top: 6px;
    font-size: 11px;
    color: #777;
}
md-icon.master-chevron {
    font-size: 44px;
    position: absolute;
    right: 8px;
    top: 50%;
    height: 44px;
    width: 44px;
    transform: translateY(-50%);
}





.slave {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
}
.slave > ui-view {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
}
.tools-home {
    display: flex;
    flex-direction: column;
}
.cdms-home{
	display: flex;
    flex-direction: column;	
}
.home-heading {
    display: flex;
    flex-direction: column;
    width: 850px;
    max-width: 100%;
    padding: 0px 32px;
    position: relative;
}
.home-avatar {
    width: 72px;
    height: 72px;
    margin: 20px 20px 20px 0px;
    flex: none;
    margin-bottom: 0px;
}
.home-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-headline {
    display: flex;
}
.home-headline-data {
    display: flex;
    flex-direction: column;
    margin: 18px 0px;
    align-items: flex-start;
    min-width: 200px;
    margin-bottom: 0px;
    flex: 1;
}
.home-title {
    font-size: 24px;
    font-weight: 500;
    color: black;
    line-height: 24px;
    display: flex;
    align-items: center;
    margin: 4px 0px;
}
.home-subtitle {
    font-size: 16px;
    color: #777;
}
.home-external-link {
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.home-external-link md-icon {
    color: inherit;
    font-size: 14px;
    min-width: 14px;
    width: 14px;
    min-height: 14px;
    height: 14px;
    margin-left: 4px;
    color: #3B3885;
}
.home-actions {
    display: flex;
    align-items: center;
    margin: 20px 0px 0px 20px;
    flex-direction: column;
}
.home-actions-buttons {
    display: flex;
    align-items: center;
}
.wiki-home .button {
    background: #3B3885;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
}
border-radius {
    2px: "Poppins";
    /* position: relative; */
    /* color: initial; */
    /* margin: initial; */
}
.home-actions .button+.button {
    margin-left: 10px;
}
.wiki-home .button.button-flat {
    background: white;
    color: #3B3885;
    border: 1px solid;
}
.home-caption {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 4px 0px;
    margin: 10px 0px;
}
.home-caption md-icon {
    margin: 0px;
    margin-right: 4px;
}
.home-toolbar {
    display: flex;
    align-items: center;
    padding: 10px 4px;
    border-width: 1px 0px;
    border-color: #ccc;
    border-style: solid;
    margin: 0px 20px;
}
.home-navigation {
    display: flex;
    align-items: center;
    flex: 1;
}
.home-navigation-item {
    font-size: 12px;
    color: #333;
    margin: 0px 12px;
}
.home-navigation-item:hover {
    text-decoration: underline;
}
.home-navigation-item.active {
    text-decoration: underline;
}
.home-rating {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #555;
    margin-top: 10px;
}.rating-button {
    margin: 0px 9px;
    display: flex;
    align-items: center;
    color: #6b7c93;
    cursor: pointer;
}
.rating-button md-icon {
    font-size: 16px;
    min-width: 16px;
    width: 16px;
    min-height: 16px;
    height: 16px;
    margin-right: 2px;
    color: white;
    text-shadow: 1px 0px 0px #6b7c93, -1px 0px 0px #6b7c93, 0px 1px 0px #6b7c93, 0px -1px 0px #6b7c93;
}
.home-rating > span {
    margin-right: 20px;
    font-weight: 500;
}
.rating-button.raised md-icon {color: #6b7c93;text-shadow: none;}
.home-content {
    padding: 12px 32px;
    position: relative;
}

.home-content > .load-in-progress{
	left:32px;
	top: 12px;
}
.load-in-progress {
    margin: 0px;
    display: flex;
    position: absolute;
    border: 2px solid #aad1f9;
    border-top: 0px;
    width: 850px;
    max-width: 100%;
    height: 85px;
    flex-direction: column;
}
.load-in-progress-message {
    background: rgba(255, 235, 169, 0.25);
    padding: 25px;
    height: 100%;
    box-sizing: border-box;
    font-size: 14px;
    letter-spacing: -0.1px;
}
.load-in-progress.ng-leave{
	position: absolute;
	transition:0.3s ease-in-out all;
	opacity:1;
}
.load-in-progress.ng-leave-active{
	opacity:0;
}





.wiki-homepage {
    padding: 12px 32px;
}
.wiki-homepage.ng-enter{
	transition:0.3s ease-in-out all;
	opacity:0;
}
.wiki-homepage.ng-enter-active{
	opacity:1;
}

.wiki-homepage-banner {
	width: 850px;
	max-width: 100%;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
}
.banner-headline {
    display: flex;
    flex-direction: column;
    line-height: 1;
    width: 450px;
    margin-top: 80px;
    flex: none;
}
.banner-title {
    font-size: 38px;
    color: #3B3885;
}
.banner-img {
    flex: 1;
    width: 0px;
    flex-grow: 1;
}
.banner-description {
    line-height: 1.25;
    font-size: 16px;
    color: #555;
    margin-top: 24px;
}
.wiki-homepage-cards {
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 40px 0px;
}

.card {
    display: flex;
    border: 1px solid #eaeaea;
    width: 300px;
    height: 126px;
    border-radius: 4px;
    margin: 0px 10px;
    align-items: center;
    box-sizing: border-box;
}
.card.card-1 {
    color: #f34d4d;
}

.card.card-2 {
    color: #434cc1;
}

.card.card-3 {
    color: #4ec6a3;
}

.card.card-4 {
    color: #fdb137;
}
.card-icon {
    width: 80px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -44px;
}
.card-icon md-icon {
    font-size: 48px;
    color: inherit;
    width: 48px;
    height: 48px;
}
.card:first-child {
    margin-left: 0px;
}
.card-info {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    box-sizing: border-box;
}
.card-data {
    font-size: 44px;
    font-weight: bold;
}
.card-text {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}
.card-description {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}




.version-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 850px;
}
.version {
    width: 250px;
    height: 160px;
    margin-right: 12px;
    border: 1px solid #ccc;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    border-radius: 4px;
}
.version-headline {
    display: flex;
    align-items: center;
}
.version-title {
    display: inline-block;
    font-size: 14px;
    background: #3B3885;
    color: white;
    border-radius: 24px;
    margin-right: 5px;
    padding: 4px 8px;
    font-weight: 500;
    font-family: "Poppins";
}
.version-action-button {
    color: #3B3885;
    width: 24px;
    cursor: pointer;
}
.version-description {
    font-size: 12px;
    margin-top: 12px;
    color: #555;
    flex: 1;
    overflow: hidden;
}
.version-caption {
    font-size: 12px;
    margin-top: 16px;
    color: #aaa;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-family: "Poppins";
}
.version-caption-text {
    margin-right: 8px;
}
.version.version-add {
    background: #3B3885;
    cursor: pointer;
}
.version-icon {
    height: 58px;
    padding: 10px;
    box-sizing: border-box;
}
.version-icon md-icon {
    color: white;
    font-size: 44px;
    height: 44px;
    width: 44px;
}


.version-editor-resources-toolbar, .cdm-editor-resources-toolbar {
    display: flex;
    align-items: center;
}
.resources-add-button {
    border: 1px solid rgb(107 124 147);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 2px 6px;
    cursor: pointer;
}
.resources-add-button-text {
    font-size: 12px;
    margin: 0px 4px;
}
.resources-add-button+.resources-add-button {
    margin-left: 12px;
}
.version-editor-resource-list, .cdm-editor-resource-list{
    display: flex;
    margin: 20px 0px;
    overflow: auto;
    flex-direction: column;
    padding: 10px 0px;
    max-width: 400px;
    padding-left: 20px;
    margin-left: -20px;
}


.version-editor-resource-list .no-items, .cdm-editor-resource-list .no-items  {
	font-size: 20px;
    font-family: "Poppins";
    color: black;
    padding: 12px 4px;
}
.version-editor-resource, .cdm-editor-resource {
    display: flex;
    align-items: center;
    background: #6b7c93;
    border-radius: 4px;
    margin-bottom: 8px;
    max-width: 400px;
    height: 36px;
    transition: 0.2s ease-in-out transform;
    position: relative;
    overflow: visible;
}
.version-editor-resource-badge md-icon, .cdm-editor-resource-badge md-icon {
    color: #dd2c00;
    border-radius: 50%;
}
.version-editor-resource-badge:after, .cdm-editor-resource-badge:after{
	content: "";background: white;top: 0px;position: absolute;width: 100%;height: 100%;border-radius: 50%;left: 0px;z-index: -1;transform: scale(0.5);
}
.version-editor-resource-type md-icon, .cdm-editor-resource-type md-icon{
    color: white;
    font-size: 24px;
    transform: scale(0.8) rotate(0.0001deg);
    transform-origin: center;
}
.version-editor-resource-type, .cdm-editor-resource-type{
    margin: 4px 0px;
    padding: 2px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    cursor: move;
}
.version-editor-resource-name, .cdm-editor-resource-name{
    flex: 1;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: text;
    overflow: hidden;
}
.resource-name-input {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    height: 28px;
    padding: 10px;
    flex: 1;
    pointer-events: none;
}
.resource-name-input:focus {
    border: 1px solid #ccc;
    background:white;
    color: black;
    pointer-events: all;
}
.resource-label {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    width: 100%;
}
.resource-edit-button md-icon {
    color: white;
    font-size: 12px;
    line-height: 12px;
    min-width: 12px;
    min-height: 12px;
    width: 12px;
    height: 12px;
    margin-top: -4px;
}
.resource-delete-button {
    margin: 4px 0px;
    padding: 2px 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.resource-delete-button md-icon {
    color: white;
    font-size: 24px;
    transform: scale(0.8) rotate(0.0001deg);
    transform-origin: center;
}
.resource-edit-button {
    margin: 0px 10px;
    display: none;
    flex: none;
}
.resource-edit-button {}
.version-editor-resource-name:hover .resource-edit-button, .cdm-editor-resource-name:hover .resource-edit-button {
    display: block;
}




.wiki-entries {
    display: block;
    padding-bottom: 100px;
}
.wiki-entries.ng-enter{
	transition:0.3s ease-in-out all;
	opacity:0;
}
.wiki-entries.ng-enter-active{
	opacity:1;
}
.entries-headline {
    width: 850px;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    max-width: 100%;
}
.entries-title {
    font-size: 24px;
    color: black;
    font-weight: 500;
    margin-right: 12px;
    font-family: "Poppins";
}
.entries-description {
    color: #555;
    font-size: 14px;
    width: 850px;
    max-width: 100%;
    font-family: "Poppins";
}

.entries-resources {
    margin: 0px;
    display: flex;
    border: 1px solid #3B3885;
    width: 850px;
    max-width: 100%;
    background: rgb(226 226 226 / 25%);
    box-sizing: border-box;
    font-family: "Poppins";
    margin-top: 10px;
    border-radius: 4px;
    overflow: hidden;
}
.entries-resources-title {
    width: 24px;
    writing-mode: vertical-rl;
    font-family: "Poppins";
    padding: 8px 0px;
    text-align: center;
    background: #3B3885;
    color: white;
    font-weight: 300;
    line-height: 24px;
    font-size: 14px;
}
.entries-resources-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    background: #cfd9e5;
}
.entries-resources-text {
    padding: 0px 20px;
    font-size: 14px;
    color: #333;
}
.entries-resources-resources {
    display: inline-block;
    padding: 0px 20px;
    margin-top: 10px;
}
.entries-resource {
    display: inline-block;
    font-size: 12px;
    background: #3B3885;
    color: white;
    border-radius: 24px;
    margin-right: 5px;
    padding: 4px 8px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 5px;
    font-family: "Poppins";
}
.entries-resource md-icon {
    color: white;
    font-size: 12px;
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
    line-height: 13px;
}


.version-transformations {
    margin: 0px;
    display: flex;
    border: 1px solid #3B3885;
    width: 850px;
    max-width: 100%;
    background: rgb(226 226 226 / 25%);
    box-sizing: border-box;
    font-family: "Poppins";
    margin-top: 10px;
    border-radius: 4px;
    overflow: hidden;
}
.version-transformations-title {
    width: 24px;
    writing-mode: vertical-rl;
    font-family: "Poppins";
    padding: 8px 0px;
    text-align: center;
    background: #3B3885;
    color: white;
    font-weight: 300;
    line-height: 24px;
    font-size: 14px;
}
.version-transformations-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 0px;
    background: #cfd9e5;
}
.version-transformations-text {
    padding: 0px 20px;
    font-size: 14px;
    color: #333;
}
.version-transformations-resources {
    display: inline-block;
    padding: 0px 20px;
    margin-top: 20px;
}



.entries-list {
    display: block;
    border: 1px solid #ccc;
    margin-top: 12px;
    max-width: 100%;
    width: 850px;
}
.entry-large {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ccc;
    padding: 10px 20px;
    box-sizing: border-box;
}
.entry-scores {
    display: block;
    width: 50px;
    margin-right: 20px;
}
.entry-score {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 10px;
    color: #999;
    font-weight: 500;
    padding: 4px 0px;
    box-sizing: border-box;
}
.score-data {
    font-size: 16px;
}
.score-label {
    margin: 4px 0px;
    /* font-weight: 600; */
}
.entry-data {
    display: block;
    flex: 1;
    margin-right: 20px;
}
.entry-title {
    color: #3B3885;
    font-size: 20px;
    line-height: 1;
    margin-top: 8px;
    cursor: pointer;
}
.entry-description {
    color: #333;
    font-size: 14px;
    margin-top: 4px;
    max-height: 48px;
    overflow: hidden;
    font-family: "Poppins";
}


.entry-tags {
    display: inline-block;
    width: 100%;
    margin-top: 12px;
}
.entry-tag {
    display: inline-block;
    font-size: 12px;
    background: #3B3885;
    color: white;
    border-radius: 24px;
    margin-right: 5px;
    padding: 4px 8px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 5px;
    font-family: "Poppins";
}
.entry-tag md-icon {
    color: white;
    font-size: 12px;
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
    line-height: 13px;
}
.entry-large.last {
    border-bottom: 0px;
}
.entry-publication {
    width: 200px;
    padding-top: 60px;
}
.entry-vintage {
    width: 100%;
    font-size: 11px;
}
.entry-author {
    display: flex;
    margin-top: 6px;
    align-items: flex-start;
    cursor: pointer;
    overflow: hidden;
}
.author-avatar {
    background: #ccc;
    width: 36px;
    height: 36px;
    margin-right: 8px;
    border-radius: 4px;
    overflow: hidden;
    flex: none;
}
.author-avatar img{
	width:100%;
	height:100%;
}
.author-data {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.author-name {
    color: #315E9F;
    font-size: 12px;
    font-weight: bold;
    margin-top: 2px;
    word-break: break-word;
    font-family: "Poppins";
}
.author-reputation {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    margin-top: 4px;
    font-family: "Poppins";
}
.reputation-bullet {
    margin: 0px 6px;
    background: silver;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}


.wiki-field-editor {
    position: fixed;
    right: 17px;
    top: 50px;
    background: #fff;
    width: 350px;
    height: 100%;
    border-left: 1px solid #ccc;
}
.wiki-field-title {
    font-size: 16px;
    color: #3B3885;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
}
.wiki-field-caption {
    font-size: 14px;
    font-weight: 500;
    color: #777;
    font-style: italic;
    text-transform: uppercase;
    margin-top: 3px;
}
.wiki-field-description {
    font-size: 12px;
    font-weight: 300;
    padding: 0px 20px;
    margin-top: 8px;
}
.wiki-field-editor-close-button {
    float: right;
    display: block;
}
.wiki-field-headline {
    width: 100%;
    display: inline-flex;
    padding: 0px 14px;
    box-sizing: border-box;
    align-items: self-end;
}
.wiki-field-title-text.ng-binding {}
.wiki-field-text {
    flex: 1;
    padding-left: 10px;
}
.wiki-field-headline md-icon {
    margin: 0;
    color: #3B3885;
    margin-top: 0px;
}


.entries-toolbar {
    max-width: 100%;
    width: 850px;
    display: flex;
    align-items: center;
    margin: 12px 0px;
    justify-content: space-between;
}
.filter-button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3B3885;
    border-radius: 4px;
    background: rgb(207, 217, 229);
    cursor: pointer;
    color: #3B3885;
    margin-right: 12px;
}
.filter-button md-icon {
    color: inherit;
}
.spacer{
	flex:1;
}
.entries-pages {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.entry-page.entry-page-prev {
    margin-right: 12px;
}
.entry-page {
    border: 1px solid;
    padding: 2px 4px;
    font-size: 12px;
    height: 28px;
    line-height: 28px;
    padding: 0px 12px;
    border-radius: 4px;
    border-color: #3B38853d;
    margin: 0px 2px;
    cursor: pointer;
    color: black;
    /* font-weight: bold; */
    min-width: 28px;
    box-sizing: border-box;
}
.entry-page.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.period {
    color: black;
    margin: 0px 12px;
}
.entry-page.entry-page-next {
    margin-left: 12px;
}
.entry-page.highlight {
    background: #3B3885;
    color: white;
}
.entries-searcher {
    width: 250px;
    height: 36px;
    border: 1px solid #ccc;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0px 8px;
    flex-grow: 1;
}
.entries-searcher input {
    border: 0px;
    font-size: 14px;
    position: absolute;
    color: #777;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 0px 12px 0px 36px;
    box-sizing: border-box;
}
.entries-searcher md-icon {
    position: absolute;
    top: 4px;
    z-index: 1;
    left: 4px;
}
.entries-searcher select {
    width: 100%;
    height: 100%;
    border: 0px;
    cursor: pointer;
    font-size: 14px;
}

.filters-menu {
    background: #cfd9e5;
    border: 1px solid #3B3885;
    border-radius: 4px;
    width: 100%;
    max-width: 850px;
    box-sizing: border-box;
}
.filters-menu{	
	width: 100%;	
	height: auto;
}
.filters-actions{
	width: 100%;
	display: flex;
	padding: 10px 20px 10px 20px;
	border-top: 1px solid #3B3885;
	box-sizing: border-box;
}
.filters {
    width: 100%;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
}
.filter-action-button {
    background: #3B3885;
    color: white;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
}
.filter-cancel-button {
    background: #cfd9e5;
    color: #3B3885;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
}
.filters-wrapper {
    max-height: 0px;
    overflow: hidden;
    transition: 0.3s ease-in-out all;
}
.filters-wrapper.open {
    max-height: 200px;
}




.wiki-entry-main.ng-enter{
	transition:0.3s ease-in-out all;
	opacity:0;
}
.wiki-entry-main.ng-enter-active{
	opacity:1;
}

.entry-main-headline {
	display: flex;
	align-items: center;
	padding-bottom: 24px;
	max-width: 850px;
}
.entry-main-title {
	font-size: 24px;
	font-weight: 500;
	color: black;
	line-height: 28px;
	display: flex;
	align-items: center;
	padding-right: 20px;
	font-family: "Poppins";
}
.entry-main-headline .button {
    margin: 0px 4px;
}
.entry-main-description {
    width: 850px;
    max-width: 100%;
    font-size: 12px;
    color: #777;
    font-style: italic;
}
.entry-main-content {
    margin: 20px 0px;
    width: 100%;
    max-width: 850px;
}
.entry-main-fields-table {width: 100%;/* border: 1px solid #ccc; */max-width: 850px;/* border-radius: 4px; *//* background: #fafafa; *//* padding: 10px; */box-sizing: border-box;/* box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), -1px -1px 1px rgba(0, 0, 0, 0.1); */}
.entry-main-field {
    display: flex;
    align-items: center;
    padding: 2px 4px;
    /* border-bottom: 1px solid #ccc; */
}
.entry-main-field:nth-child(2n+1) {
    background: #e9eef2;
}
.entry-main-fields-toolbar {
    padding-bottom: 4px;
}
.pk {
    width: 16px;
    height: 20px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.pk md-icon {
    font-size: 16px;
    min-width: 16px;
    width: 16px;
    min-height: 16px;
    height: 16px;
}
.entry-main-field:last-child {
    border-bottom: none;
}
.field-name {
    color: #333;
    width: 250px;
}
.field-description {
    color: #777;
    padding: 4px 0px;
}
.field-type {
    font-weight: 600;
    width: 100px;
}
.field-link {
    width: 200px;
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}

.entry-form-content {
    margin: 20px 0px;
    width: 100%;
    max-width: 850px;
}
.entry-fields {
    margin-top: 12px;
    border: 1px solid #777;
}

.entry-form-description {
    margin: 20px 0px;
    width: 100%;
    max-width: 850px;
}
.entry-form-headline {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    max-width: 850px;
}
.entry-form-title {
    font-size: 24px;
    font-weight: 500;
    color: black;
    line-height: 24px;
    display: flex;
    align-items: center;
    padding-right: 20px;
}
.entry-form-headline .button {
    margin: 0px 4px;
}
.entry-field input:not([type='checkbox']):focus {
    outline: 2px solid black;
}
.field-cell > md-icon {
    font-size: 15px;
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
}
.field-cell select:focus {
    outline: 2px solid black;
}
.entry-form-fields {
    max-width: 850px;
    box-sizing: border-box;
}
.entry-fields-headline {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    height: 20px;
}
.entry-fields-headline md-icon {
    width: 16px;
    height: 16px;
}
.headline-pk {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    margin: 3px 3px 3px 4px;
}
.headline-pk md-icon {
    min-width: 16px;
    min-height: 16px;
    width: 16px;
    height: 16px;
    font-size: 16px;
}
.entry-fields-headline .field-cell {
    cursor: help;
    font-weight: 600;
}

.autocomplete-table-picker-container{
	width: 300px;
	font-family: "Poppins";
}
.autocomplete-table-picker-template .md-autocomplete-suggestion{
	border-bottom: 1px solid #ccc;
	height: auto;
	white-space: normal;
	padding: 0px;
}
.table-picker-item {
    display: flex;
    padding: 14px;
    align-items: center;
}
.table-picker-item-avatar {
    width: 44px;
    height: 44px;
    overflow: hidden;
    flex: none;
    margin-right: 10px;
}
.table-picker-item-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.table-picker-item-data {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.table-picker-item-title {
    line-height: 1.3;
    font-size: 11px;
    font-weight: 300;
}
.table-picker-item-text {
    font-size: 14px;
    font-weight: 500;
    color: #6b7c93;
    line-height: 1.3;
    margin-top: 4px;
}

.entry-linked {
    cursor: help;
}

.field-cell {
    font-size: 11px;
    /* text-align: center; */
    padding: 0px 4px;
}
.entry-fields-body {
    display: flex;
    flex-direction: column;
}
.entry-field {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    min-height: 24px;
    box-sizing: border-box;
	position:relative;
}
.entry-field:nth-child(2n+1) {}
.entry-field input:not([type='checkbox']) {
    border: 0px;
    height: 20px;
    width: 100%;
    box-sizing: border-box;
}
.field-icon-button md-icon {
    width: 16px;
    min-width: 16px;
    height: 16px;
    min-height: 16px;
    font-size: 16px;
}
.field-icon-button {
    cursor: pointer;
}
.field-cell select {
    width: 100%;
    border: 0px;
    cursor: pointer;
    height: 20px;
}

.entry-field-container {
    width: 100%;
    height: 25px;
    position: relative;
}
.entry-field-drag-icon {
    cursor: move;
    display: flex;
    align-items: center;
    justify-content: center;
}
.entry-field-drag-icon md-icon {
    font-size: 16px;
    height: 16px;
    min-height: 16px;
    width: 16px;
    min-width: 16px;
}


.no-entries {
    max-width: 850px;
    padding: 20px;
    background: lightyellow;
    border: 1px solid #3B3885;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-top: 12px;
}
.no-entries-text {
    font-size: 12px;
}
.no-entries .link {
    margin-top: 12px;
}

.wiki-mapping.ng-enter{
	transition:0.3s ease-in-out all;
	opacity:0;
}
.wiki-mapping.ng-enter-active{
	opacity:1;
}
.wiki-mapping {
    overflow: auto;
    overflow-x: hidden;
}
.wiki-mapping-headline {
    display: flex;
    width: 850px;
    max-width: 850px;
}
.wiki-mapping-avatar {
    width: 72px;
    height: 72px;
    margin: 20px;
    flex: none;
    margin-bottom: 0px;
    position: relative;
}
.wiki-mapping-avatar md-icon {
    font-size: 64px;
    height: 72px;
    width: 72px;
    line-height: 72px;
    background: #3B3885;
    border-radius: 50%;
    color: white;
    text-shadow: 1px 0px 3px black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wiki-mapping-avatar-backface {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    transform: scale(0.75);
    transform-origin: top left;
    box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.1);
    z-index: 1;
    object-fit: contain;
    background: white;
}

.wiki-mapping-avatar-frontface {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    transform: scale(0.75);
    transform-origin: bottom right;
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    background: white;
}
.wiki-mapping-data {
    display: flex;
    flex-direction: column;
    margin: 18px 0px;
    align-items: flex-start;
    min-width: 200px;
    margin-bottom: 0px;
    flex: 1;
}
.wiki-mapping-title {
    font-size: 24px;
    font-weight: 500;
    color: black;
    line-height: 24px;
    display: flex;
    align-items: center;
    margin: 4px 0px;
}
.wiki-mapping-actions {
    display: flex;
    align-items: center;
    margin: 20px;
    flex-direction: column;
    margin-bottom: 0px;
}
.wiki-mapping-cdm {
    padding: 20px 40px;
    width: 850px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    transition: 0.3s ease-in-out all;
    height: 172px;
	position:absolute;
}
.wiki-mapping-cdm.ng-hide-add {
	transform: translateX(0%);
	transition:.5s ease-in-out all;
	opacity:1;
}
.wiki-mapping-cdm.ng-hide-add.ng-hide-add-active {
	transform: translateX(-100%);
	opacity:0;
}
.wiki-mapping-cdm.ng-hide-remove {
	transform: translateX(-100%);
	transition:0.5s ease-in-out all;
	opacity:0;
}
.wiki-mapping-cdm.ng-hide-remove.ng-hide-remove-active {
	transform: translateX(0%);
	opacity:1;
}
.wiki-mapping-tool {
    padding: 20px 40px;
    width: 850px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    transition: 0.3s ease-in-out all;
    height: 172px;
	position:absolute;
}
.wiki-mapping-tool.ng-hide-add {
	transform: translateX(0%);
	transition:0.5s ease-in-out all;
	opacity:1;
}
.wiki-mapping-tool.ng-hide-add.ng-hide-add-active {
	transform: translateX(-100%);
	opacity:0;
}
.wiki-mapping-tool.ng-hide-remove {
	transform: translateX(100%);
	transition:.5s ease-in-out all;
	opacity:0;
}
.wiki-mapping-tool.ng-hide-remove.ng-hide-remove-active {
	transform: translateX(0%);
	opacity:1;
}
.wiki-mapping-tables {
    padding: 20px;
    width: 1000px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    transition: 0.3s ease-in-out all;
    position:absolute;
    height: calc(100% - 120px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(-100px);
}
.wiki-mapping-tables.ng-hide-add {
	transform: translateX(0%);
	transition:0.5s ease-in-out all;
	opacity:1;
}
.wiki-mapping-tables.ng-hide-add.ng-hide-add-active {
	transform: translateX(-100%);
	opacity:0;
}
.wiki-mapping-tables.ng-hide-remove {
	transform: translateX(100%);
	transition:0.5s ease-in-out all;
	opacity:0;
}
.wiki-mapping-tables.ng-hide-remove.ng-hide-remove-active {
	transform: translateX(0%);
	opacity:1;
}
.wiki-mapping-breadcrumbs {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 12px;
}
.wiki-mapping-breadcrumb {
    display: flex;
    align-items: center;
    margin-right: 12px;
}
.wiki-mapping-breadcrumb-text {
    font-size: 12px;
    font-weight: 500;
    font-family: "Poppins";
}
.wiki-mapping-breadcrumb-icon md-icon {
    font-size: 18px;
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
}
.wiki-mapping-breadcrumb-icon {
    width: 18px;
    height: 18px;
    display: flex;
    margin-left: 12px;
}





.wiki-mapping-tool {
    padding: 20px 40px;
    width: 850px;
    max-width: 100%;
}
.wiki-mapping-text {
    background: #e9f4ff;
    padding: 20px 40px;
    margin-bottom: 20px;
    box-sizing: border-box;
    font-size: 12px;
    border-radius: 4px;
    border: 2px solid #3B3885;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wiki-mapping-text .button {
    margin-top: 12px;
}
.wiki-tree {
    display: flex;
    height: 500px;
    overflow: visible;
    max-height: 100%;
    margin-top: 4px;
    padding-left: 2px;
}
.wiki-tree .entry-tag {
    position: absolute;
    right: 0px;
    top: 0px;
    transform: scale(0.75) translate(10px, -2px);
    right: 0px;
    margin: 0px;
    z-index: 1;
}
.wiki-tree input {
    width: 100%;
}
.wiki-cdm-tree {
    display: flex;
    width: 50%;
    overflow: hidden;
    perspective-origin: center;
    perspective: 1200px;
    transform: translateX(-40px);
}
.wiki-version-tree {
    display: flex;
    overflow: hidden;
    perspective: 1200px;
    transform: translateX(40px);
    width: 50%;
}
.wiki-tree-statebar {
    border-radius: 4px;
    display: flex;
    padding: 0px 120px;
    box-sizing: border-box;
}
.tree-statebar-left {
    width: 50%;
    position: relative;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    text-align: right;
    /* border-right: 1px solid rgba(0, 0, 0, 0.1); */
    margin-right: 35px;
}
.tree-statebar-title {
    color: black;
    font-size: 20px;
}
.tree-statebar-left {
    text-align: right;
}
.tree-statebar-subtitle {
    /* font-weight: bold; */
    margin-top: 4px;
    color: #6b7c93;
    height: 18px;
    background:white;
    font-size: 14px;
    font-weight: 900;
}
.tree-statebar-hints {
    padding: 0px;
    font-size: 12px;
    margin-top: 8px;
    height: 28px;
    position: relative;
}
.tree-statebar-right {
    width: 50%;
    position: relative;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    text-align: left;
    margin-left: 35px;
}

.mapping-cdm-tables {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.mapping-cdm-fields {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scaleX(0);
    transition: 0.3s ease-in-out all;
    transform-origin: right;
    width: 50%;
}
.mapping-version-tables {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.mapping-version-fields {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s ease-in-out all;
    width: 50%;
}
.mapping-cdm-tables.collapsed {
    transform: rotateY(-65deg) translateZ(12px);
    cursor: pointer;
}
.mapping-cdm-fields.visible {
    transform: scaleX(1);
}
.mapping-version-tables.collapsed {
    transform: rotateY(65deg) translateZ(8px);
    cursor: pointer;
}
.mapping-version-fields.visible {
    transform: scaleX(1);
}
.mapping-cdm-table-list, .mapping-cdm-field-list, .mapping-version-table-list, .mapping-version-field-list {
    flex: 1;
    overflow: scroll;
    overflow-x: hidden;
    border-radius: 1px;
    margin: 4px 4px 4px 0px;
    box-shadow: 1px 2px 2px rgba(0, 0, 0 , 0.2);
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-radius: 12px;
    /* overflow: hidden; */
    padding: 4px;
}


.mapping-table {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 8px 12px;
    color: #555;
    cursor: pointer;
    justify-content: space-between;
    border-radius: 24px;
    margin: 4px 0px;
}
.mapping-table.selected {
    box-shadow: 2px 0px 0px inset #3B3885, -2px 0px 0px inset #3B3885, 0px -2px 0px inset #3B3885, 0px 2px 0px inset #3B3885;
}
.mapping-table:nth-child(2n) {
    /* background: #e9f4ff; */
}
.mapping-table-name {
    /* font-family: cursive; */
    font-weight: 600;
}
.mapping-field {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 8px 12px;
    color: #555;
    cursor: pointer;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
    transition: 0.3s ease-in-out all;
    border: 2px dashed transparent;
    overflow: hidden;
}
.mapping-field.selected {box-shadow: 2px 0px 0px inset #3B3885, -2px 0px 0px inset #3B3885, 0px -2px 0px inset #3B3885, 0px 2px 0px inset #3B3885;}
.mapping-field-name {
    /* font-family: cursive; */
    font-weight: 600;
    display: flex;
    align-items: center;
    flex: 1;
    width: 100%;
}
.mapping-field-icon {
    width: 12px;
    height: 12px;
    display: inline-flex;
    margin-right: 4px;
}
.mapping-field-icon md-icon {
    font-size: 12px;
    color: #3B3885;
    min-width: 12px;
    min-height: 12px;
    width: 12px;
    height: 12px;
}
.mapping-field-info md-icon {
    font-size: 18px;
    color: #3B3885;
    min-width: 18px;
    min-height: 18px;
    width: 18px;
    height: 18px;
}
.mapping-field-info {
    width: 18px;
    height: 18px;
    flex: none;
}
.mapping-field-text {
    flex: 1;
}
.mapping-field:nth-child(2n) {
    /* background: #e9f4ff; */
}
.mapping-field-drag-icon {
    cursor: move;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 32px;
    height: 32px;
    /* background: #3B3885; */
    display: flex;
    border-radius: 24px 0px 0px 24px;
}
.mapping-field-drag-icon md-icon {
    font-size: 16px;
    min-width: 16px;
    width: 16px;
    min-height: 16px;
    height: 16px;
    /* color: white; */
}
.mapping-version-field-list .mapping-field {
    padding-left: 32px;
}

.hint{
	position:absolute;
	width: 100%;
	color: #6b7c93;
	font-size: 11px;
	font-style: italic;
}
.hint.ng-hide-add {
	transform: translateY(0%);
	transition:.5s ease-in-out all;
	opacity:1;
}
.hint.ng-hide-add-active {
	transform: translateY(-100%);
	opacity:0;
}
.hint.ng-hide-remove {
	transform: translateY(100%);
	transition:0.5s ease-in-out all;
	opacity:0;
}
.hint.ng-hide-remove.ng-hide-remove-active {
	transform: translateY(0%);
	opacity:1;
}



.mapping-cdm-tables {
    transform: rotateY(-65deg) translateZ(12px);
    transition: 0.3s ease-in-out all;
    transform-origin: right;
    transform: translateX(100%);
    width: 50%;
}
.mapping-version-tables {
    /* transform: rotateY(65deg) translateZ(8px); */
    transition: 0.3s ease-in-out all;
    transform-origin: left;
    transform: translateX(-100%);
    width: 50%;
}
.mapping-field-relations {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.mapping-field-relation {
    background: #3B3885;
    margin: 2px;
    color: white;
    font-size: 8px;
    /* font-family: monospace; */
    font-weight: bold;
    border-radius: 1px;
    text-align: center;
    position: relative;
    padding: 2px 4px 2px 12px;
    display: flex;
    flex-wrap: wrap;
}
.mapping-field-delete-button{
	position:absolute;
	left: -6px;
	height: 14px;
	width: 14px;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	overflow: hidden;
	cursor: pointer;
	box-shadow: -1px 0px 1px 1px #3B3885;
}
.mapping-field-delete-button md-icon {
    font-size: 14px;
    min-width: 14px;
    width: 14px;
    min-height: 14px;
    height: 14px;
    line-height: 14px;
    background: white;
    color: #3B3885;
}
.mapping-field.drop-here {
    border: 2px dashed;
    background: #e9f4ff;
    margin: 4px 0px;
}
.mapping-field-drop-indicator {
    transform: scale(0);
    transition: 0.1s ease-in-out transform;
    height: 0px;
    opacity: 0;
}
.mapping-field.drop-here  .mapping-field-drop-indicator {
    transform: scale(1);
    transition: 0.1s ease-in-out all;
    height: 24px;
    opacity: 1;
}
.mapping-cdm-tables.collapsed * {
    pointer-events: none;
}
.mapping-version-tables.collapsed * {
    pointer-events: none;
}
.mapping-field-tags {
    display: flex;
    border-radius: 2px;
    box-sizing: border-box;
    margin-right: 5px;
}
.mapping-field-tag.highlight {
    background: white;
    border: 1px solid #3B3885;
    color: #3B3885;
    font-weight: 900;
}
.mapping-field-tag {
    width: 13px;
    height: 13px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 9px;
    background: #ccc;
    margin: 0px 1px;
    color: #999;
    /* box-shadow: 1px 1px 1px inset rgba(0, 0, 0, 0.1); */
    border-radius: 2px;
    padding: 1px 0px;
    box-sizing: border-box;
    line-height: 1;
    border: 1px solid #aaa;
    cursor: help;
}
.mapping-field-tag:first-child {
    margin-left: 0px;
}
.mapping-field-tag:last-child {
    margin-right: 0px;
}

.wiki-menu-squares {
    text-align: center;
    color:var(--theme_color);
}
.wiki-menu-squares.selected {
    color:#3B3885;
    font-weight: bold;
}
.wiki-menu-squares.selected md-icon{
    color:#3B3885;
    font-weight: bold;
}
.wiki-menu-squares md-icon {
    font-size: 60px;
    min-width: 60px;
    min-height: 60px;
    width: 60px;
    height: 60px;
}


