body {
    margin:0;     /* This is used to reset any browser-default margins */
    height:100vh; /* This is needed to overcome a Chrome bug. */
    width:100vw;  /* As above. */
	overflow: hidden;
}

#dimmer {
	display:none;
	position:absolute;
	width:100vw;
	height:100vh;
	opacity:0.2;
	background-color:black;
	z-index:10000;
}

.form-control-sm {
	display: block;
	width: 100%;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#alertPopup {
	z-index:15000;
	display:none;
	min-width:200px;
	pointer-events: auto;
}


#content-wrapper {
	height:calc(100vh - 58px);
	display:flex;
}

#editor {
	height:calc(100vh - 58px);
	display:none;
	background-color:#fff2f2;
	
}

#treeNodes {
	border-radius:10px;
	display:flex;
	flex-direction:column;
	width:20vw;
	height:100%;
	padding:3px;
	font-size: small;
}

.profileIcon {
	background: url(../assets/svg/account_circle_white_24dp.svg);
	background-repeat: no-repeat;
	background-size: 40px 40px;
	width: 40px;
	height: 40px;
}

#treeNodeWrapper {
	width:100%;
	height:100%;
	overflow-y: auto;
}

#nodeDetail {
	border-radius:10px;
	width:80vw;
	height:100%;
	display:flex;
}

#resizer {
	width: 3px;
    height: 100%;
    background-color: #6c757d !important;
    cursor: e-resize;
	display:flex;
	align-items:center;
}

#resizerButton {
	width:6px;
	height:20px;
	background-color:white;
	border:1px solid gray;
}

.input-valid {
	border: 1px solid #ced4da;
}

.input-invalid {
	border: 1px solid red;
}

.node-wrapper {
	margin: 0px;
}

.node {
	position: relative;
	display: flex;
	height: 20px;
	user-select: none;
}

.node-selected {
	background-color:#EFEFEF;
}

.node-expand {
	min-width:25px;
	height:25px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor:pointer;
}

.node-headertext {
	position: relative;
	overflow:hidden;
	text-overflow: ellipsis;
	overflow: hidden; 
	white-space: nowrap;
}

#detailWrapper {
	width:80vw;
	height:100%;
}

#structurDetail {
	height:50%;
	width:80vw;
	background-color:#EFEFEF;
}

#phraseSeperator {
	width: 100%;
    height: 3px;
    background-color: #6c757d !important;
    cursor: n-resize;
	display:flex;
	align-items:center;
	justify-content:center;
}

#phraseSeperatorButton {
	width:20px;
	height:6px;
	background-color:white;
	border:1px solid gray;
}

.tabContainer {
	height:26px;
	width:80vw;
	display:flex;
	background-color:#6c757d;
}

.tabFiller {
	flex:1;
	border-bottom:1px solid;
}

.tabs {
	min-width: 10%;
	height: 100%;
	border: 1px solid;
    border-bottom-color: currentcolor;
    border-bottom-style: solid;
    border-bottom-width: 1px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	display: flex;
	justify-content: center;
	user-select: none;
	cursor:pointer;
	background-color:#fff2f2;
}

.tabsActive {
	border-bottom:0px !important;
	background-color:white;
}

.phraseTabs {
	min-width: 10%;
	height: 100%;
	border: 1px solid;
    border-bottom-color: currentcolor;
    border-bottom-style: solid;
    border-bottom-width: 1px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	display: flex;
	justify-content: center;
	user-select: none;
	cursor:pointer;
	background-color:white;
}

.structureTabs {
	min-width: 10%;
	height: 100%;
	border: 1px solid;
    border-bottom-color: currentcolor;
    border-bottom-style: solid;
    border-bottom-width: 1px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	display: flex;
	justify-content: center;
	user-select: none;
	cursor:pointer;
	background-color:white;
}

.phraseTabsActive {
	border-bottom:0px !important;
	background-color:#EFEFEF;
}

#phraseDetail {
	height:45%;
	width:80vw;
	background-color:#EFEFEF;
	overflow-y:scroll;
}

#profileDropdownWrapper{
	display:flex;
	justify-content:center;
	align-items:center;
}

#profileDropdownContainer {
	min-width:300px;
}

#accountsettings {
	display:none;
	position:absolute;
	width:100vw;
	height:100vh;
	background-color:white;
	z-index:50;
	flex-direction: column;
	align-items: center;
}

#settingsPanel {
	width:50vw;
	
}
#treeNodeLangWrapper {
	display: flex;
	justify-content: center;
	align-content: center;
}


#structureTabMetaView {
	display:none;
}

#structureTabDiscussionView {
	display:none;
}

#structureTabDiscussion {
	display:none;
}

#structurDetail {
	overflow-y:scroll;
}

#structureMetaLabel {
	display:inline-block;
	width:200px;
}

#phraseTabPhraseView {
	
}

#phraseTabMetaView {
	display:none;
}

#phraseTabDiscussionView {
	display:none;
}

#proposalForum {
	overflow-y:scroll;
	height:95vh;
	display:none;
}

.proposalview-selected-proposal {
	background-color:#530000;
	color:white;
}

.form-group {
	background-color:white;
	border:solid 1px;
	border-radius:5px;
	padding:10px;
}

.artical_icon {
	display:block;
	background: url(../assets/svg/article_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.flex_button {
	align-items: center;
	display: flex;
}

.icon {
	display: inline-block;
	margin:0 auto;
}

.copy_icon {
	
	content: url(../assets/svg/content_copy_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.cut_icon {
	content: url(../assets/svg/content_cut_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.paste_icon {

	content: url(../assets/svg/content_paste_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.lock_icon {
	display:block;
	background: url(../assets/svg/lock_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.add_circle_icon {
	display:block;
	background: url(../assets/svg/add_circle_outline_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.chat_bubble_icon {
	display:block;
	background: url(../assets/svg/chat_bubble_outline_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.edit_black_icon {
	display:block;
	background: url(../assets/svg/edit_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.moving_black_icon {
	display:block;
	background: url(../assets/svg/trending_flat_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.download_for_offline {
	display:block;
	background: url(../assets/svg/download_for_offline_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

.delete_black_icon {
	display:block;
	background: url(../assets/svg/delete_black_24dp.svg);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
}

#phraseMetaBody {
	display:flex;
	padding:5px;
	flex-grow:1;
	flex-wrap: wrap;
	justify-content:space-around;
}

.metadatacontainer {
	padding:5px;
	width:49%;
}

#einwilligung {
	position:fixed;
	height:100px;
	width:100vw;
	background-color:#6c757d !important;
	top:calc(100vh - 100px);
	color:white;
	padding:15px;
}

.trHover:hover {
	color:white;
}

.5-left {
	margin-left: 5px;
}
.20-bot {
	margin-bottom: 20px !important;
}

.disabled-context {
	opacity: 0.5;
  	cursor: not-allowed;
}

.completed-proposal {
	background : #eee;
	opacity : 0.8;
}