/*@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap'); */

/* BASIC */

@font-face {
    font-family: 'Open Sans';
    src: url('open_sans.woff2') format('woff2'),
     	 url('OpenSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Bold';
    src: url('OpenSansBold.ttf') format('truetype'); 
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Semi Bold';
    src: url('OpenSansSemiBold.ttf') format('truetype'); 
    font-weight: 600;
    font-style: normal;
}


@font-face {
   font-family: 'Orbitron';
   src: url('orbitron.woff2') format('woff2');
}

/* preload background */
body::after{
   position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
   content:var(--bg-image);
}

.bold {
    font-family: 'Open Sans Bold', sans-serif;
    letter-spacing: .25px;
}

.semibold {
	font-size: 16px;
    font-family: 'Open Sans Semi Bold', sans-serif;
    letter-spacing: .25px;
}

* {
	font-family: 'Open Sans', sans-serif;
  	font-size: 11pt;
  	caret-color: var(--button-text-highlight-color);
}

html {
	height: 100%;
}

body {
	background-image: var(--bg-image);
  	background-repeat: no-repeat;
 	background-attachment: fixed;
  	background-size: cover;
  	background-color: var(--button-std-color);
 	margin: 0;
  	width: 100%;
  	height: 100%;
  	min-height: 100%;
}

#loginForm #username, #loginForm #password {
	width: 85%;
}

#updatePasswordForm {
    width: 350px;
    padding: 0px 15px;
}

#updatePasswordForm .pairLabel {
	width: 200px;
}

.layoutWrapper {
	display: flex;
}

.navPanel {
    min-width: 260px;
}

.leftPanel {
    /* background: green; */
    min-width: 400px;
    width: 25%;
    max-width: 400px;
    padding: 15px 15px 0px 15px;
}

.rightPanel {
    /* background: red; */
    width: 100%;
    padding: 15px 15px 0px 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

::selection {
	background-color: var(--button-std-color);
}

input::-webkit-datetime-edit-hour-field:focus,
input::-webkit-datetime-edit-minute-field:focus,
input::-webkit-datetime-edit-second-field:focus,
input::-webkit-datetime-edit-ampm-field:focus,
input::-webkit-datetime-edit-day-field:focus,
input::-webkit-datetime-edit-month-field:focus,
input::-webkit-datetime-edit-year-field:focus {
  background-color: var(--button-std-color);
}



/* scrollbar START*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: var(--scrolltrack-color);
  border-radius: 3px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: gray; 
  border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: darkgray;
  cursor: pointer;
}
/* scrollbar END */

::placeholder {
    color: var(--button-text-highlight-color);
}

input::placeholder {
    color: #ccc;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
	background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--button-text-highlight-color);
    box-shadow: inset 0 0 20px 20px var(--bg-highlight-color);
    -webkit-box-shadow: 0 0 0 30px var(--bg-highlight-color) inset !important;
}


a {
  color: black;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

a:hover {
  text-decoration: underline;
}

a.view-more {
    border-radius: 1px;
    margin-top: 15px;
    background-color: #009FE1;
    padding: 2px 10px !important;
    line-height: 21px !important;
    display: inline-block !important;
    color:white;
}

a.view-more:hover {
	color:#fff;
	background:#0DADEF;
	cursor: pointer;
}

a.view-more:hover {
	text-decoration: none !important;
}

h2 {
  text-align: center;
  font-size: 120%;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}

h2:hover {
	cursor:pointer;
}
.expander {
	cursor: pointer;
}

.draggable {
	position: absolute !important;
}

.windowHead {
    width: 100%;
    height: 38px;
    display: flex;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    background-color: var(--dark-color);
    pointer-events: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}


#userOverviewHead:hover {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.windowHead:hover {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.headButtonContainer {
	display: flex;
}

.windowTitle {
	height: 100%; 
    color: var(--highlight-color);
    text-decoration: none;
    /*text-transform: uppercase;*/
    display: flex;
    align-items: center;
    padding-left: 10px;
    
    /* semibold */
    font-size: 16px;
    font-family: 'Open Sans Semi Bold', sans-serif;
    letter-spacing: .25px;
}

.windowHandle, .questionHandle, .actionHandle {
    height: 100%;
    color: white;
    font-size: 150%;
    cursor: pointer;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 2px;
    float: right;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
.actionHandle {
	width: 45px;
}
*/

.valueMerger {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    height: 44px;
    padding-left: 4px;
    padding-right: 7px;
}

.actionHandle > img {
	height: 32px;
}

.windowHandle:hover {
	background-color: rgb(231, 76, 60);
}

.questionHandle:hover, .actionHandle:hover {
	background-color: var(--button-std-color);
}

.right {
	text-align: right;
	width: 20%;
}
.left {
	text-align: left;
	width: 80%;
    position: relative;
}

#topBarLabelWrapper {
    text-align: center;
    color: white;
    margin-top: -5px;
}

#topBarMainLabel {
	font-size: 140%;
	text-transform: uppercase;
}

#loginTopBar {
	width: 100%;
	height: 67px;
	background-color: var(--dark-color);
	-webkit-box-shadow: 0 30px 60px 0 rgb(0 0 0 / 30%);
    box-shadow: 0 30px 60px 0 rgb(0 0 0 / 30%);
}

#loginTopBar > div {
	width: 100%;
    height: 100%;
    display: table;
}

#loginTopBar > div > div {
    display: table-row;
    height: 100%;
}

#loginTopBar > div > div > div {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
}

#loginTopBar > div > div > div:nth-child(1) {
	width: 30%;	
}
#loginTopBar > div > div > div:nth-child(2) {
	width: 40%;
	padding-left: 10px;
    padding-right: 10px;
}
#loginTopBar > div > div > div:nth-child(3) {
	width: 30%;
}

#loginImageWrapper {
  	all: revert !important;
}

#loginImagelogo {
	height: 65px;
	margin-left: 5px;
    margin-right: 5px;
}

#bottombar {
	background-color: #f6f6f6;
	position: fixed;
	bottom: 0px;
	width: 100%;
	/*box-shadow: 0 -10px 60px 0 rgb(0 0 0 / 30%);*/
}


#welcomeImagelogo {
	height: 100%;
 	max-height: 66px !important;
 	/*margin: 5pt; */
}

#windowStartPointWrapper {
	position: relative;
}

#windowStartPoint {
    /*background-color: red;*/
    width: 100%;
    height: 50px;
    z-index: 100;
    top: 60px;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    pointer-events: none;
}

#windowStartPoint > div {
	pointer-events: auto;
}

#windowReport {
	width: 45px;
}

#overviewWrapper {
     margin-top: 20px;
     min-height: calc(100% - 87px);
}

#innerOverviewWrapper, #innerOverviewWrapper_userMailTable {
	background: var(--brighter-color);
	color: var(--button-text-highlight-color);
    box-shadow: 0 0 30px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 0 0 30px rgb(0 0 0 / 30%);
    border-radius: 2px;
    width: 800px;
    /* half of display width - halb of window width + sidebard width*/
    left: calc(50% - 400px + 128px);
    top: -45px;
    margin: 0 auto;
}

.commonInsertButton {
	float: left;
	margin-left: 3px;
	padding: 8px 40px !important;
}

.blur {
	filter: blur(0.5rem);
	pointer-events: none;
}

.clear {
	filter: none;
	transition: 100ms filter linear;
	-webkit-transition: 100ms -webkit-filter linear;
	-moz-transition: 100ms -moz-filter linear;
	-ms-transition: 100ms -ms-filter linear;
	-o-transition: 100ms -o-filter linear;
	pointer-events: auto;
}

.clearFast {
	filter: none;
	transition: 50ms filter linear;
	-webkit-transition: 50ms -webkit-filter linear;
	-moz-transition: 50ms -moz-filter linear;
	-ms-transition: 50ms -ms-filter linear;
	-o-transition: 50ms -o-filter linear;
	pointer-events: auto;
}

#tableSearch, #usertableSearch, #tasktableSearch {
    width: 300px;
    text-align: left;
    padding: 5px;
	margin-right: 5px;
}

.wrap {
	height: 100%;
    display: flex;
    align-items: center;
}

#overViewTitle {
    height: 100%;
    color: var(--highlight-color);
    padding-left: 10px;
    text-decoration: none;
    letter-spacing: 0.3pt;
    font-family: 'Open Sans Bold', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
}

#userOverviewHead {
    background-color: var(--dark-color);
    border-radius: 2px;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#innerTableWrapper {
	padding: 5px 10px 10px 10px;
}

#listOverviewTable {
	width: 100%;
	margin-bottom: 10px;
}

#listOverviewTable th {
	text-align: left;
	padding-top: 8px;
	padding-bottom: 8px;
}

#listOverviewTable td {
	padding-top: 8px;
	padding-bottom: 8px;
	
	padding-left: 3px;
    padding-right: 5px;
}

#listOverviewTable > tbody > tr:hover {
	background-color: var(--transparent-hightlight-color);
	cursor: pointer;
}

#overviewTable {
	width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0px;
}

#overviewTable > tbody {
	display: block;
    width: 100%;
    overflow-y: auto;
	max-height: calc(100vh - 200px);
}

#overviewTable > thead > tr {
	display: block;
}

#overviewTable > tbody > tr:hover {
	cursor: pointer;
}

#overviewTable > thead {
	background: var(--brighter-color);
}



#overviewTable > thead > tr > th:nth-child(1) > div {
	width: 250px;
	text-align: center;
}
#overviewTable > thead > tr > th:nth-child(2) {
	width: 100%;
	text-align: center;
}
#overviewTable > thead > tr > th:nth-child(3) > div {
	width: 100px;
	text-align: center;
}
#overviewTable > thead > tr > th:nth-child(4) > div {
	width: 10px;
}

#overviewTable > tbody > tr > td:nth-child(1) > div {
	width: 250px;
	text-align: left;
	padding-left: 5px;
}
#overviewTable > tbody > tr > td:nth-child(2) {
	width: 100%;
	text-align: left;
	padding-left: 5px;
}
#overviewTable > tbody > tr > td:nth-child(3) > div {
	width: 100px;
	text-align: center;
}
/*
#overviewTable > tbody > tr > td:nth-child(4) > div {
	width: 40px;
}

#overviewTable > tbody > tr > td:nth-child(5) {
	width: 100%;
}
#overviewTable > tbody > tr > td:nth-child(6) > div  {
	width: 60px;
	text-align: center;
}
#overviewTable > tbody > tr > td:nth-child(7) > div {
	width: 80px;
	text-align: center;
}
#overviewTable > tbody > tr > td:nth-child(8) > div {
	width: 100px;
	text-align: center;
}
#overviewTable > tbody > tr > td:nth-child(9) > div {
	width: 40px;
}

#overviewTable > tbody > tr[data-cus] > td:nth-child(3) > table > tbody > tr >  td:nth-child(1) > div {
	    width: 33px !important;
}
*/

.noChipPaired {
	cursor: help;
}

#overviewTable tr {
	text-align: left;
	/*border-bottom: 1px solid #c5c5c5;*/
	border-bottom: solid 1px var(--bg-highlight-color);
	height: 30px !important;
}

#overviewTable th, #overviewTable td {
	padding: 0px;
}

#overviewTable th {
    /*letter-spacing: 0.3pt;
    text-transform: uppercase;
    font-weight: bold;*/
    font-weight: normal;
}


.userTableIMG {
	margin-left: 4px;
}

#overviewTable tr[data-uid].cRow:hover td, #overviewTable tr[data-uid].pRow:hover td, #overviewTable tr[data-href]:hover td {
	/*background-color: var(--transparent-hightlight-color); */
	background-color: rgba(220, 220, 220, 0.1);
}

#overviewTable tr[data-uid].userInactiv {
	opacity: 0.5;
}

.userInactiv td.accessTD img {
    visibility: hidden;
}

.accountOverviewTable {
    width: 100%;
    background-color: #add8e6;
    border-bottom: 2px solid #add8e6!important;
    border-collapse: collapse;
}

.accountOverviewTable th {
	padding: 0px !important;
}

.accountOverviewTable td {
	background-color: #d8ecf3;
}

.accountOverviewTable tr {
	border-bottom: 1px solid #add8e6!important;
    border-left: 3px solid #add8e6!important;
    border-right: 3px solid #add8e6!important;
}

.accountOverviewTable tr[data-uid]:hover td {
	background-color: var(--transparent-hightlight-color);
}

#overviewTable tr table.accountOverviewTable > thead > tr {
    border: 0px !important;
    height: 32px !important;
}

.accountOverviewTable > thead > tr > th:nth-child(1) > div {
	width: 40px;
}
.accountOverviewTable > thead > tr > th:nth-child(2) > div {
	width: 400px;
}
.accountOverviewTable > thead > tr > th:nth-child(3) {
	width: 100%;
}
.accountOverviewTable > thead > tr > th:nth-child(4) > div {
	width: 120px;
    text-align: center;
}
.accountOverviewTable > thead > tr > th:nth-child(5) > div {
	width: 40px
}

.accountOverviewTable > tbody > tr > td:nth-child(1) > div {
	width: 77px;
    text-align: left;
    margin-left: 13px;
}

input:focus::placeholder {
  color: transparent;
}

.pIMG {
    background-image: url(partner.png) !important;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    height: 30px;
    background-size: 30px;
}

.pIMG:hover {
    background-image: url(partnerW.png) !important;
}

.cIMG {
    background-image: url(customer.png) !important;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    height: 30px;
    background-size: 30px;
}

.cIMG:hover {
    background-image: url(customerW.png) !important;
}


.subArrow {
	float: right;
    margin-right: 2px;
}

.arrow {
	margin-left: 3px;
}

.open {
	margin-right: 3px;
}

.dotTD {
   	text-align: center;
    vertical-align: middle;
    padding-left: 0px !important;
}

.dot {
    height: 15px;
    width: 15px;
   /* background-color: #bbb; */
    border-radius: 50%;
    display: inline-block;
}

.green {
	background-color: #3cb371 !important;
	/*background: rgba(255,255,255,1); */
 	box-shadow: 0px 0px 10px 2px rgba(126, 247, 180,1); /*inset 0px 0px 10px 2px rgba(60, 179, 113,0.5), */
 	
 	-webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
 	
}
.yellow {
	background-color: rgb(233, 166, 46) !important;
	background: rgba(255,255,255,1);
 	box-shadow: inset 0px 0px 10px 2px rgba(255, 194, 86, 0.5), 0px 0px 10px 2px rgba(233, 166, 46,1);
}
.red {
	background-color: #e74c3c !important;
	/*background: rgba(255,255,255,1); */ 
 	box-shadow: 0px 0px 10px 2px rgba(237, 138, 128,1); /*inset 0px 0px 10px 2px rgba(231, 76, 60,0.5), */
 	
 	-webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}
.blue {
	background-color: #5cafe9 !important;
	background: rgba(255,255,255,1);
 	box-shadow: inset 0px 0px 10px 2px rgba(92, 175, 233,0.5), 0px 0px 10px 2px rgba(155, 202, 235,1);
}


.gray {
	background-color: #bbbbbb !important;
	/*background: rgba(255,255,255,1);
 	box-shadow: inset 0px 0px 10px 2px rgba(187, 187, 187,0.5), 0px 0px 10px 2px rgba(232, 227, 227,1);*/
}

/* STRUCTURE */

.placeholder {
	height: 10pt;
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 75%;
  padding: 20pt;
}

.profilWrapper {
	display: flex;
    align-items: flex-start;
    /* flex-direction: column; */
    justify-content: center;
    width: 100%;
    min-height: 75%;
    padding: 20pt;
}

.formContent {
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background: #fff;
	padding: 30px;
	position: relative;
	padding: 0px;
	box-shadow: 0 0 30px rgb(0 0 0 / 30%);
	-webkit-box-shadow: 0 0 30px rgb(0 0 0 / 30%);
	text-align: center;
	background-color: var(--brighter-color);
    color: var(--button-text-highlight-color);
}

.hourWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hourWrapper > div:nth-child(2) {
	margin-left: 4px;
}

.hAdd {
    color: white;
    text-shadow: none !important;
    font-weight: normal;
}

#cropContainerWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cropWrapper {
    height: 80%;
    display: flex;
    width: 60%;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-highlight-color);
    border-radius: 5px;
}

#cropContainer {
	height: 100%;
    width: 100%;
}

#cropperClose {
	position: fixed;
    color: white;
    height: 45px;
    width: 45px;
    right: 50px;
    top: 35px;
    font-size: 30px;
    cursor: pointer;
    border: 1px solid transparent !important;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

#cropperClose:hover {
	background-color: rgba(255, 0, 0, 0.3) !important;
    border: 1px solid #ff4b4b !important;
    color: #ff4b4b !important;
}

#cropperInfo {
	position: fixed;
    color: white;
    height: 35px;
    width: 35px;
    right: 115px;
    top: 41px;
    cursor: pointer;
    border: 1px solid transparent !important;
    transition: all 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

#cropperInfo:hover {
	animation: spinCrop 3s ease-in-out infinite;
}

@keyframes spinCrop {
  0% { 
  		transform: rotate(-15deg); 
  }
  10% {
  		transform: rotate(15deg);
  }
  20% {
  		transform: rotate(-15deg);
  }
  30% {
  		transform: rotate(15deg);
  }
  40% {
  		transform: rotate(-15deg); 
  }
  50% {
  		transform: rotate(15deg);
  }
  60% {
  		transform: rotate(-15deg);
  }
  70% {
  		transform: rotate(15deg);
  }
  80% {
  		transform: rotate(-15deg);
  }
  90% {
  		transform: rotate(15deg);
  }
  100% { 
  		transform: rotate(-15deg);
  	}
}
 

.popin {
	animation-duration: 250ms;
	animation-name: popin;
	animation-iteration-count: 1;
	animation-timing-function: cubic-bezier(0.36, 0.55, 0.19, 1);
}

   @keyframes popin {
    0% {
    	transform: scale(0);
        opacity: 0;
    }
    90% {
    	transform: scale(1.05);
    	opacity: 1;
    }
    100% {
    	transform: scale(1);
    	
    }
   }


#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

.slideMessage {
	background-color: white;
    border-radius: 2px;
    z-index: 10;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    top: 20%;
    left: 0px;
    right: 0px;
    text-align: center;
    width: 280pt;
    display: block;
    -webkit-box-shadow: 0 30px 60px 0 rgb(0 0 0 / 30%);
    box-shadow: 0 30px 60px 0 rgb(0 0 0 / 30%);
}


/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: var(--button-text-highlight-color);
  border-bottom: 2px solid var(--button-std-color);
      font-size: 18px;
}


.disabled {
    pointer-events:none;
    opacity:0.6;
}

.darker {
    opacity:0.2;
}


/* FORM TYPOGRAPHY*/

input[type=submit] {
	margin-top: 20px !important;
}


input[type=button], input[type=submit], input[type=reset], button, div#collapseAll  {
  background-color: var(--button-std-color);
  border: none;
  color: white;
  padding: 15px 40px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  /*font-size: 14px;*/
  text-shadow: none;
  font-family: 'Open Sans Semi Bold', sans-serif;
  letter-spacing: .25px;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#rfid {
	text-transform: none;
	margin-left: 8px;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, button:hover, div#collapseAll:hover {
  background-color: var(--button-highlight-color);
  color: var(--button-text-highlight-color);
  cursor: pointer;
}

input[type=button]:disabled, input[type=submit]:disabled, input[type=reset]:disabled, button:disabled  {
  background-color: #6b6b6b !important;
  border: none;
  color: white;
  padding: 15px 40px;
  /*margin: 5px;*/
  text-align: center;
  text-decoration: none;
  display: inline-block;
  /*letter-spacing: 0.5pt;*/
  text-transform: uppercase;
  /*font-size: 14px; */
  font-weight: bold;
  text-shadow: none;

  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:disabled:hover, input[type=submit]:disabled:hover, input[type=reset]:disabled:hover, button:disabled:hover  {
	cursor: not-allowed;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active, button:active  {
  -moz-transform: scale(0.95) !important;
  -webkit-transform: scale(0.95) !important;
  -o-transform: scale(0.95) !important;
  -ms-transform: scale(0.95) !important;
  transform: scale(0.95) !important;
}

input[type='button'].choosePartnerButton, input[type='button'].chooseCustomerButton, input[type='button'].chipIDSelection {
	background-color: var(--bg-highlight-color);
	/*text-transform: none !important;*/
	color: var(--button-text-highlight-color);
	border: 2px solid transparent !important;
	/*font-weight: normal;*/
	font-family: 'Open Sans', sans-serif;
}

input#rfid:hover {
    background-color: var(--texfield-highlight) !important;
}

.timeModelItem, .vacationItem {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 0px;
    border-bottom: solid 1px var(--bg-highlight-color);
    transition: background-color 0.3s ease-in-out 0s !important;
}
.timeModelName,
	.timeModelDate,
		.vacationName,
			.vacDate {
	text-align:left;
}

.timeModelDate, .vacDate, .vacation.date {
	padding-left: 10px;
	font-size: 90%;
}

.timeModelChanger.invisible {
	display: none;
}

div:not(#user_new) > .panelSplitter {
	display: flex;
	width: 615px;
	transition: all 0.3s ease-in-out;
}

#user_new > .panelSplitter {
	width: 450px;
	margin-top: 10px;
}

.removeProfilIMG {
    right: 57px !important;
    top: 84px !important;
    color: white !important;
}

.removeProfilIMG:hover {
	background-color: rgba(255, 0, 0, 0.3) !important;
	border: 1px solid #ff4b4b !important;
    color: #ff4b4b !important;
    cursor: pointer !important;
}

.removeSelection {
	position: absolute;
    z-index: 1000000000;
    right: 257px;
    top: 209.5px;
    width: 30px;
    padding: 5px;
    border: 1px solid transparent;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    display: table-cell;
    vertical-align: middle;
    transition: all 0.3s ease-in-out 0s;
}

.removeSelection:hover {
	cursor: pointer;
    border: 1px solid var(--texfield-highlight);
    background: var(--texfield-highlight);
}

.activateContainer {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 10px;
    height: 34px;
}


input[type=text], input[type=time], input[type=search], input[type=password], input[type=number], input[type=date], input[type=month], input[type=datetime-local], .autoExpand, textarea {
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 3px 0px 3px 3px;
  width: 95%;
  border: 2px solid var(--brighter-color);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  background-color: var(--bg-highlight-color);
  color: var(--button-text-highlight-color);
}

input[type=datetime-local] {
	width: 165px !important;
}

.autoExpand {
	width: 95%;
}

.indent {
	margin-left: 10px;
}

.userCookiesWrapper {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

input[type="checkbox"]:checked {
	background-color: var(--button-std-color) !important;
}

input[type="checkbox"]:hover, label[for="userCookies"] {
	cursor: pointer;
}

input[type="checkbox"] {
    background-color: var(--texfield-highlight) !important;
    appearance: none;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid var(--texfield-highlight);
    border-radius: 0.15em;
    margin-right: 6px;
}

.aligner {
	display: flex;
    align-items: center;
}

.aligner > div, #sortVersion {
    cursor: pointer;
}

input[type=number] {
	padding: 7px 5px;
}

input[type=text]:focus, input[type=time]:focus, input[type=password]:focus, input[type=month]:focus, input[type=datetime-local]:focus, .autoExpand:focus, textarea:focus, input[type=number]:focus, input[type=date]:focus {
	background-color: var(--texfield-highlight);
	border-bottom: 2px solid var(--button-std-color);
}

input.neg:focus {
	border-bottom: 2px solid #ff4b4b !important;
}

input[type="time"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator  {
    display: none;
    -webkit-appearance: none;
}

input[type=text]:placeholder {
  color: #cccccc;
}

input[type=password].is-invalid,input[type=text].is-invalid,input[type=time].is-invalid,input[type=number].is-invalid, input[type=month].is-invalid, span[role=combobox].is-invalid {
	 border: 2px solid red;
	 border-color: red !important;
	 border-radius: 5px 5px 5px 5px;
}

.openWindow {
	cursor: pointer;
    background-image: url(open.png) !important;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    height: 30px;
    background-size: 30px;
    /*margin-right: 10px;*/
}

.openWindow:hover {
	cursor: pointer;
	background-image: url('openwhite.png') !important;
	background-repeat: no-repeat;
}

#tokenTD:hover {
	cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.holidayFields {
	display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 95%;
}

.holidayFields > div {
	min-width: 120px;
    text-align: right;
    padding-right: 10px;
}

.holidayFields > input {
	min-width: 75px;
}

.overtimeContainer {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: 5px;
}

.overtimeContainer > .dayHourElement {
    padding: 0px 5px;
}

.overtimeContainer > .dayHourElement > div:nth-child(1) {
    display: none;
}

.overtimePosNeg {
    text-align: center;
    height: 34px;
    border-radius: 3px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-highlight-color);
}

.profilHistoryArea {
	width: 90%;
    margin: 5px auto;
}

.profilWrapper .personContainer {
    width: 95%;
    margin: 15px auto;
}

.tokenParent {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 5px;
}

.tokenParent:hover {
	cursor: pointer;
}

.ovContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.colorMark {
	width: 7px;
	height: 80%;
}

.t_1 {
	background-color: var(--button-green-color) !important;
	transition: all 0.3s ease-in-out 0s !important;
}

.t_3 {
	-webkit-box-shadow: inset 0px 0px 0px 2px rgb(253 104 104);
    -moz-box-shadow: inset 0px 0px 0px 2px rgb(253 104 104);
    box-shadow: inset 0px 0px 0px 2px rgb(253 104 104);
}


.t_4 {
	background-color: var(--button-highlight-color-isSick) !important;
	transition: all 0.3s ease-in-out 0s !important;
} 

.t_5, .t_6 {
	background-color: var(--table-cell-highlight-isVacation) !important;
	transition: all 0.3s ease-in-out 0s !important;
} 

.t_8 {
	background-color: var(--button-highlight-color-isVacation-special) !important;
	transition: all 0.3s ease-in-out 0s !important;
}

.t_9  {
	background-color: var(--button-highlight-color-isSuspended) !important;
	transition: all 0.3s ease-in-out 0s !important;
}

.t_delete {
	background-color: #ff4b4b !important;
	transition: background-color 0.3s ease-in-out 0s !important;
	
} 

.t_cancel {
	background-color: rgb(138, 138, 138) !important;
	transition: background-color 0.3s ease-in-out 0s !important;
} 

.t_1:hover {
	background-color: var(--button-highlight-color) !important;
}

.t_4:hover {
	background-color: var(--button-highlight-color-isSick-hover) !important;
}

.t_5:hover, .t_6:hover {
	background-color: var(--button-highlight-color-isVacation-hover) !important;
}

.t_delete:hover {
	background-color: #e54343 !important;
} 

.t_cancel:hover {
	background-color: rgb(117, 117, 117) !important;
} 

.t_8:hover {
	background-color: var(--button-highlight-color-isVacation-special-hover) !important;
}  

.t_9:hover {
	background-color: var(--button-highlight-color-isSuspended-hover) !important;
}


.labelHighlight  .pos {
	color: rgba(142, 224, 43, 0.5) !important;
}

 .labelHighlight  .neg {
	color: rgba(255, 75, 75, 0.5) !important;
}

.overtimePosNeg[data-value="+"], .pos {
    color: #8ee02b !important;
    font-family: 'Open Sans Semi Bold', sans-serif;
    font-weight: 600;
    text-shadow: -1px -1px 0 var(--dark-color), 1px -1px 0 var(--dark-color), -1px 1px 0 var(--dark-color), 1px 1px 0 var(--dark-color);
}
.overtimePosNeg[data-value="-"], .neg, .vacation_manual_neg {
    color: #ff4b4b !important;
    font-family: 'Open Sans Semi Bold', sans-serif;
    font-weight: 600;
    text-shadow: -1px -1px 0 var(--dark-color), 1px -1px 0 var(--dark-color), -1px 1px 0 var(--dark-color), 1px 1px 0 var(--dark-color);
}

.overtimePosNeg:hover {
	cursor: pointer;
	background-color: var(--texfield-highlight);
}

.posNegContainer {
    width: 30px;
}

#token {
	margin: 5px;
    text-align: center;
    border-radius: 5px 5px 5px 5px;
    background-color: #f6f6f6;
    margin-left: 5px !important;
    border: 2px solid #f6f6f6;
    width: 95%;
    font-size: 15px;
    padding: 6.5px 6.5px;
    width: 84%;
    margin-left: 5px !important;
    border-radius: 3px;
    background-color: var(--bg-highlight-color);
    border-color: var(--bg-highlight-color);
}
 
#tokenLabel {
	display: inline-block;
	vertical-align: middle;
}

#tokenLabel:hover {
	cursor: pointer;
}

#tokenArrow {
	display: inline-block;
	vertical-align: middle;
}

.arrowStandard {
	transform:rotate(0deg); 
    -webkit-transform:rotate(0deg); 
    -moz-transform:rotate(0deg); 
    -o-transform:rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
  	-o-transition: all 0.3s ease-in-out;
  	transition: all 0.3s ease-in-out;
}
.arrowRotated {
    transform:rotate(90deg); 
    -webkit-transform:rotate(90deg); 
    -moz-transform:rotate(90deg); 
    -o-transform:rotate(90deg); 
}

#logoutButton {
	background-color: #e74c3c !important;
	transition: all 0.3s ease-in-out 0s !important;
}

#logoutButton:hover {
	cursor: pointer;
	background-color: #c0392b !important;
}

.button-red {
	background-color: #e74c3c !important;
	transition: all 0.3s ease-in-out 0s !important;
}

.button-red:hover {
	cursor: pointer;
	background-color: #c0392b !important;
}

.button-green {
	background-color: var(--button-green-color) !important;
	transition: all 0.3s ease-in-out 0s !important;
}

.button-green:hover {
	cursor: pointer;
	background-color:var(--button-highlight-color) !important;
}

.button-gray {
	background-color: #848484 !important;
	transition: all 0.3s ease-in-out 0s !important;
}

.button-gray:hover {
	cursor: pointer;
	background-color: #797979 !important;
}

#regenerateToken {
	background-color: #e74c3c;
    border-radius: 5px 5px 5px 5px;
    text-align: center;
    padding: 12px;
    color: white;
    margin: 5px !important;
    transition: background .2s;
    font-weight: bold;
    transition: all 300ms ease-in;
}

#regenerateToken:hover, #deleteButton:hover {
	cursor: pointer;
	background-color: #c0392b !important;
}

.searchhighlight[data-cus].cRow > td.cfpTD, .searchhighlight.cRow > td, .searchhighlight.pRow > td {
	background-color: #7ecef7;
	animation-name: searchhighlight;
    animation-duration: 350ms;
    animation-iteration-count: 3;
    animation-timing-function: linear;
    
    -webkit-animation-name: searchhighlight;
    animation-duration: 350ms;
    -webkit-animation-iteration-count: 3;
    -webkit-animation-timing-function: linear;
}

/* ANIMATIONS */

@keyframes searchhighlight  {
    0% {
    	background-color: white;
    }
    50% {
    	background-color: #93d7fa;
    }
    100% {
    	background-color: #7ecef7;
    }
}   
 
@-webkit-keyframes searchhighlight  {
    0% {
    	background-color: white;
    }
    50% {
    	background-color: #93d7fa;
    }
    100% {
    	background-color: #7ecef7;
    }
}   

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration: 300ms;
  -moz-animation-duration: 300ms;
  animation-duration: 300ms;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: var(--button-std-color);
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
  padding-bottom: 10px;
}

* {
  box-sizing: border-box;
}

#footer {
	position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #23364B;
    z-index: 1001;
    left: 0;
    height: 60px;
}

#bottomTable {
	margin: 0 auto !important;
	height: 100% !important;
}

.shaker {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.button-cover
{
    border-radius: 2px;
}

.button-cover:before
{
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.button
{
 	position: relative;
    width: 130px;
    height: 36px;
    overflow: hidden;
    background-color: white;
}

.button.r, .button.r .layer
{
    border-radius: 100px;
}

.button.b2
{
    border-radius: 2px;
}

.checkbox
{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs
{
    z-index: 2;
}

.layer
{
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}

#accessLevel-button, #versionSelect-button, #timemodelSelection-button {
	width: 94%;
    margin-left: 5px;
    height: 34px;
    margin: 5px;
    padding-top: 8px;
    text-align: center;
    color: var(--button-text-highlight-color);
    background-color: var(--bg-highlight-color);
    border-color: var(--bg-highlight-color);
}

#versionSelect-menu > li > div , #accessLevel-menu > li > div, #timemodelSelection-menu > li > div {
	text-align: center;
}

.sugListIco {
	padding-right: 5px;
}

.ui-menu-item > div > img.sugListIco.typeP {
	content: url("icon/P.png");
}

.ui-menu-item:hover > div > img.sugListIco.typeP {
	content: url("icon/Pw.png");
}

.ui-menu-item > div > img.sugListIco.typeC {
	content: url("icon/C.png");
}

.ui-menu-item:hover > div > img.sugListIco.typeC {
	content: url("icon/Cw.png");
}

.ui-menu-item > div > img.sugListIco.typeA {
	content: url("icon/Aw.png");
}


.accessTH {
	padding: 0px !important;
	padding-top: 2px !important;
	text-align: center;
}

.accessTD {
	padding: 0px !important;
	padding-top: 2px !important;
	text-align: center;
}

.accessTD > div {
	width: 100px;
	text-align: left; 
	margin: 0 auto;
	margin-right: 0px;
}

.accessImage {
	height: 30px !important;
	margin-top: 2px;
}

.statusImage {
	height: 35px !important;
}


#msgInnerSectioWrapper {
	width: 90%;
    margin: 0 auto;
    margin-top:15px;
}


#msgInnerSectioWrapper input[type="text"], #msgInnerSectioWrapper textarea {
	width: 99%;
	resize: none;
}

#msgInnerSectioWrapper div#button-13 {
	float: right;
}

#topLabelWrapperT {
	display: table;
	width: 100%;
}
#topLabelWrapperR {
	display: table-row;
}
.topLabelWrapperC {
	display: table-cell;
    vertical-align: middle;
}

#textAreaWrapper {
	height: 36px;
    display: table-cell;
    vertical-align: middle;
}
.user.date {
    border-bottom: solid 1px var(--bg-highlight-color);
    padding-bottom: 2px;
}

.timemodelDate, .overtime, .vacation_manual {
	height: 38px;
}
.userForm {
	width: 100%;
    padding: 0px 15px;
}
.personIMGContainer, .splitter {
	display: flex;
}
.splitter {
	display: flex;
	border-top: solid 1px var(--bg-highlight-color);
}
.buttonContainer {
	display: flex;
    justify-content: center;
}
.buttonContainer > input {
	width: 30%;
    padding: 8px 40px !important;
}

.ui-selectmenu-button, .ui-selectmenu-text, label, .timeModelList, .vacationHistoryPanel {
	 transition: all 0.5s ease-in-out;
}

.imgWrapper {
    width: 40%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
}
.imgContainer {
 	padding: 5px;
    border-radius: 5px;
    border: var(--brighter-color);
    background-color: white;
    border-width: 1px;
    border-style: solid;
    display: flex;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
    min-width: 160px;
    max-width: 162px;
    transition: all 0.5s ease-in-out;
}
.imgContainer:hover {
	cursor: pointer;
}
.userIMG {
	height: 200px;
    width: 150px;
    transition: all 0.5s;
}

.personDataIMGSplitter {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.personDataIMGSplitter > div:nth-child(1) {
	width: 68%;
}

.imgWrapperProfil {
    width: 30%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0px;
}

.imgContainerProfil {
	padding: 5px;
    border-radius: 5px;
    border: var(--brighter-color);
    background-color: white;
    border-width: 1px;
    border-style: solid;
    display: flex;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
    min-width: 130px;
    max-width: 132px;
    transition: all 0.5s ease-in-out;
}

.userIMGProfil {
	height: 160px;
    width: 120px;
    transition: all 0.5s;
}


.subLabel {
	height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#user_new .capturePanel, 
	#user_new .vacationPanel {
	border-top: solid 1px var(--bg-highlight-color);
}

.personIMGContainer > .personContainer {
	width: 60%;
}

.personContainer {
	padding-bottom: 10px;
}

.captureContainer > .splitter > .capturePanel {
	width: 60%;
}
.capturePanel {
	padding-bottom: 10px;
}
.capturehistory {
	width: 40%;
	transition: all 0.5s ease-in-out;
	margin-bottom: 10px;
}

.splitter > .vacationPanel {
	width: 60%;
}
.vacationPanel {
	padding-bottom: 10px;
}
.vacationHistoryPanel {
	width: 40%;
	transition: all 0.5s ease-in-out;
	margin-bottom: 10px;
}
.pairContainer {
	display: flex;
	align-items: center;
}
.pairLabel {
    width: 110px;
    min-width: 85px;
    text-align: right;
}
.pairLabel > label {
	font-size: 96%;
    color: var(--label-color);
}
.pairValue {
	width: 100%;
}
.timeModelListScroller, .vacationHistoryListScroller {
	max-height: 147px;
    overflow: auto;
	margin-left: 10px;
}

.userProfilButtonContainer {
	padding: 0px 0px 10px 0px;
}

.cfpTD {
	background-color: #effafd;
}

.aImageTD {
	background-color: #add8e6;
	vertical-align: top;
}

.cen {
	text-align: center !important;
}

hr {
	border: 1px solid var(--brighter-color);
}

.wHeadIMGWrapper {
	float: left;
    margin-top: 5px;
    margin-left: 10px;
}

.wHeadIMG {
	height: 25px;
}

.hideRow {
	display: none;
}

.intendDIV {
	width: 30px;
}

.aTableTD {
	padding: 0px !important;
}

.intendTD {
	vertical-align: top;
	background-color: white !important;
}

.vacMasterContainer {
	width: 350px;
	padding: 10px;
}

.vacYearlabelContainer {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 36px;
    padding: 2px 5px;
    border-radius: 2px;
}

.vacYearlabelContainer:hover {
    cursor: pointer;
    background-color: var(--texfield-highlight);
}

.vacYearContainer {
	display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.vacMasterList .vacStatContainer, 
	.vacMasterList .vacDataContainer {
	width: 40%;
    padding: 3px;
}

.vacStatContainer > div,
	.vacDataContainer > div {
	display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 20px;
}

.vacYearItem.openMonths > .vacYearlabelContainer {
    background-color: var(--bg-highlight-color);
}

.imgLabelPair {
    display: flex;
}


#button-13 .knobs:before, #button-13 .knobs:after, #button-13 .knobs span
{
    position: absolute;
	top: 5px;
    width: 20px;
    height: 10px;
    font-size: 14px;
    font-family: 'Open Sans';
    text-align: center;
    line-height: 1;
    padding: 5px 4px;
    border-radius: 2px;
    transition: 0.3s ease all;
}

#button-13 .knobs:before, #button-13 .knobs:after
{
    color: #000000;
    z-index: 1;
}

#button-13 .knobs:before
{
    content: 'AKTIV';
    left: 8px;
}

#button-13 .knobs:after
{
    content: 'INAKTIV';
    right: 45px;
}

#button-13 .knobs span
{
	width: 57px;
    height: 70%;
    left: 68px;
    background-color: #3cb371;
    z-index: 2;
}

#button-13 .checkbox:checked + .knobs span
{
    left: 4px;
    background-color: #F44336;
}

#button-13 .checkbox:checked ~ .layer
{
    background-color: #fcebeb;
}
/* toggle button END */

.visibleTT {
	display:block;
	position:absolute;
	top:50px;
	right:100px;
	z-index:1000;
}

.visibleTT img {
	width: 225px;
    height: 300px;
    box-shadow: 0 0 30px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 0 0 30px rgb(0 0 0 / 30%);
    padding: 5px;
    background-color: white; 	
}

.windowActiveShadow {
	box-shadow: 0 0 50px rgb(0 0 0 / 75%) !important;
    -webkit-box-shadow: 0 0 50px rgb(0 0 0 / 75%) !important;
    transition: box-shadow 0.2s ease-in-out 0s;
    transition: -webkit-box-shadow 0.2s ease-in-out 0s;
}

#mobileOverlay {
	height: 100vh;
    width: 100vw;
    position: absolute;
    background-color: white;
    z-index: 1000;
}

#mobileOverlayText {
    color: black;
    height: 100vh;
    width: 100vw;
    position: absolute;
    z-index: 1001;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 20px;
}

.labelHighlight {
	/*font-style: italic;*/
    font-size: 96%;
    color: var(--label-color);
}

.emptyRequestElement {
	height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    border-bottom: solid 1px var(--bg-highlight-color);
}

.compensationLabel {
	height: 36px;
    display: flex;
    align-items: center;
    border-top: solid 1px var(--bg-highlight-color);
    justify-content: center;
}

.overtimeScroller, .vacMasterList {
	max-height: 240px;
    overflow: auto;
    padding-bottom: 5px;
}

.compContainer .overtimeScroller {
	max-height: 160px;
}

.masterInfoContainer .overtimeScroller {
	max-height: 80px;
}

.masterInfoContainer .compContainer {
	width: 230px;
}

.masterInfoContainer .compensationLabel {
	height: 25px;
    display: flex;
    align-items: center;
    border-top: none;
    justify-content: flex-start;
}

.timelistContainer {
	width: 350px;
	padding: 10px;
}

.timeslistItem, .timeslistYearItem, .overtimeItem {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.yearSummaryContainer > .timeslistItem {
    height: 18px;
}

.timeslistYearContainer, .vacYearItem {
	border: solid 2px var(--brighter-color);
    border-radius: 2px;
}

.openMonths {
	border: solid 2px var(--bg-highlight-color) !important;
	margin-bottom: 10px;
	border-radius: 2px;
}

.timeslistYearContainer.openMonths > .timeslistYearItem,
	.overtimeItemContainer.openMonths > .timeslistYearItem {
	background-color: var(--bg-highlight-color);
}

.timeslistYearItem, .wholeValue {
	height: 36px;
	padding: 2px 5px;
    border-radius: 2px;
}

.timeslistYearItem:hover {
	cursor: pointer;
	background-color: var(--texfield-highlight);
}

.wholeValue {
    border-bottom: solid 1px var(--bg-highlight-color);
}

.wholeValue > div {
    font-size: 16px;
    font-family: 'Open Sans Semi Bold', sans-serif;
}

.yearSummaryContainer {
	padding: 3px 5px;
}

.overtimeNotes, .vacationNotes, .messageNotes {
    width: calc(100% + 2px);
    margin: 0px;
    padding: 5px;
    margin-left: -2px;
    resize: none;
}
textarea::placeholder {
	font-size: 96%;
    color: var(--label-color);
}

.removeItem {
    position: absolute;
    right: 2px;
    top: 38px;
    color: white;
    transition: all 0.2s ease-in-out;
    padding: 3px 5px;
    background-color: var(--brighter-color);
    border: 1px solid var(--brighter-color);
    border-radius: 3px;
}

.removeItem:hover {
	color: #ff4b4b;
	background-color: rgba(255, 0, 0, 0.3);
    border: 1px solid #ff4b4b !important;
	cursor: pointer;
}

.messageContainer {
	width: 350px;
    padding: 10px;
}

.inputContainer {
	/*border-top: solid 1px var(--bg-highlight-color);*/
    padding-top: 5px;
}

.overtimeItemContainer {
	/*border: solid 2px var(--brighter-color); */
	position: relative;
	background: var(--brighter-color);
}

.masterInfoContainer .overtimeItemContainer {
	border: solid 2px var(--dark-color);
	background: var(--dark-color);
}

.overtimeSubContainer {
    padding: 3px 5px;
    border-radius: 2px;
    background-color: var(--brighter-color);
}

.dayHourElement {
	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0px 10px;
}

.hourCountingElement {
	display: flex;
    align-items: center;
    width: 100px;
}

.hourCountingElement > input {
    margin: 0px;
}

.hourLabel {
    margin-left: 5px;
    transition: all 0.5s ease-in-out;
}

.creatorPart, .messagePart {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 30px;
}

.messagePart div:not(.labelHighlight) {
    padding-bottom: 5px;
}

.creatorPart > div, .messagePart > div {
	text-align: left;
}

.creatorPart > div:nth-child(1), .messagePart > div:nth-child(1) {
	min-width: 65px; 
}

.fixedMessage {
    position: fixed;
    width: 220px;
    margin-left: 0px;
    z-index: 100000;
    background-color: var(--bg-highlight-color);
}

.contextButton {
    color: white !important;
    text-indent: 28px;
    text-shadow: none;
    padding: 5px !important;
}

.contextSelected {
	border-radius: 2px;
    background-color: #ff4b4b !important;
}

