@charset "UTF-8";
:root {
  --primary-color: rgb(54, 102, 167);
  --primary-color-transparent: rgba(54, 102, 167, .2);
  --secondary-color: #3dc2ff;
}

#login {
  background-image: url("../img/login-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
}

#login:after {
  content: "";
  /* display: block; */
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url("");
  background-repeat: no-repeat;
  background-position: 125% 5%;
  position: absolute;
  right: 0;
  bottom: 0;
}

#login .form-alert {
  width: 100%;
  background: #c0392b;
  color: #d99790;
  position: absolute;
  bottom: 0;
  text-align: center;
}

#login ::-webkit-input-placeholder {
  color: #444444;
  font-size: 15px;
}

#login :-ms-input-placeholder {
  color: #444444;
  font-size: 15px;
}

#login ::-ms-input-placeholder {
  color: #444444;
  font-size: 15px;
}

#login ::placeholder {
  color: #444444;
  font-size: 15px;
}

#login:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: .85;
}

#login .inner {
  height: 450px;
  max-width: 480px;
  width: 100%;
  top: 10.92vh;
  left: 9.4vw;
  position: relative;
  z-index: 999;
  padding: 0 5px;
}

@media (max-width: 768px) {
  #login .inner {
    height: 450px;
    max-width: 480px;
    top: 0;
    left: 0;
    position: relative;
    margin: auto;
  }
}

#login .inner #loginform {
  background: #fff;
  background-repeat: no-repeat;
  max-width: 480px;
  height: 260px;
  margin: 0 auto;
  padding: 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 25px -15px #000000b0;
          box-shadow: 0px 0px 25px -15px #000000b0;
}

#login .inner #loginform h3 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 48px;
  font-weight: 600;
  color: #666666;
}

#login .inner #loginform .form-input {
  width: 360px;
  max-width: 95%;
}

#login .inner #loginform .form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 360px;
  max-width: 95%;
  margin-top: 18px;
}

#login .inner #loginform .form-footer #submit {
    width: 100%;
}

#login .inner #loginform .form-footer a.disclaimer {
  font-weight: 600;
  color: #00A4CD;
  text-transform: uppercase;
  padding-left: 25px;
}

#login .inner #loginform .form-footer a.disclaimer:hover {
  outline: none;
  text-decoration: none;
}

#login .inner #loginform .form-footer a.disclaimer:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  top: 2px;
  background: #00A4CD;
}

#login .inner #loginform .form-footer input[type=submit] {
  display: block;
  color: #fff;
  outline: 0px;
  background: var(--secondary-color);
  height: 40px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
}

#logo {
  background: url("/img/iseo-logo.svg");
  background-size: 122px 47px;
  background-repeat: no-repeat;
  background-position: left center;
  height: 47px;
  position: relative;
  width: 100%;
  top: -53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#logolink {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

#logolink span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

#logolink:hover {
  text-decoration: none !important;
}

#loginform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -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;
}

#loginform input[type=text], #loginform input[type=password] {
  border: none;
  background: var(--primary-color-transparent);
  width: 100%;
  height: 50px;
  margin-bottom: 22px;
  padding: 15px 25px;
  outline: none;
  color: #2a2e43;
}

#loginform input[type=text]::-webkit-input-placeholder, #loginform input[type=password]::-webkit-input-placeholder {
  color: #2a2e43;
  opacity: .5;
}

#loginform input[type=text]:-ms-input-placeholder, #loginform input[type=password]:-ms-input-placeholder {
  color: #2a2e43;
  opacity: .5;
}

#loginform input[type=text]::-ms-input-placeholder, #loginform input[type=password]::-ms-input-placeholder {
  color: #2a2e43;
  opacity: .5;
}

#loginform input[type=text]::placeholder, #loginform input[type=password]::placeholder {
  color: #2a2e43;
  opacity: .5;
}

nav {
  height: 70px;
  width: 100%;
  position: fixed !important;
  background: #fff;
  color: #fff !important;
  border-bottom: 1px solid black;
  z-index: 999;
}

nav #selectlang form {
  margin: 0;
}

nav.navbar {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  padding: 0;
}

nav .navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  width: 280px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1rem;
}

nav .navbar-brand .text {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

nav .navbar-brand .image-container {
  background: url("/img/ESYLUX_Logo_pos_RGB.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width: 150px;
  height: 35px;
}

@media (max-width: 1024px) {
  nav .navbar-brand .image-container {
    display: none;
  }
}

nav a {
  color: #fff;
}

nav a:hover {
  color: #fff;
}

nav .dropdown {
  z-index: 999;
}

nav .dropdown a {
  color: #444;
  outline: none;
}

nav .dropdown .dropdown-menu {
  padding: 5px 0 0 0;
  line-height: 30px;
  width: 166px;
  text-align: left;
  border-radius: 0;
}

nav .dropdown .dropdown-menu.show::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  right: 0;
  left: 0;
  top: -10px;
  margin: auto;
}

nav .dropdown .dropdown-menu a {
  text-decoration: none;
}

nav .dropdown .dropdown-menu a:hover {
  background: #e7e7e7;
  color: #444;
}

nav .dropdown .dropdown-menu a:focus {
  background: #e7e7e7;
  color: #444;
}

nav .dropdown .dropdown-menu .dropdown-item:hover {
  background: #0063BE;
  color: #fff;
}

nav .dropdown .dropdown-menu .dropdown-item:focus {
  background: #0063BE;
  color: #fff;
}

nav .dropdown .dropdown-menu .dropdown-item:active {
  background: #0063BE;
  color: #fff;
}

nav .dropdown button {
  outline: none;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #444;
}

nav .dropdown button.focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

nav .dropdown button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

nav select {
  height: 70px;
  background: #4666C2;
  border: none;
  text-align: center;
  outline: none;
  padding: 0 15px;
  color: #fff;
  color: #fff;
  cursor: pointer;
}

nav select option {
  color: #444;
  background: #fff;
  width: auto;
  cursor: pointer;
}

nav .inline-items {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

nav .menutxt {
  padding: 0 2vw;
}

.sidebar {
  width: 280px;
  top: 70px;
  position: fixed;
  z-index: 99999;
  -ms-flex: 0 100px;
  -webkit-box-flex: 0;
  -ms-box-flex: 0;
  box-flex: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  height: 93vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  color: #444;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  overflow: hidden;
  border-right: 1px solid #E7E7E7;
  -webkit-box-shadow: 15px 0 25px -5px black;
          box-shadow: 15px 0 25px -5px black;
  -webkit-box-shadow: 15px 0 25px -5px rgba(0, 0, 0, 0.05);
          box-shadow: 15px 0 25px -5px rgba(0, 0, 0, 0.05);
}

.sidebar .next-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 7vh;
}

.sidebar.small {
  width: 55px;
}

.sidebar .sidebar-toggle {
  display: block;
}

.sidebar.collapsed {
  width: 55px;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
}

.sidebar.collapsed ul {
  margin-left: 15px;
}

.sidebar.collapsed ul a {
  margin-left: -15px;
  padding-left: 15px;
  padding-right: 15px;
  width: auto;
}

.sidebar.collapsed ul a span {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.sidebar.collapsed label {
  display: none;
}

.sidebar.collapsed button {
  width: 55px;
  margin-left: -15px;
  padding: 21px 18px;
}

.sidebar.collapsed {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sidebar ul {
  margin: 0;
  padding: 0;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
}

.sidebar ul label {
  font-size: 15px;
  opacity: .5;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-left: 30px;
}

.sidebar ul button {
  height: auto;
  outline: none;
  border: none;
  width: 280px;
  text-align: right;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  padding: 18px 21px;
}

.sidebar ul button .navbar-toggler-icon {
  background: url("../img/icons/nav_toggle.svg");
  width: 20px;
  height: 15px;
  background-position: center center;
  background-size: contain;
}

.sidebar ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 400;
  color: #444444;
  text-decoration: none;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  width: 100%;
  padding-left: 30px;
}

.sidebar ul a:hover {
  background: #F3F3F3;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  text-decoration: none;
}

.sidebar ul a span {
  opacity: 1;
  visibility: visible;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
}

.sidebar ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 15px 15px;
  cursor: pointer;
  margin-left: -15px;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#toast {
  display: none;
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: #333;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
  /* Show the snackbar when clicking on a button (class added with JavaScript) */
  /* Animations to fade the snackbar in and out */
}

#toast.show {
  display: block;
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
	However, delay the fade out process for 2.5 seconds */
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s forwards;
  animation: fadein 0.5s, fadeout 0.5s 2.5s forwards;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
    height: 0px;
    display: none;
    padding: 0;
    min-height: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
    height: 0px;
    display: none;
    padding: 0;
    min-height: 0;
  }
}

.button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  border: none;
}

.button.green {
  background: #1ABC9C;
  color: #fff;
  border-radius: 4px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 600;
  max-width: 180px;
  margin-left: 15px;
  margin-right: 30px;
}

.button.green.no-margin-left {
  margin-left: 0;
}

.button.green.add {
  position: relative;
  max-width: 120px;
}

.button.green.add:before {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/icons/icon-show-more-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.button.green.save:before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icons/icon-save.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 14px;
  display: block;
  position: relative;
}

.button.grey {
  background: #CCCCCC;
  color: #FFFFFF;
  border-radius: 4px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 600;
  max-width: 180px;
  margin-left: 15px;
  margin-right: 30px;
}

.card {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 40%;
}

.card:hover {
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.container {
  padding: 2px 16px;
}

form.wrapper {
  padding: 20px;
}

form label {
  margin-bottom: 0;
  margin-right: 40px;
  font-weight: 600;
  font-size: 14px;
}

form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

form .form-group.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 0;
  width: 100%;
}

form .custom-checkbox {
  cursor: pointer;
}

form .custom-checkbox input, form .custom-checkbox label {
  cursor: pointer;
}

form .padding-bottom {
  padding-bottom: 30px;
}

form .padding-top {
  padding-top: 30px;
}

form input {
  width: 100%;
  height: 100%;
  max-height: 50px;
  min-height: 50px;
  border-color: #E7E7E7;
  color: #000;
  padding: 15px;
  margin-right: 40px;
  border-style: solid;
}

form .dropdown {
  padding-bottom: 20px;
}

.dropdown {
  font-size: 14px;
}

.dropdown #user_types {
  width: 100%;
  max-width: 278px;
  height: 100%;
  max-height: 50px;
  min-height: 50px;
  color: #fff;
  padding: 15px;
  margin-right: 40px;
  border-style: solid;
  border-radius: 0;
}

.dropdown .dropdown-menu {
  width: 100%;
  max-width: 268px;
  display: block;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  visibility: hidden;
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 5px 5px;
  -webkit-box-shadow: 0px 5px 10px 0px #000000b0;
          box-shadow: 0px 5px 10px 0px #000000b0;
}

.dropdown .dropdown-menu.show {
  opacity: 1;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  visibility: visible;
}

.dropdown li.dropdown-item {
  width: 100%;
  max-width: 278px;
  cursor: pointer;
  padding: .75rem;
  margin: 0;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  height: auto;
  border-radius: 0;
}

.dropdown li.dropdown-item:hover {
  background: #1ABC9C;
}

.dropdown .dropdown-menu {
  font-size: 14px;
}

.dropdown button:not(.dropdown-toggle):after {
  content: "";
  width: 10px;
  height: 6px;
  top: 1.5px;
  background: url(../img/icons/icon-dropdown-arrow-down-grey.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
  margin-right: 0;
  margin-left: auto;
}

.dropdown.w-shadow button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  color: #444444;
  width: 100vw;
  max-width: 243px;
  height: 100vh;
  max-height: 40px;
  border: 1px solid #E7E7E7;
  font-weight: 600;
  text-align-last: center;
  border-radius: 4px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  padding: 0 15px;
  -webkit-box-shadow: 0px 0 10px -2px black;
          box-shadow: 0px 0 10px -2px black;
  -webkit-box-shadow: 0px 0 10px -2px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0 10px -2px rgba(0, 0, 0, 0.16);
}

.dropdown.w-border button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  color: #444444;
  width: 100vw;
  max-width: 243px;
  height: 100vh;
  max-height: 40px;
  border: 1px solid #E7E7E7;
  font-weight: 600;
  text-align-last: center;
  border-radius: 4px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  padding: 0 15px;
}

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

#content .w-padding {
  padding-left: 280px;
  padding-top: 70px;
  -webkit-transition: .25s padding ease;
  transition: .25s padding ease;
}

#content .w-padding.expanded {
  padding-left: 55px;
  padding-top: 70px;
}

#content .bread-crump {
  padding: 0 20px 0 20px;
  position: relative;
}

#content .bread-crump:after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1px;
  position: relative;
  background: #E7E7E7;
  width: 100%;
}

#content .bread-crump h2 {
  padding: 40px 0 0 45px;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}

#content .bread-crump-small {
  padding: 40px 20px 0 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

#content .bread-crump-small:after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1px;
  position: relative;
  background: #E7E7E7;
  width: 100%;
  top: 25.5px;
  margin-bottom: 25.5px;
}

#content .bread-crump-small h2 {
  display: inline-block;
  padding: 0 0 0 0;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

#content .bread-crump-small .save-version {
  width: 114px;
  height: 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  margin-left: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #5B92D3;
}

#content .bread-crump-small .float-right {
  margin-right: 0;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#content .bread-crump-small .float-right .forecast {
  max-width: 169px;
  margin-left: 15px;
  vertical-align: middle;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFA800;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}

#content .bread-crump-small .float-right .table-sum-increase {
  max-width: 380px;
  margin-left: 15px;
  vertical-align: middle;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #E7E7E7;
  border-radius: 5px;
}

#content .bread-crump-small .float-right .table-sum-increase .overall-segment-sum {
  margin-left: 15px;
}

#content .bread-crump-small .float-right .seperator {
  margin-left: 15px;
  margin-right: 15px;
}

#content .bread-crump-small .export-table {
  margin-left: 30px;
}

#content .bread-crump-small .export-table button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  color: #5B92D3;
  width: 114px;
  height: 40px;
  border: 1px solid #E7E7E7;
  font-size: 15px;
  font-weight: 600;
  text-align-last: center;
  border-radius: 4px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

#content .bread-crump-small .export-table button:before {
  content: "";
  width: 12px;
  height: 15px;
  background: url(../img/icons/icon-arrow-down.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-right: 14px;
  padding-left: 16px;
  display: block;
  position: relative;
}

#content .bread-crump-small .export-table button:after {
  content: "";
  width: 10px;
  height: 6px;
  top: 1.5px;
  background: url(../img/icons/icon-dropdown-arrow-down.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-right: 15px;
  padding-left: 6px;
  display: block;
  position: relative;
}

#content .bread-crump-small select {
  margin-left: 20px;
  width: 100px;
  height: 40px;
  color: #fff;
  background: #5B92D3;
  font-size: 15px;
  font-weight: 600;
  text-align-last: center;
  border-radius: 4px;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#content .bread-crump-small select.working-year {
  margin-left: 20px;
  background: #5B92D3;
}

#content .bread-crump-small select option {
  background: #fff;
  color: #2E3B46;
  height: 40px;
  width: 100px;
}

#content .dashboard-card-wrapper {
  padding: 5.21vw 12.89vh;
}

#content .dashboard-card-wrapper.center {
  margin: auto;
}

#content .dashboard-card-wrapper .card {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
}

#content .dashboard-card-wrapper .card-columns {
  -webkit-column-gap: 60px;
          column-gap: 60px;
}

#content .dashboard-card-wrapper .card-columns.center {
  -webkit-column-count: 1;
          column-count: 1;
}

#content .dashboard-card-wrapper .card-columns .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 420px;
  height: 325px;
  margin-bottom: 60px;
  border-radius: 0;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  border: none;
  -webkit-box-shadow: 4px 7px 20px 0px rgba(152, 152, 152, 0.55);
          box-shadow: 4px 7px 20px 0px rgba(152, 152, 152, 0.55);
  -webkit-column-break-inside: avoid;
          break-inside: avoid;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

#content .dashboard-card-wrapper .card-columns .card.center {
  margin: auto;
}

#content .dashboard-card-wrapper .card-columns .card.dash1 {
  background: url("../img/icons/dash1.svg");
  background-size: 470px 350px !important;
}

#content .dashboard-card-wrapper .card-columns .card.dash2 {
  background: url("../img/icons/dash4.svg");
  background-size: 470px 410px !important;
  height: 360px;
}

#content .dashboard-card-wrapper .card-columns .card.dash3 {
  background: url("../img/icons/dash2.svg");
  background-size: 470px 350px !important;
}

#content .dashboard-card-wrapper .card-columns .card.dash4 {
  background: url("../img/icons/dash5.svg");
  background-size: 470px 410px !important;
  height: 360px;
}

#content .dashboard-card-wrapper .card-columns .card.dash5 {
  background: url("../img/icons/dash3.svg");
  background-size: 470px 350px !important;
}

#content .dashboard-card-wrapper .card-columns .card.dash6 {
  background: url("../img/icons/dash6.svg");
  background-size: 470px 410px !important;
  height: 360px;
}

#content .dashboard-card-wrapper .card-columns .card .card-header {
  background: #fff;
  font-size: 18px;
}

#content .dashboard-card-wrapper .card-columns .card .card-header.user-symbol {
  height: 250px;
  background: url("../img/user-symbol.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#content .content-wrapper {
  margin: 30px 20px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.16);
}

#content .content-wrapper .table-filter-more {
  height: 70px;
  background: #F4F8FD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#content .content-wrapper .table-filter-more.title {
  font-weight: 600;
}

#content .content-wrapper .table-filter-more .filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}

#content .content-wrapper .search-wrapper {
  position: relative;
}

#content .content-wrapper .search-wrapper input {
  width: 260px;
}

#content .content-wrapper .search-wrapper .icon {
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  padding: 10px 0;
  margin: auto;
}

#content .content-wrapper .search-wrapper .dataTables_filter label:after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("/img/icons/icon-search.svg");
  right: .5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

#content .content-wrapper .dropdown-group {
  margin: 50px 20px 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#content .content-wrapper .dropdown-group.end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#content .content-wrapper .dropdown-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
  margin-right: 20px;
  position: relative;
}

#content .content-wrapper .dropdown-group button {
  background: #1ABC9C;
  border: none;
  color: #fff;
  border-radius: 4px;
  height: 40px;
  width: 180px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: .25s padding ease;
  transition: .25s padding ease;
}

#content .content-wrapper .dropdown-group button:after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-show-more-white.svg");
  background-size: cover;
  background-repeat: no-repeat;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
}

#content .content-wrapper .dropdown-group button:hover:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#content .content-wrapper .dropdown-group input {
  font-size: 13px;
  font-weight: 600;
  color: #444444;
  border-color: #E7E7E7;
  border-radius: 5px;
  padding: 10px;
  border-style: solid;
  border-width: 1px;
}

#content .content-wrapper .dropdown-group input.search {
  max-height: 40px;
  max-width: 264px;
}

#content .content-wrapper .dropdown-group select {
  font-size: 13px;
  font-weight: 600;
  border-color: #E7E7E7;
  border-radius: 5px;
  padding: 10px;
}

#content .content-wrapper .dropdown-group select[name="customer"] {
  width: 113px;
  height: 40px;
}

#content .content-wrapper .dropdown-group select[name="products"] {
  width: 200px;
  height: 40px;
}

#content .content-wrapper .dropdown-group select[name="legal"] {
  width: 200px;
  height: 40px;
}

#content .content-wrapper .dropdown-group select[name="effect"] {
  width: 200px;
  height: 40px;
}

#content .content-wrapper .dropdown-group select[name="time"] {
  width: 263px;
  height: 40px;
}

#content .content-wrapper .global-btn-wrapper .global {
  width: 68px;
  max-width: 68px;
  float: right;
  background: #1ABC9C;
  min-width: 85px;
  height: 40px;
  border-radius: 5px;
  border: none;
  text-align: center;
  color: #fff;
  margin-left: 90px;
}

#content .content-wrapper .global-btn-wrapper .global::-webkit-input-placeholder {
  color: #fff;
  font-size: 15px;
}

#content .content-wrapper .global-btn-wrapper .global:-ms-input-placeholder {
  color: #fff;
  font-size: 15px;
}

#content .content-wrapper .global-btn-wrapper .global::-ms-input-placeholder {
  color: #fff;
  font-size: 15px;
}

#content .content-wrapper .global-btn-wrapper .global::placeholder {
  color: #fff;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper {
  padding: 20px;
}

#content .content-wrapper .table-wrapper .table {
  margin-bottom: 2rem;
}

#content .content-wrapper .table-wrapper.fixed {
  position: relative;
  width: 98%;
  z-index: 9999;
  margin: 20px;
  padding: 0;
  overflow: auto;
  height: 75vh;
  background: #fff;
}

#content .content-wrapper .table-wrapper .dataTables_info:after {
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #E7E7E7;
  width: 15rem;
  bottom: -10px;
}

#content .content-wrapper .table-wrapper .dataTables_info, #content .content-wrapper .table-wrapper .dataTables_paginate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#content .content-wrapper .table-wrapper .dataTables_info span, #content .content-wrapper .table-wrapper .dataTables_paginate span {
  margin-top: 15px;
}

#content .content-wrapper .table-wrapper .dataTables_info .paginate_button, #content .content-wrapper .table-wrapper .dataTables_paginate .paginate_button {
  padding: 10px;
  margin-top: 15px;
  margin-right: 5px;
  margin-left: 5px;
  width: 5rem;
  text-align: center;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
  color: #2E3B46;
  cursor: pointer;
  outline: none;
}

#content .content-wrapper .table-wrapper .dataTables_info .paginate_button:hover, #content .content-wrapper .table-wrapper .dataTables_info .paginate_button.current, #content .content-wrapper .table-wrapper .dataTables_paginate .paginate_button:hover, #content .content-wrapper .table-wrapper .dataTables_paginate .paginate_button.current {
  background: #F3F3F3;
}

#content .content-wrapper .table-wrapper table {
  border: none;
}

#content .content-wrapper .table-wrapper table .right-align-cell {
  text-align: right;
}

#content .content-wrapper .table-wrapper table .right-align-cell > div {
  margin-left: auto;
  margin-right: 20px;
}

#content .content-wrapper .table-wrapper table .show-special-effects-actions, #content .content-wrapper .table-wrapper table .show-comment-relaunch-actions {
  max-width: 30px;
  border: none;
  outline: none;
}

#content .content-wrapper .table-wrapper table .min-width-210 {
  min-width: 215px;
}

#content .content-wrapper .table-wrapper table .min-width-250 {
  min-width: 250px;
}

#content .content-wrapper .table-wrapper table .min-width-350 {
  min-width: 350px;
}

#content .content-wrapper .table-wrapper table .min-width-400 {
  min-width: 400px;
}

#content .content-wrapper .table-wrapper table .min-width-480 {
  min-width: 480px;
}

#content .content-wrapper .table-wrapper table .min-width-580 {
  min-width: 580px;
}

#content .content-wrapper .table-wrapper table .clickable {
  cursor: pointer;
}

#content .content-wrapper .table-wrapper table th, #content .content-wrapper .table-wrapper table tr, #content .content-wrapper .table-wrapper table tbody {
  border: none;
}

#content .content-wrapper .table-wrapper table tr.fixed td:first-child {
  padding: .75rem;
  position: -webkit-sticky;
  position: sticky;
  left: 0px;
  z-index: 2;
  background-color: #fff;
}

#content .content-wrapper .table-wrapper table td {
  border: none;
  border-bottom: 1px solid #E7E7E7;
  vertical-align: middle;
  height: 50px;
}

#content .content-wrapper .table-wrapper table td.prev-euro, #content .content-wrapper .table-wrapper table td.actual-euro, #content .content-wrapper .table-wrapper table td.prev-sum, #content .content-wrapper .table-wrapper table td.actual-sum {
  text-align: right;
}

#content .content-wrapper .table-wrapper table td th {
  vertical-align: middle;
}

#content .content-wrapper .table-wrapper table td th:first-child {
  padding-left: 0;
  margin-left: 0;
}

#content .content-wrapper .table-wrapper table thead.border-bottom {
  border: none;
  border-bottom: 1px solid #E7E7E7;
}

#content .content-wrapper .table-wrapper table thead tr th {
  padding: .75rem;
}

#content .content-wrapper .table-wrapper table thead tr th.full-border:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 0px;
}

#content .content-wrapper .table-wrapper table thead tr.fixed th {
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  z-index: 99999;
}

#content .content-wrapper .table-wrapper table thead tr.fixed th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 999991;
}

#content .content-wrapper .table-wrapper table thead tr.fixed:nth-child(1) th {
  top: 0;
}

#content .content-wrapper .table-wrapper table thead tr.fixed:nth-child(2) th {
  top: 55px;
}

#content .content-wrapper .table-wrapper table tbody {
  font-size: 14px;
}

#content .content-wrapper .table-wrapper table tbody tr.label {
  font-size: 14px;
  font-weight: 600;
}

#content .content-wrapper .table-wrapper table tbody .filter td {
  padding: 0;
  border: none;
}

#content .content-wrapper .table-wrapper table tbody .filter td.w-margin .table-filter-more {
  padding-left: 16px;
}

#content .content-wrapper .table-wrapper table tr.prevlast {
  margin-top: -1px;
}

#content .content-wrapper .table-wrapper table tr.prevlast td {
  border-bottom: 1px solid #B3B3B3 !important;
  /* border: none !important; */
  border-color: transparent;
  /* height: 1px; */
  padding: 0;
  position: relative;
  top: 0px;
  z-index: 999;
}

#content .content-wrapper .table-wrapper table tr.last {
  text-transform: uppercase;
}

#content .content-wrapper .table-wrapper table tr.last td {
  border: 1px solid #B3B3B3;
  border-left: none;
  border-right: none;
  border-top: none;
}

#content .content-wrapper .table-wrapper table tr[data-level="0"] td:first-child {
  text-indent: 0px;
}

#content .content-wrapper .table-wrapper table tr[data-level="1"] td:first-child {
  text-indent: 25px;
}

#content .content-wrapper .table-wrapper table tr[data-level="2"] td:first-child {
  text-indent: 50px;
}

#content .content-wrapper .table-wrapper table tr[data-level="3"] td:first-child {
  text-indent: 75px;
}

#content .content-wrapper .table-wrapper table tr[data-level="4"] td:first-child {
  text-indent: 100px;
}

#content .content-wrapper .table-wrapper table tr[data-level="4"] td {
  border: none;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(55%, gainsboro), color-stop(0%, rgba(220, 220, 220, 0)));
  background-image: linear-gradient(to right, gainsboro 55%, rgba(220, 220, 220, 0) 0%);
  background-position: bottom;
  background-size: 10px 1px;
  background-repeat: repeat-x;
}

#content .content-wrapper .table-wrapper table [aria-expanded="true"] .icon.icon-expand:after {
  width: 10px;
  height: 7px;
  background: url("../img/icons/icon-expanded.svg");
}

#content .content-wrapper .table-wrapper table [aria-expanded="false"] .icon.icon-expand:after {
  width: 7px;
  height: 10px;
  background: url("../img/icons/icon-expand.svg");
}

#content .content-wrapper .table-wrapper table .icon-show-more-white {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-left: -40px;
  left: -20px;
  line-height: 40px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#content .content-wrapper .table-wrapper table label {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#content .content-wrapper .table-wrapper table .custom-control-label {
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#content .content-wrapper .table-wrapper table .custom-control-label::before {
  background: #E7E7E7;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#content .content-wrapper .table-wrapper table .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #5B92D3;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' v…M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#content .content-wrapper .table-wrapper table .show-user-management-actions, #content .content-wrapper .table-wrapper table .show-version-actions {
  cursor: pointer;
  max-width: 18px;
  outline: none;
  border: none;
  padding: 10px;
}

#content .content-wrapper .table-wrapper table .show-special-effects-actions, #content .content-wrapper .table-wrapper table .show-comment-relaunch-actions {
  max-width: 30px;
  max-height: 30px;
  border: none;
  outline: none;
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
}

#content .content-wrapper .table-wrapper table input {
  outline: none;
}

#content .content-wrapper .table-wrapper table input.actual-euro, #content .content-wrapper .table-wrapper table input.planned-euro {
  text-align: right;
}

#content .content-wrapper .table-wrapper table input.global {
  width: 68px;
  max-width: 68px;
  float: right;
  background: #1ABC9C;
  min-width: 85px;
  height: 40px;
  border-radius: 5px;
  border: none;
  text-align: center;
  color: #fff;
  margin-right: 30px;
}

#content .content-wrapper .table-wrapper table input.global::-webkit-input-placeholder {
  color: #fff;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input.global:-ms-input-placeholder {
  color: #fff;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input.global::-ms-input-placeholder {
  color: #fff;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input.global::placeholder {
  color: #fff;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input[readonly="readonly"] {
  border-color: #eee;
  border-style: solid;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #eee;
}

#content .content-wrapper .table-wrapper table input.old_segment_sum, #content .content-wrapper .table-wrapper table input.segment_sum, #content .content-wrapper .table-wrapper table input.blue-input {
  background: #F4F8FD;
  border: none;
  height: 30px;
  text-indent: 10px;
  border-radius: 5px;
  color: #5B92D3;
  font-size: 15px;
  font-weight: 600;
}

#content .content-wrapper .table-wrapper table input[name="percent"]:not(.global) {
  max-width: 68px;
  background: #F4F8FD;
  border: none;
  height: 30px;
  text-indent: 10px;
  border-radius: 5px;
  color: #5B92D3;
  font-size: 15px;
  font-weight: 600;
}

#content .content-wrapper .table-wrapper table input[name="percent"]:not(.global):disabled {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff !important;
  background: #d6d6d6;
}

#content .content-wrapper .table-wrapper table input[name="percent"]:not(.global)::-webkit-input-placeholder {
  color: #5B92D3;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input[name="percent"]:not(.global):-ms-input-placeholder {
  color: #5B92D3;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input[name="percent"]:not(.global)::-ms-input-placeholder {
  color: #5B92D3;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input[name="percent"]:not(.global)::placeholder {
  color: #5B92D3;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input[name="euro"] {
  max-width: 112px;
  background: #F4F8FD;
  border: none;
  height: 30px;
  text-indent: 10px;
  border-radius: 5px;
  color: #5B92D3;
  font-size: 15px;
  font-weight: 600;
}

#content .content-wrapper .table-wrapper table input[name="euro"]:disabled {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff !important;
  background: #d6d6d6;
}

#content .content-wrapper .table-wrapper table input[name="euro"]::-webkit-input-placeholder {
  color: #5B92D3;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input[name="euro"]:-ms-input-placeholder {
  color: #5B92D3;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input[name="euro"]::-ms-input-placeholder {
  color: #5B92D3;
  font-size: 15px;
}

#content .content-wrapper .table-wrapper table input[name="euro"]::placeholder {
  color: #5B92D3;
  font-size: 15px;
}

.icon {
  display: inline-block;
}

.icon:after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 15px;
}

.icon.icon-dashboard:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-dashboard.svg");
}

.icon.icon-data:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-data.svg");
}

.icon.icon-settings:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-settings.svg");
}

.icon.icon-usermanagement:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-usermanagement.svg");
}

.icon.icon-maintenance:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-maintenance.svg");
}

.icon.icon-project-data:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-project-data.svg");
}

.icon.icon-show-more:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-show-more.svg");
}

.icon.icon-show-more-white:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-show-more-white.svg");
}

.icon.icon-expand:after {
  width: 7px;
  height: 10px;
  background: url("../img/icons/icon-expand.svg");
  margin-right: 20px;
}

.icon.icon-collapse:after {
  width: 10px;
  height: 7px;
  background: url("../img/icons/icon-expanded.svg");
  margin-right: 20px;
}

.icon.icon-actions:after {
  width: 18px;
  height: 4px;
  background: url("../img/icons/icon-actions.svg");
  margin-right: 20px;
}

.icon.icon-arrow-down:after {
  width: 12px;
  height: 15px;
  background: url("../img/icons/icon-arrow-down.svg");
  margin-right: 20px;
}

.icon.icon-dropdown-arrow-down:after {
  width: 10px;
  height: 6px;
  background: url("../img/icons/icon-dropdown-arrow-down.svg");
  margin-right: 20px;
}

.icon.icon-dropdown-arrow-down-grey:after {
  width: 10px;
  height: 6px;
  background: url("../img/icons/icon-dropdown-arrow-down-grey.svg");
  margin-right: 20px;
}

.icon.icon-delete:after {
  width: 24px;
  height: 28px;
  background: url("../img/icons/icon-delete.svg");
  margin-right: 20px;
}

.icon.icon-edit-user:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-edit-user.svg");
  margin-right: 20px;
}

.icon.icon-deactivate-user:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-deactivate-user.svg");
  margin-right: 20px;
}

.icon.icon-warning-blue:after {
  width: 30px;
  height: 30px;
  background: url("../img/icons/icon-warning-blue.svg");
  margin-right: 20px;
}

.icon.icon-warning-yellow:after {
  width: 30px;
  height: 30px;
  background: url("../img/icons/icon-warning-yellow.svg");
  margin-right: 20px;
}

.icon.icon-lock:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-lock.svg");
  margin-right: 20px;
}

.icon.icon-search:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-search.svg");
  margin-right: 20px;
}

.icon.icon-list:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-list.svg");
  margin-right: 20px;
}

.icon.icon-version:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-version.svg");
  margin-right: 20px;
}

.icon.icon-save:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-save.svg");
  margin-right: 20px;
}

.icon.icon-filter-settings:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-filter-settings.svg");
  margin-right: 15px;
}

.icon.icon-export:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-export.svg");
  margin-right: 15px;
}

.icon.icon-publish:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-publish.svg");
  margin-right: 15px;
}

.icon.icon-back:after {
  width: 24px;
  height: 24px;
  background: url("../img/icons/icon-back.svg");
  margin-right: 15px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  background: #F8F8F8;
  font-family: "Open Sans";
  margin: 0;
}

p,
div, c
li,
td {
  color: #2E3B46;
}

img {
  border: 0px none;
}

.bg {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
}

a {
  text-decoration: none;
}

a {
  color: #000000;
}

a:hover {
  text-decoration: none;
}

/*** Bootstrap overrides ***/
.table-responsive {
  overflow: visible !important;
}

/***start 20190513 + variables***/
.font-green {
  color: green !important;
}

.font-red {
  color: red !important;
}

.table-sum-increase {
  font-weight: bold;
}

.button.table-sum-increase div {
  color: #6b6b6b;
}

.th-header-content .seperator, .th-header-content .segment-sum-total-actual, .th-header-content .segment-percent-value, .th-header-content .segment-overall-segment-sum {
  float: left;
  font-weight: normal;
  font-size: 0.95rem;
}

.button.green.disabled {
  background: #efefef;
}

/***end 20190513***/
#error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.back-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.back-action a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

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

.text-decoration.off {
  text-decoration: none;
}

[x-placement="bottom"] .tippy-arrow {
  border-bottom-color: #fff !important;
}

[x-placement="top"] .tippy-arrow {
  border-top-color: #fff !important;
}

.tippy-tooltip {
  position: relative;
  color: #fff;
  border-radius: .25rem;
  font-size: .875rem;
  padding: 0 0;
  line-height: 1.4;
  text-align: center;
  background-color: transparent;
  text-align: left;
  font-size: 14px;
}

.tippy-tooltip .label {
  font-weight: 600;
  padding: 20px 20px 12.5px 20px;
  border-bottom: 1px solid #E7E7E7;
}

.tippy-tooltip .option-wrapper {
  width: 300px;
  height: auto;
  border: none;
  background: #fff;
  -webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.18);
          box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.18);
}

.tippy-tooltip .option-wrapper .custom-control-label {
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.tippy-tooltip .option-wrapper .custom-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tippy-tooltip .option-wrapper .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #5B92D3;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' v…M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.tippy-tooltip .option-wrapper .option {
  padding: 15px;
}

.tippy-tooltip .option-wrapper .option.w-hover > div:hover, .tippy-tooltip .option-wrapper .option a:hover {
  background: #F3F3F3;
  text-decoration: none;
  color: #2E3B46;
}

.tippy-tooltip .option-wrapper .option > div:not(.footer), .tippy-tooltip .option-wrapper .option a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
  padding: 10px 5px;
}

.tippy-tooltip .option-wrapper .option > div:not(.footer).w-input, .tippy-tooltip .option-wrapper .option a.w-input {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tippy-tooltip .option-wrapper .option > div:not(.footer).edit, .tippy-tooltip .option-wrapper .option > div:not(.footer).deactivate, .tippy-tooltip .option-wrapper .option > div:not(.footer).delete, .tippy-tooltip .option-wrapper .option > div:not(.footer).export, .tippy-tooltip .option-wrapper .option > div:not(.footer).publish, .tippy-tooltip .option-wrapper .option a.edit, .tippy-tooltip .option-wrapper .option a.deactivate, .tippy-tooltip .option-wrapper .option a.delete, .tippy-tooltip .option-wrapper .option a.export, .tippy-tooltip .option-wrapper .option a.publish {
  padding: 5px 0;
}

.tippy-tooltip .option-wrapper .option input, .tippy-tooltip .option-wrapper .option textarea {
  min-width: 100%;
  background: #F4F8FD;
  border: none;
  border-radius: 5px;
  color: #5B92D3;
  font-size: 15px;
  padding: 10px;
}

.tippy-tooltip .option-wrapper .option input:disabled, .tippy-tooltip .option-wrapper .option textarea:disabled {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #f3f3f3;
}

.tippy-tooltip .option-wrapper .option input::-webkit-input-placeholder, .tippy-tooltip .option-wrapper .option textarea::-webkit-input-placeholder {
  color: #5B92D3;
  font-size: 15px;
}

.tippy-tooltip .option-wrapper .option input:-ms-input-placeholder, .tippy-tooltip .option-wrapper .option textarea:-ms-input-placeholder {
  color: #5B92D3;
  font-size: 15px;
}

.tippy-tooltip .option-wrapper .option input::-ms-input-placeholder, .tippy-tooltip .option-wrapper .option textarea::-ms-input-placeholder {
  color: #5B92D3;
  font-size: 15px;
}

.tippy-tooltip .option-wrapper .option input::placeholder, .tippy-tooltip .option-wrapper .option textarea::placeholder {
  color: #5B92D3;
  font-size: 15px;
}

.tippy-tooltip .option-wrapper .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-transform: uppercase;
  margin-top: 40px;
  padding-right: 20px;
}

.tippy-tooltip .option-wrapper .footer .save {
  margin-left: 25px;
  color: #1ABC9C;
  cursor: pointer;
}

.tippy-tooltip .option-wrapper .footer .cancel {
  cursor: pointer;
}

.card {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 40%;
}

.card:hover {
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.container {
  padding: 2px 16px;
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  *cursor: hand;
  background-repeat: no-repeat;
  background-position: center right;
}

table.dataTable thead .sorting {
  background-image: url("../img/datatable/sort_both.png");
}

table.dataTable thead .sorting_asc {
  background-image: url("../img/datatable/sort_asc.png");
}

table.dataTable thead .sorting_desc {
  background-image: url("../img/datatable/sort_desc.png");
}

table.dataTable thead .sorting_asc_disabled {
  background-image: url("../img/datatable/sort_asc_disabled.png");
}
/*# sourceMappingURL=general.css.map */