
/*
     ? DELTAPLAN ApS
*/


:root {
    --color-alto: #DCDCDC;
    --color-rolling-stone: #6e7c84;
    --color-dusty-gray: #999999;
    --color-carnation: #F9515D;
    --color-silver: #CCCCCC;
    --color-monza: #E00909;
    --color-guardsman-red: #CC0000;
    --color-cerulean: #0098DA;
    --color-deep-cerulean: #007AB0;
    --color-orient: #00618C;
    --color-mint-green: #99ff99;
    --color-jade: #00ab62;
    --color-goblin: #398439;
    --color-selective-yellow: #F9B800;
    --color-pigeon-post: #AFC7DB;
    --color-polo-blue: #93B2CC;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-tr-hover: #3298C5;
    --color-blue-light: #0098DA;
    --color-blue-dark: #007AB0;
    --color-green: #00AB62;
    --color-grey: #6E7C84;
    --color-red: #E00909;
    --color-mon-fri: #CCCCCC;
    --color-sat-sun: #999999;
    --color-holidays: #CC99CC;
    --color-vacant-shift: #00CC00;
    --color-status-: transparent;
    --color-status-g: #99ff99;
    --color-status-l: #FFFF66;
    --color-status-a: #FFAAAA;
    --color-status-i: #9999CC;
    --color-status-k: transparent;
    --color-status-o: transparent;
    --color-status-f: transparent;
    --color-status-s: transparent;
    --color-status-d: transparent;
  --color-trashed: #E86B64;
}




/* ---------------------------------------- General ------------------------------------------ */

html, body {
  display: block;
  overscroll-behavior: none;
  overscroll-behavior-x: auto;
  overscroll-behavior-y: none;
}

body * {
  overscroll-behavior: auto;
}

body {
  background-color: #0098da;
  margin: 0px;
  padding-top: 63px;
}

body.in-frame {
  padding-top: 0px;
}


table {
  margin: 0;
  padding: 0;
  top: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  text-decoration: underline;
}

/*
.datepicker::after {
  content: "";
  position: absolute;
  top: 100%;
  margin-left: -5px;
  border-width: 9px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}
*/

iframe.noScrolling{
  width: 400px;
  height: 400px;
  overflow: hidden;
}

ul li {
  margin-top: 4px;
  margin-bottom: 4px;
}

ul li ul {
  margin-top: 4px;
}

.checkboxlist ul li,
.list_of_checks ul li,
.checkboxlist ul li ul,
.list_of_checks ul li ul {
  margin-top: 0px;
}



* {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}





/* -------------------------------------- Text / Font -----------------------------------------*/

/* Standard */

body, .std-font, * {
  font-family: "verdana", "arial", sans-serif;
  font-size: 13px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}


/* Small */

small, .small, .s, .font-sm,
small *, .small *, .s *, .font-sm * {
  font-size: 11px;
}


/* Bold */

b, .bold, .b, .font-b,
b *, .bold *, .b *, .font-b * {
  font-weight: bold;
}


/* Title */

h1, h2, h3, .title, .font-xl,
h1 *, h2 *, h3 *, .title *, .font-xl * {
  font-size: 20px;
  font-weight: normal;
}


/* Sub-title */

h4, h5, h6, .subtitle, .font-lg,
h4 *, h5 *, h6 *, .subtitle *, .font-lg * {
  font-size: 16px;
  font-weight: normal;
}



pre {
    font-family: monospace;
    white-space: pre;
}







/* ---------------------------- Buttons, input- & select-fields ------------------------------ */

/* Moved into other file: input_fields.css */



/* ------------------------------------- Blink Animation ---------------------------------------- */

.blinktwice {
    -webkit-animation: blinktwice linear 0.5s 2 forwards !important;
    animation: blinktwice linear 0.5s 2 forwards !important;
}


@-webkit-keyframes blinktwice {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinktwice {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.blinkonce {
    -webkit-animation: blinkonce linear 0.5s forwards !important;
    animation: blinkonce linear 0.5s forwards !important;
}


@-webkit-keyframes blinkonce {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinkonce {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/* ------------------------------------- Background Blink: white to red, or red to white - over .6-.8s ---------------------------------------- */


.backgroundblink,
.backgroundblink-red {
    -webkit-animation: webkit_backgroundblink_std_to_red linear 0.35s 2 forwards;
    animation: backgroundblink_std_to_red linear 0.35s 2 forwards;
}

@-webkit-keyframes webkit_backgroundblink_std_to_red {
  0% {
    background: rgb(0,152,218);
  }
  50% {
    background: rgb(255,0,0);
  }
  100% {
    background: rgb(0,152,218);
  }
}

@keyframes backgroundblink_std_to_red {
  0% {
    opacity: 0;
    background: rgb(0,152,218);
  }
  50% {
    opacity: 1;
    background: rgb(255,0,0);
  }
  100% {
    opacity: 0;
    background: rgb(0,152,218);
  }
}

*[invalid="true"].backgroundblink,
.redtype.backgroundblink,
.backgroundblink-reverse {
    -webkit-animation: backgroundblink_red_to_std linear 0.35s 2 forwards;
    animation: backgroundblink_red_to_std linear 0.35s 2 forwards;
}

@-webkit-keyframes backgroundblink_red_to_std {
  0% {
    background: rgb(255,0,0);
  }
  50% {
    background: rgb(0,152,218);
  }
  100% {
    background: rgb(255,0,0);
  }
}

@keyframes backgroundblink_red_to_std {
  0% {
    background: rgb(255,0,0);
  }
  50% {
    background: rgb(0,152,218);
  }
  100% {
    background: rgb(255,0,0);
  }
}


.inverted.backgroundblink,
.inverted.backgroundblink-red {
    -webkit-animation: backgroundblink_white_to_red linear 0.35s 2 forwards;
    animation: backgroundblink_white_to_red linear 0.35s 2 forwards;
}

@-webkit-keyframes backgroundblink_white_to_red {
  0% {
    background: rgb(255,255,255);
    color: rgb(0,0,0);
  }
  50% {
    background: rgb(255,0,0);
    color: rgb(255,255,255);
  }
  100% {
    background: rgb(255,255,255);
    color: rgb(0,0,0);
  }
}

@keyframes backgroundblink_white_to_red {
  0% {
    background: rgb(255,255,255);
    color: rgb(0,0,0);
  }
  50% {
    background: rgb(255,0,0);
    color: rgb(255,255,255);
  }
  100% {
    background: rgb(255,255,255);
    color: rgb(0,0,0);
  }
}

.inverted[invalid="true"].backgroundblink,
.inverted.redtype.backgroundblink,
.inverted.backgroundblink-reverse {
    -webkit-animation: backgroundblink_red_to_white linear 0.35s 2 forwards;
    animation: backgroundblink_red_to_white linear 0.35s 2 forwards;
}

@-webkit-keyframes backgroundblink_red_to_white {
  0% {
    background: rgb(255,0,0);
    color: rgb(255,255,255);
  }
  50% {
    background: rgb(255,255,255);
    color: rgb(0,0,0);
  }
  100% {
    background: rgb(255,0,0);
    color: rgb(255,255,255);
  }
}

@keyframes backgroundblink_red_to_white {
  0% {
    background: rgb(255,0,0);
    color: rgb(255,255,255);
  }
  50% {
    background: rgb(255,255,255);
    color: rgb(0,0,0);
  }
  100% {
    background: rgb(255,0,0);
    color: rgb(255,255,255);
  }
}




/* -------------------------------------  Icon in btn: level-up ---------------------------------------- */


.btn.btn-level-up, .btn.btn-level-up:visited {
  display: inline-block;
  padding: 0px;
}

.btn-level-up > .icon-level-up {
  display: inline-block;
  height: 100%;
  width: 100%;
  min-height: 22px;
  min-width: 25px;
  background-image: url(../images/level_up.svg);
  background-size: 18px 19px;
  background-position: 4px 3px;
  background-repeat: no-repeat;
}





/* ---------------------------------------- Navigation ------------------------------------------ */


body > header {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 60px;
  min-height: 60px;
  font-family: verdana;
  font-size: 12px;
  color: white;
  width: 100%;
  min-width: 296px;
  background-color: #0098da;
  overflow: hidden;
  border-bottom: 2px solid white;
  z-index: 999;
}

@media (max-width: 1212px) {

  body {
    padding-top: 63px;
  }

  body > header {
    position: fixed;
    top: 0px;
    left: 0px;
    overflow: hidden;
    height: auto;
    padding-top: 0px;
  }
}

@media (max-width: 1212px) {

  body.with_tabs[data-tabs-count="5"] > header > .module-tabs {
    clear: both;
  }

  body.with_tabs[data-tabs-count="5"] {
    padding-top: 123px;
  }

  body.with_tabs[data-tabs-count="5"] > .main_menu_container {
    top: 123px;
    height: calc(100vh - 122px);
  }

  body.with_tabs[data-tabs-count="5"] .page-top-bar.fixed {
    top: 123px;
  }

  /*
  body.with_tabs[data-tabs-count="5"] .notifications {
    padding-top: 142px !important;
  }
  */
}

@media (max-width: 1116px) {

  body.with_tabs[data-tabs-count="4"] > header > .module-tabs {
    clear: both;
  }

  body.with_tabs[data-tabs-count="4"] {
    padding-top: 123px;
  }

  body.with_tabs[data-tabs-count="4"] > .main_menu_container {
    top: 123px;
    height: calc(100vh - 122px);
  }

  body.with_tabs[data-tabs-count="4"] .page-top-bar.fixed {
    top: 123px;
  }

  /*
  body.with_tabs[data-tabs-count="4"] .notifications {
    padding-top: 142px !important;
  }
  */
}

@media (max-width: 996px) {

  body.with_tabs[data-tabs-count="3"] > header > .module-tabs {
    clear: both;
  }

  body.with_tabs[data-tabs-count="3"] {
    padding-top: 123px;
  }

  body.with_tabs[data-tabs-count="3"] > .main_menu_container {
    top: 123px;
    height: calc(100vh - 122px);
  }

  body.with_tabs[data-tabs-count="3"] .page-top-bar.fixed {
    top: 123px;
  }

  /*
  body.with_tabs[data-tabs-count="3"] .notifications {
    padding-top: 142px !important;
  }
  */
}

@media (max-width: 901px) {

  body.with_tabs[data-tabs-count="2"] > header > .module-tabs {
    clear: both;
  }

  body.with_tabs[data-tabs-count="2"] {
    padding-top: 123px;
  }

  body.with_tabs[data-tabs-count="2"] > .main_menu_container {
    top: 123px;
    height: calc(100vh - 122px);
  }

  body.with_tabs[data-tabs-count="2"] .page-top-bar.fixed {
    top: 123px;
  }

  /*
  body.with_tabs[data-tabs-count="2"] .notifications {
    padding-top: 142px !important;
  }
  */
}

@media (max-width: 806px) {

  body.with_tabs[data-tabs-count="1"] > header > .module-tabs {
    clear: both;
  }

  body.with_tabs[data-tabs-count="1"] {
    padding-top: 123px;
  }

  body.with_tabs[data-tabs-count="1"] > .main_menu_container {
    top: 123px;
    height: calc(100vh - 122px);
  }

  body.with_tabs[data-tabs-count="1"] .page-top-bar.fixed {
    top: 123px;
  }

  /*
  body.with_tabs[data-tabs-count="1"] .notifications {
    padding-top: 142px !important;
  }
  */
}



body > header .menu-item {
  display: inline-block;
  float: left;
  padding: 9px 15px 8px 15px;
  text-align: center;
  background-color: transparent;
  height: 60px;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body > header .menu-item.logo {
  cursor: pointer;
}

body > header .menu-item:focus {
  outline: none; /* rgb(0, 0, 0) solid 2px; */
  outline-offset: 0px;
  box-shadow: 0px 0px 2pt 1.25pt black;
}

body > header .menu-item.main-menu {
  margin-left: 2px;
  margin-right: -2px;
}

body > header .menu-item.logout {
  margin-left: -2px;
  margin-right: 2px;
}

body > header .menu-item.module-tab {
  padding-top: 9px;
  padding-bottom: 8px;
  width: 95px;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
}

body > header .menu-item.pull-right {
  float: right;
}

body > header .menu-item img {
  display: block;
  width: 23px;
  margin-left: auto;
  margin-right: auto;
}

body > header .menu-item i.fa {
  display: inline-block;
  width: 23px;
  margin-left: auto;
  margin-right: auto;
  font-size: 23.75px;
  text-decoration: none !important;
}

body > header .menu-item span {
  display: block;
  margin-top: 6px;
  text-decoration: none;
  color: white;
}


body > header a.menu-item {
  cursor: pointer;
}

body > header a.menu-item:hover span {
  text-decoration: underline;
}


body > header .menu-item.active {
  background-color: #007AB0;
}



body > header .menu-item.logo {
  padding-left: 0px;
}

body > header .menu-item.logo:hover {
  background-color: transparent;
}

body > header .menu-item.logo img {
  width: 126px;
  padding: 9px;
}


body > header .menu-item.user-settings {
  padding: 0px;
}


@media(max-width: 379px) {

  body > header .menu-item.user-settings {
    padding-right: 7px;
    padding-left: 6px;
  }
}

body > header .menu-item.user-settings .menu-item.company-logo {
  padding: 0px;
  height: 43px;
  margin-top: 9px;
  margin-right: 16px;
  width: 150px;
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}

@media(max-width: 742px) {
  body > header .menu-item.user-settings .menu-item.company-logo {
    display: none;
  }
}

body > header .menu-item.user-settings .user-profile-info {
  text-align: left;
  width: auto;
  float: left;
  padding: 9px 6px 8px 6px;
  box-sizing: border-box;
  height: 60px;
}


body > header .menu-item.user-settings .user-profile-info:focus {
  outline: none; /* rgb(0, 0, 0) solid 2px; */
  outline-offset: 0px;
  box-shadow: 0px 0px 2pt 1.25pt black;
}

body > header .menu-item.user-settings .user-profile-info:hover {
  cursor: pointer;
}

body > header .menu-item.user-settings .user-profile-info:hover span {
  text-decoration: underline;
}


@media(max-width: 374px) {

  body > header .menu-item.user-settings .user-profile-info {
    max-width: calc(100vw - 227px);
    overflow: hidden;
    display: inline-block;
  }
}


@media(min-width: 375px) {

  body > header .menu-item.user-settings .user-profile-info {
    overflow: hidden;
    display: inline-block;
  }
}

@media(min-width: 1035px) {

  body > header .menu-item.user-settings .user-profile-info {
    overflow: hidden;
    display: inline-block;
  }
}


body > header > .menu-item.user-settings > .user-profile-info.session-mismatch {
  animation: session_mismatch_profile_info_blinker 1s linear infinite;
  color: red;
}

body > header > .menu-item.user-settings > .user-profile-info.session-mismatch > * {
  color: red;
}

@keyframes session_mismatch_profile_info_blinker {
  25% { opacity: 0; }
  75% { opacity: 1; }
}


body > header .menu-item.user-settings .user-profile-info > span {
  white-space: nowrap;
  max-width: 210px;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
}

body > header .menu-item.user-settings .user-profile-info > span.company_name {
  margin-top: 0px;
  text-decoration: none !important;
  max-width: 228px;
  word-break: break-all;
  white-space: pre-line;
  display: block;
  line-height: 13px;
  min-height: 19px;
}

@media(min-width: 1015px) {
  body > header .menu-item.user-settings .user-profile-info > span {
    max-width: calc(100vw - 800px);
  }
}


body > header .menu-item.user-settings .icon.settings {
  height: 100%;
  float: left;
  margin-right: 2px;
  margin-top: 14px;
}

body > header .menu-item.user-settings .icon.settings > .fa-stack {
  line-height: 24px;
  margin-top: 3px;
}

body > header .menu-item.user-settings .icon.settings > .fa-stack > .fa-stack-2x {
  font-size: 18px;
}

body > header .menu-item.user-settings .icon.settings > .fa-stack > .fa-stack-1x {
  color: #00618c;
  margin-top: 4px;
  margin-left: 4px;
  font-size: 14px;
}


body > header .module-tabs {
  display: block;
  float: left;
}



@media(max-width: 379px) {

  body > header .menu-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  body > header .menu-item.module-tab {
    width: 75px;
  }

  body > header .menu-item span {
    font-size: 10px;
  }

  body > header .menu-item.logo img {
    width: 110px;
    padding-top: 9px;
    padding-left: 5px;
  }
}



body > header .menu-item .tab-notification {
  float: right;
  margin-right: 25px;
  padding-right: 0.25px;
}

body > header .menu-item .tab-notification:before {
  line-height: 12px;
  content: " ";
  display: inline-block;
  width: 16px;
  height: 14px;
  position: absolute;
  margin: auto;
  box-sizing: border-box;
  margin-top: 1.5px;
  background-image: url('../images/svg-icons/warning.svg');
}

body > .tooltip-popover.top-menu-tab-notification {
  margin-top: -34px;
  margin-left: 64px;
}





@media(max-width: 576px) {

  body > header .menu-item {
    padding-left: 9px;
    padding-right: 9px;
  }

  body > header .menu-item img {
    width: 18px;
  }

  body > header .menu-item i.fa {
    width: 18px;
    font-size: 18.5px;
  }

  body > header .menu-item.logo img {
    width: 112px;
  }

  body > header .menu-item span {
    font-size: 11px;
  }

  body > header .menu-item.user-settings .icon.settings {
    margin-top: 10px;
  }

  body > header .menu-item.user-settings .icon.settings {
    margin-top: 10px;
  }

  body > header .menu-item.user-settings .icon.settings > .fa-stack {
    line-height: 24px;
    margin-top: 15px;
  }

  body > header .menu-item.user-settings .icon.settings > .fa-stack > .fa-user {
    font-size: 16px !important;
  }

  body > header .menu-item.user-settings .icon.settings > .fa-stack > .fa-cog {
    font-size: 10px !important;
    margin-top: 2px !important;
    margin-left: 4px !important;
  }

  body > header .menu-item.user-settings .user-profile-info > span.company_name {
    max-width: 210px;
  }
}


@media(max-width: 497px) {

  body > header .menu-item.main-menu {
      margin-left: 0px;
      margin-right: 0px;
  }

  body > header .menu-item.user-settings .user-profile-info {
    text-align: center
  }

  body > header .menu-item.user-settings .icon.settings {
    margin-top: 0px;
    float: none;
    height: auto;
    margin: 0 auto;
    float: none;
    width: 18px;
    height: 18px;
  }

  body > header .menu-item.user-settings .icon.settings > .fa-stack {
    margin-top: 0px;
  }

  body > header .menu-item.user-settings .icon.settings > .fa-stack > .fa-user {
    font-size: 18px;
  }

  body > header .menu-item.user-settings .icon.settings > .fa-stack > .fa-cog {
    font-size: 12px !important;
    margin-top: 4px !important;
  }

  body > header .menu-item.user-settings .user-profile-info > span.company_name {
    display: none;
  }

  body > header .menu-item.user-settings .user-profile-info > span.user_name {
    margin-top: 5px;
    max-width: calc( 100vw - 264px );
  }
}


@media(max-width: 380px) {


  body > header .menu-item.logo {
      padding-right: 0px;
  }

  body > header .menu-item.logo img {
    width: calc( 100vw - 233px );
    padding-top: 3px;
    padding-right: 3px;
  }

  body > header .menu-item span {
    font-size: 10.5px;
  }

  body > header .menu-item {
    padding-left: 6px;
    padding-right: 5px;
  }

  body > header .menu-item.user-settings .user-profile-info {
    max-width: 100px;
  }

  body > header .menu-item.user-settings .user-profile-info > span.user_name {
    max-width: calc( 100vw - 228px );
  }
}









.module_frame,
.frontpage_module_frame,
.dummy_module_frame {
  display: none;
  width: 100vw;
  height: calc(100vh - 63px);
  z-index: 0;
  background-color: #007AB0;
  overflow: auto;
  transition: max-height 1s ease;
  -webkit-transition: max-height 1s ease;
  border: 0px;
  position: absolute;
}

body.use-dummy-frontpage .dummy_module_frame {
  display: block;
  z-index: 1;
  padding: 0px;
  color: white;
}

@media (max-width: 1212px) {

  body.with_tabs[data-tabs-count="5"] .module_frame,
  body.with_tabs[data-tabs-count="5"] .frontpage_module_frame {
    max-height: calc( 100vh - 123px ) !important;
  }
}

@media (max-width: 1116px) {

  body.with_tabs[data-tabs-count="4"] .module_frame,
  body.with_tabs[data-tabs-count="4"] .frontpage_module_frame {
    max-height: calc( 100vh - 123px ) !important;
  }
}


@media (max-width: 996px) {

  body.with_tabs[data-tabs-count="3"] .module_frame,
  body.with_tabs[data-tabs-count="3"] .frontpage_module_frame {
    max-height: calc( 100vh - 123px ) !important;
  }
}

@media (max-width: 901px) {

  body.with_tabs[data-tabs-count="2"] .module_frame,
  body.with_tabs[data-tabs-count="2"] .frontpage_module_frame {
    max-height: calc( 100vh - 123px ) !important;
  }
}

@media (max-width: 806px) {

  body.with_tabs[data-tabs-count="1"] .module_frame,
  body.with_tabs[data-tabs-count="1"] .frontpage_module_frame {
    max-height: calc( 100vh - 123px ) !important;
  }
}



.module_frame.active,
.frontpage_module_frame {
  display: block;
  max-height: 100%;
  overflow: auto;
  z-index: 1;
}

.module_frame.active {
  z-index: 2;
}


.main_menu_container {
  display: none;
  position: fixed;
  top: 62px;
  left: 0px;
  width: 100vw;
  height: calc(100vh - 62px);
  max-height: 0%;
  z-index: 2147483646;
  background-color: #007AB0;
  overflow: auto;
  transition: max-height 1s ease;
  -webkit-transition: max-height 1s ease;
  padding: 12px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.main_menu_container.active {
  display: block;
  max-height: 100%;
  padding-bottom: 50px;
}


.main_menu_container .menu-groups {
  display: block;
  clear: both;
  margin-top: -6px;
}

.main_menu_container .menu-groups .menu-group {
  display: inline-block;
  clear: both;
  margin-top: 0px;
  margin-left: 16px;
  margin-right: 16px;
  min-width: 192px;
  vertical-align: top;
}

.main_menu_container .menu-groups .menu-group .menu-group-header {
  padding: 3px 6px 3px 33px;
  color: rgb(210, 245, 255);
  margin-top: 28px;
  border-bottom: 2px solid #A6DBF0;
  font-weight: bold;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}


.main_menu_container .menu-groups .menu-group[data-name="employees_portal"] .menu-group-header {
  border-bottom-color: #FFC733;
  color: #ffeec0;
}

.main_menu_container .menu-groups .menu-group .menu-group-items .menu-group-item {
  display: block;
  margin-top: 10px;
  margin-bottom: 8px;
}

.main_menu_container .menu-groups .menu-group .menu-group-items .menu-group-item + .menu-group-item[href="Subscription"].items-above {
  border-top: 1px solid rgb(131, 215, 240);
  border-top-width: 2px;
  padding-top: 7px;
}

.main_menu_container .menu-groups .menu-group .menu-group-items .menu-group-item img.menu-group-item-icon {
  width: 20px;
  height: 20px;
  border: 0px;
  vertical-align: -4px;
  margin-left: 1px;
}
.main_menu_container .menu-groups .menu-group .menu-group-items .menu-group-item span.menu-group-item-name {
  margin-left: 12px;
  color: white;
  font-weight: bold;
}



.with_page_top_bar {
  padding-top: 100px !important;
}



.page-top-bar {
  position: absolute;

  top: 0px;

  display: inline-block;
  width: auto;
  max-width: 100vw;
  height: auto;
  max-height: 100vh;
  overflow: hidden;
  background-color: transparent;
  padding-top: 7px;
  padding-right: 220px;
  padding-bottom: 180px;
  z-index: 999999999;
  box-sizing: border-box;
  background-image: none; /* linear-gradient(to bottom right, rgba(0, 122, 176, 1) 25%, rgba(0, 122, 176, 0.8) 35%, rgba(0, 122, 176, 0.7) 41%, transparent 51%) */

  pointer-events: none;
}

.page-top-bar.fixed {

  pointer-events: none;

  animation-name: collapse_page_top_bar;
  animation-duration: 0.25s;

  background-image: none;

  position: fixed;
  top: 62px;
}

@keyframes collapse_page_top_bar {
    0%   {
      opacity: 0;
      position: absolute;
      top: 0px;
    }
    33%  {
      opacity: 0;
      position: absolute;
      top: 0px;
    }
    66%  {
      opacity: 0;
      position: fixed;
      top: 62px;
    }
    100% {
      opacity: 1;
      position: fixed;
      top: 62px;
    }
}

body.in-frame .page-top-bar.fixed {
  top: 0px;
  animation-name: collapse_page_top_bar_in_frame;
}


@keyframes collapse_page_top_bar_in_frame {
    0%   {
      opacity: 0;
      position: absolute;
    }
    33%  {
      opacity: 0;
      position: absolute;
    }
    86%  {
      opacity: 0;
      position: fixed;
    }
    100% {
      opacity: 1;
      position: fixed;
    }
}


.page-top-bar.fixed:hover,
.page-top-bar.fixed.hover {
  background-image: linear-gradient(to bottom right, rgba(0, 122, 176, 1) 20%, rgba(0, 122, 176, 0.8) 44%, rgba(0, 122, 176, 0) 48%, transparent 51%);
}


.page-top-bar > * {
  opacity: 1;
  z-index: 99999999999;
  transition: opacity 0.25s;
  pointer-events: all;
}

.page-top-bar.fixed > * {
  opacity: 0;
  pointer-events: none;
}

.page-top-bar.fixed:hover > *,
.page-top-bar.fixed.hover > * {
  opacity: 1;
  transition-duration: 0.5s;
  pointer-events: all;

  animation-name: page_top_bar_on_hover_activate_contents;
  animation-duration: 0.5s
}

@keyframes page_top_bar_on_hover_activate_contents {
    0%   {
      pointer-events: none;
    }
    33%  {
      pointer-events: none;
    }
    66%  {
      pointer-events: all;
    }
    100% {
      pointer-events: all;
    }
}


.page-top-bar .top-bar-toggeler-area,
.page-top-bar.fixed:hover .top-bar-toggeler-area,
.page-top-bar.fixed.hover .top-bar-toggeler-area {
  position: absolute;
  top: 2px;
  left: 0px;
  margin-left: 0px;
  margin-top: 0;
  color: #007AB0;
  width: calc(100% - 170px);
  height: calc(100% - 85px);

  transition: opacity 0.25s;
  transition-delay: 0.1s;
}

body.in-frame .page-top-bar .top-bar-toggeler-area,
body.in-frame .page-top-bar.fixed:hover .top-bar-toggeler-area,
body.in-frame .page-top-bar.fixed.hover .top-bar-toggeler-area {
  top: 2px;
}

.page-top-bar.fixed:hover .top-bar-toggeler-area,
.page-top-bar.fixed.hover .top-bar-toggeler-area {

  pointer-events: all;
  opacity: 0;
  transition-delay: 0s;
  transition-duration: 0.2s;

  animation-name: page_top_bar_on_hover_deactivate_toggeler;
  animation-duration: 1s;
}

@keyframes page_top_bar_on_hover_deactivate_toggeler {
    0%   {
      pointer-events: all;
    }
    93%  {
      pointer-events: all;
    }
    96%  {
      pointer-events: none;
    }
    100% {
      pointer-events: none;
    }
}

.page-top-bar.fixed .top-bar-toggeler-area,
.page-top-bar .top-bar-toggeler-area {
  pointer-events: none;
}

.page-top-bar.fixed .top-bar-toggeler-area {
  display: inline-block;
  opacity: 1;
  pointer-events: all;
  height: 52px;
  width: 32px;
  z-index: -1;
}

.page-top-bar .top-bar-toggeler-area .top-bar-toggeler {
  background-color: white;
  height: 38px;
  width: 17px;
  padding-top: 12px;
  padding-left: 6px;
  box-sizing: border-box;
  opacity: 0;
}

.page-top-bar.fixed .top-bar-toggeler-area .top-bar-toggeler {
  opacity: 1;
  pointer-events: all;
}

body.in-frame .page-top-bar.fixed .top-bar-toggeler-area .top-bar-toggeler {
  position: fixed;
  top: 2px;
}



.page-top-bar > .btn {
  margin-top: 5px !important;
  float: left;
}

.page-top-bar > .btn:first-of-type {
  margin-left: 12px !important;
}



.page-top-bar .page-title {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  height: auto;
  /* max-width: 315px; */
  clear:both;
  float: left;
  padding-left: 21px;
  padding-top: 16px;
  box-sizing: border-box;
  overflow: auto;
  font-size: 18px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

.page-top-bar .page-title .breadcrumbs {
  font-size: 11px;
  font-weight: normal;
  color: #dcdcdc;
  margin-top: 3px;
  /* max-width: 228px; */
}


@media(max-width: 650px) {

  .page-top-bar {
    width: 100vw;
    box-sizing: border-box;
    padding-right: 0px;
  }

  .page-top-bar.fixed:hover,
  .page-top-bar.fixed.hover {
    background-image: linear-gradient(180deg, rgba(0, 122, 176, 1) 71%, rgba(0, 122, 176, 0.8) 90%, rgba(0, 122, 176, 0.6) 94%, transparent 99%) !important;
    padding-bottom: 22px;
  }
}





.icon-warn:before {
  content: " ";
  display: inline-block;
  width: 16px;
  height: 14px;
  background-image: url('../images/svg-icons/warning.svg');
  margin: auto;
  box-sizing: border-box;
  padding-top: 2px;
  padding-left: 5px;
  position: relative;
  top: 1px;
}

.special-day-icon {
  height: 14px;
  width: 16px;
  background-image: url('../images/svg-icons/special-day-white.svg');
}







body.logged_out {
  max-height: 100vh !important;
  max-width: 100vw !important;
  /* overflow: hidden !important; */
  pointer-events: none;
}

body.logged_out > * {
  filter: blur(4px);
}

body.logged_out > .logged_out_msg_overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100vw;
  overflow: auto;
  filter: none;
  z-index: 900000000000;
}

body.logged_out > .logged_out_msg_overlay > .logged_out_msg {
  height: auto;
  width: 260px;
  margin-top: calc(50vh - 100px);
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.85);
  pointer-events: all;
}


body.logged_out > .logged_out_msg_overlay.timedout > .logged_out_msg h2:before {
  content: " ";
  display: inline-block;
  height: 24px;
  width: 24px;
  background-image: url('../images/svg-icons/user_clock.svg');
  background-size: 24px;
  background-position: left;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: -3px;
}


body.logged_out > .logged_out_msg_overlay > .logged_out_msg * {
  word-break: break-word;
}

body.logged_out > .logged_out_msg_overlay > .logged_out_msg h2 {
  margin-top: 2px;
  text-align: center;
}

body.logged_out > .logged_out_msg_overlay > .logged_out_msg.login-msg-box {
  margin-top: calc(50vh - 150px);
  width: 100%;
  max-width: 260px;
  text-align: right;
}

body.logged_out > .logged_out_msg_overlay > .logged_out_msg.login-msg-box .user-name {
  width: 100%;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}

body.logged_out > .logged_out_msg_overlay > .logged_out_msg.login-msg-box .company-name {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  margin-bottom: 5px;
}

body.logged_out > .logged_out_msg_overlay > .logged_out_msg.login-msg-box label {
  display: block;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 2px;
  cursor: default;
}

body.logged_out > .logged_out_msg_overlay > .logged_out_msg.login-msg-box input {
  width: 100%;
}


body.logged_out > .logged_out_msg_overlay > .logged_out_msg.login-msg-box .btn {
  width: 100%;
  margin: 0px;
  margin-top: 12px;
}




/* Fix for plugin DataTables */

table.fixedHeader-locked {
  display: none;
}



