/* Custom tabs */

.kircacsTabs {

}

.kircacsTabs div.tab-panel {
	clear: left;
}


.kircacsTabs div.tab-row {
	width: 100%;
}

.kircacsTabs div.tab-row ul {
	display: flex;
	flex-direction: row;
	/* border-bottom: 1px solid grey; */
}

.kircacsTabs div.tab-row ul li {
	list-style: none;
	flex-grow: 1;
    
    padding: 5px;
    margin: -13px 5px;
    max-width: 100px;
    
    font-size: 14px;
    
    background: #01c675;
	
	/* border-left: 1px solid grey;
	border-top: 1px solid grey; */
	
	box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
    
	border-radius: 8px 0 0 0;
	
	-webkit-transition: background 0.3s;
	moz-transition: background 0.3s;
	transition: background 0.3s;
}

.kircacsTabs div.tab-row ul li:hover {
	background: #00AD5C;
}

.kircacsTabs div.tab-row ul li a {
    color: white;
	display: block;
	text-align: center;
}

.kircacsTabs div.tab-row ul li.selected {
    background: white;
}

.kircacsTabs div.tab-row ul li.selected a {
    color: grey;
}

.kircacsTabs div.tab-panel {
	border-radius: 8px;
    
    box-shadow: 		0px 0px 8px 1px rgba(0,0,0,0.2);
	-moz-box-shadow:    0px 0px 8px 1px rgba(0,0,0,0.2);
   	-webkit-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
   	
   	margin: 8px;
   	padding: 8px;
   	
    overflow: hidden;
}

.kircacsTabs div.tab-panel div {
	animation-duration: 0.35s;
	animation-name: slidein;
}

@keyframes slidein {
  from {
    opacity: 0;
  }

  to {
  }
}

.kircacsTextEntry {
	border-radius: 8px;
	overflow: hidden;
	
	display: flex;
	flex-direction: row;
	justify-content: center;
	
    box-shadow: 		0px 0px 4px 1px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 4px 1px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.1);
   	
    margin: 8px;
}

.kircacsTextEntry label:first-child {
	flex-grow: 1;
	width: 33%;
	padding: 10px;
	background-color: #00a05e;
    color: white;
}

.kircacsTextEntry label:not(:first-child) {
	flex-grow: 2;
	width: 66%;
	padding: 10px;
}


.kircacsTextEntry input:-moz-read-only,
.kircacsTextEntry input:read-only { 
    background-color: lightgrey;
}

/* Kendo timepickers included */
.kircacsTextEntry input, 
.kircacsTextEntry select,
.kircacsTextEntry .k-timepicker,
.kircacsTextEntry .k-input {
	position: initial;
	flex-grow: 2;
	width: 66%;
	margin: 0;
	border:none !important;
    border-radius: inherit
}

.kircacsTextEntry input:focus,
.kircacsTextEntry select:focus {
	outline:none;
    border: 1px solid lightskyblue;
}

.kircacsTextEntry .k-timepicker,
.kircacsTextEntry .k-input {
	display: flex;
}

.kircacsTextEntry .k-picker-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	border: 0;
}

.kircacsTextEntry .k-input {
	width: 100%;
	height: 100%;
	background: transparent;
}

.kircacsTextEntry:empty {
   display: none;
}


.kircacsVerticalTextEntry {
	border-radius: 8px;
	overflow: hidden;
	
	display: flex;
	justify-content: center;
	flex-direction: column;
	
    box-shadow: 		0px 0px 4px 1px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 4px 1px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.1);
   	
    margin: 8px;
}

.kircacsVerticalTextEntry:empty {
   display: none;
}

.kircacsVerticalTextEntry label {
	width: 100%;
	padding: 10px;
	background-color: #00a05e;
    color: white;
}

.kircacsVerticalTextEntry input, 
.kircacsVerticalTextEntry textarea,
.kircacsVerticalTextEntry select {
	position: initial;
	width: 100%;
	margin: 0;
	border:none !important;
	padding:10px;
	max-width:100%;
	height: 45px;
  	border-radius: inherit
}

.kircacsVerticalTextEntry input:-moz-read-only,
.kircacsVerticalTextEntry input:read-only { 
    background-color: lightgrey;
}

.kircacsVerticalTextEntry input:focus,
.kircacsVerticalTextEntry select:focus {
	outline:none;
    border: 1px solid lightskyblue;
}

.kircacsVerticalTextEntry select[multiple],
.kircacsVerticalTextEntry textarea {
	height: 200px;
	resize: vertical;
}



/* Simple TextEntry */
.kircacsSimpleTextEntry {
	overflow: hidden;
	
	display: flex;
	flex-direction: row;
	justify-content: center;
	
   	padding: 8px;
}

.kircacsSimpleTextEntry label:first-child {
	flex-grow: 1;
	width: 50%;
	padding: 10px;
}

/* Kendo timepickers included */
.kircacsSimpleTextEntry label:not(:first-child),
.kircacsSimpleTextEntry input, 
.kircacsSimpleTextEntry select {
	padding: 10px;
}

.kircacsSimpleTextEntry input:-moz-read-only,
.kircacsSimpleTextEntry input:read-only { 
    background-color: lightgrey;
}

.kircacsSimpleTextEntry label:not(:first-child),
.kircacsSimpleTextEntry input, 
.kircacsSimpleTextEntry select,
.kircacsSimpleTextEntry .k-timepicker,
.kircacsSimpleTextEntry .k-input {
	position: initial;
	flex-grow: 2;
	width: 50%;
	margin: 0;
	border:none !important;
	border-radius: 8px;

    box-shadow: 		0px 0px 4px 1px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 4px 1px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.1);
}

.kircacsSimpleTextEntry .k-timepicker,
.kircacsSimpleTextEntry .k-input {
	display: flex;
}

.kircacsSimpleTextEntry .k-picker-wrap {
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
	border: 0;
}

.kircacsSimpleTextEntry .k-input {
	display: flex;
	padding:0;
	width: 100%;
	height: 100%;
	background: transparent;
}

.kircacsSimpleTextEntry input:disabled,
.kircacsSimpleTextEntry select:disabled {
	background-color: lightgrey !important;
	content: '' !important;
	color: lightgrey !important;
}

/* Simple Vertical TextEntry */
.kircacsSimpleVerticalTextEntry {
	overflow: hidden;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	
   	padding: 8px;
}

.kircacsSimpleVerticalTextEntry input:disabled,
.kircacsSimpleVerticalTextEntry select:disabled {
	background-color: lightgrey !important;
	content: '' !important;
	color:lightgrey !important;
}

.kircacsSimpleVerticalTextEntry label:first-child {
	flex-grow: 1;
	width: 100%;
	padding: 10px;
}

.kircacsSimpleVerticalTextEntry label:not(:first-child) {
	display:flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

/* Kendo timepickers included */
.kircacsSimpleVerticalTextEntry label:not(:first-child),
.kircacsSimpleVerticalTextEntry input, 
.kircacsSimpleVerticalTextEntry textarea,
.kircacsSimpleVerticalTextEntry select {
	position: initial;
	background-color: white;
	color: black;
	flex-grow: 1;
	width: 100%;
	margin: 0;
	padding: 10px;
	border:none !important;
	border-radius: 8px;
	height: 45px;
	max-width: 100%;

    box-shadow: 		0px 0px 4px 1px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 4px 1px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.1);
}

.kircacsSimpleVerticalTextEntry input:-moz-read-only,
.kircacsSimpleVerticalTextEntry input:read-only { 
    background-color: lightgrey;
}

.kircacsSimpleVerticalTextEntry select[multiple],
.kircacsSimpleVerticalTextEntry textarea {
	height: 200px;
	resize: vertical;
	min-height: 40px;
}

.kircacsSimpleVerticalTextEntry input:focus,
.kircacsSimpleVerticalTextEntry select:focus {
	outline:none;
    border: 1px solid lightskyblue;
}


.kircacsPatientPhoto {
	border-radius: 8px;
    
    box-shadow: 		0px 0px 8px 1px rgba(0,0,0,0.2);
	-moz-box-shadow:    0px 0px 8px 1px rgba(0,0,0,0.2);
   	-webkit-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
   	
   	margin: 8px;
   	padding: 8px;
   	
    overflow: hidden;
}

.kircacsHeader {
	margin-top: 20px;
	padding: 10px;
	font-size: 18px;
	color: grey;
	border-radius: 18px;
	border-top: 8px solid #a2daae;
}

.kircacsHeader.orange {
	border-top-color: #ffd15c;
}

.kircacsCheckbox {
	display: inline-flex;
	flex-direction: row;
	
	vertical-align: middle;
	
	width: 25px;
	height: 25px;
	
	margin-right: 10px;
}

.kircacsCheckbox.small {
	-ms-transform: scale(0.8); /* IE 9 */
    -webkit-transform: scale(0.8); /* Safari */
    transform: scale(0.8);
}

.kircacsCheckbox input {
  	opacity: 0;
	cursor: pointer;
  	width: 100%;
  	height: 100%;
  	z-index: 1;
  	padding: 0;
  	margin: 0;
  	min-width:100%;
  	min-height:100%;
}

.kircacsCheckbox .kirCheck, 
.kircacsCheckbox .kirCheck2 {
	width: 20%;
    height: 100%;
	
	background-color: red;
	
	z-index: 0;
	
	-webkit-transition: all 0.3s ease;
	moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
	border-style: solid;
	border-width: 0;
	border-color: transparent;
	
	margin-left: -50%;
	margin-right: 25%;
	
    transform: rotate(-45deg);
}

.kircacsCheckbox .kirCheck2 {
    transform: rotate(45deg);
}

.kircacsCheckbox input:checked ~ .kirCheck2 {
	background-color: transparent;
    transform: rotate(-45deg);
}

.kircacsCheckbox input:checked ~ .kirCheck {
	background-color: transparent;
	
	margin-top: -20%;
	
	width: 50%;
    height: 100%;
    
    border-color: #a2daae;
    border-width: 0 0.3em 0.3em 0;
    
    transform: rotate(45deg);
}

.kircacsButton {
	background-color: #00a05e;
	
	border-radius: 8px;
	border-style: none;
	
    box-shadow: 		0px 0px 8px 2px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 8px 2px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
   	
	cursor: hand;
	cursor: pointer;
	color: white;
	
	padding: 10px;
	margin: 8px;
	
	-webkit-transition: all 0.3s;
	moz-transition: all 0.3s;
	transition: all 0.3s;
}

.kircacsButton.mini {
	margin: 0;
    padding: 2px 10px;
    border-radius: 4px;
}

.kircacsButton:disabled {
	background-color: #8c8c8c !important;
}

.kircacsButton:hover {
	background-color: #1ABA78;
}

.kircacsButton.blue {
  background: #4d93db;
}
.kircacsButton.blue:hover {
  background: #2979cc;
}

.kircacsButton.kircacs {
	background-color: #0097a0;
}

.kircacsButton.kircacs:hover {
	background-color: #00676d;
}

.kircacsButton.orange {
	background-color: #edb742;
}

.kircacsButton.orange:hover {
	background-color: #D49E29;
}

.kircacsButton.red {
	background-color: #cb5b59;
}

.kircacsButton.red:hover {
	background-color: #b83c39;
}

.kircacsBubbleText {
	border-radius: 8px;
	overflow: hidden;
	
	display: flex;
	justify-content: center;
	flex-direction: column;
	
    box-shadow: 		0px 0px 4px 1px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 4px 1px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.1);
   	
    margin: 2px;
    
	width: 100%;
	padding:6px;
	height: 40px;
}

.kircacsBubbleText.variable {
	width: auto;
}

.kircacsBubbleText.simple {
	border-radius: 0;
	border: 1px solid lightgrey;
	
	box-shadow: 		initial;
	-moz-box-shadow:    initial;
   	-webkit-box-shadow: initial;
}

/* TODO: Custom upload form. */
.kircacsUploadForm {
	border-radius: 8px;
	overflow: hidden;
	
	display: flex;
	justify-content: center;
	flex-direction: column;
	
    margin: 8px;
	
    box-shadow: 		0px 0px 8px 2px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 8px 2px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
}

.kircacsUploadForm img {
	display:block;
	width:auto;
	height:auto;
	object-fit: contain;
}

.kircacsUploadForm label {
	
}

.kircacsUploadForm input[type="file"] {
	font-size: 100px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.kircacsUploadForm input[type="submit"] {
}

.col-xs-quarter {
	width: 25%;
	float: left;
}

.col-xs-half {
	width: 50%;
	float: left;
}


/* Block */
.kircacsBlock {
	overflow:hidden;
	border-radius: 8px;
	
	margin: 20px 10px;
	padding: 10px;
	
    box-shadow: 		0px 0px 8px 2px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 8px 2px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
}

.kircacsBlock.simple {
	border-radius: 0;
	border: 1px solid lightgrey;
	
	box-shadow: 		initial;
	-moz-box-shadow:    initial;
   	-webkit-box-shadow: initial;
}

/* Wicket popup */

div.kircacsPopup {
	overflow:hidden;
	border-radius: 8px;
	
	margin: 10px;
	
    box-shadow: 		0px 0px 8px 2px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 8px 2px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
}

div.kircacsPopup .w_right .w_caption {
	box-shadow: 		0 1px 8px grey;
	-moz-box-shadow:    0 1px 8px grey;
   	-webkit-box-shadow: 0 1px 8px grey;
	
	/* background: #0097a0; 
	background: -webkit-linear-gradient(left top, #00c2cc, #0097a0 , #006166); 
	background: -moz-linear-gradient(bottom right, #00c2cc, #0097a0, #006166);
	background: linear-gradient(to bottom right, #00c2cc, #0097a0 , #006166);  */
	
	
	background: #00A05E; 
	background: -webkit-linear-gradient(left top, #1ABA78, #00A05E , #008745); 
	background: -moz-linear-gradient(bottom right, #1ABA78, #00A05E, #008745);
	background: linear-gradient(to bottom right, #1ABA78, #00A05E , #008745);  
}

div.kircacsPopup.orange .w_right .w_caption {
	background: #edb742; 
	background: -webkit-linear-gradient(left top, #FFD15C, #edb742 , #D49E29); 
	background: -moz-linear-gradient(bottom right, #FFD15C, #edb742, #D49E29);
	background: linear-gradient(to bottom right, #FFD15C, #edb742 , #D49E29);  
}

div.kircacsPopup.purple .w_right .w_caption {
	background: #8230c4; 
	background: -webkit-linear-gradient(left top, #a83dff, #8230c4, #531d7e); 
	background: -moz-linear-gradient(bottom right, #a83dff, #8230c4, #531d7e);
	background: linear-gradient(to bottom right, #a83dff, #8230c4, #531d7e);  
}

div.kircacsPopup.red .w_right .w_caption {
	background: #ba1a1a; 
	background: -webkit-linear-gradient(left top, #ba1a1a, #a00000, #870000); 
	background: -moz-linear-gradient(bottom right, #ba1a1a, #a00000, #870000);
	background: linear-gradient(to bottom right, #ba1a1a, #a00000, #870000);  
}

div.kircacsPopup [class^="w_right"] {
	margin: 0 !important;
}

/* Popup scrollsbars - VIRKER KUN PÅ WEBKIT */

div.kircacsPopup ::-webkit-scrollbar {
    width: 10px;
}

div.kircacsPopup ::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

div.kircacsPopup ::-webkit-scrollbar-thumb {
    background: #a2daae; 
}

div.kircacsPopup ::-webkit-scrollbar-thumb:hover {
    background: #89C195; 
}

div.kircacsPopup .w_close {
  position: absolute;
  width: 16px;
  height: 16px;
  opacity: 0.3;
}

div.kircacsPopup .w_close:hover {
  opacity: 1;
}

div.kircacsPopup .w_close:before, 
div.kircacsPopup .w_close:after {
  position: absolute;
  left: 7px;
  content: ' ';
  height: 16px;
  width: 2px;
  background-color: #333;
}

div.kircacsPopup .w_close:before {
  transform: rotate(45deg);
}
div.kircacsPopup .w_close:after {
  transform: rotate(-45deg);
}

/* Wicket slider */

.kircacsSlider {
	width: 100%;
	padding: 10px;
}

.kircacsSlider .ui-slider {
	border: none;
	border-radius: 0;
	height: 20px;
	
	box-shadow: 		0px 0px 8px 2px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 8px 2px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
} 

.kircacsSlider .ui-slider-range {
	border: none;
	border-radius: 0;
	
	background: #42c4ed;
	
	
	
} 

.kircacsSlider .ui-slider-handle {
	border: none;
	border-radius: 0;
	outline: none;
	top: 0;
	bottom: 0;
	background: #0082ab;
	height: 100%;
	width: 4px;
	margin: 0;
} 



/*
	Javascript + CSS + HTML only tab system. Could be a better option for wicket synchronization?
	Uses Flexbox too.
*/

.kircacsJStabMain {
	display: flex;
	flex-wrap: wrap;
	width:100%;
	border:none !important;
	padding:0;
	background:none !important;
}

.kircacsJStabMain > ul,
.kircacsJStabMain > ul > li {
	border: none !important;
    background: transparent !important;
    outline: none !important;
}

.kircacsJStabMain > ul > li > a,
.kircacsJStabButton {
	display:flex;
	flex-grow: 1;
	border: 0;
	outline: none;
	padding: 5px;
    margin: 0 5px !important;
    max-width: 140px;
    
    font-size: 14px;
    
    background: #01c675;
	
	/* border-left: 1px solid grey;
	border-top: 1px solid grey; */
	
	box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
    
	border-radius: 8px 0 0 0;
	
	-webkit-transition: background 0.3s;
	moz-transition: background 0.3s;
	transition: background 0.3s;
	
	color: white;
	justify-content: center;
	
	z-index: 1;
}

.kircacsJStabMain > ul > li:first-child,
.kircacsJStabButton:first-child {
	margin-left: 30px !important;
}

.kircacsJStabMain > ul > li:not(.ui-tabs-active):hover > a,
.kircacsJStabButton:hover {
	background: #00AD5C;
	color: white;
}

.kircacsJStabMain > ul > li:hover::-moz-focus-inner > a,
.kircacsJStabButton:hover::-moz-focus-inner { 
	border:0; 
}

.kircacsJStabMain > ul > li.ui-tabs-active > a,
.kircacsJStabButton.active {
	background: white;
	color: grey;
}


.kircacsJStabMain > div,
.kircacsJStabContent {
	display:none;
	width:100%;
	flex-wrap: wrap;
	
	border-radius: 8px;
    
    box-shadow: 		0px 0px 8px 1px rgba(0,0,0,0.2);
	-moz-box-shadow:    0px 0px 8px 1px rgba(0,0,0,0.2);
   	-webkit-box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
   	
   	margin: 0px 8px 8px 8px;
   	padding: 8px !important;
   	
    overflow: hidden;
}

.kircacsJStabMain > div[aria-hidden="false"] {
	display:flex !important;
}

.kircacsCategory {
	display: flex;
	width: 100%;
	/* border-top: 1px solid #a2daae; */
	box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	margin: 5px;
	overflow: hidden;
}

.kircacsCategory>div:first-child {
	display: flex;
	padding: 10px;
	font-size: 14px;
	color: black;
	/* border-right: 8px solid #a2daae; */
	width: 120px;
	/* justify-content: flex-end; */
	background-color: #a2daae;
}

.kircacsCategory>div:first-child span {
	/* transform-origin: 100% 100%;
    transform: rotate(-90deg) translate(50%); */
	text-align: left;
}

.kircacsCategory>div:first-child::after {
	height: auto;
}

.kircacsCategory>div:not(:first-child) {
	/* width: auto;
	display: flex; */
	width: 100%;
}

/*
	UI Accordion changes 
*/

.ui-accordion-content-active {
}

.ui-accordion-content:not(.ui-accordion-content-active) {
}

.ui-accordion-content {
}

.ui-accordion-header:hover {
	display:flex !important;
}

.ui-accordion-header {
	display:flex !important;
	color: white !important;
	
	border-radius: 0;
	
	
	box-shadow: 		0 1px 8px grey;
	-moz-box-shadow:    0 1px 8px grey;
   	-webkit-box-shadow: 0 1px 8px grey;
	
	border: none !important;
	
	background: #00A05E !important; 
	background: -webkit-linear-gradient(left top, #1ABA78, #00A05E , #008745) !important; 
	background: -moz-linear-gradient(bottom right, #1ABA78, #00A05E, #008745) !important;
	background: linear-gradient(to bottom right, #1ABA78, #00A05E , #008745) !important;  
}

.ui-accordion-header.orange {
	background: #edb742; 
	background: -webkit-linear-gradient(left top, #FFD15C, #edb742 , #D49E29) !important; 
	background: -moz-linear-gradient(bottom right, #FFD15C, #edb742, #D49E29) !important;
	background: linear-gradient(to bottom right, #FFD15C, #edb742 , #D49E29) !important;  
}

.ui-accordion-header-active.orange {
	background: #FFD15C; 
	background: -webkit-linear-gradient(left top, #D49E29, #edb742 , #FFD15C) !important; 
	background: -moz-linear-gradient(bottom right, #D49E29, #edb742, #FFD15C) !important;
	background: linear-gradient(to bottom right, #D49E29, #edb742 , #FFD15C ) !important;  
}

.ui-accordion-header-active {
	background: #00A05E !important; 
	background: -webkit-linear-gradient(left top, #008745 , #00A05E , #1ABA78) !important; 
	background: -moz-linear-gradient(bottom right, #008745 , #00A05E , #1ABA78 ) !important;
	background: linear-gradient(to bottom right, #008745, #00A05E , #1ABA78) !important;  
}


.kircacsPagableNav {
	display:flex;
	align-items:center;
	justify-content:center;
}


.kircacsPagableNav .goto a {
	display:flex;
	
	border-radius: 8px;
	border-style: none;
	
	margin:10px !important;
	padding:10px !important;
	
   	
	cursor: hand;
	cursor: pointer;
	
	padding: 10px;
	margin: 8px;
}
.kircacsPagableNav .goto a[disabled] {
    box-shadow: 		0px 0px 8px 2px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 8px 2px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
}


.kircacsPagableNav .first,
.kircacsPagableNav .prev,
.kircacsPagableNav .next,
.kircacsPagableNav .last {
	display:flex;
	background-color: #00a05e;
	
	border-radius: 8px;
	border-style: none;
	
    box-shadow: 		0px 0px 8px 2px rgba(0,0,0,0.1);
	-moz-box-shadow:    0px 0px 8px 2px rgba(0,0,0,0.1);
   	-webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.1);
   	
	cursor: hand;
	cursor: pointer;
	color: white;
	
	padding: 10px;
	margin: 8px;
	
	-webkit-transition: all 0.3s;
	moz-transition: all 0.3s;
	transition: all 0.3s;
}

.rowDataGeneral {
	padding: 4px 8px;
	width: 100%;
	background: #f1f7fc;
	
	-webkit-transition: background 0.2s;
  	-moz-transition: background 0.2s;
    transition: background 0.2s;
}

/* .rowDataGeneral:hover {
	background: #E4EAEF;
} */

.rowDataGeneral:nth-of-type(odd) {
	background: transparent;
}

/* .rowDataGeneral:nth-of-type(odd):hover {
	background: #E4EAEF;
} */

.rowDataGeneralWithHover {
	padding: 4px 8px;
	width: 100%;
	background: #f1f7fc;
	
	-webkit-transition: background 0.2s;
  	-moz-transition: background 0.2s;
    transition: background 0.2s;
}

.rowDataGeneralWithHover:hover {
	background: #E4EAEF;
}

.rowDataGeneralWithHover:nth-of-type(odd) {
	background: transparent;
}

.rowDataGeneralWithHover:nth-of-type(odd):hover {
	background: #E4EAEF;
}

.rowDataGeneralWithHover.yellow {
	background: #ffe19e;
}

.rowDataGeneralWithHover:nth-of-type(odd).yellow {
	background: #ffdb8c;
}

.rowDataGeneralWithHover.grey {
	background: transparent;
}

.rowDataGeneralWithHover:nth-of-type(odd).grey {
	background: #f5f5f5;
}

.kircacsColorRow {
	background: #f1fcf1
}

.kircacsColorRow:nth-of-type(odd) {
	background: #e5f7e7;
}

.kircacsColorRow.red{
	background: #fcf1f1;
}

.kircacsColorRow.red:nth-of-type(odd) {
	background: #f7e5e5;
}

.kircacsColorRow.blue{
	background: #f1f1fc;
}

.kircacsColorRow.blue:nth-of-type(odd) {
	background: #e5e5f7;
}

.kircacsPlus {
	border:none;
	opacity: 0.9;
    background: transparent;
    font-size: 32px;
    font-weight: bold;
    padding: 0;
}

.kircacsPlus:hover {
	opacity: 1;
}


.kircacsFlexColumn {
	display:flex;
	flex-direction:column;
	overflow-wrap: break-word;
}

.kircacsFlexRow {
	display:flex;
	flex-direction:row;
	overflow-wrap: break-word;
}

.kircacsFlexRow > label,
.kircacsFlexRow > h4,
.kircacsFlexRow > a,
.kircacsFlexRow > input,
.kircacsFlexRow > div {
	flex:1;
	overflow: hidden;
}

.kircacsFlexRow > a {
	color: #4d93db;
    text-decoration: underline;
}



.kircacsFlowHeader {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: white;
    margin: -5px;
    z-index: 10;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid grey;
}


.kircacsContextMenu {
	z-index: 1000;
}

.clientHeader {
	border-bottom: solid 1px grey;
	padding:5px;
}

.clientContent {
	align-items: center;
}




.CCcontainer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  
  display: flex;
  flex-direction: column;
}

.CCsection {
  flex-grow: 1;
  
  display: flex;
  flex-direction: column;
  
  /* for Firefox */
  min-height: 0;
}

.CCscrollable-content {
  flex-grow: 1;
  flex-shrink: 0;
  
  overflow: auto;
  
  /* for Firefox */
  min-height: 0;
}


/*
	Faktura linjer farver i debitor konto mm.
*/

.KircacsBGColor_Indbetaling {
	background: linear-gradient(to right, #00874540 , #00000000) !important;  
}

.KircacsBGColor_Udbetaling {
	background: linear-gradient(to right, #00874540 , #00000000) !important;  
}

.KircacsBGColor_Faktura {
	background: linear-gradient(to right, #fcbc1140 , #00000000) !important;  
}

.KircacsBGColor_Kreditnota {
	background: linear-gradient(to right, #00874540 , #00000000) !important;   
}

/*
	Telefon opkald i smart kalender mm.
*/

@keyframes Stripe_Motion {
	from {
		transform: translateX(0);
	}
	to { 
		transform: translateX(46px);
	}
}

.kircacsBGStripeAnimation {
	background: repeating-linear-gradient(-55deg, #f8e9db 1px, #fff5ed 2px, #fff5ed 11px, #f8e9db 12px, #f8e9db 20px );
	
    animation-name: Stripe_Motion;
	animation-duration: .4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.KircacsBGColor_Phone_PatientBackground {
	background: #00000010;
	cursor: pointer;
}

.KircacsBGColor_Phone_PatientBackground:hover {
	background: #00000020;
}

.KircacsBGColor_Phone_Calling,
.KircacsBGColor_Phone_Missed,
.KircacsBGColor_Phone_Calling_unknown,
.KircacsBGColor_Phone_Taken {
	padding: 1px;
	margin-bottom:1px;
}


.KircacsBGColor_Phone_Calling {
	background: #00874580;
}

.KircacsBGColor_Phone_Calling_unknown {
	background: yellow;
}

.KircacsBGColor_Phone_Missed {
	background: #cb5b59;
	color:white;
}

.KircacsBGColor_Phone_Taken {
	background: #4d93db;  
	color:white;
}


.KircacsGreenBarHeader {
	display: flex;
	flex-direction: row;
	background: #01c675;
    box-shadow: inset -1px 0px 0px 0px #00a05e;
    height: 44px;
    padding-left: 15px;
    align-items: center;
}

.KircacsGreenBarHeader label {
	font-size: 18px;
    color: #fff;
}

.KircacsGreenBarHeader select {
	background-color: #00a05e;
    color: white;
    border: none;
}

.KircacsGreenBarHeader > * {
    flex:1;
}