.disable-option {
    opacity: 0.3;
    pointer-events: none;
}

.testframe {
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    z-index: 9999999;
    width: 800px;
    height: 600px;
}
.testframe > body {
    width: 100% !important;
    height: 600px !important;
}

/* HELPER */
.noScroll{
	overflow: hidden;
}

.reset-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

/*.todo {
	outline: 2px solid red;
}*/

.layout-header {
	position: sticky;
    top: 0;
    left: 0;
    z-index: 6;

	& > nav {
		padding-inline: 32px;

		@media (max-width: 992px) {
			padding-inline: 24px;
		}
	}

}

.layout-content {
	position: absolute;
    top: var(--global-main-header-height, 64px);
    left: 0;
    right: 0;
    bottom: 0;
	overflow-y: auto;
	background: var(--ef-color-white);
	scroll-behavior: smooth;

	&.as-panel {
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
	}
}

.no-header-page {
	& .layout-content {
		position: static;
		overflow-y: visible;
	}
}

.layout-content-static {    
	container-type: inline-size;
	scrollbar-gutter: stable;
	position: absolute;
    top: var(--global-main-header-height, 64px);
    left: 0;
    right: 0;
    bottom: 0;
	overflow-y: auto;
	background: var(--ef-color-white);
	scroll-behavior: auto;

	&.as-panel {
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
	}

	& .page-content {
		--scrollbar-width: calc(100vw - 100cqw);
	}
}

/* Page title */
.page-title {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/** Global **/
html,
body {
  font-size: 14px;
  color: var(--ef-color-signal-black-100);
}
body.modal-open {
  margin-right: 0 !important;
}

.modal-nav-btn {
    font-weight: normal;
    border: 1px solid white;
    font-size: 16px;
    padding: 8px 18px;

	&.active,
	&:hover,
	&:focus,
	&:active {
		background-color: var(--ef-color-white);
		border-color: var(--ef-color-white);
		color: var(--ef-color-signal-black-100);
	}
}

.sticky-header {
    z-index: 1;
    position: sticky;
    top: 0;
    background: var(--ef-color-white);
    border-bottom: 1px solid var(--ef-color-signal-black-16);
	padding: 100px 50px;

	& a {
		@media (max-width: 768px) {
			display: flex;
			justify-content: space-between;
		}
	}

	@media (max-width: 768px) {
		padding: 70px 24px 40px 24px;
	}
}

.wizard_step0,
.wizard_step1 {
    padding: 50px;

	@media (max-width: 768px) {
		padding: 40px 24px;
	}
}

.thumbnail-background {
  margin: auto;
  max-width: 241px;
  background-repeat: no-repeat; 
  height: 154px; 
  box-shadow: 0px 6px 12px #00000029; 
  display: flex; 
  flex-direction: column-reverse; 
  background-size: contain;
  border-radius: 0 0 2px 2px;
}

.noselect {
    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

/** Forms **/
.input-error {
  /*color: #990033 !important;*/
  border-color: #990033 !important;
  outline-color: #990033 !important;
  outline-width: 1px !important;

  &:focus {
	border: 1px solid var(--ef-color-signal-black-16);
  }
}
/* always display arrows on chrome / webkit browsers*/
input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
}
/* delete spinners */
input[type='number']#participantLimit::-webkit-inner-spin-button,
input[type='number']#participantLimit::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* delete spinners for firefox */
input[type='number']#participantLimit {
    -moz-appearance: textfield;
}
select.input-sm {
  padding-left: 3px;
  padding-right: 3px;
}
select.input-xs {
  height: 24px;
  padding: 2px;
}

/** Logos **/
.logo {
  background-image: url("/img/logo.svg");
  background-repeat: no-repeat;
  height: 38px;
  width: 120px;
  margin-top: -2px;
}
.logo-sm {
  height: 32px;
  width: 104px;
}
.logo-footer {
  background-image: url("/img/logo-neg-red.svg");
  background-repeat: no-repeat;
  height: 28px;
  width: 90px;
}

/** Banner **/
.banner {
	display: flex;
	align-items: center;
	height: 50px;
	font-size: var(--fs-16);
	padding-inline: 32px;
	background: var(--ef-color-signal-black-4);

	& .header {
		min-height: auto;
	}

	@media (max-width: 992px) {
		padding-inline: 24px;
	}
}

/** Header - Page **/
.header {
	display: flex;
	min-height: 64px;
	justify-content: space-between;
	align-items: center;

	& .back-section {
		gap: 4px;

		& .go-back {
			display: flex;
			align-items: center;
			gap: 5px;
			font-size: 25px;
			max-height: 32px;
		}
	}

	& .subnavi {
		list-style: none;
		display: flex;
		align-items: center;
		gap: 10px;
		margin: 0;
		padding: 0;
		position: relative;
        z-index: 1;

		@media (max-width: 992px) {
			gap: 4px;
		}

		& li {
			display: flex;
			align-items: center;
			min-height: 55px;
			position: relative;
		}
	}
}

/** Navs **/
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  background-color: #F3F3F3;
  color: #000000;
  border: 1px solid #CCCCCC;
  border-left: none;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.sidebar-nav > li > a {
  border: none !important;
  border-radius: 0px !important;
  text-align: right;
  padding-right: 40px;
}

/** Footer **/
#footer {
  background-color: #2A2A2A;
  width: 100%;
  min-width: 985px;
  /*height: 40px;*/
}
.container .credit {
  margin: 10px 0;
  line-height: 20px;
  font-size: 11px;
  color: #c0c0c0;
}
.container .credit > a {
  color: #c0c0c0;
}
#footer > .container {
  padding-left: 40px;
  padding-right: 40px;
}

/** Umfragen Editor **/
.survey-editor-control {
  border-bottom: 1px solid #515151;
  padding-bottom: 0 !important;
}

.cke_inner{
    border: none !important;
}

.survey-translate-editor {
	width: min-content;

	& .survey-translate-header {
		display: flex;
		background-color: var(--ef-color-white);
		border-bottom: 1px solid var(--ef-color-signal-black-16);

		& .survey-translate-header--first {
			flex-shrink: 0;
		}

		& .--addBtn {
			position: absolute;
			top: 50%;
			right: -20px;
			transform: translate(50%, -50%);
		}
	}

	& .survey-translate-body {
		display: flex;

		& .survey-translate-body--first {
			flex-shrink: 0;
		}
	}

	& .survey-translate-header--item,
	& .survey-translate-view {
		padding: 20px;
		padding-left: 90px;
		padding-right: 40px;
		width: 550px;
		display: inline-block;
		white-space: normal;
		border-left: 1px solid var(--ef-color-signal-black-16);
	}

	& .--leftSide {
		z-index: 2;
		position: static;
		left: 0;
		text-align: right;
		width: 250px;
		padding-left: 20px !important;
		padding-right: 20px !important;
		background-color: var(--ef-color-signal-black-8);

		@media (min-width: 768px) {
			position: sticky;
		}

		& .--text {
			padding-top: 6px;
		}

		& [section="2"] .--text {
			padding-top: 0px;
			font-size: 11px;
			overflow: hidden; /* only until texts are updated */
		}
	}

	& .survey-translate-view {
		&.--leftSide {
			border-left: none !important;
		}	
	}

	& .--rightSide {
		display: flex;

		&:first-child {
			border-left: none !important;
		}		
	}

	& .survey-translate {
		
	}

	& .survey-translate-page {
		& .--pageTitle,
		& .--pageSpacer {
			height: 35px;
		}
	}

	& .survey-translate-input {
		margin-top: 10px;
		min-height: 34px;

		& > input.--changed,
		& > textarea.--changed {
			background-color: #f8f3e2;
		}
	}
}

#translateModal .--line {
    height: 2px;
    background-color: #f5f5f5;
}
#translateModal .--content {
    max-height: 450px;
    overflow-y: auto;
    box-shadow: none;
}
#translateModal .--content > div {
    padding: 10px;
    border-bottom: 1px solid #f5f5f5;
}
#translateModal .--content > div.--ignore {
    color: #848484;
}
#translateModal .--content > div[pageId] {
    background: #f5f5f5;
}
#translateModal .--content > div:after {
    display: block;
    content: '';
    clear: both;
}
#translateModal .--content > div > div {
    float: left;
    margin-left: 1%;
    width: 48%;
    min-height: 1px;
    font-weight: 400;
}
#translateModal div.--selectAll,
#translateModal .--content > div[pageId] > div {
    font-weight: bold;
}
#translateModal .--content > div > .glyphicon {
    float: left;
    width: 2%;
}
#addModal .--content > div,
#templateModal .--content > div {
    float: left;
    width: 50%;
    min-height: 1px;
}
#addModal .--langName {
    display: none;
}

.survey-editor-preview.--fixed > .survey-translate-header {
    position: fixed;
    top: 0px;
}
.survey-editor-preview.--fixed > .survey-translate {
    padding-top: 57px;
}
.survey-translate #templateDropdown {
    position: absolute;
}
.survey-translate #languageTemplateSelector button {
    display: none !important;
}
.survey-translate [section="2"] {
    display: none;
}
.survey-translate-view .--pageClose,
.survey-translate-view .--pageCloseSpacer {
    margin-top: 50px;
    height: 2px;
    padding-bottom: 50px;
}
.survey-translate-view .--pageCloseSpacer.--last {
    margin-top: 15px;
    padding-bottom: 15px;
}
.survey-translate-view .--pageClose > hr {
    position: absolute;
    width: 100%;
    left: 0px;
}
.survey-translate-question {
    margin-top: 50px;
}
.survey-translate-question .--element {
    float: left;
    margin-top: -33px;
    margin-left: -50px;
    font-size: 21px;
}
.survey-translate .--text,
.survey-translate .--title {
    color: #999999;
}
.survey-translate-question .--title {
    font-size: 12px;
}
.survey-translate-question .--title,
.survey-translate-question .--spacer {
    height: 25px;
}
.survey-translate-view textarea {
    min-width: 100%;
    max-width: 100%;
}
.survey-translate-view textarea,
.survey-translate-view .--text {
    min-height: 34px;
    height: 34px;
}
.survey-translate-view .--text.--input {
    height: 34px;
}
.survey-translate-input.--top {
    margin-top: 26px;
}
.survey-translate-input.--bottom {
    margin-bottom: 26px;
}
.survey-translate-input.--left,
.survey-translate-input.--child[qid$="_additional"],
.survey-translate-input.--child[qid$="_default"] {
    padding-left: 26px;
}
.survey-translate-input.--top.--child[qid$="_additional"],
.survey-translate-input.--top.--child[qid$="_default"] {
    margin-top: 10px;
}

.survey-container {
	padding: 80px 0 70px;

	& > .survey-page-content {
		transform: scale(0.96);
	}

	@media (min-width: 992px) {
		padding: 80px 24px 70px;
	}
}
.survey-container-preview {
	padding: 45px 5px;
	border: 1px dashed #cccccc;
	transform: scale(0.96);

	& .preview-content-indented {
		padding-inline: 39px;
	}

	& .preview-content-indented-left {
		padding-left: 45px;
	}
}
.survey-container > p {
  padding: 10px 10px 0;
}
/*header {
  height: 100px;
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-top: none;
  margin-bottom: 4px;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}
header > .survey-container {
  padding: 20px 40px;
}
.survey-content {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-bottom: none;
}*/
.survey-content-full {
	background-color: #FFFFFF;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	margin-bottom: 20px;
	position: relative;
	min-height: 500px;

	& .page-layout-btn {
		position: absolute;
		top: 5px;
		left: 5px;
		z-index: 1;

		& img {
			width: 65px;
		}
	}

	&:has(.dropdown-menu.show) {
		z-index: 4;
	}
}

.survey-question-container {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 1px solid transparent;
	position: relative;
	min-height: 55px;
	border-radius: 4px;
	width: 100%;
	max-width: 1052px;
    margin: 0 auto;

	&:hover, 
	&:focus {
		border: 1px dashed #cccccc;

		& .survey-question-overlay {
			display: flex;
		}
	}

	& .survey-question-overlay {
		display: none;
		background: var(--ef-color-white);
		padding: 8px;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
		border-radius: 4px;
		order: 1;
		gap: 5px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2;
		/*box-shadow: 0px 2px 8px var(--ef-color-signal-black-16);*/

		& .btn {
			font-family: 'Lato';
			font-size: var(--fs-14);
		}
	}
}
.ui-state-highlight {
  border: 1px dashed #cccccc;
  background-color: #f2f2f2;
  background-image: none;
}
.survey-container > .ui-state-highlight {
  height: 100px;
}

.survey-footer {
  background-color: #2a2a2a;
}
.survey-footer > p {
  margin: 0 20px;
  color: #FFFFFF;
  font-size: 10px;
  padding: 5px 0;
}
.noteSurveyPublished {
  background-color: #FEEAC4;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  transform: scale(0.96);
}
.noteSurveyPublished b{
  color:#990033;
}


/** Umfrage - Fragetypen **/
.audiojs .play-pause {
  padding: 4px 0;
}
.slider-form {
  text-align: center;
  font-weight: bold;
  border: none;
  padding: 0px !important;
  height: 18px !important;
  background-color: transparent;
  color: #000000;
}
.question-rating {
  text-align: center;
  font-size: 60px;
  line-height: 1em;
}
.question-rating-label {
  font-size: 13px;
  line-height: 1.42857;
  font-weight: bold;
  display: none;
}
.rating-symbol {
  cursor: pointer;
  margin: 0px 3px;
}
.rating-symbol-foreground {
  bottom: 0px !important;
}
.question-ranking-na {
  display:table-cell;
  vertical-align:top;
  padding-right: 5px;
}
.question-ranking-status {
  width: 48px;
  float: right;
  display:table-cell;
  vertical-align:top;
}
.question-ranking-highlight {
  height: 40px;
  border: 1px dashed #cccccc;
  background-color: #f2f2f2;
  background-image: none;
  margin-bottom: 3px;
}
.ranking-btn {
  width: 48px;
  height: 24px;
  border-radius: 15px;
  background-color: #cccccc;
  cursor: pointer;
}
.ranking-btn-left,
.ranking-btn-right {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background: transparent url('../img/icons/ranking.png') no-repeat 0 0;
}
.ranking-btn-left {
  float: left;
  margin-left: 4px;
}
.ranking-btn-right {
  float: right;
  margin-right: 4px;
  background-position: 0 -16px;
}
.ranking-btn-on {
  background-color: #990033;
}
.ranking-btn-on > .ranking-btn-left {
  background-position: 0 -32px;
}
.ranking-btn-on > .ranking-btn-left-sm {
  background-position: 0 -24px;
}
.ranking-btn-on > .ranking-btn-right, .ranking-btn-on > .ranking-btn-right-sm {
  background-position: 0 0px;
}
.ranking-btn-on.green{
    background-color:#0299a2;
}
.ranking-btn-sm {
  width: 36px;
  height: 18px;
  border-radius: 9px;
  background-color: #999999;
  cursor: pointer;
}
.ranking-btn-left-sm,
.ranking-btn-right-sm {
  width: 12px;
  height: 12px;
  margin-top: 3px;
  background: transparent url('../img/icons/ranking-sm.png') no-repeat 0 0;
}
.ranking-btn-left-sm {
  float: left;
  margin-left: 3px;
}
.ranking-btn-right-sm {
  float: right;
  margin-right: 3px;
  background-position: 0 -12px;
}
.question-input-hidden {
  cursor: pointer;
  background-image: url('../img/icons/close.png');
  background-position: 97% 55%;
  background-repeat: no-repeat;
}
.question-input-delete {
  background-image: url('../img/icons/disabled.png');
  background-repeat: repeat;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  border-bottom: #CCCCCC !important;
}

.table-privacy {
    width: 100%;
    border: 1px solid #ccc;
    font-size: 10px;
}
.survey-wrap select,
.survey-wrap select:focus,
.survey-wrap select:active,
textarea.survey-input,
textarea.survey-input:focus,
textarea.survey-input:active {
  box-shadow:none;
}
.survey-page-title {
	font-family: "Lato Bold","Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 16px;
}

/** Fragen Editor **/
.dropdownoptions {
  width: 300px;
}
.dropdowncontainer > input {
  width: 280px;
}
.responsive-disabled {
  cursor: not-allowed;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  opacity: 0.3;
}

/** Umfrage - Teilnehmer einladen **/
#cke_mailtext,
#cke_remindertext,
#cke_infobox,
#cke_privacytext{
  border: none;
  box-shadow: none;
}
#cke_privacytext{
    border: 1px solid #CCCCCC;
}
#cke_infobox .cke_toolbox_collapser{
    display:none !Important;
}
#cke_infobox{
    border: 1px solid #c5c5c5;
}
#cke_infobox .cke_top{
    display:inline-block;
	width: -webkit-fill-available;
}

/** Umfrage Ergebnis **/
.border-left {
  border-left: 1px solid #DDDDDD !important;
}
.border-bottom {
  border-bottom: 1px solid #DDDDDD !important;
}
.border-bottom-black {
  border-bottom: 1px solid #000000 !important;
}
.no-border {
  border-width: 0px !important;
}

.no-round-border-left{
  margin-left:-2px;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.no-round-border-right{
  margin-right:-2px;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

/** Integration Website **/
#fullsizeLayerPreview {
  height: 700px;
  background-image: url(../img/misc/layer-fullsize-example.jpg);
  background-position: 50% 0;
  -webkit-box-shadow:inset 0 0 20px 0 #000000;
  box-shadow:inset 0 0 20px 0 #000000;
}
#fullsizeLayerPreview #layer {
  position: relative;
  width: 350px;
  height: 400px;
  top: 150px;
  margin: 0px auto;
  background-color: #ffffff;
}
.layerOverlay {
  height: 100%;
  background:rgb(0,0,0);
	background: transparent\9;
	background:rgba(0,0,0,0.6);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
	zoom: 1;
}
.layerOverlay:nth-child(n) {
	filter: none;
}
.layer-container {
  padding: 20px;
}
.layerClose {
  background: url("../img/icons/closeLayer.png") no-repeat scroll center top rgba(0, 0, 0, 0);
  display: block;
  height: 19px;
  position: absolute;
  right: 20px;
  text-indent: -9999px;
  top: 20px;
  width: 19px;
}
.layerButton {
  text-align: center;
}
.layerButton > span {
    color: #000000;
    display: inline-block;
    font-weight: bold;
    padding: 7px 20px 7px;
    text-decoration: none;
}

/** Progress **/
.progress {
  margin-bottom:3px;
  height: 16px;
}
.progress-bar-danger {
  background-color: #990033;
}
.progress-blank {
  height: 18px;
  background-color: #B72043;
}
.progress-blank-bar1 {
  background-color: #B72043;
}
.progress-blank-bar2 {
  background-color: #517B82;
}
.progress-blank-bar3 {
  background-color: #D8D828;
}
.progress-blank-bar4 {
  background-color: #2468CD;
}
.progress-blank-bar5 {
  background-color: #FFA800;
}
.progress-blank-bar6 {
  background-color: #A8D925;
}
.progress-blank-bar7 {
  background-color: #C5C5C5;
}
.progress-blank-bar8 {
  background-color: #D92277;
}
.progress-blank-bar9 {
  background-color: #1874D3;
}
.progress-blank-bar10 {
  background-color: #65B090;
}
.progress-blank-bar11 {
  background-color: #269494;
}
.progress-blank-bar12 {
  background-color: #5660ED;
}
.progress-blank-bar13 {
  background-color: #AEC9B1;
}
.progress-blank-bar14 {
  background-color: #002E79;
}
.progress-blank-bar15 {
  background-color: #721C1A;
}
.progress-blank-bar16 {
  background-color: #E47F34;
}
.progress-blank-bar17 {
  background-color: #235E29;
}
.progress-blank-bar18 {
  background-color: #2468CD;
}
.progress-blank-bar19 {
  background-color: #C91EB7;
}
.progress-blank-bar20 {
  background-color: #0B3B87;
}

/** Charts **/
.dropdown-no-hover > li > a, .dropdown-no-hover > li > a:hover, .dropdown-no-hover > li > a:focus, .dropdown-no-hover > .active > a, .dropdown-no-hover > .active > a:hover, .dropdown-no-hover > .active > a:focus {
  background-color: #FFFFFF !important;
  color: #000000 !important;
}

#changeAllCharts > div.icon-chart {
    width: 30px;
    height: 30px;
}
.icon-chart {
  background: transparent url('../img/icons/charts.png') 0 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}
.icon-chart.inactive {
  cursor: auto;
}
.icon-chart-pie {
  background-position: 0px 0px;
}
.icon-chart-pie:hover,
.icon-chart-pie.active {
  background-position: 0px -30px;
}
.icon-chart-pie.inactive {
  background-position: 0px -480px;
}
.icon-chart-column {
  background-position: 0px -60px;
}
.icon-chart-column:hover,
.icon-chart-column.active {
  background-position: 0px -90px;
}
.icon-chart-column.inactive {
  background-position: 0px -510px;
}
.icon-chart-bar {
  background-position: 0px -120px;
}
.icon-chart-bar:hover,
.icon-chart-bar.active {
  background-position: 0px -150px;
}
.icon-chart-bar.inactive {
  background-position: 0px -540px;
}
.icon-chart-line {
  background-position: 0px -180px;
}
.icon-chart-line:hover,
.icon-chart-line.active {
  background-position: 0px -210px;
}
.icon-chart-line.inactive {
  background-position: 0px -570px;
}
.icon-chart-polar {
  background-position: 0px -240px;
}
.icon-chart-polar:hover,
.icon-chart-polar.active {
  background-position: 0px -270px;
}
.icon-chart-polar.inactive {
  background-position: 0px -600px;
}
.icon-chart-columnstacked {
  background-position: 0px -300px;
}
.icon-chart-columnstacked:hover,
.icon-chart-columnstacked.active {
  background-position: 0px -330px;
}
.icon-chart-columnstacked.inactive {
  background-position: 0px -630px;
}
.icon-chart-barstacked {
  background-position: 0px -360px;
}
.icon-chart-barstacked:hover,
.icon-chart-barstacked.active {
  background-position: 0px -390px;
}
.icon-chart-barstacked.inactive {
  background-position: 0px -660px;
}
.icon-chart-area {
  background-position: 0px -420px;
}
.icon-chart-area:hover,
.icon-chart-area.active {
  background-position: 0px -450px;
}
.icon-chart-area.inactive {
  background-position: 0px -690px;
}
.icon-onoff {
  margin-right: 10px;
  background: transparent url('../img/icons/onoff.png') 0 0;
  width: 34px;
  height: 17px;
  line-height: 17px;
  top: 3px;
  display: inline-block;
  white-space: nowrap;
  position: relative;
}
.icon-onoff-toggle {
  background-position: 0px -17px;
}
.table-chart-datatable {
  font-size: 12px;
  margin: 20px 0 !important;
}
.table-chart-datatable tfoot > tr > td {
  border-top-color: #000000;
}
div.dataTables_wrapper div.dataTables_info {
    padding-top: 15px !important;
}


/** Tables **/
.table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
  vertical-align: middle;
}
.table thead > tr > th {
  border: none;
  vertical-align: bottom;
}
.table-blank {
  width: 100%;
}
.table-survey,
.table-white {
  margin-bottom: 0px;
}
.table-survey > thead > tr > th,
.table-white > thead > tr > th {
  text-align: center;
  font-weight: normal;
}
.table-blank > thead > tr > th,
.table-blank > tbody > tr > td {
  padding: 5px 8px;
  border: none;
}
.table-survey > thead > tr > th {
  padding: 5px 2px;
}
.table-blank > tbody > tr > td,
.table-survey > tbody > tr > td {
  border: none;
  padding: 5px 8px;
  min-height: 34px;
}
.table-survey > thead > tr > th,
.table-survey > tbody > tr > td {
  border-top:2px solid #fff;
  border-right: 3px solid #ffffff;
}
.table-white > thead > tr > th,
.table-white > tbody > tr > td {
  background-color: #ffffff;
  border-right: 3px solid #f5f5f5;
  border-bottom: 3px solid #f5f5f5;
}
.table-survey-no-border > thead > tr > th,
.table-survey-no-border > tbody > tr > td {
  border-right: none;
}
.table-survey > tbody > tr:nth-child(2n+1) > td {
  background-color: #e5e5e5;
}

.table-survey > tbody > tr:nth-child(2n+1) > td.table-survey-dark {
  background-color: #e5e5e5;
  background-image: url('../img/misc/pixel.png');
}
.table-survey > tbody > tr:nth-child(2n+1) > td > input,
.table-survey > tbody > tr:nth-child(2n+1) > td > textarea {
  border-bottom: 1px solid #ffffff;
}
.table-survey > tbody > tr:nth-child(2n+1) > td > input:-moz-placeholder,
.table-survey > tbody > tr:nth-child(2n+1) > td > textarea:-moz-placeholder {
  color: #767875;
}
.table-survey-control {
  box-shadow: inset 0 0 0 50px white !important; /*Dirty fix for white background*/
  max-width: 52px;
}
td.table-survey-control-move, td.table-survey-control-move:hover {
  max-width: 52px;
}
.table-survey-control-move > span {
  display: none;
}
tr:hover > .table-survey-control-move > span {
  display: block;
}
.table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th {
    background-color: #F2F7F7;
    border-color: #DDDDDD;
}
.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td {
    background-color: #e5eded;
    border-color: #DDDDDD;
}
.table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th {
    background-color: #FEEAC4;
    border-color: #DDDDDD;
}
.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td {
    background-color: #FFE5B2;
    border-color: #DDDDDD;
}
.table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th {
    background-color: #F9F3F4;
    border-color: #DDDDDD;
}
.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td {
    background-color: #ede3e4;
    border-color: #DDDDDD;
}
.table > thead > tr > td.active-grey, .table > tbody > tr > td.active-grey, .table > tfoot > tr > td.active-grey, .table > thead > tr > th.active-grey, .table > tbody > tr > th.active-grey, .table > tfoot > tr > th.active-grey, .table > thead > tr.active-grey > td, .table > tbody > tr.active-grey > td, .table > tfoot > tr.active-grey > td, .table > thead > tr.active-grey > th, .table > tbody > tr.active-grey > th, .table > tfoot > tr.active-grey > th {
    background-color: #eaeaea;
    border-color: #DDDDDD;
}
.table-hover > tbody > tr > td.active-grey:hover, .table-hover > tbody > tr > th.active-grey:hover, .table-hover > tbody > tr.active-grey:hover > td {
    background-color: #eaeaea;
    border-color: #DDDDDD;
}
.table-hover > tbody > tr > td.active-grey-hover:hover, .table-hover > tbody > tr > th.active-grey-hover:hover, .table-hover > tbody > tr.active-grey-hover:hover > td {
    background-color: #eaeaea;
    border-color: #DDDDDD;
}
.table-intern {
  margin: 0px 0px 0px 12px;
  width: auto;
}
.table-intern > thead > tr > th,
.table-intern > tbody > tr > td {
  vertical-align: top;
}
.table-intern > tbody > tr.spacer {
    height: 20px;
}
.table-intern > tbody > tr > td.padding-top {
  padding-top: 9px;
  padding-bottom: 1px;
}
.table-intern > tbody > tr > td > input {
    max-width: 80px;
}
.table-sm td {
  padding: 2px 5px;
}
.table-sm td:first-child {
  padding-left: 0px;
}
tr.main > td {
  background-color: #dedede;
}*/
.tbl-lvl1 {
  padding-left: 40px !important;
}
.tbl-lvl2 {
  padding-left: 80px !important;
}
.table-admin td {
  height: 22px !important;
}
.questiontype-9-data {
  width: auto;
}
.questiontype-4,
.questiontype-5,
.questiontype-7,
.questiontype-8 {
	& table td .check-mark-label {
		display: none;
	}

	& table td label,
	& table td label_no {
		display: inline-flex;
		transform: translateY(3px);
	}
}

/* MN - Preisübersicht */
.td-top { vertical-align: top !important; }

/** admin rights card **/
.square-black-div{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2A2A2A; 
	color: #FFFFFF; 
	font-size: 16px; 
	width: 50px; 
	height: 50px;
}
.rect-grey-div{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #F5F5F5; 
	color: #2A2A2A; 
	height: 50px; 
	width: 212px;
	padding: 0 18px; 

	&:hover {
		a {
			text-decoration: underline;
			color: var(--ef-color-signal-black-100);
		}
	}
}

.rect-grey-text{
	display: flex;
	align-items: center;
	justify-content: space-between;
  	font-weight: 400;
}

/** Wells **/
.well {
  box-shadow: none;
  border-radius: 0 0 0 0;
}
.api-well {
  min-height: 20px;
  padding: 19px;
  background-color: #FFFFFF;
  border-radius: 5px !important; 
  box-shadow:  0px 5px 10px 1px rgba(0, 0, 0, 0.16);
}
.well-chart-sub {
  padding: 0px 9px;
}
.well-white {
  background-color: #FFFFFF;
}
.well-green {
  background-color: #0299a2;
}
.well-grey {
  background-color: #ededed;
}
.well-warning {
  background-color: #990033;
  text-align: center;
  color: #FFF;
  border: none !important;
}
.well-no-border {
  border: none;
}
.well-md {
  padding: 10px;
}

.well-select {
    cursor: pointer;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
}
.well-select .glyphicon-ok {
    padding-right: 10px;
    color: rgba(0,0,0,0);
}
.well-select.well-green {
    color: #ffffff;
}
.well-select.well-green .glyphicon-ok {
    color: #ffffff;
}

.connect-bar {
    width: fit-content;
    padding: 7px 10px;
}

.connect-logo {
    height: 100%;
    width: 28px;
}

/** Logik **/
.condition-connection {
	font-family: 'Lato Bold';
	font-size: 20px;
	text-align: center;
	height: 46px;
	line-height: 46px;

	@media (min-width: 768px) {
		min-width: 350px;
	}

	&.condition-connected {
		background: #ffffff url('../img/tool/logic-separator.png') 50% 0 no-repeat;
	}
}
#customVarFilterContainer .condition-connection,
#customParticipantFilterContainer .condition-connection,
#questionFilterContainer .condition-connection{
  font-size: 16px;
  height: 40px;
  line-height: 36px;
}
#customVarFilterContainer .condition-connection img,
#customParticipantFilterContainer .condition-connection img,
#questionFilterContainer .condition-connection img{
  margin-top:-3px;
}
.condition-connected-small {
  background: #ffffff url('../img/tool/logic-separator.png') center 0px no-repeat;
  background-size: 40% 100%;
}

.logic-answer-header {
  background-color: var(--ef-color-signal-black-40);
  color: #fff !important;
  border: none !important;
  margin-top: 40px;
}
.logic-answer-header strong {
  font-size: 16px;
}

/** Panels **/
.panel-white > .panel-heading {
  background-color: #FFFFFF;
}
.panel-title {
  font-size: 14px;
}
.panel-title > a {
  color: #990033;
  font-weight: normal;
}

/** Pagination **/
.pagination {
  margin: 0;
  max-width: 100%;
  overflow-x: auto;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #EEE;
    border-color: #DDD;
    color: #000;
}

/** Overlay Preloader **/
.fulloverlay-loader {
  display: none;
  z-index: 10000;
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  text-align: center;
}
.fulloverlay-loader > img {
  position: relative;
  top: 45%;
}

/** Test-Account / Browser Warnmeldung **/
.browserWarning {
  background-color: #FEEAC4;
}

/** Icons **/
.btn-icon-move {
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: move;
}

.icon-logic {
  background: transparent url('../img/icons/logic.png') 0 0;
  width: 16px;
  height: 15px;
}

.no-deco {
  text-decoration: none !important;
}
.text-underline {
  text-decoration: underline;
}

/* Images */
.img-border {
  border: 1px solid #CCCCCC;
}
.switchCheck {
    color:#000000 !Important;
}

/* List Plugin */
.checked-list-box {
  max-height: 600px;
  overflow-y: auto;
}
.state-icon {
  left: -5px;
}
.list-group-item {
  background-color: #ccc !important;
  color: #000 !important;
  border-color: #ccc !important;
}
.list-group-lvl1 {
  color: #000 !important;
  border-color: #F2F7F7 !important;
  background-color: #F2F7F7 !important;
  padding: 5px 15px 5px 30px;
}
.list-group-lvl2 {
  color: #000 !important;
  border-color: #ddd !important;
  background-color: #fff !important;
  padding: 5px 15px 5px 45px;
}
.list-group-item.active {
  color: #fff !important;
  border-color: #990033 !important;
  background-color: #990033 !important;
}
.list-group-item > span.pull-right {
  font-style: italic;
  display:none;
}
.list-group-item.active > span.pull-right {
  display:block;
}

/** Misc **/
.margin-top-10 {
  margin-top: 10px !important;
}
.margin-top-5 {
  margin-top: 5px !important;
}
.small-margin-top {
  margin-top: 5px !important;
}
.form-margin-top {
  margin-top: 7px !important;
}
.half-margin-top {
  margin-top: 10px !important;
}
.quarter-margin-top {
  margin-top: 15px !important;
}
.margin-top {
  margin-top: 20px !important;
}
.margin-top2 {
  margin-top: 30px !important;
}
.dbl-margin-top {
  margin-top: 40px !important;
}
.xl-margin-top {
  margin-top: 60px !important;
}
.bigger-margin-top {
  margin-top: 100px !important;
}
.plr-60{
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.xx150-margin-top {
  margin-top: 150px !important;
}
.small-margin-bottom {
  margin-bottom: 5px !important;
}
.half-margin-bottom {
  margin-bottom: 10px !important;
}
.margin-bottom {
  margin-bottom: 20px !important;
}
.dbl-margin-bottom {
  margin-bottom: 40px !important;
}
.margin-bottom-100 {
  margin-bottom: 100px !important;
}
.small-margin-left {
  margin-left: 5px !important;
}
.half-margin-left {
  margin-left: 10px !important;
}
.margin-left {
  margin-left: 20px !important;
}
.mb15{
    margin-bottom: 15px;
}
.small-margin-right {
  margin-right: 5px !important;
}
.half-margin-right {
  margin-right: 10px !important;
}
.margin-right {
  margin-right: 20px !important;
}
.margin-7px{
    margin:7px;
}

.small-padding-left {
  padding-left: 5px !important;
}
.padding-right-0 {
  padding-right: 0px !important;
}

.padding-left-0 {
  padding-left: 0px !important;
}

.max-width25 {
  max-width: 25px !important;
  width: 25px;
}

.max-width75pro {
    max-width: 75% !important;
    width: 75%;
}

.survey-question-container img.img-responsive {
  margin: 0 auto;
}
.well-no-border img.img-responsive {
  margin: 0 auto;
}
.cursor-link,
.minicolors-swatch-color {
  cursor: pointer;
}

.cursor-move {
  cursor: move;
}
.switchChartValues.btn-default{
 cursor: default !Important;
}
.hidden-text {
  display: none;
}
.box-center,
.pull-center {
  margin: 0 auto;
}
.videoIframeInfo {
  position: relative;
  top: 30%;
}
.show-responsive {
  display: none;
}

/** Disable Responsive **/
.container {
  max-width: none !important;
  width: auto !important;
}
.container .navbar-header,
.container .navbar-collapse {
  margin-right: 0;
  margin-left: 0;
}
.navbar-header {
  float: left;
}
.navbar-collapse {
  border: none !important;
  /* display: block !important; */
  height: auto !important;
  padding-bottom: 0;
  overflow: visible !important;
  width: 970px;
}

.navbar-toggle{
	color: var(--ef-color-signal-black-100);

	& .bi {
		color: var(--ef-color-signal-black-100);
	}
}

@media (max-width: 992px) {
    .navbar-toggle{
        display: block;
    }
    .navbar-nav {
        max-width: 300px;
    }
    .navbar-nav>li {
        display: block;
    }
    .nav-full{display: none;}
    .sidebar-container,
    .sidebar-container--show{
        z-index: 2000;
    }
    .sidebar-container{
        transform: translateX(-200%);
        position: absolute;
        top: 0;
        transition: 0.2s ease-out ;
    }
    .sidebar-container--show{
        transform: translateX(0);
        transition: 0.2s cubic-bezier(.19,1,.22,1);
    }
    .rd-sidebar{
        height:100vh !important;
    }
}

@media (min-width: 992px) {
  .navbar-collapse {
    width: 100%;
  }
}

.sub2nav a {
  text-align: left;
  font-size: 16px;
  color: #000000;
  display: block;
}

.sub2nav a:hover {
  text-decoration: underline;
  color: #990033;
}


/** Offset **/
.col-lg-offset-0 {
  margin-left: 0;
}
.col-lg-offset-1 {
  margin-left: 8.333333333333332%;
}
.col-lg-offset-2 {
  margin-left: 16.666666666666664%;
}
.col-lg-offset-3 {
  margin-left: 25%;
}
.col-lg-offset-4 {
  margin-left: 33.33333333333333%;
}
.col-lg-offset-5 {
  margin-left: 41.66666666666667%;
}
.col-lg-offset-6 {
  margin-left: 50%;
}
.col-lg-offset-7 {
  margin-left: 58.333333333333336%;
}
.col-lg-offset-8 {
  margin-left: 66.66666666666666%;
}
.col-lg-offset-9 {
  margin-left: 75%;
}
.col-lg-offset-10 {
  margin-left: 83.33333333333334%;
}
.col-lg-offset-11 {
  margin-left: 91.66666666666666%;
}
/* EF Custom Font */
@charset "UTF-8";
@font-face {
  font-family: "ef-font-icons";
  src:url("../fonts/ef-font-icons.eot");
  src:url("../fonts/ef-font-icons.eot?#iefix") format("embedded-opentype"),
    url("../fonts/ef-font-icons.woff") format("woff"),
    url("../fonts/ef-font-icons.ttf") format("truetype"),
    url("../fonts/ef-font-icons.svg#ef-font-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="ico-"]:before,
[class*=" ico-"]:before {
  font-family: "ef-font-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ico-circle:before {
  content: "b";
}
.ico-circle-e:before {
  content: "a";
}
.ico-crown:before {
  content: "n";
}
.ico-crown-e:before {
  content: "m";
}
.ico-diamond:before {
  content: "p";
}
.ico-diamond-e:before {
  content: "o";
}
.ico-education:before {
  content: "r";
}
.ico-education-e:before {
  content: "q";
}
.ico-heart:before {
  content: "d";
}
.ico-heart-e:before {
  content: "c";
}
.ico-smiley:before {
  content: "l";
}
.ico-user-e:before {
  content: "g";
}
.ico-user:before {
  content: "h";
}
.ico-top-e:before {
  content: "s";
}
.ico-top:before {
  content: "t";
}
.ico-star-e:before {
  content: "i";
}
.ico-star:before {
  content: "j";
}
.ico-smiley-e:before {
  content: "k";
}
.ico-like:before {
  content: "e";
}
.ico-like-e:before {
  content: "f";
}


/* MN - Hover Effekt */
.table-question tbody tr:hover td, .table-survey td.text-center:hover {
   cursor:pointer;
   --bs-table-bg-type: var(--ef-color-signal-black-16) !important;
}
.text-center.p-0:hover, table.no-margin td.text-center:hover{
   cursor:default;
   background-image:none;
}
td.table-survey-dark:hover, .table-survey > tbody > tr:nth-child(2n+1) > td.table-survey-dark:hover{
  cursor:pointer;
  background-image:url('../img/misc/pixel6pro.png');
}


/* MN - Validierung Error */
.validation-error{
    border-color:#ff0000 !important;
    border:1px solid #ff0000 !important;
}
.validation-icon{
    display:none;
    float:left;
    position:relative;
    width:17px;
    height:17px;
    margin-top:-21.5px;
}
.validation-tooltip{
    display:none;
    position:absolute;
    padding:5px;
    background-color:#2a2a2a;
    border:1px solid #2a2a2a;
    color:#ffffff;
    font-size:11px;
    text-align:center;
    border-radius:5px;
}
.validation-error-text{
    color:#ff0000;
}

table.table-validation input{
    min-width:80px;
}
.validation_auswahl{
    min-width:150px;
}


/* MN - ICON ist zwar 18x18 groß, es "verschwimmt" aber. Darum 17px */
img[alt="Hilfe"], img[alt="Info"]{
    width:17px;
    height:17px;
}


/* MN - Teilnehmerliste Upload */
.fileUploadSource span.file-input-name{
    display:none;
}
.datetimepicker{
    z-index:1200 !important;
}


/* MN - Howto bei Layer Quellcode */
div.howto{
    margin-bottom:20px;
}
b#howto1{
    cursor:pointer;
}
div.howto p{
    margin-top:8px;
}


/* MN - Schaltfläche deaktivieren */
.noTouch{
    cursor:default;
    opacity:0.4;
}


/* MN - neue Filter-Ansicht */
#filterMenu {
	& ul {
		padding-left:0px !important;

		@media (min-width: 768px) {
			border-right:1px solid #aaaaaa;
		}

		& li {
			&.list-group-item {
				background-color: transparent !important;
                display: flex;
                padding: 10px;
                gap: 8px;
                align-items: center;
                justify-content: space-between;

				&.aktiv,
				&:hover {
					cursor: pointer;
					background: var(--ef-color-signal-black-4) !important;
				}
			}			
		}
	}
}

#filterMenu .badge{
    background-color:#777777 !important;
}

#filterAktiv span.filterHinweis{
    max-width:165px;
    margin-top:2px !important;
    font-size:11px;
    color:#999999;
    font-style:italic;
}
.filterAnsicht1 .datumTitle{
    width:110px;
}
.filterAnsicht1 input[name^=datum_]{
    margin-top:2px;
    margin-right:8px;
}
.filterAnsicht1 .aktiv,
.filterAnsicht2 .aktiv,
.filterAnsicht3noChange .aktiv,
.filterAnsicht3 .aktiv,
.filterAnsicht8 .aktiv,
.filterAnsicht4 .aktiv{
    background:#0299a2 !important;
    color:#ffffff !important;
}
.filterAnsicht1 strong{
    cursor:pointer;
}
.filterAnsicht1 .aktiv .filterHinweis{
    color:#ffffff !important;
}
.filterAnsicht5 data{
   display:none;
}

#questionFilterContainer .questionFilter,
#customParticipantFilterContainer .customParticipantBlock,
#customVarFilterContainer .customVarBlock{
    width:100%;
}


/* MN - Filter Vergleich Ansicht */
div.vergleich{
    width:90%;
    border-right:1px solid #999999;
    margin-left:5%;
    margin-right:5%;
}
div.vergleich no-border{
    border-right:none;
}
div.vergleich-cell,
div.vergleich-cell-end{
    float:right;
    min-width:33%;
    margin-left:3px;
}
div.vergleich-cell-end{
    min-width:25%;
    text-align:right;
}
div.vergleich-cell-start{
    float:left;
    min-width:25%;
}
div.vergleich-cell-center{
    float:left;
    width:100%;
}
span.vergleich-wert{
    font-size:10px;
    padding:2px 3px;
    background-color:#000000;
    color:#ffffff;
}

span.vergleich-plus,
span.vergleich-gleich,
span.vergleich-minus{
    background-image:url('../img/icons/compare-arrows.png');
    background-repeat:no-repeat;
    background-size:11px auto;
    padding-left:13px;
}
span.vergleich-plus{
    background-color:#0299a2;
    background-position:1px 0px;
}
span.vergleich-gleich{
    background-color:#CBCBCB;
    background-position:2px -34px;
}
span.vergleich-minus{
    background-color:#990033;
    background-position:1px -16px;
}

table.vergleich > tbody > tr > th{
    text-align:center;
    border-top:none !Important;
}
table.vergleich > tbody > tr > th.vergleich-title{
    text-align:left;
    font-weight:300;
}
table.vergleich > tbody > tr > td,
table.vergleich > tbody > tr > th{
    border-right:1px solid #dddddd;
}
table.vergleich > tbody > tr > td:first-child,
table.vergleich > tbody > tr > td:last-child,
table.vergleich > tbody > tr > th:first-child,
table.vergleich > tbody > tr > th:last-child{
    border-right:none;
}

table.vergleich > tbody > tr > td.no-border{
    border-left:none !Important;
}

span.vergleich-textanswer{
    float:right;
    margin:1px;
    padding:0px 3px;
    background-color:#b2b2b2;
    border-radius:4px;
    font-size:11px;
    color:#ffffff;
}
span.na_answers{
    float:right;
    font-style:italic;
}

table.table-compare-art{
    margin-top:10px;
}
table.table-compare-art > tbody > tr > td{
    padding-right:10px;
    padding-top:5px;
}

div.compareContainer:after{
    display:table-cell;
    content:'';
    clear:both;
}
div.compare-box{
    background-color: var(--ef-color-signal-black-4);

	& .compare-disabled{
		opacity:0.45;
	}

	& .compare-switch{
		border-bottom: 1px solid var(--ef-color-signal-black-16);
		font-size: 12px;
	}
}

tr.compare-header td{
    border-top:1px solid #000000 !Important;
    font-weight:bold;
}
td.compare-text-indent{
    text-indent:10px;
}
div.compare-opacity{
    opacity:0.35;
}

/* Tabellen Zeilengrößen - vertikale Vergleich Ansicht */
tr.compare-header td.vertikal1{ width:25%; }
tr.compare-header td.vertikal2{ width:10%; }
tr.compare-header td.vertikal3{ width: 5%; }
tr.compare-header td.vertikal4{ width: 9%; }
tr.compare-header td.vertikal5{ width:51%; }
tr.compare-header td.vertikal_additional1{ width:15%; }
tr.compare-header td.vertikal_additional2{ width:59%; }


div#showHideParticipantBox{
    cursor:pointer;
}
div#ParticipantBox{
    margin-top:2px;
    padding:12px;
    background-color:#f3f3f3;
}

div#participant-box-mailserver-child{
    margin-top:20px;
}
.glyph-green span.glyphicon,
div#mailinvite span.glyphicon-ok-circle{
    margin-left:5px;
    color:#0299a2;
}

.input-glyph {
  position: relative;
  top: 26px;
  right: 8px;
}

@media screen and (max-width: 1199px){
    div#participant-box-mailserver{
        width:320px;
        padding:10px;
    }
    div#participant-box-mailserver div.responsive{
        margin-top:25px;
    }

    div.mailinvite-send-left div.left-side{
        max-width:460px;
    }
    div.mailinvite-send-right{
        width:45%;
    }
    div#mailinvite-section select[name=todoSendOption]{
        width:220px;
    }

    input.responsive550{
        width:450px;
    }
    .mediaupload-stats div.mediaupload-entry .mediaupload-filedata{
        width:225px;
    }
    .hideIfMobile{
        display:none;
    }
    .formmedia {
        margin-top: 10px;
    }
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

ul.clearfix-margin li:after{
    display:block;
    content:'';
    clear:both;
    margin-bottom:10px;
}

table.sendstatus span.glyphicon-info-sign,
table.sendstatus span.glyphicon-ok,
table.sendstatus span.glyphicon-remove,
table.sendstatus span.glyphicon-time{
    font-size:16px !Important;
}
table.sendstatus span.glyphicon-ok{
    color:#0299a2 !Important;
}
table.sendstatus span.glyphicon-time{
    color:#bbbbbb !Important;
}


table.table-clickable td[aid],
table.table-clickable div[aid]{
    color:#990033 !Important;
}
table.table-clickable td[aid]:hover,
table.table-clickable div[aid]:hover{
    cursor:pointer;
    text-decoration:underline !Important;
}

table.table-clickable tr.highlight-filter td,
table.table-clickable td.highlight-filter,
table.table-clickable td.highlight-filter div{
    background-color:#daeaea !Important;
    /*color:#ffffff !Important;*/
}
table.table-clickable tr.highlight-filter.light td,
table.table-clickable td.highlight-filter.light,
table.table-clickable td.highlight-filter.light div{
    background-color:#daeaea !Important;
}
table.table-clickable td.highlight-minus em.text-muted,
table.table-clickable td.highlight-filter em.text-muted,
table.table-clickable td.highlight-filter em.text-muted div{
    color:#ffffff !Important;
}

table.table-clickable tr.highlight-minus td,
table.table-clickable td.highlight-minus,
table.table-clickable td.highlight-minus div{
    background-color:#e8d0d5 !Important;
    /*color:#ffffff !Important;*/
}

div.save-changes{
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    max-height:47px;
    background-color:#ffffff;
}
div.save-changes-position{
    width: auto !important;
}

div.save-changes-placeholder{
    display:none;
    height:47px;
}
div.loading-background{
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-color:rgba(255,255,255,0.6);
    z-index:9998;
}
div.loading-icon{
    display:none;
    position:fixed;
    top:30px;
    left:30px;
    padding:12px;
    background-color:#999;
    color:#fff;
    font-size:19px;
    z-index:9999;
}
.filter-choose{
    display:none;
    position:absolute;
	top: 50%;

	&.no-compare-view {
		right: 30px;
		transform: translate(50%, -50%);
	}

	&.compare-view {
		left: 17px;
		transform: translate(-50%, -50%);
	}

	& > div {
		width: 100px;
	}

	& .filter-plus,
	& .filter-minus {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 23px;
		border-radius: 50%;
		opacity: 0.7;

		&:hover {
			cursor: pointer;
			opacity: 1;
		}
	}

	& .filter-plus {
		color: var(--ef-color-indiablue);
	}

	& .filter-minus{
    	color: var(--ef-color-raspberry-red);
	}

	& .filter-block{
		cursor: pointer;
		display: inline-block;
		margin-top: -15px;
		margin-right: -15px;
		padding: 3px 5px 4px;
		border-radius: 2px;
		background-color: #363636;
		color: #ffffff;
		font-size: 11px;
		text-align: center;
	}
}

span.caret.white{
    border-top:4px solid #ffffff !Important;
}

div.small-top{
    padding-top:10px !Important;
}
div.pull-down{
    margin-top:10px;
}

a.no-underline{
    text-decoration:none !Important;
}

.filter-menu-bar {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));

	@media (min-width: 768px) {
		grid-template-columns: repeat(6, minmax(16%, 1fr));
	}

	& .dropdown-menu {
		min-width: 250px;
		max-width: 400px;

		& .dropdown-item {
			padding-inline: 20px 10px;
		}
	}

	& .filter-box {
		&.btn-white {
			& .remove-icon,
			& .seperator {
				display: none;
			}
		}

		&.btn-green {

			display: grid !important;
			grid-template-columns: max-content 1fr max-content max-content max-content max-content;
		}

		& .seperator {
			margin: 6px 0;
		}
	}
}

div.filter-box.inactive{
    opacity:0.5;
}
div.filter-box.not-active{
    opacity:0.5;
}
div.filter-box.not-active.inactive{
    opacity:0.25;
}
div.filter-box a{
    color:#ffffff !Important;
}
div.filter-box > .filtertitle {
    display: inline-block;
    white-space: nowrap;
	overflow: hidden;
    text-overflow: ellipsis;
}
div.filter-dropdown{
    position:absolute;
    display:inline-block;
    margin-top:-4px;
    background-color:#0299a2;
    border-radius:3px;
    color:#ffffff;
    z-index:99;
}
div.filter-dropdown hr{
    margin:0px !Important;
}
div.filter-dropdown div.filter-row{
    min-width:171px;
    padding:5px 10px;
}
div.filter-dropdown div.filter-row a{
    color:#ffffff !Important;
    text-decoration:none !Important;
}
div.filter-dropdown div.filter-row:hover{
    background-color:#469696;
    border-radius:3px;
}
span.filter-settings{
    cursor:pointer;
    margin-top:3px;
    color:#999999;
    font-size:17px;
}
div.filter-box span.icon-down{
    border-top:6px solid #fff;
    border-right:6px solid transparent;
    border-bottom:0 dotted;
    border-left:6px solid transparent;
}
div.filter-dropdown span.glyphicon-pencil,
div.filter-box span.glyphicon-pencil{
    margin-top:2px;
    font-size:10px;
}
div.filter-box.newOne{
    opacity:0.5;
}
div.filter-box.newOne:hover{
    opacity:1;
}

div.filter-box.color-green,
div.filter-dropdown.color-green{
    background-color:#0299a2;
}
div.filter-box.color-red,
div.filter-dropdown.color-red{
    background-color:#990033;
    border-color:#990033;
}
div.filter-box.color-white,
div.filter-dropdown.color-white{
    background-color: var(--ef-color-signal-black-8);
    border:1px solid var(--ef-color-signal-black-8);
    color: var(--ef-color-greyblue);
}
div.filter-dropdown.color-white div.filter-row a{
    color:#000000 !Important;
}
div.filter-box.color-white span.icon-down{
    border-top:6px solid #000;
}
div.filter-box.color-white .glyphicon-remove,
div.filter-box.color-white span.seperator{
    display: none;
}

span.filter-plus{
    font-size:13px !important;
    margin-top:-1px;
}

.fileUploadSourceNew{
    word-wrap:break-word;
    word-break:break-all;
}

tr.spacer{
    height:40px;
}
tr.spacer td{
    vertical-align:top !Important;
}

div.center-block{
    width:120px;
    margin:auto;
    font-size:17px;
}
div.center-block:after{
    display:block;
    content:'';
    clear:both;
}

span.green-point{
    display:inline-block;
    width:8px;
    height:8px;
    background-color: var(--ef-color-indiablue);
    border-radius:90px;
}

.account-upgrade-box {
    padding: 2px 32px;
    background-color: white;
    border-radius: 3px;
    box-shadow: 0px 2px 5px lightgrey;
}

.account-upgrade-line {
    background-color: lightgrey;
    height: 4px;
}

.dotted-green{
  border: 2px dashed #0299a2; 
  color: #0299a2;
}

.upgrade-icon-thumbnail{
  background-color: white ; 
  border-radius: 50%; 
  width:90px; 
  height:90px; 
  margin:auto; 
  margin-bottom: 30px; 
  box-shadow: 0px 2px 5px lightgrey;
}

.btn-grey{
    cursor:unset !Important;
    background-color:#cccccc;
}

.nav-tabs>li>a:hover {
  border-color: transparent;
}


/* MN - Fragetyp 11 - Dateiupload */
.mediaupload-container{
    cursor:pointer;
	border: 1px solid #FFF;
	overflow: hidden;
	border-radius: 3px;
	max-width: 354px;
	display: grid;
	grid-template-columns: 1fr 40px; 

	/*&:hover,
	&:focus-within {
		outline: 2px solid var(--ef-color-indiablue);
	}*/

	& .mediaupload-file-section {
		flex-grow: 1;
		padding: 0 10px;
    	background-color: rgba(0,0,0,0.1);
		display: flex;
		justify-content: center;
		min-height: 40px;

		&:hover {
			background: rgba(0, 0, 0, 0.25);
		}

		& .mediaupload-empty,
		& .mediaupload-name {
			color: #656565;
		}
	}

	& .mediaupload-name {
		padding: 10px 0;
	}
}
.mediaupload_hover{
    background-color:#ffffff !Important;
}
.mediaupload-info span.loader{
    display: inline-block;
    min-width: 0%;
    height: 2px;
    background-color: #0299a2;
}
.mediaupload-status{
    display:none;
}
.mediaupload span.error{
    display:none;
    color:#990033;
    font-weight:bold;
}

.mediaupload-stats:after,
.mediaupload-stats div.mediaupload-entry .well-grey:after{
    display:block;
    content:'';
    clear:both;
}

.mediaupload-stats div.mediaupload-entry{
    float:left;
    width:33.33%;
    margin-top:16px;
}
.mediaupload-stats div.mediaupload-entry .well-grey{
    padding:6px;
}
.mediaupload-stats div.mediaupload-entry .well-grey.position-0{
    margin-right:10px;
}
.mediaupload-stats div.mediaupload-entry .well-grey.position-1{
    margin-left:5px;
    margin-right:5px;
}
.mediaupload-stats div.mediaupload-entry .well-grey.position-2{
    margin-left:10px;
}
.mediaupload-stats div.mediaupload-entry .mediaupload-preview{
    float:left;
    width:60px;
    height:50px;
    max-height:50px;
}
.mediaupload-stats div.mediaupload-entry .mediaupload-preview.bgimage{
    padding-top:25px;
    background-image:url('../img/icons/icon-file-empty.png');
    background-repeat:no-repeat;
    background-position:center center;
    color:#ffffff !Important;
    text-align:center;
    font-size:11px;
}
.mediaupload-stats div.mediaupload-entry .mediaupload-preview img{
    max-width:60px;
    max-height:100%;
}
.mediaupload-stats div.mediaupload-entry .mediaupload-filedata{
    float:right;
    width:290px;
}
.mediaupload-download{
    padding:3px 10px;
}

.header-subtext{
  font-weight: 500;
  color: black;
  margin-top:10px !important;
}

.btn-alpha{
    opacity:0.5;
}
.full-width{
    width:100% !Important;
}

/* Layout Design */
.layout-design-examplebox{
    cursor: pointer;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}
.layout-design-examplebox .example-element{
    width: 100%;
	height: 5px;
}
.layout-design-examplebox .example-button{
    width: 74%;
    height: 14px;
    border-radius: 2px;
}

.layout-design-upload{
    width: 135px;
    max-width:135px;
    min-height:90px;
    background-image:url('/img/icons/icon-plus.png');
    background-repeat:no-repeat;
    background-position:center center;
    border:3px solid #ececec;
    border-radius:3px;
    background-color: #f2f2f2;
	position: relative;
}
.layout-design-upload:after{
    display:block;
    content:'';
    clear:both;
}
.layout-design-upload.active{
    cursor:pointer;
}
.layout-design-upload.mediaupload_hover{
    background-image:none;
    background-color:#efefef !Important;
}
.layout-design-upload .upload-settings{
	position: absolute;
    top: 0px;
    right: 0;
    bottom: 0;
    display: flex;
    min-height: 84px;
    padding: 1px 4px;
    background-color:rgba(255,255,255,0.9);
	justify-content: space-between;
    flex-direction: column;
}

.layout-design-upload {
	& .mediaupload-name {
		position: absolute;
		inset: 4px;
		display: flex;
		align-items: center;
	}
}
#js-slider-layout.ui-slider-horizontal{
    max-width:250px !Important;
}

.switchFontdesign{
    background-color:#ececec !Important;
}
.switchFontdesign .ranking-btn-right{
    display:none;
}
.switchFontdesign.ranking-btn-on{
    background-color:#000000 !Important;
}
.switchFontdesign.ranking-btn-on .ranking-btn-left{
    display:none !Important;
}
.switchFontdesign.ranking-btn-on .ranking-btn-right{
    display:inline-block !Important;
}

.btn-redused-sm{
    background-color:#ffffff;
    border-color:#ffffff;
    color:#cccccc;
}
.btn-redused-sm:hover,
.btn-redused-sm:active,
.btn-redused-sm:focus{
    background-color:#f5f5f5;
    border-color:#f5f5f5;
    color:#2a2a2a;
    shadow:none !Important;
    box-shadow:none !Important;
}

.align-middle{
  margin: 0 auto;
  width: 1px;
}

.question-settings-container .line-hover{
    padding-top:4px;
    padding-bottom:3px;
}
.question-settings-container .line-hover:hover{
    background-color:#F2F7F7;
}

.btn-alpha{
    opacity:0.5;
}

tr.warning td,
tr.warning td:hover{
    background-color:#fcf8e3 !Important;
    border-color:#FEEAC4 !Important;
}

div.customvalue-input {
    display: none;
    position: relative;
    min-width: 160px;
}
div.customvalue-input input {
    height: 20px;
    padding: 4px;
    padding-right: 20px;
}
div.customvalue-input .glyphicon {
    position: absolute;
    right: 4px;
    z-index: 1;
}

.nowrap{
    white-space: nowrap;
}

.question-picture {
	display: flex;
	gap: 8px;
	position: relative;

	& .question-picture-display-div {
		display: grid;
		gap: 5px;
    	grid-template-rows: 1fr max-content;
		padding: 12px;
		background: rgba(0, 0, 0, 0.1);
		border-radius: 4px;

		&:has(input[type="checkbox"]:checked) {
			color: white;
		}

		&:hover {
			background: rgba(0, 0, 0, 0.25);
		}

		& .question-picture-canvas{
			display: flex;
			align-items: center;
			justify-content: center;
			/*min-height: 250px;*/
			/*max-height: 230px;*/

			& .question-picture-image {
				max-height: 100%;
				max-width: 100%;
			}
		}

		& .question-picture-selection-div {
			display: flex;
			align-items: start;
			gap: 16px;	

			& label {
				align-items: start;

				& .check-mark {
					margin-top: 3px;
				}
			}
		}
	}	
}

.question-picture-main {
    visibility: hidden;
	display: none;
}

.height100 {
    height: 100%;
}

.kv-file-content, .file-input, .file-preview, .file-drop-zone, .file-preview-frame, .file-preview-thumbnails {
	display: flex !important;
	align-items: center;
	position: absolute;
	inset: 0px;
}

.file-preview-thumbnails {
	display: grid;
    align-items: center;
}

.file-drop-zone:hover {
  cursor: pointer;
}

.kv-file-content {
  min-width: 150px;
  min-height: 100px;
  vertical-align: middle;
  text-align: center;
  display: table-cell;
}

.file-preview-image {
  margin: auto;
  padding: 5px;
  max-height: 100%;
  max-width: 100%;
}

.question-picture-upload {
  position: relative;
  width: 100%;
  background-image: url('/img/icons/icon-plus.png');
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  height: 100%;
}

#pictureSection,
.question-picture {
	&.grid-cols-1 {
		& .question-picture-canvas,
		& .question-picture-upload {
			min-height: 340px;
			max-height: 733px;
		}
	}

	&.grid-cols-2 {
		& .question-picture-canvas,
		& .question-picture-upload {
			min-height: 300px;
			max-height: 355px;
		}
	}

	&.grid-cols-3 {
		& .question-picture-canvas,
		& .question-picture-upload {
			min-height: 227px;
			max-height: 228px;
		}
	}

	&.grid-cols-4 {
		& .question-picture-canvas,
		& .question-picture-upload {
			min-height: 164px;
			max-height: 165px;
		}
	}

	&.grid-cols-5 {
		& .question-picture-canvas,
		& .question-picture-upload {
			min-height: 126px;
			max-height: 127px;
		}
	}

	&.grid-cols-6 {
		& .question-picture-canvas,
		& .question-picture-upload {
			min-height: 101px;
			max-height: 102px;
		}
	}
}

.question-picture-upload-container {
	display: grid;
	gap: 5px;
	grid-template-rows: 1fr max-content;
	padding: 8px;
	border-radius: 4px;
	position: relative;

	& .question-picture-deletion-div {
		display: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}

	& .question-picture-upload {
		&:has(.kv-file-content) {
			&:hover {
				& .question-picture-deletion-div {
					display: block;
				}
			}
		}
	}
	
	& .deletePictureDiv {
	    position: absolute;
		top: 12px;
		right: 12px;
	}
}

.question-picture-upload-container-selected {
  min-width: 100px;
  outline: 3px solid var(--ef-color-raspberry-red);
  border-radius: 3px;
}

.question-picture-container {
  min-width: 100px;
}

.question-picture-upload-textarea-div {
  width: 84%;
  min-width: 100px;
}

.question-picture-upload-textarea {
  max-height:25px;
  min-width: 65px;
  text-align: center
}

.question-picture-textarea {
  text-align: center;
}

.question-picture-delete-icon {
  z-index: 100;
  font-size: 30px;
  color: #000;
}

.question-picture-description {
  min-width: 100px;
}

.question-picture-display-textarea {
    min-width: 100px;
    max-height: 20px;
    text-align: center;
    overflow: auto;
}

.question-picture-display-div {
    min-width: 130px;
}

em.small {
  font-size: 11px;
}

.bg-turquoise {
  background-color:#02a2a2; /* #087272 */
}

.bg-beige {
    background-color: #b4b387;
}

.bg-red {
  background-color:#990033;
}

ul.participant-group,
ul.participant360-settings{
    display:none;
    position:absolute;
    max-height:175px;
    overflow-y:scroll;
    margin-top:5px;
    padding:13px;
    padding-top:0px;
    margin-left:-13px;
    background-color:#ececec;
    list-style:none;
    z-index:2;
    box-shadow: 0 6px 12px -6px rgba(0, 0, 0, 0.576) !important;
}
ul.participant360-settings{
    max-height:auto;
    overflow-y:auto;
}
ul.participant-group li,
ul.participant360-settings li{
    margin-top:5px;
    text-align:left;
}

.participantgroup-entry {
	&:not(.participantgroup360-entry){
		&:hover {
			background: var(--ef-color-signal-black-4);
		}
	}
}

.participant360entry{
    border-top: 1px solid var(--ef-color-signal-black-4);

	&:last-child {
   		border-bottom: none;
	}

	&:hover {
		background: var(--ef-color-signal-black-4);
	}
}

.search-highlight {
	&:hover{
		color: var(--ef-color-raspberry-red);
		cursor: pointer;
	}
}
table.listOfParticipants {
    width: 100% !important;
}
table.listOfParticipants tr td .search-highlight:hover{
    background-color:#02a2a2; /* #087272 */
}

/* DataTables */
table th:focus {
    outline: none !important;
}
table.dataTable {
    min-width: 100% !important;
}
.dataTables_scroll {
    overflow-x: hidden;
}
.dataTables_scrollHeadInner {
    width: 100% !important;
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
    content: "" !important;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: 7px center;
}
table.dataTable thead .sorting:after {
    background-image: url("/svg/sort.svg");
}
table.dataTable thead .sorting_asc:after {
    background-image: url("/svg/sort_asc.svg");
}
table.dataTable thead .sorting_desc:after {
    background-image: url("/svg/sort_desc.svg");
}
table.dataTable thead th.sorting,
table.dataTable thead th.sorting_asc,
table.dataTable thead th.sorting_desc {
    cursor: unset;
    text-indent: 10px;
}
table.dataTable thead th.sorting[draggable="true"],
table.dataTable thead th.sorting_asc[draggable="true"],
table.dataTable thead th.sorting_desc[draggable="true"] {
    cursor: move;
}
table.dataTable thead th.sorting:after,
table.dataTable thead th.sorting_asc:after,
table.dataTable thead th.sorting_desc:after {
    cursor: pointer;
    top: -1px;
    right: unset;
    left: -4px;
    width: 22px;
    height: 100%;
}
.no-text-indent {
    text-indent: 0px !important;
}

table.dataTable th.--dragDropallowed:before {
    position: absolute;
    display: block;
    content: "";
    margin-top: -8px;
    margin-left: -20px;
    width: 0px;
    height: 0px;
    border-top: 15px solid #02a2a2;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    z-index: 2;
}

table.dataTable .customvalue-normal,
table.dataTable .customvalue-input {
    padding-left: 10px;
}

table.dataTable .custom-value {
    margin-top: -22px;
    margin-left: -20px;
    padding: 5px;
    min-width: 40px;
}
table.dataTable th.referenztext {
    background-color: #d9c0c6;
}

/* DataTables FixedColumns */
table.dataTable.DTFC_Cloned tr {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.DTFC_leftHeadWrapper,
.DTFC_RightHeadWrapper {
    z-index: 2;
}
.DTFC_LeftBodyLiner,
.DTFC_RightBodyLiner {
    overflow-y: hidden !important;
}
.DTFC_RightBodyLiner {
    overflow-x: hidden;
}
.DTFC_LeftHeadWrapper th:last-child,
.DTFC_LeftBodyWrapper {
    border-right: 1px solid #cccccc !important;
}
.DTFC_RightHeadWrapper th,
.DTFC_RightBodyWrapper {
    border-left: 1px solid #cccccc !important;
}
.DTFC_LeftHeadWrapper table.dataTable.DTFC_Cloned,
.DTFC_RightHeadWrapper table.dataTable.DTFC_Cloned {
    margin-bottom: 0px !important;
}
.DTFC_LeftBodyWrapper table.dataTable.DTFC_Cloned,
.DTFC_RightBodyWrapper table.dataTable.DTFC_Cloned {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    background-color: #ffffff;
}
.DTFC_LeftBodyWrapper table.dataTable.DTFC_Cloned tr:first-child td,
.DTFC_RightBodyWrapper table.dataTable.DTFC_Cloned tr:first-child td {
    border-top: 1px solid #ffffff;
}
.DTFC_LeftBodyLiner table.dataTable.DTFC_Cloned tr td div {
    width: 90%;
    word-wrap: break-word;
}
table.dataTable tr td,
table.dataTable tr td {
    line-height: 1.32857 !important;
}
.DTFC_ScrollWrapper .dataTables_scrollBody td:last-child {
    display: none;
}
.DTFC_LeftBodyWrapper th.sorting:after,
.DTFC_LeftBodyWrapper th.sorting_asc:after,
.DTFC_LeftBodyWrapper th.sorting_desc:after {
    display: none !important;
}

.DTFC_LeftBodyLiner .dataTable td {
    cursor: pointer;
    padding-left: 22px;
    background-image: url("/svg/checkbox_inaktiv.svg");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: 3px center;
}
.DTFC_LeftBodyLiner .dataTable td.emptyCell {
    background-image: none !important;
}
.DTFC_LeftBodyLiner .dataTable tr.checked td {
    background-color: #ffffff !important;
    color: #000000 !important;
    background-image: url("/svg/checkbox_aktiv.svg");
}


tr.checked td{
    background-color:#02a2a2 !important; /* #087272 */
    color:#ffffff !important;
}

div.CB_Style{
    cursor:pointer;
    margin-top:-5px;
    padding:3px 6px;
    border:2px solid #ececec;
    border-radius:2px;
    color:#ffffff;
    text-align:center;
}
div.CB_Style.active{
    background-color:#02a2a2;
    border:2px solid #02a2a2;
    color:#ffffff;
}
div.CB_Style:hover{
    opacity:0.65;
}

.update-required-opacity {
    opacity: 0.5;
}
.update-highlight {
    color: #0299a2 !important;
    font-weight: bold;
}
.update-required-tag {
    padding: 3px 5px;
    font-size: 12px;
    border-radius: 90px;
    color: #ffffff !important;
    background-color: #990033 !important;
}

.minRightAnswers {
  padding: 0;
  min-width: 60px;
  max-width: 60px;
  max-height: 25px;
}

.text-center .quizScore {
  margin: 0 35px 5% 35px;
  max-width: 60px;
}

.disable-interface {
  opacity: 0.5;
  pointer-events: none;
}

.hover-slide-top {
  transition: transform 0.5s;
}

.hover-slide-top:hover {
  transform: translateY(-5px);
}

.red {
  color: #990033;
}

.green {
  color: #489911;
}

.white-setting-box {
    background-color: #ffffff;
    min-height: 55px;
    padding: 12px 5px;
	border-radius: 4px;
}

.sort-wrapper {
	& .sortChartValues {
		position: absolute;
		right: 0;
	}
}

.sortChartValues {
	display: flex;

	& .sorting {
		display: inline-flex;

		&.sorting-up,
		&.sorting-down,
		&.sorting-inactive {
			width: 20px;
			height: 15px;
			background-image: url("/svg/sorting-arrows.svg");
			background-size: 60px 15px;
			background-position: 0px 0px;
		}

		&.sorting-up {
			background-position: 20px 0px;
		}

		&.sorting-down {
			background-position: 40px 0px;
		}
	}
}

.preview-bgcolor {
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 3px;
}


div.no-hover .efLabels .efLabel {
    cursor: default !important;
}
.no-hover:hover {
    cursor: default !important;
}
.switchButton.no-hover {
    opacity: 0.65;
}

.efLabel {
	cursor: pointer;
	white-space: nowrap;
	font-size: 12px;
	height: 16px;
	border-radius: 8px;
    width: max-content;
	padding-inline: 8px;

	&:hover {
		 opacity: 0.9;
	}
}

.svg-group-icon {
	width: 24px;
	height: 24px;
	margin-bottom: 5px;
}

#showActivLabel .glyphicon {
    font-size: 11px;
}

div .cursor-link .caret {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #000000;
    margin-left: 10px !important;
    margin-top: -2px;
}


.state-red {
    border-left:5px solid #8c122e;
}
.state-green {
    border-left:5px solid #ffffff;
}

.glyph-flip {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

#memberDetailBox {
    padding: 0px;
    border: 1px solid #cccccc;
    border-radius: 8px;

	& .memberDetailBoxHeader {
		border-radius: 8px 8px 0px 0px;
	}

	& iframe {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0px;
		height: 100% !important;
		border-radius: 8px;
	}
}

#memberDetailTable {
	& .memberDetailItem {
		display: grid;
        grid-template-columns: max-content 130px 1fr max-content max-content;

		&.active,
		&:hover {
			background: var(--ef-color-signal-black-4);
		}
	}
}

iframe#memberSingleResults {
    width: 100%;
    height: 500px;
    border:0px;
    background-color: #ffffff;
}

.grey-box {
  border: 2px solid #dddddd;
  border-radius: 5px;
  padding: 20px;
}


.component_box {
    position: relative;
    padding: 10px;
    width: 100%;

	@media (max-width: 768px;) {
		max-width: 270px;
	}

    height: 130px;
    background-color: var(--ef-color-signal-black-8);
    border-radius: 8px;

	&:hover {
		background-color: var(--ef-color-signal-black-16);
	}

	& ._main {
		display: grid;
		grid-template-rows: 1fr max-content;
		grid-template-columns: 1fr;
		height: 100%;

		& ._title {
			display: flex;
			flex-direction: column;
			width: 100%;
			max-height: 80px;
			text-align: center;
			font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
			overflow: hidden;
			grid-column: 1 / -1;
			grid-row: 1 / -1;
			align-items: center;

			a {
				color: var(--ef-color-signal-black-100);
				text-decoration: none;

				&:hover {
					color: var(--ef-color-greenbrown);
				}
			}
		}

		& ._dots {
			justify-self: end;
			grid-column: 1 / -1;
			grid-row: 1 / -1;
			z-index: 1;
		}
	}
}

.component_box div._footer {
    display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 12px;
}
.component_box div._options {
    display: none;
}
.component_box div._options ul {
    padding: 0px;
    list-style-type: none;
}
.component_box div._options ul li {
    line-height: 32px;
    border-bottom: 1px solid #cccccc;
}
.component_box div._options ul li:last-child {
    border-bottom: none;
}
.component_box img._open {
    position: absolute;
    right: 8px;
}

[draggable="true"] {
    cursor: move;
}

.word-break {
    word-break: break-word;
}

ul > li:hover > .svg-icon,
ul > li:hover > a > .svg-icon {
    filter: invert(1);
}
.svg-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}
ul > li > .svg-icon,
ul > li > a > .svg-icon {
    opacity: 1;
    margin-right: 4px;
}

.svg-icon.-small {
    width: 13px;
    height: 13px;
}
.svg-icon.-adjust {
    margin-top: -3px;
    margin-left: -3px;
}
.svg-icon.-adjust-top {
    margin-top: -2px;
}
.svg-export-icon {
    width: 64px;
    height: 64px;
}
.svg-modal-back {
    margin-top: -6px;
    width: 26px;
    height: 26px;
}
.lightbox-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 10000 !important;
    padding: 80px;
    cursor: zoom-out;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto
}
.preview-box {
    position: relative;
    height: 600px;
    width: 800px;
	max-width: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,.15);
    border-radius: 10px;
    background-image: url('../img/tool/dummy_website.jpg');
    background-position: center;
    border: 1px solid #ececec;
    overflow: hidden;
    z-index: 1;
}
.settings-box {
    margin-top: 15px;
    margin-bottom: 15px;
    background-color: var(--ef-color-signal-black-4);
    border-radius: 0 4px 4px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.settings-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-column-gap: 0;
    grid-row-gap: 15px;
    padding: 30px 15px;
	align-items: center;
}
.settings-grid-footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
    padding: 30px 15px;
}
.wi-button-group {
    margin-bottom: 40px;
}
.wi-button-group .button {
    padding: 11.5px 15px;
    background-color: #ececec;
    color: #000;
    text-decoration: none;
}
.wi-button-group .button.active {
    background-color: #ccc;
    font-weight: bold;
}

@media (min-width: 768px) {
	.wi-button-group div:first-child .button {
		border-radius: 4px 0 0 4px;
	}
	.wi-button-group div:last-child .button {
		border-radius: 0 4px 4px 0;
	}
}

@media (max-width: 768px) {
	.wi-button-group .button {
		border-radius: 4px;
	}
}

.global-rules > table td:first-child {
    padding-left: 0;
}
.global-rules > table td {
    padding-left: 15px;
}

.box-participant {
    display: block;
    float: left;
    position: relative;
    height: 190px;
    width: 210px;
    box-shadow: 0 0 20px rgba(0,0,0,.15);
    border: 1px solid #ccc;
    border-radius: 5px;
}
.box-participant:hover,
.box-participant:focus {
    text-decoration: none;
}
.box-participant > h3.counter {
    position: absolute;
    margin: 0 0 15px 20px;
    bottom: 0;
    left: 0;
}
.box-participant > img.box-bg {
    position: absolute;
    bottom: 0;
    right: 0;
}

.grid-row-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
}
.col-gap-1 {
  column-gap: 16px;
}

/* width +4px based on li.overflow-x-hidden */
#switchAll li {
    display: inline-block;
    width: 114px;
    padding: 8px 10px 14px 10px;
    background-color: #F1F1F1;
}

#deleteParticipantAnswersAll .btn[disabled] {
    background-color: #f5f5f5;
}

.survey-container.freePackage > .survey-question-container {
    opacity: 0.5;
}

input.webint_prop[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

input.webint_prop[type=radio] + img {
    cursor: pointer;
}

img.presetButton1 {
    content: url('/img/wi/preset-1.png');
}

input.webint_prop[type=radio]:checked + img.presetButton1 {
    content: url('/img/wi/preset-1-o.png');
}

img.presetButton2 {
    content: url('/img/wi/preset-2.png');
}

input.webint_prop[type=radio]:checked + img.presetButton2 {
    content: url('/img/wi/preset-2-o.png');
}

img.presetButton3 {
    content: url('/img/wi/preset-3.png');
}

input.webint_prop[type=radio]:checked + img.presetButton3 {
    content: url('/img/wi/preset-3-o.png');
}

img.presetButton4 {
    content: url('/img/wi/preset-4.png');
}

input.webint_prop[type=radio]:checked + img.presetButton4 {
    content: url('/img/wi/preset-4-o.png');
}

img.presetButton5 {
    content: url('/img/wi/preset-5.png');
}

input.webint_prop[type=radio]:checked + img.presetButton5 {
    content: url('/img/wi/preset-5-o.png');
}

.separator-vert {
  height: 32px;
  border-left: 1px solid var(--ef-color-signal-black-8);
}

.exclamation-sign {
    float: left;
    width: 17px;
    margin-right: 5px;
}

#searchUsers{
    margin-top: 5px;
    margin-right: 10px;
}
#searchUsers .glyphicon-remove {
    position: absolute;
    margin-left: -21px;
    margin-top: 40px;
    z-index: 2;
}

.videobox {
    display: inline-flex;
    background-color: var(--ef-color-signal-black-8);
	border-radius: 4px;
	overflow: hidden;

	& .videobox__image {
		position:relative;
		width: 80px;
		height: 100%;
	}

	& .videobox__body {
		display: flex;
		flex-direction: column;
		padding: 6px 12px;
	}
}
.videobox p {
    margin: 0 0 0.4em 0;
}
.unsubscribed {
    color: #cccccc !important;
}



.nse-version-chooser-item input[type="radio"] {
  display: none;
}

.nse-version-chooser-item {
  display: flex;
  flex-direction: column;
  border-color: #CCCCCC;
  color: black;
}

.nse-version-chooser-box {
  cursor: pointer;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  color: black;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  height: 60px;
}

input:checked ~ .nse-version-chooser-box,
input[type="radio"]:checked > .nse-version-chooser-box {
  border-color: rgb(3, 153, 162);
  background-color: rgb(3, 153, 162, 0.2);
  color: black;
}

.layout-design-row {
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    margin: 0 auto;
}

.layout-design-version {
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    display: flex;
    gap: 10px;
    text-align: left;
}
.layout-design-save-button {
    text-align: center;
}
.layout-design-css-editor-button {
    text-align: right;
}

.switchNSEVersion{
    background-color:#ececec !Important;
}
.switchNSEVersion .ranking-btn-right{
    display:none;
}
.switchNSEVersion.ranking-btn-on{
    background-color:#000000 !Important;
}
.switchNSEVersion.ranking-btn-on .ranking-btn-left{
    display:none !Important;
}
.switchNSEVersion.ranking-btn-on .ranking-btn-right{
    display:inline-block !Important;
}

/* 100% Content Container fix */ 
.content {
    height: 100%
}

.row>* {
    padding: 0;
    margin: 0;
}
