@charset "UTF-8";
/**
 * GUI V3 for Contao Open Source CMS
 *
 * Copyright (C) 2021 - HELITCO GmbH
 *
 * @license    commercial
 * @author     Jürgen Helfer
 */
/*-----------------------------------------------------------------------------------
	variables.scss
-----------------------------------------------------------------------------------*/
/**
    Theme V4 P2 - Hybridbrief
 */
/*-----------------------------------------------------------------------------------
	mixins.scss
-----------------------------------------------------------------------------------*/
/** base.scss **/
/** ---------------- Basic Elements ------- **/
body {
  background-color: white;
}

/** ---------------- Buttons ------- **/
.btn-full {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}

.btn {
  border-radius: 0;
  color: white;
  background-color: #b9004d;
  border-color: #b9004d;
}

.btn:hover, .btn:active, .btn:focus {
  color: white;
  background-color: #82818a;
  border-color: #82818a;
  border: 1px solid;
}

.btn-default {
  /*&:hover, &:active, &:focus {
    border: 1px solid;
  }*/
}

.btn-primary {
  /*&:hover, &:active, &:focus {
    border: 1px solid;
  }*/
}

a.btn-primary i {
  color: white !important;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  border: none;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: white;
  background-color: #666;
  border-color: #666;
}

.far {
  color: white;
}

.btn-delete:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: "\f2ed";
  color: white;
  margin-right: 10px;
}

.btn-move:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0aa";
  color: white;
  margin-right: 10px;
}

.btn-arrow-prev:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f137";
  color: white;
  margin-right: 10px;
}

.btn-arrow-release:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f058";
  color: white;
  margin-left: 10px;
}

.btn-arrow-next:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f138";
  color: white;
  margin-left: 10px;
}

.btn-arrow-save:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0c7";
  color: white;
  margin-left: 10px;
}

.btn-arrow-new:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
  color: white;
  margin-left: 10px;
}

a.btn-arrow-new {
  color: white !important;
}

label.label-primary {
  margin-right: 10px;
  margin-bottom: 5px;
  margin-top: 0px;
}

.container {
  height: 100%;
}

.pages.only-mobile .container {
  margin-top: 1em;
  height: 100%;
}

.login_screen .container {
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  background-image: url(../img/login_background_image.jpg);
  background-repeat: no-repeat, repeat;
  background-position: center;
  background-size: cover;
}

.login_screen .container .row {
  height: 100%;
}

.login_screen .container .row .drop-shadow {
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
  background-color: rgba(227, 227, 227, 0.8);
  padding-bottom: 1em;
  text-align: center;
  margin: auto 0;
  padding-left: 3em;
  padding-right: 3em;
}

.login_screen .container .row .drop-shadow .widget.widget-text label {
  margin-bottom: 0.5em;
}

.login_screen .container .row .drop-shadow .widget.widget-password label {
  margin-bottom: 0.5em;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.separator {
  width: 100%;
  border-bottom: 1px solid #60636a;
  text-align: center;
  height: 18px;
  margin-bottom: 15px;
}

.separator span {
  line-height: 15px;
  padding: 0 10px;
  background: #DDDDDD;
  /* Farbe des Elements darunter */
  display: inline-block;
  margin-top: 10px;
}

/** Download Elements - downloads **/
.download-element {
  margin-top: 1em;
  margin-left: 0;
  margin-bottom: 1em;
  list-style: none;
}

.theme-color {
  color: #b9004d;
}

.theme-color2 {
  color: #82818a;
}

.theme-color3 {
  color: #4c4b53;
}

.theme-color4 {
  color: #444;
}

/*-----------------------------------------------------------------------------------
	base_helpers.scss
-----------------------------------------------------------------------------------*/
.text-black {
  color: black;
}

/*-----------------------------------------------------------------------------------
	base_typography.scss
-----------------------------------------------------------------------------------*/
dl, dt, dd, ol, ul, li {
  margin: 0;
  padding: 0;
}

.clear {
  clear: both;
  display: block;
  font-size: 0px;
  height: 0px;
  line-height: 0;
  width: 100%;
  overflow: hidden;
}

::-moz-selection {
  background: #b9004d;
  color: #FFF;
  text-shadow: none;
}

::selection {
  background: #b9004d;
  color: #FFF;
  text-shadow: none;
}

::-moz-selection {
  background: #b9004d;
  /* Firefox */
  color: #FFF;
  text-shadow: none;
}

::-webkit-selection {
  background: #b9004d;
  /* Safari */
  color: #FFF;
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

/* ----------------------------------------------------------------
	Typography
-----------------------------------------------------------------*/
body {
  line-height: 1.5;
  color: #000;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none !important;
  color: #4c4b53;
}

a:hover {
  color: #82818a;
}

a img {
  border: none;
}

img {
  max-width: 100%;
}

iframe {
  border: none !important;
}

/* ----------------------------------------------------------------
	Basic Layout Styles
-----------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #b9004d;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
}

h5,
h6 {
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 12px;
}

h4 {
  font-weight: 600;
}

h5,
h6 {
  font-weight: bold;
}

h1 > span:not(.nocolor),
h2 > span:not(.nocolor),
h3 > span:not(.nocolor),
h4 > span:not(.nocolor),
h5 > span:not(.nocolor),
h6 > span:not(.nocolor) {
  color: #b9004d;
}

p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset,
form {
  margin-bottom: 30px;
}

p {
  color: #4c4b53;
}

small {
  font-family: "Open Sans", sans-serif;
}

#wrapper {
  position: relative;
  float: none;
  width: 1220px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*#content-wrapper {
  background-color: $theme-color-body-grey;
}*/
/**
 * GUI V3 for Contao Open Source CMS
 *
 * Copyright (C) 2018 HELITCO GmbH
 *
 * @license    commercial
 * @author     Jürgen Helfer
 */
header {
  background-color: white;
  border-bottom: 3px ridge #ccc;
}

header > .container {
  padding-top: 15px;
}

.logo img {
  height: 5rem;
}

.header-left {
  margin-top: 1em;
  padding-left: 0;
  width: 75%;
  color: black;
}

.header-right {
  margin-top: 1em;
  width: 25%;
}

.header-right .login-link a.nav-link {
  color: #4c4b53;
}

.header-right .login-link a.nav-link:hover {
  color: #b9004d;
}

.login-link {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding-right: 0;
}

.login-link a {
  padding-right: 0;
}

/** --------- Navigation --------- **/
.nav {
  float: left;
}

.nav .mod_navigation li a {
  color: #4c4b53;
}

.nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  display: block;
}

.nav li.active {
  color: #b9004d;
}

.nav--main ul .level_1 li {
  display: inline-block;
  background: white;
  margin-right: 0;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
}

.nav--main ul .level_1 li a {
  text-decoration: none;
}

.nav--main ul .level_1 li a:hover {
  color: #b9004d;
}

.nav--main ul .submenu:hover .level_2 {
  max-height: 100%;
  padding: 0;
  background: white;
  border: 1px solid #ccc;
}

.nav--main ul .level_2 {
  position: absolute;
  z-index: 1001;
  left: auto;
  max-height: 0;
}

.nav--main ul .level_2 li {
  display: block;
  padding: 1em;
  border-bottom-width: 0.5px;
  border-bottom-style: solid;
  border-color: #4c4b53;
}

.nav.nav--main li.submenu.sibling a.submenu.sibling:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: " \25BE";
  color: #4c4b53;
  margin-right: 10px;
}

footer {
  background: #4c4b53;
  letter-spacing: .08em;
  padding: 20px 0 40px;
  color: #fff;
  bottom: 0;
  width: 100%;
}

footer .section.clearfix {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

footer nav.mod_customnav.block ul.level_1 li.active {
  color: white;
}

footer nav.mod_customnav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

footer nav.mod_customnav ul li {
  display: inline-block;
}

footer nav.mod_customnav ul li a, footer nav.mod_customnav ul li span {
  color: white;
  font-size: 0.8em;
  font-weight: 400;
  text-transform: initial;
}

footer nav.mod_customnav ul li a:hover, footer nav.mod_customnav ul li span:hover {
  color: #82818a;
  text-decoration: underline;
}

footer nav.mod_customnav ul li:after {
  color: white;
  content: '|';
  margin-left: 5px;
  margin-right: 2px;
}

footer nav.mod_customnav ul li:last-child:after {
  content: '';
}

/* Elements */
.container.content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.img-force {
  width: 100% !important;
}

.ce_text {
  margin-top: 15px;
  margin-bottom: 20px;
}

.ce_text ul li {
  margin-left: 30px;
  list-style-type: square;
  color: #4c4b53;
}

.pages .card {
  border: none;
}

.pages .card .card-header {
  background-color: #b9004d;
  color: #000;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  border-bottom: 0;
  padding: 10px 15px;
  font-family: "Roboto", sans-serif;
}

.pages .login-card {
  position: absolute;
  right: 10%;
  top: 10%;
  min-width: 200px;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  min-height: 100px;
  border-color: #ddd;
  background-color: #f2f2f2;
}

.pages .login-card .card .card-body {
  background-color: #f2f2f2;
  margin-bottom: 0;
}

.pages .login-card .card-header {
  position: relative;
  background-color: #b9004d;
  color: black;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  text-transform: none !important;
  padding: 10px 15px;
}

.pages .login-card .card-header:first-child {
  border-radius: 0;
}

.pages .login-card .card-header > a {
  color: black;
  position: absolute;
  right: 1rem;
  cursor: pointer;
}

.pages .login-card .form-control {
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
}

.pages .accordion-list .card-header {
  background-color: #1687AF;
  border-radius: 3px;
  margin-bottom: 2px;
}

.pages .accordion-list .btn-link {
  color: white;
  font-family: "Open Sans", sans-serif;
}

.pages .accordion-list .card-body {
  padding-left: 2em;
}

.pages .mod_registration {
  color: #4c4b53;
}

.pages .mod_registration .widget-captcha .invisible {
  display: none;
}

.pages .mod_registration .form-check .invisible {
  display: none;
}

.pages .mod_registration .form-check legend {
  font-size: 16px;
}

.pages .mod_registration .form-check legend a {
  color: #4c4b53;
  font-weight: bold;
}

.pages .mod_registration .col_0 {
  display: none;
}

.pages .mod_registration input[type=submit] {
  background-color: #b9004d;
  border: none;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  margin: 0;
  cursor: pointer;
}

.pages .mod_registration input[type=submit]:hover {
  background-color: #82818a;
  border-style: solid;
  border-color: white;
  border-width: 1px;
}

.form-check label#lbl_doRelease_0.form-check-label {
  color: #4c4b53;
}

.invisible {
  visibility: hidden !important;
  display: none;
}

#form_contact {
  color: #4c4b53;
}

#form_contact .select {
  color: #4c4b53;
}

#form_contact legend.form_contact_noted {
  font-size: inherit;
  margin-top: 1em;
}

.mod_faqlist ul {
  list-style: none;
}

.carousel .carousel-control-next, .carousel .carousel-control-next {
  display: none;
}

.carousel .inner-area {
  position: relative;
}

.carousel .carousel-content-inner {
  position: absolute;
  top: 60%;
  left: 10%;
}

.carousel .teaser-headline, .carousel .teaser-subline {
  margin: 0;
  font-weight: 400;
  font-size: 2.5em;
  letter-spacing: -1px;
  line-height: 1.5;
}

.carousel .teaser-headline > span, .carousel .teaser-subline > span {
  background-color: rgba(255, 255, 255, 0);
  padding: 0.5rem;
}

.carousel .teaser-headline > span > span, .carousel .teaser-subline > span > span {
  color: #82818a;
}

.carousel .teaser-subline {
  margin-top: 1.6rem;
  font-size: 1.5em;
  line-height: 1.6;
}

.carousel .teaser-subline > span {
  padding: 0.7rem;
}

@media (max-width: 576px) {
  .carousel .carousel-content-inner .teaser-headline {
    font-size: 1em;
  }
  .carousel .carousel-content-inner .teaser-subline {
    font-size: 0.7em;
    line-height: 2.6em;
  }
}

@media (max-width: 768px) {
  .container {
    height: auto;
  }
  .pages .login-card {
    position: relative !important;
  }
  #footer {
    position: relative !important;
  }
  .sidebar.navbar-nav {
    display: block;
    position: absolute;
    z-index: 100;
    overflow: hidden;
    left: 1em;
    top: 3em;
    height: 0;
    padding: 0;
  }
  .sidebar.navbar-nav.toggled {
    height: inherit !important;
    background: #dddddd;
  }
  .sidebar.navbar-nav li {
    padding: 0 1em;
    border-bottom: 1px solid white;
  }
  .sidebar.navbar-nav li:hover {
    background: #f2f2f2;
  }
  .dashboard .mod_guiV3_sendDocument ol.steps, .dashboard .mod_guiV3_sendInfopost ol.steps {
    margin-top: 3em;
  }
  #sidebarToggle {
    display: block !important;
    z-index: 9999;
    width: 100% !important;
    background: #f2f2f2;
    text-align: left;
  }
  #sidebarToggle i {
    font-size: 18px;
  }
  .container-fluid {
    padding-top: 20px;
  }
  .d360-tbl-pl {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*
    Label the data
    */
  }
  .d360-tbl-pl table, .d360-tbl-pl thead, .d360-tbl-pl tbody, .d360-tbl-pl th, .d360-tbl-pl td, .d360-tbl-pl tr {
    display: block;
  }
  .d360-tbl-pl thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .d360-tbl-pl tr {
    border: 1px solid #ccc;
  }
  .d360-tbl-pl td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  .d360-tbl-pl td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  .d360-tbl-pl td:nth-of-type(1):before {
    content: "Standardbrief Inland";
  }
  .d360-tbl-pl td:nth-of-type(2):before {
    content: "Druckseiten";
  }
  .d360-tbl-pl td:nth-of-type(3):before {
    content: "Vorderseite";
  }
  .d360-tbl-pl td:nth-of-type(4):before {
    content: "Rückseite";
  }
  .d360-tbl-pl td:nth-of-type(5):before {
    content: "netto";
  }
  .d360-tbl-pl td:nth-of-type(6):before {
    content: "19% USt.";
  }
  .d360-tbl-pl td:nth-of-type(7):before {
    content: "brutto";
  }
  .d360-tbl-pl-2 {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*
    Label the data
    */
  }
  .d360-tbl-pl-2 table, .d360-tbl-pl-2 thead, .d360-tbl-pl-2 tbody, .d360-tbl-pl-2 th, .d360-tbl-pl-2 td, .d360-tbl-pl-2 tr {
    display: block;
  }
  .d360-tbl-pl-2 thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .d360-tbl-pl-2 tr {
    border: 1px solid #ccc;
  }
  .d360-tbl-pl-2 td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  .d360-tbl-pl-2 td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  .d360-tbl-pl-2 td:nth-of-type(1):before {
    content: "Jede weitere Druckseite";
  }
  .d360-tbl-pl-2 td:nth-of-type(2):before {
    content: "Druckseiten";
  }
  .d360-tbl-pl-2 td:nth-of-type(3):before {
    content: "Vorderseite";
  }
  .d360-tbl-pl-2 td:nth-of-type(4):before {
    content: "Rückseite";
  }
  .d360-tbl-pl-2 td:nth-of-type(5):before {
    content: "netto";
  }
  .d360-tbl-pl-2 td:nth-of-type(6):before {
    content: "19% USt.";
  }
  .d360-tbl-pl-2 td:nth-of-type(7):before {
    content: "brutto";
  }
  .d360-tbl-pl-3 {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
    /*
    Label the data
    */
  }
  .d360-tbl-pl-3 table, .d360-tbl-pl-3 thead, .d360-tbl-pl-3 tbody, .d360-tbl-pl-3 th, .d360-tbl-pl-3 td, .d360-tbl-pl-3 tr {
    display: block;
  }
  .d360-tbl-pl-3 thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .d360-tbl-pl-3 tr {
    border: 1px solid #ccc;
  }
  .d360-tbl-pl-3 td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  .d360-tbl-pl-3 td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  .d360-tbl-pl-3 td:nth-of-type(1):before {
    content: "";
  }
  .d360-tbl-pl-3 td:nth-of-type(2):before {
    content: "Drucklayout";
  }
  .d360-tbl-pl-3 td:nth-of-type(3):before {
    content: "Vorderseite";
  }
  .d360-tbl-pl-3 td:nth-of-type(4):before {
    content: "Rückseite";
  }
  .d360-tbl-pl-3 td:nth-of-type(5):before {
    content: "DIN C6/5";
  }
  .d360-tbl-pl-3 td:nth-of-type(6):before {
    content: "DIN C6/5";
  }
  .d360-tbl-pl-3 td:nth-of-type(7):before {
    content: "DIN C4";
  }
}

@media (max-width: 991px) {
  #footer {
    position: relative !important;
  }
  .dashboard .mod_guiV3_sendDocument ol.steps, .dashboard .mod_guiV3_sendInfopost ol.steps {
    display: block;
  }
  .dashboard .mod_guiV3_sendDocument ol.steps li, .dashboard .mod_guiV3_sendInfopost ol.steps li {
    -webkit-box-flex: revert;
    -ms-flex-positive: revert;
    flex-grow: revert;
    margin-bottom: 3px;
  }
  /*.navbar.navbar-main .only-mobile {
    display: inline-block;
  }*/
  .login-card {
    display: none;
  }
  .header-left {
    width: 100%;
    min-height: 70px;
  }
  .header-left .logo {
    position: absolute;
    margin-left: 50px;
  }
}

@media (max-width: 932px) {
  .dashboard .widget.form-select-action {
    display: block !important;
  }
  .dashboard .widget.form-select-action .item {
    -webkit-box-flex: revert !important;
    -ms-flex-positive: revert !important;
    flex-grow: revert !important;
    margin-bottom: 5px;
  }
  .dashboard .widget.form-select-action .item button {
    width: 100% !important;
  }
  .dashboard .widget.form-select-action .item.right {
    text-align: left !important;
  }
}

html {
  height: 100%;
}

body {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/*-----------------------------------------------------------------------------------
	dashboard.scss
-----------------------------------------------------------------------------------*/
#wrapper {
  background-color: #eee;
  height: 100%;
}

/*#content-wrapper {
  background-color: $theme-color-body-grey
}*/
#sidebarToggle {
  position: absolute;
  left: 1em;
}

.dashboard {
  card-display: block;
  /** --------------- Dashboard Checkout Steps ---------- **/
  /** --------------- Dashboard Card --------------- **/
  /* ---- Freigabe & Bezahlung -----*/
  /** --------- listJobsinProcess -------------------*/
  /** --------------- Single Fineuploader --------- **/
  /** --------------- Job List as Form--------- **/
  /** --------------- Archive List -------- **/
  /** --------------- Printer Dialog ---------- **/
  /** ----------------Review Form ------------- **/
  /** --------------- Job List Data-Tables--------- **/
  /** --------------- Infopost Files List --------- **/
  /** ---------------- General styles ------- **/
  /** --------------- Review Box ----------- **/
  /** ---------------- Payment Provider Steps ----- **/
  /** ---------------- Card with Box Shadow --------- **/
  /** ---------------- ServiceNavigation Dashboard --------- **/
  /** ---------------- Data Tables --------- **/
  /** ---------------- Responsive --------- **/
}

.dashboard .footer-dashboard {
  padding: 0;
}

.dashboard .footer-dashboard .mod_customnav {
  padding-left: 2rem;
}

.dashboard .footer-dashboard .col-lg-8 {
  margin-left: auto;
  margin-right: auto;
}

.dashboard a {
  color: #4c4b53;
}

.dashboard a:hover {
  color: #82818a;
  text-decoration: underline;
}

.dashboard .navbar {
  border-bottom: 1px solid #ccc;
}

.dashboard .navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.dashboard .navbar-brand > img {
  height: 50px;
}

.dashboard .card .card-header {
  background-color: #b9004d;
}

.dashboard .card .card-header h3 {
  margin-bottom: 0;
  font-size: 1em;
  color: #000;
}

.dashboard .card .card-body {
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.dashboard .card .card-body a {
  background-color: #1687AF;
  color: white;
  font-weight: 300;
  font-size: 1em;
  border: 0;
}

.dashboard .card .card-body a:hover {
  background-color: #8ac3d7;
  border: 0;
}

.dashboard .card .card-body .card-bottom {
  margin-top: auto;
}

.dashboard .card-d.customer-home-right .card-body {
  padding: 0;
  margin-bottom: 2em;
}

.dashboard .card-d.customer-home-right .card-bottom > a {
  color: white !important;
  display: inline;
  padding: 0.5em 1.75em;
}

.dashboard ol.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  overflow: hidden;
  padding: .25rem 0;
  margin-bottom: 1rem;
  /*background-color: $theme-color-grey-light;*/
  border-radius: .25rem;
}

.dashboard ol.steps li {
  padding: 0.5em 1em;
  margin-right: 0.25em;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  background: #b9004d;
  color: #ffffff;
}

.dashboard ol.steps li.active {
  background: #dddddd;
  color: #82818a;
}

.dashboard ol.steps li.step-item.active a {
  color: #82818a;
}

.dashboard ol.steps li.step-item a {
  color: #ffffff;
}

.dashboard ol.steps li div {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

.dashboard .card-d {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: white;
  background-clip: border-box;
  padding: 1em 1.5em;
}

.dashboard .card-d > h1 {
  background: #dddddd;
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  padding: 0 0.5em;
}

.dashboard .card-d .card-d-header {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #4c4b53;
  margin-bottom: 1em;
  background: #dddddd;
  font-size: 20px;
  text-transform: uppercase;
  padding: 0 0.5em;
}

.dashboard .card-d-body {
  color: #4c4b53;
}

.dashboard .card-d.mb-3 .jobList.listJobsinProcess table.table thead tr th {
  color: #4c4b53;
  border-top-width: 0;
  background: white;
  font-weight: bold;
}

.dashboard .card-d.mb-3 .jobList.listJobsinProcess table.table tbody tr th {
  color: #4c4b53;
  background: white;
  font-weight: bold;
}

.dashboard .card-d.mb-3 .listJobsinProcess table.table tbody tr td {
  color: #4c4b53;
  background: white;
  font-weight: bold;
}

.dashboard .hasteform_singleFineuploader .submit_container {
  padding-top: 1em;
  text-align: center;
}

.dashboard .hasteform_singleFineuploader .submit_container .submit {
  background-color: #b9004d;
  color: white;
  width: 50%;
  margin: 0 auto;
  border: 0;
}

.dashboard .hasteform_singleFineuploader .submit_container .submit:hover {
  background-color: #82818a;
  border: 0;
}

.dashboard div.hasteform_singleFineuploader.tableless.block form#singleFineuploader div.formbody div.widget.widget-submit button#ctrl_submit.submit {
  display: none;
}

.dashboard .widget-fineuploader {
  color: #4c4b53;
  background: white;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  padding: 1em;
}

.dashboard .widget-fineuploader .qq-upload-button, .dashboard .widget-fineuploader .submit {
  background-color: #b9004d;
  color: white;
  width: 50%;
  margin: 0 auto;
}

.dashboard .widget-fineuploader .qq-upload-button:hover, .dashboard .widget-fineuploader .submit:hover {
  background-color: #82818a;
  border: 1px solid;
}

.dashboard .widget-fineuploader .widget.widget-submit {
  margin-top: 0.5rem;
}

.dashboard .widget-fineuploader label.select_files {
  width: 50%;
  margin: 0 auto;
  display: block !important;
  text-align: center;
  font-size: 12px;
}

.dashboard .widget-fineuploader label.select_files > i {
  display: block;
  font-size: 48px;
  color: #ccc;
}

.dashboard .hasteform_unprocessedJobs td a i.fas.fa-search {
  padding: 0.2em;
  margin-right: 0.2em;
  color: #4c4b53;
}

.dashboard .hasteform_unprocessedJobs td.col_upload, .dashboard .hasteform_unprocessedJobs th.col_upload {
  display: none;
}

.dashboard .archiveList tbody td a i.fas.fa-search {
  padding: 0.2em;
  margin-right: 0.3em;
  color: #4c4b53;
}

.dashboard .archiveList td > a {
  margin-right: 0.2em;
}

.dashboard .archiveList td > a i {
  padding: 0.2em;
}

.dashboard .archiveList .hoverBox {
  display: none;
}

.dashboard .archiveList .hoverBox table {
  margin: 0;
}

.dashboard .archiveList .hoverBox.show {
  display: block;
  position: absolute;
  background-color: #FFFFFF;
  border: 1px solid grey;
  margin: 1px;
}

.dashboard .archiveList .pparam-set-id a {
  font-weight: bold;
  cursor: pointer;
}

.dashboard .no-show {
  padding: 0.2em;
  margin-right: 0.5em;
  color: #ccc;
}

.dashboard .hasteform_printDeliveryDialog {
  color: #4c4b53;
}

.dashboard .hasteform_printDeliveryDialog .form-control {
  color: #4c4b53;
}

.dashboard .hasteform_printDeliveryDialog .givenSet {
  margin-bottom: 4em;
}

.dashboard .hasteform_printDeliveryDialog .givenSet label {
  background: #f2f2f2;
  font-weight: 700;
}

.dashboard .hasteform_paymentprocess .form-select-action {
  margin-top: 1em;
}

.dashboard .hasteform_paymentprocess .widget-checkbox {
  margin-top: 1em;
  text-align: right;
  border: 1px solid #ccc;
  padding: 1em;
}

.dashboard .hasteform_paymentprocess .frameinject {
  height: 4em;
  margin-bottom: 1em;
  margin-top: 1em;
}

.dashboard .hasteform_paymentprocess .frameinject.form-group .form-control {
  padding: 0;
  border: 0px;
}

.dashboard .hasteform_paymentprocess .origin.form-group .form-control {
  border-radius: 0px;
}

.dashboard .hasteform_paymentprocess .form-group.submit {
  margin-top: 2em;
  margin-bottom: 1em;
}

.dashboard .jobList .table {
  font-size: 0.75em;
}

.dashboard .jobList .table thead tr th {
  background-color: #b9004d;
  text-transform: uppercase;
  border-bottom-width: 0px;
}

.dashboard .jobList .table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.dashboard .dataTables_wrapper {
  color: #4c4b53;
}

.dashboard .hasteform_checkInfopostDialog ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.dashboard .hasteform_checkInfopostDialog li {
  border-bottom: 1px dotted #dddddd;
}

.dashboard .hasteform_checkInfopostDialog i {
  padding: 0.2em;
  margin-right: 5px;
}

.dashboard .hasteform_checkInfopostDialog .frameCheckInfopostFiles {
  width: 100%;
  padding: 1em;
  border: 1px solid #ccc;
  height: 300px;
  overflow: scroll;
}

.dashboard .hasteform_checkInfopostDialog .frameCheckInfopostFiles ul li a {
  color: #4c4b53;
}

.dashboard .widget.form-select-action {
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dashboard .widget.form-select-action .item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.dashboard .widget.form-select-action .item.right {
  text-align: right;
}

.dashboard .bottommargin-xl {
  margin-bottom: 3em;
}

.dashboard .topmargin-xl {
  margin-top: 3em;
}

.dashboard .form-group.unvisible {
  display: none;
}

.dashboard .wait {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9998;
  overflow: hidden;
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
}

.dashboard .wait .message {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  background: white;
}

.dashboard .wait .icon-wrapper, .dashboard .wait .content-wrapper {
  padding: 1em;
}

.dashboard .wait .content-wrapper {
  background-color: #b9004d;
  color: #ffffff !important;
  text-transform: uppercase;
  font-weight: 700;
}

.dashboard .wait i {
  font-size: 3em;
}

.dashboard .review-box > div {
  border: 1px solid #ccc;
}

.dashboard .review-box h4 {
  margin-bottom: 1em;
}

.dashboard .review-box > div > .row > div {
  padding: 0.5em 1em;
}

.dashboard .review-box > div > .row > div i {
  font-size: 2em;
}

.dashboard .review-box ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.dashboard .review-box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0.25em;
}

.dashboard .review-box li span {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}

.dashboard .review-box li.total {
  background: #f2f2f2;
  font-weight: 700;
  border-top: 1px solid #dddddd;
}

.dashboard .card-deck .card {
  background: none;
}

.dashboard .card-deck .card-header {
  border-bottom-width: 0px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dashboard .card-deck .card-body {
  background: white;
}

.dashboard .sidebar.navbar-nav li.nav-item a.nav-link {
  color: #4c4b53;
}

.dashboard #sidebarToggle {
  display: none;
}

.dashboard .page-item.active .page-link {
  background-color: #b9004d;
  border-color: #b9004d;
  color: white;
}

.dashboard .page-item.active .page-link:hover {
  background-color: #82818a;
  border-color: #82818a;
  border: 1px solid;
}

@media (min-width: 768px) {
  .dashboard .sidebar {
    margin-top: 2rem;
    width: 240px !important;
    margin-left: 3px;
    margin-right: 3px;
  }
  .dashboard .sidebar a {
    color: #000;
  }
  .dashboard .sidebar .nav-item .nav-link {
    display: block;
    text-align: left;
    padding: 0.5rem 1rem;
    width: 240px;
    border-bottom: 1px solid #ccc;
  }
  .dashboard .sidebar .nav-item .nav-link span {
    font-size: 1rem;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    display: inline;
  }
  .dashboard .sidebar .nav-item .dropdown-menu {
    position: static !important;
    margin: 0 1rem;
    top: 0;
  }
  .dashboard .sidebar .nav-item.dropdown .dropdown-toggle::after {
    display: block;
  }
  .dashboard .sidebar .nav-item.active > a > span {
    border-bottom: 3px solid #b9004d;
    padding-bottom: 2px;
  }
  .dashboard .sidebar.toggled {
    overflow: visible;
    width: 90px !important;
  }
  .dashboard .sidebar.toggled .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .dashboard .sidebar.toggled .nav-item .nav-link {
    text-align: center;
    padding: 0.75rem 1rem;
    width: 90px;
  }
  .dashboard .sidebar.toggled .nav-item .nav-link span {
    font-size: 0.65rem;
    display: block;
  }
  .dashboard .sidebar.toggled .nav-item .dropdown-menu {
    position: absolute !important;
    -webkit-transform: none !important;
    transform: none !important;
    left: calc(90px + 0.5rem) !important;
    margin: 0;
  }
  .dashboard .sidebar.toggled .nav-item .dropdown-menu.dropup {
    bottom: 0;
    top: auto !important;
  }
  .dashboard .sidebar.toggled .nav-item.dropdown .dropdown-toggle::after {
    display: none;
  }
}

.dashboard .sidebar.fixed-top {
  top: 56px;
  height: calc(100vh - 56px);
  overflow-y: auto;
}

.dashboard > #wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: inherit;
}

.dashboard #wrapper #content-wrapper {
  overflow-x: hidden;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 80px;
  background-color: white;
}

.dashboard footer.sticky-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 90px);
  height: 80px;
  background-color: #ccc;
}

.dashboard footer.sticky-footer .copyright {
  line-height: 1;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .dashboard footer.sticky-footer {
    width: calc(100% - 240px);
  }
}

.dashboard .standardview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dashboard .standardview .left {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding-left: 1rem;
}

.dashboard .standardview .right {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding-left: 1rem;
}

.dashboard .standardview .preview-area {
  width: 100%;
}

.dashboard .document-list {
  padding: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dashboard .document-list .left {
  width: 600px;
}

.dashboard .document-list .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dashboard .document-list .fitem {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.dashboard .document-list .see-pdf {
  width: 100%;
}

body.sidebar-toggled footer.sticky-footer {
  width: 100%;
}

@media (min-width: 768px) {
  body.sidebar-toggled footer.sticky-footer {
    width: calc(100% - 90px);
  }
}

div#accordion.accordion-list .card .card-header {
  background-color: #4c4b53;
}

div#accordion.accordion-list .card .card-header .btn-link {
  color: white;
}

#showElement2,
#showElement3 {
  display: block;
  border-left-width: 1px;
  border-left-style: solid;
  border-color: #d2d2d2;
}

.minHeightPreText {
  min-height: auto;
}

#wrapper {
  min-height: calc(100vh - 190px);
}

.even {
  background-color: white;
}

.jobError {
  background-color: #f8d7da;
}

/** d360_custom **/
.d360-backGrColor-custom1 {
  background-color: #82818a;
  color: white;
}

.d360-backGrColor-custom1 h1, .d360-backGrColor-custom1 h2, .d360-backGrColor-custom1 h3, .d360-backGrColor-custom1 h4, .d360-backGrColor-custom1 h5, .d360-backGrColor-custom1 h6 {
  color: white;
}

.d360-backGrColor-custom2 {
  background-color: #eee;
  color: #4c4b53;
}

.d360-backGrColor-white {
  background-color: white;
}

.d360-maxWidth-custom1 {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

.d360-vertical-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/** Typography **/
.d360-paragraph {
  color: #b9004d;
  font-weight: 500;
  line-height: 1.5;
  margin: 30px 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  width: 100px;
}

.d360-h1 h1 {
  margin-top: 0;
  overflow: hidden;
  text-transform: uppercase;
  background-color: #b9004d;
  color: white;
  padding: 0.75em;
  font-size: 1.375em;
}

.d360-lm38 {
  margin-left: 38px;
}

.d360-th {
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-color: #82818a;
  color: #4c4b53;
}

.d360-tr {
  color: #4c4b53;
}

.d360-tb-width {
  width: 100%;
}

.d360-th-col1 {
  width: 31%;
}

.d360-th-col2 {
  width: 13%;
}

.d360-th-col3 {
  width: 13%;
}

.d360-th-col4 {
  width: 13%;
}

.d360-th-col5 {
  width: 10%;
}

.d360-th-col6 {
  width: 10%;
}

.d360-th-col7 {
  width: 10%;
}

.roi-header {
  border-bottom-style: ridge;
  border-width: 3px;
  border-color: lightgrey;
  background-color: #b5215f;
  color: white;
}

/*
Text Formatting
 */
.plusLabel {
  height: 100px;
  margin-bottom: -23px !important;
}

.noLabel {
  height: 50px;
}

.left-content {
  margin-right: 0;
  margin-left: 0;
}

.right-content {
  margin-right: 0;
  margin-left: 0;
}

.left-content-lower {
  height: 200px;
  margin: 0;
}

.labelFormat {
  font-weight: bold;
}

.marginBottom {
  margin-bottom: 20px;
}

.MoreLineSpace {
  height: 2em;
}

.formStyleDPAG {
  border-width: 4px;
  border-style: solid;
  border-radius: 8px;
  border-color: #F7C601;
  background-color: lightgrey;
}

.formStyleD360 {
  border-width: 4px;
  border-style: solid;
  border-radius: 8px;
  border-color: #b5215f;
  background-color: lightgrey;
}

.formStyleSavings {
  border-width: 4px;
  border-style: solid;
  border-radius: 8px;
  border-color: green;
  background-color: lightgrey;
}

/**
Typographie
*/
p {
  margin-bottom: 0;
}

p.tabHeader {
  font-size: large;
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 0;
}

p.bold2 {
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 0;
}

.big {
  font-size: xxx-large;
  font-weight: bold;
  margin-bottom: 0;
  padding-left: 0;
}

.fnt-bold {
  font-weight: bold;
}

.h1 {
  font-size: 2.5rem;
}

.h2 {
  font-size: 1.8rem;
}

.fntSmall {
  font-size: 0.7rem;
}

.fnt-color-green {
  color: green;
}

/*
Button
 */
.btn-big {
  height: 80px;
}

section#idPage2 {
  display: none;
}

section#idPage3 {
  display: none;
}

section#idPage4 {
  display: none;
}

.page2 {
  padding: 30px 0 30px 0;
  background-color: #dbdfe5;
}

.page4 {
  padding: 15px 0 15px 0;
  background-color: lightgrey;
}

/*
Tabelle
 */
table {
  width: 95%;
}

.tg {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px;
}

.txt-right {
  text-align: right;
  padding-right: 5em;
}

.tg td {
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 2px 5px;
  border-bottom-style: solid;
  border-width: 1px;
  border-color: #D3D3D3;
  overflow: hidden;
  word-break: normal;
}

.tg th {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  padding: 2px 5px;
  border-style: solid;
  border-width: 0;
  overflow: hidden;
  word-break: normal;
}

.shading1 {
  background-color: #b4bac0;
}

.shading2 {
  background-color: lightgrey;
}

/*.row {
    margin: 0;
}
.col-12 {
    padding: 0;
}
.col-8 {
    padding: 0;
}
.col-5 {
    padding: 0;
}
.col-4 {
    padding: 0;
}
.col-2 {
    padding: 0;
}*/
.roi-container-fluid {
  padding: 0;
}

.imgStyle {
  padding: 15px;
}

/**
Background of canvas bar chart
 */
.barChart {
  border-top-style: ridge;
  border-color: lightgrey;
  border-width: 3px;
  margin-top: 30px !important;
  background-color: blue;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d3d3d3), to(#B4BAC0));
  background-image: linear-gradient(#d3d3d3, #B4BAC0);
  /*margin: auto;*/
  position: relative;
  height: 100%;
  width: 100%;
}

/*footer {
    display: none;
}*/
.switchExpert ul {
  color: #4c4b53;
  margin-bottom: 15px;
}

.switchExpert ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.material-switch > input[type="checkbox"] {
  display: none;
}

.material-switch > label {
  cursor: pointer;
  height: 0px;
  position: relative;
  width: 40px;
}

.material-switch > label::before {
  background: black;
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  content: '';
  height: 16px;
  margin-top: -8px;
  position: absolute;
  opacity: 0.3;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 40px;
}

.material-switch > label::after {
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  content: '';
  height: 20px;
  left: -4px;
  margin-top: -6px;
  position: absolute;
  top: -4px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 20px;
}

.material-switch > input[type="checkbox"]:checked + label::before {
  background: inherit;
  opacity: 0.5;
}

.material-switch > input[type="checkbox"]:checked + label::after {
  background: inherit;
  left: 20px;
}

.label-primary {
  background-color: #b9004d;
}
