main {
	overflow: visible!important;
}

.input-group.unstyled .input-group-addon {
	background: transparent;
	border: none;
	padding-left: 0;
}

hr.no-border {
	border: none!important;
}

hr.half {
	margin-top: 0!important;
}

.visible-mode-expert,
.visible-mode-guided {
	display: none!important;
}

.mode-expert .visible-mode-expert,
.mode-guided .visible-mode-guided {
	display: block!important;
}

/*** Upload ***/

.dropzone-wrap.topologyoptimization {
	height: 510px;
	padding: 7px;
    margin-bottom: 0 !important;
    background-size: cover;
    background-position: center center;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/upload_bg.jpg);
}

.dropzone-wrap.topologyoptimization p {
	color: #fff;
	font-size: 18px;
    line-height: 22px;
}

/*** Configurator ***/

.desired-geo {
	font-size: 15px;
	font-weight: 400;
	color: #000;
	padding: 25px 0 0;
}

.topology-configurator {
	position: relative;
	min-height: 500px;
	margin-top: 60px;
}

.topo-error-list li {
	padding: 2px 0;
	color: #e30713;
	font-size: small;
}

.topo-error-list li.success {
	color: #96be0d;
}

.configuration-errors {
	background: #e30713;
	padding: 5px 10px;
	margin: 0;
	text-align: center;
	margin-bottom: 10px;
}

.configuration-errors li {
	color: #fff;
	width: 100%;
}

.has-popup .topology-configurator-popups {
	position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.topo-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  padding: 20px;
  border: 2px solid #f0f0f0;
  background-color: #fff;
  box-shadow: 0 3px 3px rgba(0,0,0,0.3);
  transform: translate(-50%,-50%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.topo-popup.open {
  visibility: visible;
  opacity: 1;
  overflow: auto;
  transition: all 0.3s ease-in-out 0.3s;
}

.topo-popup h1 {
	margin-bottom: 40px;
}

.topology-configurator input[type=checkbox] {
	position: absolute;
	opacity: 0;
	visibility: 0;
}

.topology-configurator input[type=checkbox] + i {
    display: inline-block;
    width: 16px;
    height: 16px;
    min-height: 0;
    line-height: 1;
    border: 2px solid #96be0d;
    border-radius: 2px;
    padding: 0!important;
    float: left;
    margin-right: 10px;
    margin-bottom: 0;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    position: relative;
}

.topology-configurator input[type=checkbox] + i:after {
	content: '';
	display: inline-block;
	width: 100%;
	height:100%;
	background-image: url(../images/check-19.png);
	background-size: 120%;
	background-position: center center;
}

.topology-configurator input[type=checkbox]:checked + i {
	background: #96be0d;
}

.topology-configurator input[type=checkbox]:disabled + i {
	border-color: #ccc;
}

.topology-configurator input[type=checkbox]:disabled:checked + i {
	background-color: #ccc;
}

.topology-configurator .checkbox label,
.topology-configurator .checkbox-inline {
	padding: 0;
	line-height: 1.2em;
    font-size: 1em;
}

.topology-configurator hr {
	margin-top: 15px;
	margin-bottom: 15px;
}

.topology-configurator .info-icon {
	cursor: help;
	display: inline-block;
	width: 19px;
	height: 19px;
	background: #545454;
	border-radius: 10px;
	text-align: center;
	line-height: 19px;
	vertical-align: middle;
    margin: 0 15px;
}

.topology-configurator .info-icon:before {
	content: 'i';
	color: #fff;
	font-family: 'Script MT', serif;
	font-weight: bold;
	font-size: 18px;
    margin-left: -1px;
}

.topology-errorhint{
	content: 'i';
	color: #ff0000;
	font-weight: bold;
	font-size: 14px;
	margin-left: -1px;
}

/*** Popups ***/

.topology-configurator-content {
	transition: filter 0.3s ease-in-out 0.3s;
}

.topology-configurator.has-popup .topology-configurator-content {
	filter: blur(2px);
	transition: filter 0.3s ease-in-out;
}

.topo-upload-popup {
	max-width: 400px;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
}

.topo-upload-popup h3 {
	color: #fff;
	margin: 20px 0 0;
	padding: 10px;
	background-color: rgba(0,0,0,0.3);
}

.loading-animation {
	width: 200px;
	height: 200px;
	border-radius: 100px;
	background: #fff;
	margin: 0 auto;
	position: relative;
}

.loading-animation:before {
	content: '';
    animation: topoLoader 2s infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: -10px;
    margin-top: 10px;
}

@keyframes topoLoader {
	 0% {content: url(../images/dropzone/10.png);}
	10% {content: url(../images/dropzone/1.png);}
	20% {content: url(../images/dropzone/2.png);}
	30% {content: url(../images/dropzone/3.png);}
	40% {content: url(../images/dropzone/4.png);}
	50% {content: url(../images/dropzone/5.png);}
	60% {content: url(../images/dropzone/6.png);}
	70% {content: url(../images/dropzone/7.png);}
	80% {content: url(../images/dropzone/8.png);}
	90% {content: url(../images/dropzone/9.png);}
   100% {content: url(../images/dropzone/10.png);}
}

/*** Buttons ***/

a.btn-green, button.btn-green,
a.btn-green:hover, button.btn-green:hover,
a.btn-green:focus, button.btn-green:focus {
	color: #fff;
	outline: none;
	box-shadow: none;
	background: #96be0d;
}

a.btn-green.btn-border, button.btn-green.btn-border,
a.btn-green.btn-border:hover, button.btn-green.btn-border:hover,
a.btn-green.btn-border:focus, button.btn-green.btn-border:focus {
	color: #96be0d;
	border: 1px solid #96be0d;
	background: transparent;
}

a.btn-green.btn-btn-fill-hover:hover, button.btn-green.btn-fill-hover:hover,
a.btn-green.btn-btn-fill-hover:focus, button.btn-green.btn-fill-hover:focus {
	background: #96be0d;
	color: #fff;
}

a.btn-gray, button.btn-gray,
a.btn-gray:hover, button.btn-gray:hover,
a.btn-gray:focus, button.btn-gray:focus {
	color: #333;
	outline: none;
	box-shadow: none;
	background: #ececec;
}

a.btn-white, button.btn-white,
a.btn-white:hover, button.btn-white:hover,
a.btn-white:focus, button.btn-white:focus {
	color: #333;
	outline: none;
	box-shadow: none;
	background: #fff;
}

a.btn-white.btn-border, button.btn-white.btn-border,
a.btn-white.btn-border:hover, button.btn-white.btn-border:hover,
a.btn-white.btn-border:focus, button.btn-white.btn-border:focus {
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
}

a.btn-gray.btn-border, button.btn-gray.btn-border,
a.btn-gray.btn-border:hover, button.btn-gray.btn-border:hover,
a.btn-gray.btn-border:focus, button.btn-gray.btn-border:focus {
	border: 1px solid #333;
	background: transparent;
	box-shadow: none;
}

a.btn-blue.btn-border, button.btn-blue.btn-border,
a.btn-blue.btn-border:hover, button.btn-blue.btn-border:hover,
a.btn-blue.btn-border:focus, button.btn-blue.btn-border:focus {
	color: #0098a1;
	border: 1px solid #0098a1;
	background: transparent;
	box-shadow: none;
}

a.btn-xl, button.btn-xl {
    padding: 15px 30px;
    font-size: 14px;
}

a.btn-semibold, button.btn-semibold {
	font-weight: 600;
}

a.btn-bold, button.btn-bold {
	font-weight: bold;
}

a.btn-xl + .btn-xl, button.btn-xl + .btn-xl {
	margin-left: 10px;
}

a.btn-xl + .btn-xl.bttSaveProject {
	margin-left: 0;
}

.btnNextStep, .bttSaveProject {
	width: 100%;
}

.btnNextStep {
	margin-bottom: 10px !important;
}

a.btn-green.btn-border-hover:hover, button.btn-green.btn-border-hover:hover {
	background: transparent;
	border: 1px solid #96be0d;
	color: #96be0d;
}

a.btn-xl small, button.btn-xl small {
    line-height: 1;
}

/* Button Icons */
.btn > span.icon {
	display: inline-block;
	width: 23px;
	height: 23px;
	vertical-align: middle;
	position: relative;
	margin-top: -2px;
	margin-right: 5px;
}

.btn > span.icon:before,
.btn > span.icon:after {
	content: '';
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

*:not(li) > .btn > span.icon:before,
li:not(.active) > .btn > span.icon:before,
li.active > .btn > span.icon:after {
	opacity: 1;
}

*:not(li) > .btn:hover span.icon:after{
	opacity: 1;
}

.topology-configurator .bootstrap-select {
	z-index: 1;
}

.topology-configurator .bootstrap-select .btn.dropdown-toggle {
	border: none!important;
    background: #e8e8e8!important;
    border-radius: 10px!important;
    color: #282828!important;
    z-index: 1036!important;
    margin: 0!important;
    height: 34px;
    line-height: 34px;
    text-shadow: none;
}

.topology-configurator .btn img {
		vertical-align: middle;
		margin-top: -3px;
		margin-right: 3px;
}

.topology-configurator .dropdown-menu > li > a:hover,
.topology-configurator .dropdown-menu > li > a:focus {
	background: #04aaba;
	color: #fff;
}

.topology-configurator .btn-group .dropdown-toggle .filter-option {
	padding-right: 23px;
	padding-left: 12px;
}

.topology-configurator .bootstrap-select .dropdown-menu {
	background: #fff;
}

.topology-configurator .bootstrap-select .dropdown-menu.open {
	border: 1px solid #e8e8e8;
	padding-top: 17px;
	margin-top: -17px;
}

/*** Tab Navigation ***/
.topology-configurator ul.topo-tabs {
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 10px;
}

.topology-configurator ul.topo-tabs > li {
	padding: 0 5px;
}

.topology-configurator ul.topo-tabs a,
.topology-configurator ul.topo-tabs button {
	font-weight: 600;
}

.topo-tabs a.disabled {
	cursor: not-allowed!important;
}

.topo-tabs .status-icon {
	width: 19px;
 	height: 19px;
	border-radius: 19px;
	vertical-align: middle;
	margin-top: -1px;
	display: none;
}

.topo-tabs .status-check .status-icon {
	display: inline-block;
}

.topo-tabs .status-check .icon:before,
.topo-tabs .status-check .icon:after {
	content: none !important;
}

li.active a.btn-gray, li.active > button.btn-gray,
li.active a.btn-gray:hover, li.active > button.btn-gray:hover,
li.active a.btn-gray:focus, li.active > button.btn-gray:focus {
	color: #fff;
	outline: none;
	box-shadow: none;
	background: #96be0d;
}

.toggle-tab-configure span:before {
	content: '\f013' !important;
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;
	font-size: 18px;
	opacity: 0.5;
}

.toggle-tab-optimize span:before {
	content: '\f005' !important;
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;
	font-size: 18px;
	opacity: 0.5;
}

.toggle-tab-results span:before {
	content: '\f3a5' !important;
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;
	font-size: 18px;
	opacity: 0.5;
}

.toggle-tab-configure span:after {
	content: '\f013' !important;
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;
	font-size: 18px;
	opacity: 0.5;
	color: #fff;
}

.toggle-tab-optimize span:after {
	content: '\f005' !important;
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;
	font-size: 18px;
	opacity: 0.5;
	color: #fff;
}

.toggle-tab-results span:after {
	content: '\f3a5' !important;
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;
	font-size: 18px;
	opacity: 0.5;
	color: #fff;
}



/*** Popups ***/
.topo-mode-select-popup {
	max-width: 600px;
}

.topo-mode-select-popup .select-mode .fa-brain, .topo-mode-select-popup .select-mode .fa-compass {
	margin-right: 5px;
	font-size: 20px;
}

.topo-mode-select-popup .form-group {
	margin-bottom: 30px;
}

.btn.select-mode .icon:before{background-image: url(../images/cog-green.png);}
.btn.select-mode .icon:after{background-image: url(../images/cog-light.png);}


/*** Konfigurieren ***/
.topo-configure .row {
	margin-left: -5px;
	margin-right: -5px;
}

.topo-configure .row > div {
	padding: 0 5px;
}

.optimization-space-load-cases {
	margin-bottom: 10px;
	border: 1px solid #ececec;
}

.optimization-space-load-cases .btn-blue {
	margin: -1px;
	padding-left: 0;
	padding-right: 0;
}

.optimization-space-load-cases .btn-blue img {
	margin-top: -3px;
    margin-bottom: -3px;
}

.load-cases {
	display: table;
	height: 50px;
	margin: 0 -5px;
	padding-right: 10px;
}

.load-cases > .load-cases-label,
.load-cases > .load-cases-select {
	display: table-cell;
	vertical-align: middle;
	padding: 0 5px;
	white-space: nowrap;
}

.load-cases-label {
	width: 1%;
}

.load-cases-label .info-icon {
	margin: 0;
	margin-left: 5px;
}

.load-cases-select {
	margin-left: -3px;
	margin-right: -3px;
}

.optimization-space-load-cases .load-cases-select > div {
	padding: 0 3px;
}

.popover {
	width: 400px;
	max-width: 400px;
}

.popover-content {
	font-size: smaller;
}

.load-cases-select .popover {
	font-size: 0.75em;
	max-width: none;
}

.load-cases-select .popover-title {
	padding-top: 0;
	padding-bottom: 0;
}

.load-case, .load-case-btn {
	display: block;
	padding-bottom: 100%;
	position: relative;
	text-align: center;
}

.load-case-btn, .load-case-btn:focus {
	color: #333;
	font-weight: bold;
	padding-bottom: calc(100% - 2px);
}

.load-case-btn:hover {
	color: #fff;
	background: #96be0d;
}

.load-case {
	background: #f0f0f0;
	cursor: not-allowed;
}

.load-case, .load-case:hover, .load-case:focus {
	color: #fff;
}

.load-case.added {
	background: #96be0d;
	opacity: 0.5;
	cursor: pointer;
}

.load-case.added.active {
	opacity: 1;
	cursor: default;
}

.load-case.error {
	background: #e30713;
}

.load-case span, .load-case-btn span {
	position: absolute;
	line-height: 1;
	display: block;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
}

.load-case span {
	opacity: 0;
}

.load-case.added span {
	opacity: 1;
}

.load-case-btn {
	border: 1px solid #96be0d;
}

.load-case-details {
	padding: 10px;
	border: 1px solid #ececec;
	margin-bottom: 10px;
}

.load-case-details .control-label {
	margin-top: 5px;
}

.load-case-errors {
	padding-top: 6px;
    font-size: small;
}

.load-case-errors-popover li {
	white-space: nowrap;
	color: #e30713;
}

.max-tension .info-icon {
	top: 7px;
	position: absolute;
	margin: 0;
}

.part-settings {
	border: 1px solid #ececec;
}

.part-tabs ul {
	border-right: 1px solid #000;
	height: 100%;
}

.part-tabs li {
	border-right: 1px solid #000;
	margin-right: -1px;
	background: #fff;
}

.part-tabs li:not(:first-child) {
	border-top: 1px solid #ececec;
}

.part-tabs li.active {
	border-right: 1px solid #fff;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin-top: -1px;
    margin-left: -1px;
    margin-right: -1px;
    z-index: 1;
    position: relative;
}

.part-tabs li a {
	padding: 11px 10px;
	display: block;
	color: #333;
}

.part-tabs li.active a {
	font-weight: bold;
}

.part-tabs a input {
	border: none;
	box-shadow: none;
	width: 100%;
	padding: 5px;
}

.part-tabs a input:hover,
.part-tabs a input:focus {
	outline: 1px solid #cecece;
}

.part-tabs .input-group-addon {
	line-height: 0;
	padding-right: 5px;
}

.part-tabs .input-group-addon > div {
	position: relative;
}

.part-tabs a .input-group-addon {
	padding: 0;
}

.remove-all-components .fa-trash{
	color: #000;
	opacity: 0.5;
	margin-right: 5px;
}

.setting-icon {
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin-left: 20px;
	margin-right: 5px;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
	opacity: 0.5;
	transition: all 0.3s ease-in-out;
}

.partrow .setting-icon.setting-os {background-image: url(../images/optimization-space-icon.png);}
.partrow .setting-icon.setting-force {background-image: url(../images/force-icon.png);}
.partrow .setting-icon.setting-displacement {background-image: url(../images/displacement-icon.png);}
.partrow.active .setting-icon.setting-os {background-image: url(../images/optimization-space-icon-active.png);}
.partrow.active .setting-icon.setting-force {background-image: url(../images/force-icon-active.png);}
.partrow.active .setting-icon.setting-displacement {background-image: url(../images/displacement-icon-active.png);}

li:hover .setting-icon,
li.active .setting-icon {
	opacity: 1;
}

.remove-part {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -9px;
	visibility: visible;
	transition: all 0.3s ease-in-out;
	cursor:pointer;
	opacity: 0.5;
}

.remove-part:hover {
	opacity: 1;
}

.topo-button-delete.load-case-remove {
	position: absolute;
	left: 5px;
	top: 0;
	color: #000;
	opacity: 0.5;
}

.topo-button-delete.load-case-remove:hover {
	opacity: 1;
}

.topo-remove-part-popup {
    max-width: 400px;
    text-align: center;
}

.topo-nouser-popup {
    max-width: 500px;
    text-align: center;
}

.status-icon {
	width: 1em;
	height: 1em;
	display:inline-block;
	padding:0;
	border-radius: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.status-check .status-icon, .status-check.status-icon {
	background-image: url(../images/check-19.png);
	background-color: #96be0d;
}

.status-error .status-icon, .status-error.status-icon {
	background-image: url(../images/cross-19.png);
	background-color: #e30713;
}

.status-error input {
	color: #e30713;
}

.part-tabs li.control-li a {
	font-size: 9.5px;
	padding: 15px 10px;
	position: relative;
}

.control-li a:not(:first-child) {
	border-top: 1px solid #ececec;
}

.part-tab-content input.error,
.part-tab-content input.error + i {
	border-color: #e30713;
}

.control-li img {
	margin-right: 5px;
}

.btn-xl-equal {
	padding: 15px 0;
}

.part-tab-content .tab-pane {
	padding: 15px 25px 15px 15px;
	border: 1px solid #000;
    margin-right: -1px;
    margin-top: -1px;
    margin-left: -11px;
    margin-bottom: -1px;
}

.part-tab-content hr {
	margin-left: -15px;
	margin-right: -15px;
}

.before-canvas {
	margin-bottom: 5px;
}

.before-canvas .btn-xl {
	padding: 0 5px;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-right: 10px;
}

.before-canvas .btn-xl + .btn-xl {
	margin-left: 0;
}

.before-canvas .intro-video {
	border-left: 1px solid #cecece;
	padding-left: 15px;
}

.before-canvas .intro-video img {
	width: 14px;
	height: auto;
	margin-right: 5px;
}

.before-canvas .guide-continue {
	font-size: 12px;
	padding: 4px 8px;
	margin-left: -10px;
	margin-right: 5px;
}

.topo-material-group {
	margin: 9px 0;
}

.topo-material-group .row {
	margin-left: -5px;
	margin-right: -5px;
}

.topo-material-group .row > div {
	padding-left: 5px;
	padding-right: 5px;
}

.topo-material-group .material-label {
	margin-top: 6px;
	text-align: right;
}

.datasheet-wrap {
	line-height: 34px;
}

#optimization-space-toggle {
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	height: 50px;
}

.optimization-space-load-cases .os-toggle-wrap {
	width: 65px;
	transition: all 0.5s ease-in-out;
}

#optimization-space-toggle span {
	position: absolute;
	left: 50px;
	top: 50%;
	margin-top: -10px;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.optimization-space-active .os-toggle-wrap {
    width: 33.33333333%;
	transition: all 0.5s ease-in-out;
}

.optimization-space-active #optimization-space-toggle span {
	opacity: 1;
}

#optimization-space-toggle img {
	position: absolute;
	top: 50%;
	left: 15px;
	margin-top: -13px;
}

/*** Optimieren ***/

.topo-optimize {
	border: 1px solid #ececec;
	padding: 15px 20px;
}

.start-process[disabled], .start-process[disabled]:hover {
	background: #ececec;
	color: #333;
}

.start-process[disabled] span {
	display: none;
}

.topo-optim-section {
	position: relative;
}

.topo-optim-section .status-icon {
    position: absolute;
    left: -2em;
    top: 0.25em;
}

/*** Input Slider ***/
.rangeslider {
	height: 2px;
	background: #ececec;
	border: none;
}

.rangeslider--disabled {
	opacity: 1;
}

.rangeslider-fill {
	background: #96be0d;
	height: 100%;
}

.rangeslider-fill-rtl {
	background: #96be0d;
	height: 100%;
	float:right;
}

.rangeslider-handle {
    cursor: pointer;
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    background: #96be0d;
    border-radius: 50%;
    top: -3px;
		z-index: 1;
}

.rangeslider-handle-value {
    padding: 2px 6px;
    background: #fff;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #cecece;
    margin-top: 10px;
    font-size: 0.875em;
    font-weight: bold;
    border-radius: 2px;
		white-space: nowrap;
}

.rangeslider-handle-value:before,
.rangeslider-handle-value:after {
	content: '';
  width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 6px 6px 6px;
	border-color: transparent transparent #fff transparent;
	position: absolute;
	top: -6px;
	left: 50%;
    transform: translateX(-50%);
}

.rangeslider-handle-value:before {
	border-color: transparent transparent #ccc transparent;
	top: -7px;
}

.rangeslider-labels {
	position: absolute;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.rangeslider-label {
	font-size: 0.75em;
    position: relative;
    padding-top: 15px;
    color: #333;
}

.range-infos {
	margin-top: 5px;
}

.range-infos .info-icon {
	margin: 0;
}

.rangeslider-ticks {
	position: absolute;
	top: -3px;
	left: 0;
	right: 0;
	z-index: 0;
	padding: 0 4px;
}

.rangeslider-ticks-inner {
	position: relative;
}

.rangeslider-tick {
	float: left;
	text-align: center;
	line-height: 0;
	position: absolute;
	transform: translateX(-50%);
}

.rangeslider-tick span {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #333;
	border-radius: 50%;
}

.rangeslider-tick span.surpassed {
	background: #96be0d;
}

.rangeslider.has-handle-label {
	margin-bottom: 55px;
}

.max-re-labels > div {
	position: absolute;
	transform: translateX(-50%);
}

.max-re-labels > div:first-child {
	transform: translateX(0);
}

.max-re-labels > div:last-child {
	transform: translateX(-100%);
}


.it-re-labels > div {
	position: absolute;
	transform: translateX(-50%);
}

.it-re-labels > div:first-child {
	transform: translateX(0);
}

.it-re-labels > div:last-child {
	transform: translateX(-100%);
}


.topology-configurator .sliders .progress {
	border-radius: 0;
}

.topology-configurator .sliders .progress-bar {
	background: #96be0d;
}

/*** Vorschaubereich***/

.topo-preview {
	position: relative;
}

.fullscreen .topo-preview {
	height: 100%;
    width: 100%;
}

.multi-button span {
	display: none;
}

.multi-button span:first-child {
	display: inline;
}

.topo-preview .top-buttons,
.topo-preview .view-switches{
	position: absolute;
	left: 0;
	right: 0;
	padding: 10px;
}

.topo-preview .top-buttons{
	top: 0;
}

.topo-preview .view-switches {
	bottom: 0;
}

.topo-preview .view-switches .info-icon {
	background: #fff;
}

.topo-preview .view-switches .info-icon:before {
	color: #545454;
}

.topo-preview .view-switches .info-icon .dx-mouse {
	display: none;
}

.topo-preview .view-switches .info-icon:hover .dx-mouse {
	display: block;
	padding: 15px;
	background: #fff;
	position: absolute;
	width: 220px;
	bottom: 15px;
	left: 55px;
	text-align: left;
}

.topo-preview .view-switches .info-icon:hover .dx-mouse .icon {
	margin-bottom: 20px;
}

.topo-preview .view-switches .info-icon:hover .dx-mouse .icon:last-child {
	margin-bottom: 0;
}

.topo-preview .view-switches .info-icon:hover .dx-mouse .icon img {
	margin-right: 10px;
	float: left;
}

.topo-preview .view-switches .info-icon:hover .dx-mouse .icon .text {
	display: inline;
}

.topo-file-info {
	position: relative;
}

.topo-file-info .file-info {
	position: absolute;
	left: 0;
	top: 100%;
	width: 300px;
	background: #dadada;
    color: #575756;
    font-size: 14px;
    margin-top: 1px;
}

.topo-file-info .file-info > div {
	padding: 10px;
}

.topo-3d-icon img {
	width: 40px;
    height: 40px;
    padding: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
}

.topo-preview-fullscreen {
	margin-left: 10px;
}

.preview-notes,
.preview-status {
	position: absolute;
}

.topo-preview-info > div {
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.topo-preview-info > div.open {
	visibility: visible;
	opacity: 1;
}

.preview-status {
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: table;
}

.preview-status > p {
	display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
}

.topo-preview-loadscreen {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:rgba(255,255,255,0.65);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease-in-out;
}

.topo-preview-loadscreen.open {
	opacity: 1;
	visibility: visible;
}

.topo-preview-loadscreen h3 {
	font-size:30px;
}

.topo-preview-loadscreen-inner {
	position:absolute;
	top:50%;
	left:0;
	width:100%;
	transform:translateY(-50%);
	padding:40px;
}

.preview-loadbar {
	margin-bottom:10px;
	background:rgba(0,0,0,0.1);
}

.preview-loadbar .bar {
	background:#0098a1;
	height:3px;
}

.preview-loadbar-text {
	font-size:18px;
}

/*** Results Tab ***/
.iteration-number-wrap {
	padding: 10px;
	border: 1px solid #ececec;
	margin-bottom: 10px;
}

.topology-configurator .result-buttons .btn img {
		margin-left: 5px;
		margin-right: 0;
}

#download-protocol img {
	height: 16px;
}

.results-slider img {
	max-width: 100%;
}

#results-slider > li {
	position: relative;
}

#results-slider > li > span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 5px;
	background-color: rgba(255,255,255,0.75);
	font-size: small;
	text-align: center;
	display: block;
}

.lSAction > a {
  background-image: url('../images/lightslider/controls.png');
	width: 28px;
	height: 28px;
	background-color: rgba(0,0,0,0.6);
	border-radius: 14px;
	border: 2px solid #fff;
}

.lSAction>.lSNext {
    background-position: -38px -4px;
}

.lSAction>.lSPrev {
    background-position: -2px -4px;
}

/*** Misc ***/
.topo-saving-info {
	margin-top: 5px;
	min-height: 24px;
}

.topo-saving-info p {
	margin: 0;
}

.topo-loading-popup {
	width: auto;
    border-radius: 100px;
    color: #96be0d;
}

.topo-loading-popup .fa {
	width: 1em;
	line-height: 1;
}

@media screen and (min-height: 961px) {

	.preview-canvas,
	.topo-preview canvas {
		width: 100%;
		height: 100%;
	}

	.topo-preview canvas {
		background: #545454;
	}

}

.topo-login-warning {
	background-color: #95c6cd;
	padding:10px;
}

.topo-progress-statustext {
	display: none;
}

#intro-video {
	z-index: 99999;
}

#intro-video .modal-dialog {
	width: 95%;
}

#intro-video .modal-dialog .modal-content {
	border-radius: 0;
}

.topo_safe_weight {
	display: inline-block;
}

.topo-project-title-bar {
	margin-bottom: 10px;
}

/* stuff */

.gjs-txt {
	min-width: 300px;
	width: auto;
}

.topology-configurator .gjs-txt .info-icon {
	margin: 0;
	width: 17px;
	height: 17px;
	line-height: 17px;
    margin-top: -2px;
}

.topology-configurator .gjs-txt .info-icon:before {
	font-size: 16px!important;
	content: 'i'!important;
    color: #fff!important;
    font-family: 'Script MT', serif!important;
    font-weight: bold!important;
    margin-left: -1px!important;
    opacity: 1!important;
}

.topology-configurator .gjs-txt .info-icon:after {
	content: none!important;
}

.gjs-txt ul, 
.gjs-txt li {
	border: none!important;
	white-space: nowrap;
	list-style: disc;
}

.gjs-txt ul {
	margin-left: 20px;
}

.gjs-txt {
	white-space: normal;
	text-align: left;
	font-weight: normal;
	font-size: 13px;
}

.gjs-ol {
	box-shadow: 0 0 0 10px #fff !important;
	outline: none !important;
}

.input-group-addon label {
	margin: 0;
	padding: 0;
}

main > .dd-ve-container {
	overflow: hidden;
}

@keyframes blink {
	0% { color: green; }
	100% { color: black; }
}

@-webkit-keyframes blink {
	0% { color: green; }
	100% { color: black; }
}

.blinkComponent {
	-webkit-animation: blink 2s linear infinite;
	-moz-animation: blink 2s linear infinite;
	animation: blink 2s linear infinite;
}

#overlayWhenEmpty {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #ececec;
	background-image: url(../images/overlay-when-empty-bg.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	display: table;
	cursor: pointer;
}

#overlayWhenEmpty .wrapper {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 5% 10%;
}

#overlayWhenEmpty .wrapper h3 {
	color: #96be0d;
	font-weight: 700;
	margin-bottom: 10px;
}

#stressDivPanel {
	disabled: true;
}

#stressDivPanel .btn {
	margin-right: 10px;
	margin-top: 10px;
}

#stressDivPanel .btn:last-child {
	margin-right: 0;
}

.rgb-scala {
	margin: 0 10px;
}

#videoOverlay .modal-body .videomenu {
	padding:10px 15px;
	background-color: #fff;
	cursor: pointer;
}

#videoOverlay .modal-body .videomenu.active {
	background-color: #96BE0D !important;
	color: #fff;
}