@font-face {
    font-family: 'Myriad-Condensed';
    src: url('../fonts/MyriadCondensedRegular.woff') format('woff'),
         url('../fonts/MyriadCondensedRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html,
body {
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Myriad-Condensed' !important;
}

@media print {
    .noprint {
      	display: none;
    }
    
    .print_bg {
    	background: #fff !important;
    }
    /*
    .print_color * {
    	color: #000 !important;
    }
    */
}

/*
@media screen and (orientation: portrait){
    html {
        -webkit-transform: translateY(-100%) rotate(90deg);    
        transform: translateY(-100%) rotate(90deg);
        -webkit-transform-origin: left bottom;    
        transform-origin: left bottom;    
    }
}
*/
table.dataTable tbody tr {
    background: transparent;
}

.footer {
    display: none;
}

h1 {
	margin-top: 0px;
	margin-bottom: 30px;
}

.topic {
	float:left;
	padding:0 !important; 
	text-align:center;
	color: #3255A4;
}

.topic h1 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.dropdown-toggle:hover {
    text-decoration: none;
}

.dropdown-toggle {
    outline: 0;
}

.order_number {
	float:right;
	color: #6a6a6a;
}
/*
.topic_in, .topic_out {
	display: none;
}
*/
/*
.stylish-panel {
    padding: 20px 0;
    text-align: center;
}
.stylish-panel > div > div {
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: 0.2s;
}
.stylish-panel > div > div:not(.normal-panel) {
    border: 1px solid rgb(200, 200, 200);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.5s;
}
*/

.logo {
	height: 80px;
	/* margin-top: -20%; */
	/* margin-bottom: 30px; */
	cursor: pointer;
}

.btn-primary {
    background-color: #3255A4;
    border-color: #3255A4;
}

.btn-primary:hover {
	background-color: #3255A4;
    border-color: #3255A4;
	opacity: 0.8;
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #000;
    background-color: #acb9c7;
    border-color: #acb9c7;
}

.btn-primary.disabled:hover, .btn-primary:disabled:hover {
	background-color: #acb9c7;
    border-color: #acb9c7;
	opacity: 0.65;
}

.input_error {
	border: 1.5px solid red !important;
}

.input_error_thick {
	background-color: red !important;
	scroll-margin: 50px;
}

.error {
	color:red;
	margin-top: 0px;
	padding-top: 0px;
}

#content_header {
	margin-bottom: 20px;
}

.success-screen {
    position:fixed;
    padding:0;
    margin:0;

    top:0;
    left:0;

    width: 100%;
    height: 100%;
    background:rgba(255,255,255,0.5);
}

.success {
	color: green;
	text-align: center;
	font-size: 2em;
}

.success-checkmark {
  width: 80px;
  height: 115px;
  margin: 0 auto;
  margin-top: 20px;
}
.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4CAF50;
  background-color: #fff;
}
.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 8.25s ease-in;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4CAF50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 1.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 1.75s;
}
.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}
.success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
}

@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

@media (max-width: 1608px) {
	
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #3255A4;
}

.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
    border-color: #3255A4;
    box-shadow: 0 0 0 .2rem rgba(50, 85, 164,.25);
}

#page_topic {
	float: left;
}

.topic_sub {
	color: #6a6a6a;
}

.update_box {
	width: 100%;
}

.update_box span {
	border: 3px solid red;
	display: inline-block;
	line-height: 1.5;
	font-size: 1.5rem;
	padding: 5px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.ibc_div {
	vertical-align: middle;
	text-align: center;
}

.ibc {
	float: left;
	padding: 0;
	height: 360px;
	width: 360px;
	max-height: 360px;
	max-width: 360px;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.ibc_active {
	background: rgba(217, 239, 254, 0.9) !important;
}

.add_ibc:hover {
	background: rgba(217, 239, 254, 0.9) !important;
	cursor: pointer;
}

.ibc_detail {
	float: left;
	padding: 0;
	height: 360px;
	width: 360px;
	max-height: 360px;
	max-width: 360px;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.mini_preview {
	width: 75%;
	height: 75%;
}

.mini_preview_elem {
	height: 115px;
	width: 115px;
	max-height: 120px;
	max-width: 120px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
}

.mini_preview_elem_first {
	height: 115px;
	width: 115px;
	max-height: 120px;
	max-width: 120px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
}

.mini_preview_elem_first h3 {
	position: absolute;
	top: 45px;
	left: 20px;
}

.mini_preview_elem_click:hover, #mini_preview_back:hover {
	background: rgba(217, 239, 254, 0.9) !important;
	cursor: pointer;
}

.ibc img:not(.mini_preview) {
	max-width:360px;
	max-height:360px;
	width: auto;
	height: auto;
	margin: 0;
}

.ibc_btn_div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.ibc button {
	background-color: #6a6a6a;
	border-color: #6a6a6a;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 4px 8px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	text-align: left;
	margin-bottom: 7px;
	opacity: 0.9;
	height: 50px;
	width: 226px;
}

.ibc button {
	height: 43px;
}

.ibc button i.fa-1-5x {
	font-size: 1.4em;
}

.ibc button i.fa-2x {
	font-size: 1.8em;
}

.ibc button.check_btn {
	width: 160px;
}

.ibc button.xibc_check_btn {
	width: 160px;
}

.ibc button.check_all_ok_btn {
	width: 61px;
    margin-left: 5px;
}

.showMe {
  display: block;
}

.hideMe {
  display: none;
}

/*
.ibc-costs button {
	background-color: #3255A4;
	border-color: #3255A4;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 0px 20px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	text-align: left;
	opacity: 1;
	height: auto;
	width: auto;
}

.btn-costs tr {
	background-color: #3255A4 !important;
}
*/
.btn-costs td {
	border: 0 !important;
}
/*
.ibc-costs button:hover {
	opacity: 0.8;
	color: #fff;
}
*/
.ibc button:hover {
	background-color: #6a6a6a;
    border-color: #6a6a6a;
	opacity: 1;
	color: #fff;
}

.ibc button.success-btn {
	background-color: #4CAF50;
	border-color: #4CAF50;
	color: white;
}

.ibc button.success-btn:hover {
	background-color: #4CAF50;
    border-color: #4CAF50;
	opacity: 1;
}

.ibc button.inprogress-btn {
	background-color: #d6bf6f;
	border-color: #d6bf6f;
	color: white;
}

.ibc button.inprogress-btn:hover {
	background-color: #d6bf6f;
    border-color: #d6bf6f;
	opacity: 1;
}

.ibc button.insleep-btn {
	background-color: #86dc8a;
	border-color: #86dc8a;
	color: white;
}

.ibc button.insleep-btn:hover {
	background-color: #5adc5f;
    border-color: #5adc5f;
	opacity: 1;
}

.back_btn {
	margin-top: 7px;
    background-color: #3255A4 !important;
    border-color: #3255A4 !important;
}

.save_btn {
	margin-top: 117px;
    background-color: #3255A4 !important;
    border-color: #3255A4 !important;
	/*
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
    */
}

.save_all_btn {
    color: #fff;
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
	height: 50px;
    opacity: 0.9;
}

.save_all_btn:hover {
	opacity: 1;
	color: #fff;
}

.confirm_all_btn {
    color: #fff;
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
	height: 50px;
    opacity: 0.9;
}

.confirm_all_btn:hover {
	opacity: 1;
	color: #fff;
}

.back_all_btn {
    color: #fff;
    background-color: #3255A4 !important;
    border-color: #3255A4 !important;
	height: 50px;
    opacity: 0.9;
}

.back_all_btn:hover {
	opacity: 1;
	color: #fff;
}

.back_to_order_btn {
    color: #fff;
    background-color: #3255A4 !important;
    border-color: #3255A4 !important;
	height: 50px;
    opacity: 0.9;
}

.back_to_order_btn:hover {
	opacity: 1;
	color: #fff;
}

.move_ibcs_btn {
    color: #3255A4;
    background-color: #fff !important;
    border-color: #3255A4 !important;
	height: 50px;
    opacity: 0.9;
    width: 190px;
}

.move_ibcs_btn:hover {
	opacity: 1;
	color: #3255A4;
}

.release_ibcs_btn {
    color: #3255A4;
    background-color: #fff !important;
    border-color: #3255A4 !important;
	height: 50px;
    opacity: 0.9;
    width: 190px;
}

.release_ibcs_btn:hover {
	opacity: 1;
	color: #3255A4;
}

.info_btn, .topic_sub_btn {
    color: #3255A4;
    background-color: #fff !important;
    border-color: #3255A4 !important;
    opacity: 0.9;
    outline:none;
    width: 190px;
}

.info_btn:hover, .topic_sub_btn:hover {
	opacity: 1;
	color: #3255A4;
	outline:none;
}

.info_btn:focus, .topic_sub_btn:focus {
	box-shadow: none !important;
}

.vscomp-wrapper .checkbox-icon.checked::after, .vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after {
    border-color: #3255A4;
    border-left-color: transparent;
    border-top-color: transparent;
}

.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after {
    border-color: #fff;
    border-left-color: transparent;
    border-top-color: transparent;
}

.vscomp-option.selected {
    background-color: #3255A4;
    color: #fff;
}

.alternative-btn {
    /*color: #6a6a6a;*/
	color: #3255A4;
    background-color: #fff !important;
    border-color: #3255A4 !important;
    opacity: 0.9;
    outline:none;
}

.alternative-btn:hover {
	opacity: 1;
	/*color: #6a6a6a;*/
	color: #3255A4;
	outline:none;
}

.alternative-btn:focus {
	box-shadow: none !important;
}

.print_btn {
    /*color: #6a6a6a;*/
	color: #3255A4;
    background-color: #fff !important;
    border-color: #3255A4 !important;
    opacity: 0.9;
    outline:none;
}

.print_btn:hover {
	opacity: 1;
	/*color: #6a6a6a;*/
	color: #3255A4;
	outline:none;
}

.print_btn:focus {
	box-shadow: none !important;
}

.ibc_close:after {
	content: '✖';
	color: #777;
	font: 35px/100% arial, sans-serif;
	position: absolute;
	right: 5px;
	text-decoration: none;
	text-shadow: 0 1px 0 #fff;
	top: 5px;
}

.ibc_product_info:after {
	font-family: "Font Awesome 5 Free";
	content: "\f0c3";
	font-weight: 900;
	color: #3255A4;
	position: absolute;
	top: 35px;
	right: 15px;
	text-decoration: none;
	text-shadow: 0 1px 0 #fff;
	font-size: 24px;
}

.tooltip {
  position: relative;
  border-bottom: 1px dotted black;
}
.tooltip span {
  visibility: hidden;
  width: 10em;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 9;
  top: -1em;
  left:  100%;
  margin-left:1em;
  opacity: 0;
  transition: opacity 1s;
}
.tooltip span::after {
  content: "";
  position: absolute;
  top: 1.5em;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent black transparent transparent;
}
.tooltip input {
  display:none;
}
.tooltip input:checked+span {
  visibility: visible;
  opacity: 1;
}

.subpage_back_btn {
	float: left;
    background-color: #3255A4 !important;
    border-color: #3255A4 !important;
	color: white;
	font-size: 16px;
	font-weight: bold;
	padding: 4px 24px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	text-align: left;
	margin-bottom: 7px;
	opacity: 0.9;
	height: 60px;
	width: 250px;
	margin-bottom: 40px;
}

.subpage_back_btn:hover {
	background-color: #6a6a6a;
    border-color: #6a6a6a;
	opacity: 1;
	color: #fff;
}

.ibc_select_img {
	cursor: pointer;
}

.ibc_select_img:hover {
	opacity: 0.8;
}

.domdeckeltyp_select_img {
	cursor: pointer;
}

.domdeckeltyp_select_img:hover {
	opacity: 0.8;
}

.ibc-number-input {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	width: 226px;
	margin-top: 25px;
    border-top: 0;
}

.ibc-number-rw-input {
	margin-top: -20px;
    border: 0;
    text-align: center;
    font-size: 12px;
    width: 226px;
    color: blue;
}

.ibc-type-input {
	text-align: center;
	font-size: 14px;
	width: 226px;    
	padding: 0;
    height: auto;
    margin-top: -10px;
    border-top: 0;
}

.number_btn {
	margin-top: 40px;
}

.ibc_out .number_btn {
	margin-top: 10px;
}

.ibc_number {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
}

.ibc_plombe {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
}

.ibc_product {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
}

.ibc_atp {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
}

.ibc_gestell {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
}

.ibc_embed {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
}

/*
#add_ibc_number_btn_back_div {
	width: 360px;
	float: left;
}

#add_ibc_number_btn_back {
	float: right;
	margin-right: 20px;
	width: 50%;
}

#add_ibc_number_btn_save_div {
	width: 360px;
	float: left;
}

#add_ibc_number_btn_save {
	float: left;
	margin-left: 20px;
	width: 50%;
}
*/

.number-input {
	outline: none;
	-webkit-appearance: none;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	line-height: 60px;
	vertical-align: middle;
	height: 180px;
	font-size: 60px;
	padding: 0 15px;
	text-align: center;
	width: 300px;
	margin-bottom: 30px;
	float:left;
}

.number-select {
	outline: none;
	-webkit-appearance: none;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	line-height: 60px;
	vertical-align: middle;
	height: 180px;
	font-size: 60px;
	padding: 0 15px;
	text-align: center;
	width: 155px;
	margin-bottom: 30px;
	float:left;
}

.product-input {
	width: 100%;
	width: 720px;
	font-size: 30px;
	text-align: left;
	height: 100px;
}

.plombe-input {
	width: 100%;
	width: 720px;
	font-size: 40px;
}

.plombe-scan-input {
	text-align: left;
	font-size: 24px;
}

.plombe-scan-input-from, .plombe-scan-input-to {
	text-align: left;
	font-size: 24px;
} 

.plombe-scan-btn {
	font-size: 24px;
	line-height: calc(1.5em + 0.75rem + 2px);
}
.plombe-scan-btn i {
	vertical-align: middle;
	cursor: pointer;
}

.atp-input {
	width: 100%;
}

.gestell-input {
	width: 100%;
}

.ibc-embed-input {
	width: 100%;
	-webkit-appearance: menulist;
}

.operated_by-input {
	outline: none;
	-webkit-appearance: none;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	vertical-align: middle;
	font-size: 40px;
	padding: 0 15px;
	text-align: center;
	float:left;
}

.costs-input {
	outline: none;
	-webkit-appearance: none;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	vertical-align: middle;
	font-size: 40px;
	padding: 0 15px;
	text-align: center;
	float:left;
    margin-top: 10px;
    margin-bottom: 30px;
}

.costs-comment {
    outline: none;
    -webkit-appearance: none;
    border: 1px solid rgb(200, 200, 200);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: 0.5s;
    vertical-align: middle;
    padding: 15px 15px;
    text-align: center;
    float: left;
    margin-top: 10px;
    margin-bottom: 30px;
    resize: none;
}

.costs-checkbox {
	cursor: pointer;
}

.costs-checkbox-label {
	cursor: pointer;
    font-size: 1.5rem;
    padding-left: 10px;
    color: #495057;
}

.costs-checkbox-label::before {
    width: 1.5rem;
    height: 1.5rem;
}

.costs-checkbox-label::after {
    width: 1.5rem;
    height: 1.5rem;
}

.barcode {
	float:left;
	width: 180px;
	height: 180px;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	margin-left: 20px;
}

.barcode:hover, .barcode button:hover, .barcode_active {
	background: rgba(217, 239, 254, 0.9) !important;
	cursor: pointer;
}

.check_div {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
	text-align: left;
}

.check_img_div {
	height: 500px;
	width: auto;
	margin-left: 40px;
	margin-right: 30px;
}

#check_btn_save_div {
	width: 360px;
	float: left;
}

#check_btn_save {
	float: left;
	margin-left: 20px;
	width: 50%;
}

.success-checkmark_ibc {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.check_ibc_div {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
}

.check_ibc_btn {
  border: 1px solid rgb(200, 200, 200);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.5s;
}

.check_ibc_btn {
    width: 80%;
}

.check_ibc_btn img {
    width: 40%;
	margin-top: 30px;
}

.check_ibc_btn:hover {
  background: rgba(217, 239, 254, 0.9) !important;
}

.rw_check_ibc_div, .xibc_check_ibc_div {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
}

.rw_check_ibc_btn, .xibc_check_ibc_btn {
  border: 1px solid rgb(200, 200, 200);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.5s;
  width: 80%;
}

.rw_check_ibc_btn img, .xibc_check_ibc_btn img {
    width: 60%;
	margin-top: 30px;
}

.rw_check_ibc_btn:hover, .xibc_check_ibc_btn:hover {
  background: rgba(217, 239, 254, 0.9) !important;
}

#check_ibc_btn_no_div, .check_ibc_btn_no_div_intro, .check_ibc_btn_no_div_product, .check_ibc_btn_no_div_heizung, .rw_check_ibc_btn_no_div_rw, .xibc_check_ibc_btn_no_div_xibc {
	float: left;
	width: 50%;
}

#check_ibc_btn_no, .check_ibc_btn_no_intro, .check_ibc_btn_no_heizung, .rw_check_ibc_btn_no_rw, .xibc_check_ibc_btn_no_xibc {
	float: left;
	margin-left: 20px;
	width: 40%;
}

.check_ibc_btn_no_product {
	float: right;
	margin-right: 20px;
	width: 40%;
}

#check_ibc_btn_yes_div, .check_ibc_btn_yes_div_intro, .check_ibc_btn_yes_div_product, .check_ibc_btn_yes_div_heizung, .rw_check_ibc_btn_yes_div_rw, .xibc_check_ibc_btn_yes_div_xibc {
	float: left;
	width: 50%;
}

.certs_option_mail_div {
	float: left;
	width: 40%;
}

.certs_option_mail {
	margin-bottom: 70px;
	float: right;
	margin-left: 20px;
	width: 40%;
	min-height: 272px;
	max-height: 272px;
}

.certs_option_upload_div {
	float: left;
	width: 60%;
}

.certs_option_upload, .certs_option_create {
	margin-bottom: 70px;
	float: left;
	margin-left: 20px;
	width: 32%;
	min-height: 272px;
	max-height: 272px;
}

.certs_option_upload_preview {
	float: left;
	margin-left: 20px;
	width: 30%;
}

#check_ibc_btn_yes, .check_ibc_btn_yes_intro, .check_ibc_btn_yes_heizung, .rw_check_ibc_btn_yes_rw, .xibc_check_ibc_btn_yes_xibc {
	float: right;
	margin-right: 20px;
	width: 40%;
}
.check_ibc_btn_yes_product {
	float: left;
	margin-left: 20px;
	width: 40%;
}

.check_ibc_check_header {
	width: 100%;
	float:left;
	margin-bottom: 30px;
}

.product-number-input {
	outline: none;
	-webkit-appearance: none;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	line-height: 60px;
	vertical-align: middle;
	height: 75px;
	font-size: 20px;
	padding: 0 15px;
	text-align: center;
}

.info-header {
	float: left;
	-ms-flex: 0 0 30.66%;
	flex: 0 0 30.66%;
	max-width: 30.66%;
	width: 100%;
	position: relative;
	margin-right: 2%;
	
	height: 60px;
	
	padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: 0.2s;
    border: 1px solid rgb(200, 200, 200);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
    background: rgba(255, 255, 255, 0.9);
}

.last-info-header {
	margin-right: 0%;
}

.header-active {
	background: rgba(50, 85, 164, 1) !important;
	color: #fff;
}

.header-past {
	cursor: pointer;
}

.header-inactive {
	color: #ccc;
}

.check_ibc_check_parts_div {
	width: 30%;
	float:left;
}

.check_ibc_check_parts_check_div {
	width: 70%;
	float:left;
}

.part-header {
	width: 100%;
	position: relative;
	margin-bottom: 10px;
	float:left;
	
	height: 40px;
	
	padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: 0.2s;
    border: 1px solid rgb(200, 200, 200);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
    background: rgba(255, 255, 255, 0.9);
}

.part-header h6 small {
	margin-left: 5px;
}

.header-part-defect {
	background: rgba(255, 0, 0, 0.1);
}

.check_parts_check input[type="radio"] {
  display: none;
}
.check_parts_check input[type="radio"]:not(:disabled) ~ label {
  cursor: pointer;
}
.check_parts_check input[type="radio"]:disabled ~ label {
  color: #bcc2bf;
  border-color: #bcc2bf;
  box-shadow: none;
  cursor: not-allowed;
}
/*
.check_parts_check:not(.check_parts_check_first) {
	margin: auto;
    margin-top: -12px;
}
*/
.check_parts_check_option {
	width: 18.5%;
	margin-left: 1.5%;
	float:left;
	height: 50px;
}

.check_parts_check_option_bigger {
	width: 28%;
}

.check_parts_check label {
  	padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    border: 1px solid rgb(200, 200, 200);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 40px;
    margin-bottom: 0px;
}

.check_parts_check_first label {
    margin-top: 0px !important;
}

.check_parts_check input[type="radio"]:checked + label {
	background: rgba(50, 85, 164, 1);
	color: white;
}

.check_parts_check input[type="radio"]:checked + label::after {
  color: #3d3f43;
  border: 2px solid rgba(50, 85, 164, 1);
  content: "\2713";
  font-size: 16px;
  position: relative;
  top: -30px;
  left: 100%;
  transform: translateX(-50%);
  height: 20px;
  width: 20px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}

.check_parts_check_heizung input[type="radio"]:checked + label::after {
  left: 55.5%;
}

.check_parts_check input[type="radio"]:not(:checked) + label:hover {
	background: rgba(217, 239, 254, 0.9) !important;
}

.btn-invisible {
	opacity: 0 !important;
	pointer-events: none !important;
}

.confirm-table-in {
	border-bottom: 0 !important;
}

.confirm-table-in tr:last-child td {
	border-top: 1px solid #111 !important;
	border-left: 0 !important;
	border-right: 0 !important;
}

.ibc_fotos {
	width: -moz-calc(98% - 360px);
	width: -webkit-calc(98% - 360px);
	width: -o-calc(98% - 360px);
	width: calc(98% - 360px);
	float: left;
}

.foto_preview {
	float: left;
	padding: 0;
	height: 40px;
	width: 50%;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.add_foto:hover {
	background: rgba(217, 239, 254, 0.9) !important;
	cursor: pointer;
}

.foto_preview img {
	max-height:40px;
	width: auto;
	height: auto;
	
	margin: 0;
}

.upload-preview-foto {
	display: none;
	height: 66px;
	margin-left: 0px;
	float: left;
}

.add_cert:hover {
	background: rgba(217, 239, 254, 0.9) !important;
	cursor: pointer;
}

.cert_preview {
	float: left;
	padding: 0;
	height: 40px;
	width: 50%;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.cert_preview img {
	max-height:40px;
	width: auto;
	height: auto;
	
	margin: 0;
}

.upload-preview-cert {
	margin-left: auto;
	margin-right: auto;
}

.foto_comment {
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.fotos_div {
	vertical-align: middle;
	text-align: center;
}

.foto_preview_big {
	float: left;
	padding: 0;
	height: 300px;
	width: 300px;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.foto_preview_big img {
	max-width:300px;
	max-height:300px;
	width: auto;
	height: auto;
	
	margin: 0;
}

.foto_preview_mid {
	float: left;
	padding: 0;
	height: 100px;
	width: 100px;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.foto_preview_mid img {
	max-width:100px;
	max-height:100px;
	width: auto;
	height: auto;
	
	margin: 0;
}

.upload-input {
	outline: none;
	-webkit-appearance: none;
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
	
	line-height: 60px;
	height: 75px;
	font-size: 20px;
	padding: 0 15px;
	text-align: center;
	width: 220px;
	cursor: default !important;
	pointer-events: none !important;
}

.upload-btn-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 220px;
	vertical-align: middle;
	cursor: pointer;
	
	border: 1px solid rgb(200, 200, 200);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
	background: rgba(255, 255, 255, 0.9);
	transition: 0.5s;
}

.upload-btn-wrapper:hover, .upload-btn-wrapper input[type=file]:hover, .upload-input:hover {
	background: rgba(217, 239, 254, 0.9) !important;
	cursor:pointer !important;
}

.upload-btn-wrapper input[type=file] {
	position: absolute;
	left: 0;
	top: 0;
	
	line-height: 60px;
	height: 66px;
	font-size: 20px;
	padding: 0 15px;
	text-align: center;
	width: 220px;
	cursor: pointer;
	opacity: 0;
}

.upload-input-text {
	display: none;
	border: 0px;
	text-align: left;
	padding: 0;
	margin-left: 20px;
}

.preview_close:after {
	content: '✖';
	color: #777;
	font: 35px/100% arial, sans-serif;
	position: absolute;
	right: 5px;
	text-decoration: none;
	text-shadow: 0 1px 0 #fff;
	top: 5px;
}

.preview_mid_close:after {
	content: '✖';
	color: red;
	font: 20px/100% arial, sans-serif;
	position: absolute;
	right: 5px;
	text-decoration: none;
	text-shadow: 0 1px 0 #fff;
	top: 5px;
	background-color: #fff;
}

.preview_cert_close:after {
	content: '✖';
	color: #777;
	font: 25px/100% arial, sans-serif;
	position: absolute;
	text-decoration: none;
	text-shadow: 0 1px 0 #fff;
	margin-left: -30px;
}

.confirm_btn {
    color: #fff;
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
    height: 50px;
    opacity: 0.9;
}

.confirm_btn:hover {
	opacity: 1;
	color: #fff;
}

.confirm_back_btn {
    color: #fff;
    background-color: #3255A4 !important;
    border-color: #3255A4 !important;
    height: 50px;
    opacity: 0.9;
}

.confirm_back_btn:hover {
	opacity: 1;
	color: #fff;
}

.order_table tbody tr {
	cursor: pointer;
}

.order_table tbody tr:hover {
	background-color: #eee;
}

h3 small {
	font-size: 65%;
    color: #777;
}

td:not(:first-child):not(:last-child) {
	text-align: center;
}

th.rotate {
  /* Something you can count on */
  height: 300px;
  white-space: nowrap;
  padding: 0 !important;
  width: 30px !important;
}

th.rotate > div {
  transform: 
    /* Magic Numbers */
    translate(0px, 130px)
    /* 90 is really 360 - 90 */
    rotate(-90deg);
  	width: 30px !important;
  	margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
	#content_confirm .confirm_check_table_div table {
		font-size: 0.8rem;
	}
	
	#content_confirm .confirm_check_table_div table h2 {
		font-size: 1.5rem;
	}
	
	#content_confirm .confirm_check_table_div table th.rotate {
	    width: 15px !important;
	    height: 260px;
	}
	
	#content_confirm .confirm_check_table_div table th.rotate > div {
	    transform: translate(0px, 120px) rotate(-90deg);
	    width: 15px !important;
	}
}
	
#content_confirm .confirm_check_table_div table.dataTable tbody th, #content_confirm .confirm_check_table_div table.dataTable tbody td {
    padding: 5px 2px;
}

.group-topic {
	text-align: center;
}

.group-topic h2 {
	margin-bottom: 0;
}

.bordered-null {
	border-right: 0 !important;
	border-left: 0 !important;
	border-top: 0 !important;
	border-bottom: 0 !important;
}

.bordered-right {
	border-right: 1px solid #111 !important;
}

.bordered-left {
	border-left: 1px solid #111 !important;
}

.bordered-top {
	border-top: 1px solid #111 !important;
}

.bordered-bottom {
	border-bottom: 1px solid #111 !important;
}

input[type=checkbox].css-checkbox { 
	position: absolute;  
	overflow: hidden;  
	clip: rect(0 0 0 0);  
	height:1px;  
	width:1px;  
	margin:-1px;  
	padding:0; border:0; 
} 

input[type=checkbox].css-checkbox + label.css-label, input[type=checkbox].css-checkbox + label.css-label-fail { 
	padding-left:15px; 
	height:15px;  
	display:inline-block; 
	line-height:15px; 
	background-repeat:no-repeat; 
	background-position: 0 0; 
	font-size:15px; 
	vertical-align:middle; 
} 

input[type=checkbox].css-checkbox + label.css-label, input[type=checkbox].css-checkbox + label.css-label-fail {
	cursor:pointer;  
}

input[type=checkbox][disabled].css-checkbox + label.css-label, input[type=checkbox][disabled].css-checkbox + label.css-label-fail {
	cursor:auto; 
}

input[type=checkbox][disabled].css-checkbox:not(:checked) + label.css-label, input[type=checkbox][disabled].css-checkbox:not(:checked) + label.css-label-fail {
	cursor:pointer; 
}

input[type=checkbox].css-checkbox:checked + label.css-label, input[type=checkbox].css-checkbox:checked + label.css-label-fail { 
	background-position: 0 -15px; 
}  

input[type=radio].css-checkbox { 
	position: absolute;  
	overflow: hidden;  
	clip: rect(0 0 0 0);  
	height:1px;  
	width:1px;  
	margin:-1px;  
	padding:0; border:0; 
} 

input[type=radio].css-checkbox + label.css-label, input[type=radio].css-checkbox + label.css-label-fail { 
	padding-left:20px; 
	height:15px;  
	display:inline-block; 
	line-height:15px; 
	background-repeat:no-repeat; 
	background-position: 0 0; 
	font-size:15px; 
	vertical-align:middle; 
} 
#text {
	display:none;
}

.margin-left { 
	margin-left: 30px;
}

input[type=radio].css-checkbox + label.css-label, input[type=radio].css-checkbox + label.css-label-fail {
	cursor:pointer;  
}

input[type=radio][disabled].css-checkbox + label.css-label, input[type=radio][disabled].css-checkbox + label.css-label-fail {
	cursor:auto; 
}

input[type=radio][disabled].css-checkbox:not(:checked) + label.css-label, input[type=radio][disabled].css-checkbox:not(:checked) + label.css-label-fail {
	cursor:pointer; 
}

input[type=radio].css-checkbox:checked + label.css-label, input[type=radio].css-checkbox:checked + label.css-label-fail { 
	background-position: 0 -15px; 
}

input[type="checkbox"] + label div {
    display:none;
}

input[type="radio"] + label div {
    display:none;
}

.css-label { 
	background-image:url(../img/graphics/lite-check-gray.png); 
	margin-bottom: 0px;
}

.css-label-fail { 
	background-image:url(../img/graphics/lite-fail-gray.png); 
	margin-bottom: 0px;
}

.overlay {
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	position: relative;
	background:rgba(0, 123, 255, 0.15);
}

#overlay_desc small, #overlay_info_desc small {
	font-size: 80%;
}

#overlay_desc td, #overlay_info_desc td {
	padding-left: 20px;
}

#overlay_desc h3, #overlay_info_desc h3 {
	font-weight: bold;
	margin-bottom: 0;
}

.flex-center {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.carousel-fade .carousel-inner .item {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
	opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}
.carousel-fade .carousel-control {
	z-index: 2;
}

.carousel-item {
	width: 80% !important;
	margin-left: 10%;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 40px !important;
    height: 40px !important;
}

.close_custom {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.8;
}
.close_custom:hover {
  opacity: 1;
}
.close_custom:before, .close_custom:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #000;
}
.close_custom:before {
  transform: rotate(45deg);
}
.close_custom:after {
  transform: rotate(-45deg);
}

.close_custom_info:before, .close_custom_info:after {
  background-color: #000;
}

.toggle-group:hover, .toggle-on:hover, .toggle-off:hover {
	cursor: pointer !important;
}

.check_ibc_extra_options_div_clone .toggle {
	cursor: none !important;
    pointer-events: none !important;
}

#container {
  margin: 20px auto;
  padding: 10px;
}

#interactive.viewport {
    position: relative;
}

#interactive.viewport canvas, video {
  float: left;
  max-width: 100%;
}

canvas.drawing, canvas.drawingBuffer {
    position: absolute;
    left: 0;
    top: 0;
}

#result_strip {
	float:left;
	width: 180px;
	height: 180px;
}

#result_strip > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
	height: 100%;
	width: 100%;
}

#result_strip > ul > li {
  display: inline-block;
  vertical-align: middle;
	height: 100%;
	width: 100%;
	text-align: center;
}

#result_strip > ul > li .thumbnail {
  padding: 5px;
  border: 1px dashed #CCC;
  height: 100%;
}

#result_strip > ul > li .thumbnail img {
  max-width: 140px;
}

#result_strip > ul > li .thumbnail .caption {
  white-space: normal;
}

#result_strip > ul > li .thumbnail .caption h4 {
  text-align: center;
  word-wrap: break-word;
  margin: 0px;
}

#result_strip > ul:after {
  content: "";
  display: table;
  clear: both;
}

.imgWrapper {
	margin-top: 20px;
}

.scanner-overlay {
  display: none;
  width: 640px;
  height: 510px;
  position: absolute;
  padding: 20px;
  top: 50%;
  margin-top: -275px;
  left: 50%;
  margin-left: -340px;
  background-color: #FFF;
  -moz-box-shadow: #333333 0px 4px 10px;
  -webkit-box-shadow: #333333 0px 4px 10px;
  box-shadow: #333333 0px 4px 10px;
}

.scanner-overlay > .header {
  position: relative;
  margin-bottom: 14px;
}

.scanner-overlay > .header h4, .scanner-overlay > .header .close {
  line-height: 16px;
}

.scanner-overlay > .header h4 {
  margin: 0px;
  padding: 0px;
}

.scanner-overlay > .header .close {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 16px;
  width: 16px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

#video-container .scan-region-highlight-svg, #video-container .code-outline-highlight {
	stroke: #64a2f3 !important;
}

th.check-td {
	padding: 2px 5px !important;
    text-align: center !important;
}

ul.nav {
	font-size: 1.5rem;
}

div.datedropper .picker ul.pick .pick-arw.pick-arw {
    opacity: 1;
}

.dtpicker-content {
	font-family: 'Myriad-Condensed' !important;
	border-radius: .25rem !important;
}

.dtpicker-title {
    font-size: 2em !important;
    color: #212529 !important;
}

.dtpicker-value {
    padding: 0 !important;
    font-size: 2em !important;
    color: rgba(50, 85, 164, 1) !important;
}

.dtpicker-components {
    margin: 0em 1em !important;
    font-size: 2.5em !important;
    color: #2980B9 !important;
}

.dtpicker-buttonSet {
	width: 100% !important;
	background: rgba(50, 85, 164, 0.9) !important;
	color: #FFFFFF !important;
	border-radius: .25rem !important;
}

.dtpicker-buttonClear {
	display: none !important;
}

.dtpicker-compValue {
	color: rgba(50, 85, 164, 1) !important;
}

.dtpicker-buttonCont {
	margin-top: 30px !important;
}

.dtpicker-compButton.increment {
    font-size: 100% !important;
}

.dtpicker-components .dtpicker-comp > * {
    display: block;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.input_datetime {
	text-align: center;
	font-size: 34px;  
	padding: 10px;
    height: auto;
    margin-top: 20px;
    border-top: 0;
}

[lang] {
	display: none;
}

.dataTable {
	width: 100% !important;
}

tfoot {
	display: table-header-group;
    background-color: #ffffff;
}
tfoot th {
	border-bottom: 1px solid #ddd !important;
}

.nav-tabs .nav-item {
    width: 22.5%;
}

.nav-tabs .nav-item:last-child {
    width: 10%;
}

.nav-tabs .nav-item.nav-item-one-less {
    width: 30%;
}

.nav-tabs .nav-item.nav-item-one-less:last-child {
    width: 10%;
}

ul.nav {
    font-size: 2rem;
}

.nav-tabs {
    border-bottom: 0;
}

.nav-tabs .nav-link {
    border: 2px solid transparent;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: #dee2e6 #dee2e6 transparent;
}

.nav-link:not(.active) {
	border-bottom: 2px solid #dee2e6 !important;
}

.nav-tabs li a {
	color: #495057 !important;
	font-size: 1.3rem !important;
	line-height: 2rem !important;
	background-color: rgba(222, 226, 230, 0.3);
	border: 2px solid transparent;
	border-color: #dee2e6 #dee2e6 transparent !important;
}

.nav-tabs li a.active {
	color: #007bff !important;
	font-size: 2rem !important;
	background-color: transparent;
}

.storno_in table tbody tr, .storno_out table tbody tr {
	background-color: #ffe5e5 !important;
}

.marked_col {
	background: rgba(255, 0, 0, 0.1) !important;
}

.marked_col_yellow {
	background: rgba(248, 255, 0, 0.24) !important
}

.col-search-btn {
	float: right;
	margin-top: 2.5px;
    margin-right: 10px;
    padding: 0;
    font-size: 0.8rem;
}

.dt-buttons .btn:not(.btn-primary) {
	text-shadow: 0 1px 0 #fff;
    background-image: -webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);
    background-image: -o-linear-gradient(top,#fff 0,#e0e0e0 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));
    background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #dbdbdb;
    border-color: #ccc;
    padding: 0.1rem .75rem;
}

.dt-buttons .btn:not(.btn-primary):hover {
    background-image: -webkit-linear-gradient(top,#e0e0e0 0,#e0e0e0 100%);
    background-image: -o-linear-gradient(top,#e0e0e0 0,#e0e0e0 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#e0e0e0),to(#e0e0e0));
    background-image: linear-gradient(to bottom,#e0e0e0 0,#e0e0e0 100%);
    border-color: #adadad;
}

.dt-buttons {
	margin-left: 20px;
}

.pdfprint_variant_div {
	display: none;
}

.fa-edit, .fa-plus-square, .fa-minus-square, .fa-images, .fa-history, .fa-comment-dots {
	cursor: pointer;
}

.fa-comment-dots {
	color: #3255A4;
}

.dataTables_filter input[type="search"] {
	height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.dataTables_filter input[type="search"]:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

/****************************************/
/************ LOADER ********************/
/****************************************/
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -250px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #3255a4;
	-webkit-animation: spin 2s linear infinite;
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 2s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
	z-index: 1001;
}

#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #cde5fd;
	-webkit-animation: spin 3s linear infinite;
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #81bdfd;
	-webkit-animation: spin 1.5s linear infinite;
	/* Chrome, Opera 15+, Safari 5+ */
	animation: spin 1.5s linear infinite;
	/* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}

#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: rgba(255,255,255,1);
	z-index: 1000;
	-webkit-transform: translateX(0); /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateX(0); /* IE 9 */
	transform: translateX(0); /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
	left: 0;
}

#loader-wrapper .loader-section.section-right {
	right: 0;
}

#loader-wrapper .entry-title {
	text-align: center;
	z-index: 1002;
    /* display: block; */
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: 25px 0 0 -75px;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);
	/* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateX(-100%); /* IE 9 */
	transform: translateX(-100%); /* Firefox 16+, IE 10+, Opera */
	-webkit-transition: all 0.7s 0.3s
		cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);
	/* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateX(100%); /* IE 9 */
	transform: translateX(100%); /* Firefox 16+, IE 10+, Opera */
	-webkit-transition: all 0.7s 0.3s
		cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	/* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateY(-100%); /* IE 9 */
	transform: translateY(-100%); /* Firefox 16+, IE 10+, Opera */
	-webkit-transition: all 0.3s 0.5s ease-out;
	transition: all 0.3s 0.5s ease-out;
}

/* JavaScript Turned Off */
.no-js #loader-wrapper {
	display: none;
}

@media (min-width: 1024px) {
	#create_cert_content_div {
		width: 1000px;
	}
}


@media (max-width: 1024px) {
	.form-control {
	    height: calc(1em + .75rem + 2px);
	}
	
	table.dataTable {
    	font-size: 0.8rem;
	}
	
	.back_to_order_btn {
		font-size: 0.8rem;
	}
	
	.ibc button {
		font-size: 15px;
	}
	
	.back_all_btn {
		margin-top: 10px;
	}
	
	.number-input {
    	width: 200px;
    	font-size: 40px;
    	line-height: 40px;
	}
	
	.number-select {
		width: 100px;
    	font-size: 40px;
    	line-height: 40px;
	}
	
	.barcode {
		width: 74px;
		height: 54px;
	}
	
	.barcode i {
		width: 1em;
		font-size: 20px;
	}
	
	.barcode button {
		padding-left: 0;
    	padding-right: 0;
	}
	
	.barcode h4 {
		font-size: 14px;
	}
	
	.foto_preview_big {
	    height: 250px;
	    width: 250px;
	}
	
	.foto_preview_big img {
	    max-width: 250px;
	    max-height: 250px;
	}
	
	.info-header {
		height: 45px;
	}
	
	.info-header h2 {
		font-size: 1.1rem;
	}
	
	.check_ibc_div h6 {
		font-size: 0.6rem;
	}
	
	.check_ibc_div textarea {
		font-size: 0.6rem;
	}
	
	.upload-preview-foto {
    	height: 30px;
	}
	
	.check_img_div {
		height: 300px;
	}
	
	.costs {
		margin-left: 5px !important;
    	font-size: 1em !important;
	}
	
	.btn-costs {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.btn-costs td {
		padding: 8px 4px !important;
	}
	
	.costs-input {
	    margin-bottom: 10px;
	}
	
	.costs-comment {
	    margin-bottom: 10px;
	}
	
	#overlay_costs_desc .form-group {
		margin-bottom: 0;
	}
	
	#overlay_costs_topic h2 {
		font-size: 1.5rem;
	}
	
	#overlay_costs_topic h3 {
		font-size: 1.3rem;
	}
	
	#overlay_costs_topic h5 {
		font-size: 1.15rem;
	}
	
	#overlay_img_div, #overlay_info_img_div {
		margin-top: 15px !important;
	}
	
	#overlay_img_div img, #overlay_info_img_div img {
		margin-left: 20px !important;
    	width: 150px !important;
	}
	
	#overlay_img_div #overlay_desc, #overlay_info_img_div #overlay_info_desc {
		margin-left: 0 !important;
    	width: calc(100% - 170px) !important;
	}
	
	#overlay_img_div #overlay_desc small, #overlay_info_desc small {
	    font-size: 70% !important;
	}
	
	#overlay_img_div #overlay_desc td h3, #overlay_img_div #overlay_desc td h4, #overlay_img_div #overlay_desc td h5, #overlay_info_img_div #overlay_info_desc td h3, #overlay_info_img_div #overlay_info_desc td h4, #overlay_info_img_div #overlay_info_desc td h5 {
		margin-bottom: 0 !important;
	}
}



.cert_create_table th.rotate {
  /* Something you can count on */
  height: 200px;
  white-space: nowrap;
}

.cert_create_table th.rotate > div {
	transform: /* Magic Numbers */ translate( 15px, 70px)
		/* 45 is really 360 - 45 */
    rotate( 315deg);
	-webkit-transform: /* Magic Numbers */ translate( 15px, 70px)
		/* 45 is really 360 - 45 */
    rotate( 315deg);
	-moz-transform: /* Magic Numbers */ translate( 15px, 70px)
		/* 45 is really 360 - 45 */
    rotate( 315deg);
	-ms-transform: /* Magic Numbers */ translate( 15px, 70px)
		/* 45 is really 360 - 45 */
    rotate( 315deg);
	-o-transform: /* Magic Numbers */ translate( 15px, 70px)
		/* 45 is really 360 - 45 */
    rotate( 315deg);
    text-rotate: 45;
	width: 40px !important;
}

.cert_create_table th.rotate > div > span {
  border-bottom: 1px solid #ccc;
  padding: 5px 10px;
  padding-left: 0;
}

.cert_create_table tbody tr:first-child td, .cert_create_table tbody tr:nth-child(1) td {
	 border-top: 1px solid #395f9b;
}

.cert_create_table tbody tr:first-child td:first-child, .cert_create_table tbody tr:nth-child(1) td:nth-child(1) {
	 border-top-left-radius: 6px;
}

.cert_create_table tbody tr:first-child td:last-child, .cert_create_table tbody tr:nth-child(1) td:nth-last-child(1) {
	 border-top-right-radius: 6px;
}

.cert_create_table input[type=checkbox].css-checkbox {
	position: absolute;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
}

.cert_create_table input[type=checkbox].css-checkbox+label.css-label {
	padding-left: 20px;
	height: 20px;
	display: inline-block;
	line-height: 20px;
	background-repeat: no-repeat;
	background-position: 0 0;
	font-size: 20px;
	vertical-align: middle;
	cursor: pointer;
}

.cert_create_table input[type=checkbox].css-checkbox:checked+label.css-label {
	background-position: 0 -20px;
}

.cert_create_table .css-label {
	background-image: url(../img/graphics/lite-x-black.png);
}

.cert_create_table .label-disabled {
	cursor: not-allowed !important;
}

.cert_create_table_footer img {
	height: 100px !important;
}

table.dataTable tr th.select-checkbox.selected::after {
    content: "✔";
    margin-top: -11px;
    margin-left: -4px;
    text-align: center;
}

table.dataTable td.select-checkbox:before, table.dataTable td.select-checkbox:after, table.dataTable th.select-checkbox:before, table.dataTable th.select-checkbox:after {
    top: 50%;
}

.excel_create_table tbody tr:first-child td, .excel_create_table tbody tr:nth-child(1) td {
	 border-top: 1px solid #395f9b;
}

.excel_create_table tbody tr:first-child td:first-child, .excel_create_table tbody tr:nth-child(1) td:nth-child(1) {
	 border-top-left-radius: 6px;
}

.excel_create_table tbody tr:first-child td:last-child, .excel_create_table tbody tr:nth-child(1) td:nth-last-child(1) {
	 border-top-right-radius: 6px;
}