/** Add css rules here for your application. */
@font-face {
    font-family: dancing;
    src: url(font/DancingScript-Bold.ttf);
    font-weight: bold;
}
@font-face {
    font-family: dancing;
    src: url(font/DancingScript-Regular.ttf);

}
.sectionumber{
    border-radius: 50%;
    background-color: lightgrey;
    padding: 5px;
    width: 1em;
    height: 1em;
    text-align: center;
    line-height: 1em;
    color: white;
    font-weight: bolder;
}
.complaines .keywordul{
    border: solid 2px rgba(128, 128, 128, 0.37);
    background: #fffef3;
}
.historyofdisease{
    background: #fffef3;
    color: olivedrab;
    border: solid 2px rgba(128, 128, 128, 0.37);
    border-radius: 5px;
    outline: none;
    min-height: 50px;
    width: 98%;
    padding: 1%;

    overflow: scroll;
    font-size: larger;
}
.font-dancing{
    font-family: 'dancing', cursive;
}
.syndromshat{
    background: #f0ff5d;
    color: #dc6b0b;
    border: solid 2px rgba(128, 128, 128, 0.37);
    border-radius: 5px;
    outline: none;
    min-height: 50px;
    width: 98%;
    padding: 1%;
    font-family: 'dancinng', cursive;
    overflow: scroll;
    font-size: larger;
}
.container{
    display: flex;
    justify-items: stretch;
    align-items: stretch;
}
.matchcontainer{
    flex: 1;
}
.spectemplate{
    align-self: flex-end;
    min-width: 200px;
    margin-right: 15px;
}
.background-inherit{
    background-color: inherit !important;
}
.menucontent {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 25px;
    right: 0px;
    padding-left: 0%;
    padding-right: 15px;
    cursor: pointer;
}
.actionicon{
    background-image: url('images/patientaction.png');
}

.defaultmenuicon{
    background-image: url('images/menu.png');

}
.menuicon{
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important;
    background-size:16px 16px;
    position:absolute;
    left: 0px;
    bottom:0px;
    top:0px;
    width:20px;
}
.shaking {
    animation: shaker 0.2s linear infinite;
    animation-direction:reverse;
}

@keyframes shaker {
    0% {transform:rotate(-2deg);}
    25% {transform:rotate(0deg);}
    50% {transform:rotate(2deg);}
    75% {transform:rotate(0deg);}
    100%{transform:rotate(-2deg);}
  
}

.keywordul {
    min-height: 30px;
    border: solid 1px grey;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: flex-start;
    list-style-type: none;
    cursor: text;
    flex-wrap: wrap;
    margin: 0px;
}

.keywordul>li{
   font-size: 1.2em;
}

.keywordul>li:first-child{
    margin-left: 0px;
}
.keywordul>li:last-child{
    background-color: transparent;
    position: relative;
    font-size: 1.2em;
    margin-left: -3px;
    
}
.keywordul>li:last-child div{
    padding: 0px;
    width: fit-content;
    outline:none;
    height: 25px;
    line-height: 25px;
    cursor: text;
    margin: 5px 1px;
    font-size: 1.5em;
    min-width: 1em;
}

.keywordul>li .dropdown{ 
    position: fixed;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    white-space: nowrap;
    list-style-type: none;
    padding-left: 1px;
    z-index: 1;
    background-color: lightyellow;;
    font-size: smaller;
    border: solid 1px lightgrey;
    border-top: none;
    max-height: 20em;
    overflow-x: scroll;
    margin-top: -5px;
    width: fit-content;
    left: 100%;
}
.keywordul>li .dropdown li{
    color: #6d1717;
    line-height: 20px;
    border-bottom: 1px dashed lightcoral;
    /*padding-right: 5%;*/
    cursor: pointer;
    font-size: 1.1em;
    padding: 1px 5px;
}

.keywordul>li .dropdown li:hover{
    font-weight: bold;
    text-decoration: underline;
}


.keywordul>li .dropdown li:last-child{
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom:none;
}



.frameSize{
      width: 8.56cm;
      height: 5.4cm;
      border:none;
}
.printbox .popupContent{
	display: flex;
    flex-direction: column-reverse;
    align-items: center;
}


.cardcontainer{
    width: 100% !important;
    height: 300px !important;
    display: flex;
}
.cardpreview{
	max-width: 400px !important;
    max-height: 220px !important;
    width: 90% !important;
    height: 90% !important;
}    

.flip {
    perspective: 800;
    position: relative;
    width: 100%;

}
.flip .card.flipped {
  transform:rotatey(-180deg);
}

.flip .card {
    width: 100%;
    position:relative;
    display: inline-block;
    transform-style: preserve-3d;
    transition: 0.5s;
}
.flip .card .face {
    width: 100%;
    position:relative;
    z-index: 2;
    backface-visibility: hidden;  /* W3C */
    -webkit-backface-visibility: hidden; /* Safari & Chrome */
    -moz-backface-visibility: hidden; /* Firefox */
    -ms-backface-visibility: hidden; /* Internet Explorer */
    -o-backface-visibility: hidden; /* Opera */

}
.flip .card.flipped .back {
    position:absolute;
    display: block;
}
.flip .card.flipped .front{
    display: none;
}
.flip .card .back {
    display: none;
}
.flip .card.flipped .front{
    display: block;
}
.flip .card .front {
    position: relative;
    z-index: 1;
    cursor: pointer;

}
.flip .card .back {
	top:0;
    cursor: pointer;
    position: relative;
    transform:rotatey(-180deg);

}

.rotateUp {
    animation:spinUp 0.3s linear;
    animation-fill-mode: forwards;
}
@keyframes spinUp {
    from {transform:rotateZ(0deg);}
    to { transform:rotateZ(180deg); }
}
.rotateDown {
    animation:spinDown 0.3s linear;
    animation-fill-mode: forwards;
}
@keyframes spinDown {
    from {transform:rotateZ(180deg);}
    to { transform:rotateZ(0deg); }
}

.collapsible{
    overflow:hidden;
    transition:height 0.3s ease-out;
    height:auto;

}


.chart.front, 
.chart.back  {
	border-radius:5px;
}
.leftid{
	text-align: left;
    margin-left: 25px;
}
.securitycode{
	padding-left: 10px;
    font-weight: 600;
    padding-right: 10px
}
.EditableNote .mceLayout{
	width: 100% !important;
}
.institutions:hover ul{
	/*display:block;*/
}
.instselector li:last-child{
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom:none;
}

.institem:hover{
	 text-shadow: 1px 1px lightgrey;
}

.institem{
	border-bottom:solid 1px lightgray;
	line-height: 20px;
    padding: 5px;
    cursor:pointer;
   
}
.instselector{
    padding: 0px;
    margin: 0px;
    text-align: right;
    list-style: none;
    background-color: #EFEFEF;
    padding-bottom: 5px;
    border-radius: 0px 0px 5px 5px;
    border: solid 1px lightgray;
    height :0px;
    overflow:hidden;
    animation-name: headsliderup;
    animation-duration: 0.2s;
  
}
.naming{
	font-size: x-large;
    padding-top: 25px;
}
.verso,
.recto{
	border: solid 2px green;
    border-radius: 10px;
    box-sizing: content-box;
    line-height: 35px;
    text-align: center;
    height: 100%;
    box-shadow: #9E9E9E 2px 2px 2px;
}
.versotext{
	background-color: rgba(56, 131, 56, 0.39);
    font-size: 1.5em;
    text-align: right;
}

.institutions:hover .instselector{
    animation-name: headsliderdown;
    animation-duration: 0.2s;
    animation-fill-mode:forwards;
}

@keyframes headsliderup {
    from {height: max-content}
    to{height :0px}

}

@keyframes headsliderdown {
    from {height: 0px}
    to{height :max-content}

}

table .gwt-TabBar .gwt-TabBarItem.gwt-TabBarItem-selected {
    background: white !important;
    color: rgba(175, 6, 6, 0.54) !important;
}
.gwt-TabBar .gwt-TabBarItem {
    background-color: rgba(175, 6, 6, 0.54) !important;
    color: white !important;
    outline: none; !important;
}

.datepickerposition {
	position:relative;
	padding: 0px !important;
	border-width: 1px;
	border-style: solid;
	border-color: #999 #CCC #CCC;
}

.gwt-TabPanelBottom{
    position: absolute;
    top: 25px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: solid 1px  #fbfcfa !important;
    padding: 1px !important;
}
.picture{
    max-width: 90px;
    max-height: 110px;
    
}
	

.hoverreact:hover{
	font-weigth:bold;
	color: white;
	background-color: lightgray;
}
.badgeheader{
	background-color: lightgray;
    color: white ;
    letter-spacing: 1px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.importanthead{
	background-color:rgba(175, 6, 6, 0.54) !important;
}
.workerhead{
	color: white;
    font-weight: bold;
    background-color:lightgrey;
    padding: 0px 5px;
    font-size: 16px;
    letter-spacing: 1.5px;
    display:flex;
    flex-direction: row;
    flex:1;
}
.graphcanevas{
	width: 100% !important;
    height: 100% !important;
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;

}
.print .graphcanevas{
    width: 75% !important;
    height: 25% !important;
    margin: auto;
}
.workercontainer{
	display:flex;
	flex-direction:column;
}
.largsub{
	font-weight: bolder;
    font-size: x-large;
    vertical-align: sub;
}
.flashing {
    animation: blinker 1s linear infinite;
}
.clearboth{
	clear:both;
}

@keyframes blinker {  
  50% { opacity: 0.0; color:red;}
}

.nooutline{
	outline:none;
}
.notificon{
	background-image: url('images/notification.png');
	background-position: 50% 50% !important;
    background-repeat: no-repeat !important;
    background-size:16px 16px; 
    position:absolute;
    left: 0px;
    bottom:0px;
    top:0px;
    width:20px;
}
.item-title{
    left: 25px;
    display:inline-block;
}
.item-tag{
	
	margin-left: 0px !important;
	font-size: 1em !important;
    margin-right: 5px;
}
.tag-postion{
	position:absolute;
    left: 20px;
	
	top: 3px;
	margin-left: 0px !important;
}
.notifcenter{
	position:absolute !important;
	right:0px;
	
}
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.upicone{
    background-image: url('images/au.png');
    background-repeat: no-repeat;
    background-position:  95% 50%;
    background-size:12px 7px;
}

.downicone{
    background-image: url('images/ad.png');
    background-repeat: no-repeat;
    background-position:  95% 50%;;
    background-size:12px 7px;
}

.singleline{
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 15px;
    display: inline-block;
    min-height: 20px;
}
.rendererBox{
	border: solid 1px lightgrey;
	padding-left: 5px;
	box-shadow: 1px 1px 1px lightgrey;
	border-radius: 0px 5px 5px 5px;
}
.textBoxHead{
    border-radius: 5px 5px 0px 0px;
    padding: 2px 5px;
    width: 100%;
    text-align: center;
    -webkit-box-sizing: border-box; /* Safari/Chrome, OTHER WebKit */
    -moz-box-sizing: border-box;    /* Firefox, OTHER Gecko */
    box-sizing: border-box;
}
.textEditButton{
	height: 20px;
	border: none;
	width: 20px;
}
.settingorderfield{
	width:10px;
	height:10px;
	font-size:0.8em;
	float:left;
	margin-top: 7px;
    margin-right: 10px;
}


.vcenterright{
	float: right;
	vertical-align: bottom;
	margin-top: 1%;
}
.pagesubheader{
	background-color: white;
	font-size: 20px;
	color: grey;
	border: 1px solid lightgrey;
	border-right: 1px solid lightgrey;
	border-left: 1px solid lightgrey;
	line-height: 35px;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.logotype2{
    background-size: 60% !important;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height: 65px;
    width: 180px;
    margin: 10px;
}
.absolutefullwidth{
    left: 0px;
    right: 0px;
}
.head-title{
    font-style: normal;
    margin-bottom: 30px;
    font-stretch: extra-expanded;
    font-size: 3em;
    font-weight: bolder;
    text-shadow: 1px 1px 2px;
    text-align: center;
}
.logotype1{
    background-size: 70% !important;
    background-repeat: no-repeat;
    height: 65px;
    width: 180px;
    margin: 10px;
}
.ksoflogo{
    background-image: url(images/ksoft.png);
    background-position: 0% 50%;

}
.adielogo{
    background-image: url(images/adie.png);
}
.aoblogo{
    background-image: url(images/aob.png);
    background-position: 90% 50%;
}
.bomlogo{
    background-image: url(images/bom.png);
}
.onmslogo{
    background-image: url(images/onms.png);
    background-size: 40% !important;
    height: 107px;

}
.msaslogo{
    background-image: url(images/msas.png);
    background-size: 65% !important;
    height: 107px;
    width: 190px;
}

.drapeau{
    background-image: url(images/drapeau.png);
    background-repeat: no-repeat;
    padding-right: 50px;
    background-position: 100% 0%;
    height: 50px;
    line-height: 25px;
}
.popupContent .stikycontenair{
    font-size: 2em !important;
}
.star{
	background-image: url("images/green_star.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0px;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 45%;
    left: 5%;
}
.absolutebottom{
    position: absolute;
    bottom: 0px;
}
.wctitle{
    font-size: 2.0em;
    text-shadow: 1px 1px 1px #cecbcb ;
    line-height: 25px;
    color: #6090c8;
    text-align: center;
    margin-bottom: 20px;
    width: 75%;
    font-weight: bolder;
}
.admin-active-menu{
	background-color:lightgrey;
}


select{
	padding-left: 15px !important;
}
.capitalize{
	text-transform:capitalize;
}

.cardnumber{
    color: lightgray;
    font-weight: 400;
    font-size: 3em;
}

.cellbody{
	font-size: 0.95em;
	font-style: italic;
}

.mainpanel {
    margin: 75px 5% 65px;
    flex:1;
    width: 90%;
    min-width: 1200px; 
    min-height: 580px;
    position:relative;
}


.patienttoppanel{
	position: absolute;
    left: 30%;
    right: 30%;
	z-index:-1;
	height: 25px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
	background-color: #EFEFEF;
    border-bottom:solid 1px gray;
    border-left:solid 1px gray;
    border-right:solid 1px gray;
	top: 40px;
	border-top-color: #EFEFEF;
	padding: 0px 10px 0px 10px;
}
.localalert{
    position: absolute;
    z-index:-1;
    left: 5%;
    right: 5%;
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom:solid 1px gray;
    border-left:solid 1px gray;
    border-right:solid 1px gray;
    border-top-color: #EFEFEF;
    padding: 0px 10px 10px 10px;
}

.activetab{
	box-shadow: 0px 1px 0px 0px   #888888;
	position:relative;
	font-weight:bold;
	background-color: #EFEFEF !important;
	z-index: 1;
}

.mainbackground{
  background-image: url('images/page_t.jpg');
  background-repeat: repeat;
  background-attachment: scroll;
  
}
.inputs{
    width: 100%;
    height: fit-content;

}
.welcomelogin{
    width: 800px;
    height: 550px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: inherit;
    justify-content: center;
    margin-top: 10%;
    box-shadow: 1px 1px 10px 0px #445f80;
    border: 1px solid #445f80 !important;


}
.textcolor-slogan{
    color: #445f80 !important;
}
.drugname{
    text-align: center;
    color: rgba(0, 0, 162, 0.71);
    font-size: 1.5em;
    font-weight: 900;
}
.drugicone{
    background-image: url('images/drug.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px;
    padding-left: 25px;
}

.loadingicone{
    background-image: url('images/progress16.gif');
    background-repeat: no-repeat;
    background-position: right center;
}

.searchicone{
 	background-image: url('images/search.png');
  	background-repeat: no-repeat;
  	background-position: right center;
}
.addicone{
    background-image: url('images/add16px.png') !important;
    background-repeat: no-repeat !important;
    
}
.backgroudsize-16px{
	background-size:16px;
}


.maleicon{
    background-image: url('images/male.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size:14px;
}

.femaleicon{
    background-image: url('images/female.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size:12px;
}
.stickyslot{
	position: absolute;
    right: 1%;
    top: -20px;
    width: 96px;
    height: 96px;
    z-index: 50;
}



/* Chrome, Safari, Opera */
@-webkit-keyframes stikyopening {
    from {height:0px;}
    to {height: 300px;}
}

/* Standard syntax */
@keyframes stikyopening {
    from {height:0px;}
    to {height: 300px;}
}
 
.stikyul li{
	margin-bottom:25px !important;
}
.stikyul li:hover{
    text-shadow: 1px 1px lightgrey;
}


.stikyul{
	list-style-type: none;
    padding-left: 2px;
    margin-top: 5px;
    overflow-y: scroll;
    position: absolute;
    bottom: 5px;
    top: 45px;
    right: 10px;
    left: 10px;
    overflow-x: hidden;
    margin-right: -24px !important;
    padding-right: 24px !important;
}
.stikydate{
	font-size: 1em;
    display: inline-block;
    margin-left: 5px;
    color:red;
    margin-right: 15px;
}
.stikydate::first-letter{
	text-transform:uppercase;
}
.stikyauthor{
    font-size:1.1em;
    align-self:flex-end;
    color:red;
}
.stikycontenair{
	font-size: 1.4em;
	cursor:pointer;
	overflow:hidden;
}
.stikyeditor{
	border: solid 1px rgba(255, 219, 59, 0.46);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    flex: 5;
    background-color: rgba(255,255,214,1);
    resize: vertical;
    line-height: 1.5em; 
    padding-bottom: 30px;
    outline: none;
    min-height:9em;
}
.stikindex{
	font-size: 1.2em;
    color:red;
    font-weight: bolder;
}
.stikytag{
	position: absolute;
    left: 78%;
    top: -17%;
    margin-left: 0px !important;
}
.stikyaddbutton{
	outline: none;
	height: 32px;
    width: 32px;
    font-size: 20px;
    position: absolute;
    bottom: 22px;
    right: 22px;
    border-radius: 50%;
    box-shadow: 2px 2px 6px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    background-color: beige;
    border: none;
    cursor: pointer;
    z-index: 1000;
    /* margin-top: 5px; */
    color: red;
    vertical-align: text-bottom;
}
.stickysearchInput{
	border-radius: 5px;
    border: solid 1px rgba(255, 219, 59, 0.46);
    line-height: 20px;
    background-color: rgba(255, 253, 204, 0.86);
    background-image: url('images/search.png');
    background-position: 98% 50%;
    background-repeat: no-repeat;
    padding-right: 20px;
    padding-left: 5px;
    outline: none;
}
.stikiysearch{
    align-items: flex-start;
}
.stikytoolbar{
	border: solid 1px  rgba(255, 219, 59, 0.46);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top:none;
	display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    flex: 1;
    background-color: rgb(56, 39, 107);
}
.stikyul li:hover .stikindex,.stikydate{
	-webkit-transform: scale(1.2); 
     -o-transform: scale(1.2);
     -moz-transform: scale(1.2);
}
.clipicon:hover >.paperstik {
     -webkit-transform: scale(1.2); 
     -o-transform: scale(1.2);
     -moz-transform: scale(1.2);
}
.paperstik{
    position: absolute;
    top: 2px;
    left: 60px;
    width: 25px;
    height: 60px;
    -webkit-transform: rotate(16deg);
    -o-transform: rotate(16deg);
    -moz-transform: rotate(16deg);
    z-index: 88;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}


.stikytoolbar button:active{
	background-color: rgba(255, 228, 196, 0.43) !important;
}
.stikytoolbar button{
	border:solid 1px  rgba(255, 219, 59, 0.46);;
	background-position:50% 50%;
	background-repeat:no-repeat;
	width: 50px;
    border-radius: 5px;
    height: 20px;
    background-color: transparent;
    outline: none;
    margin: 3px 1px;
    background-size: 30%;
    cursor: pointer;
}
.stikytoolbar button:hover{
	-webkit-transform: scale(1.04); 
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}
.stikyhead{
    border: solid 1px rgba(255, 219, 59, 0.46);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 50px;
    border-radius: 5px;
    height: 20px;
    outline: none;
    margin: 3px 1px;
    background-size: 30%;
    cursor: pointer;
    background-color: rgb(56, 39, 107);
}
.stikyedit{
    background-image: url("images/sedit.png");
}
.stikydelete{
	background-image: url("images/strash.png");
}
.stikyback{
	background-image: url("images/back.png");
}
.stikylockme{
	background-image: url("images/lockme.png");
}
.stikylocked{
	background-color: rgba(255, 228, 196, 1) !important;
}
.stikyok{
	background-image: url("images/stok.png");
}
.stiky {
	font-family:"dancing",arial,sans-serif;
	background:#ffc;
	display:block;
	padding:1em;
	-moz-box-shadow:5px 5px 7px rgba(33,33,33,1);
	-webkit-box-shadow: 5px 5px 7px rgba(33,33,33,.7);
	box-shadow: 5px 5px 7px rgba(33,33,33,.7);
    overflow-x: hidden;
}
.smallstick{
    max-width: 250px;
    max-height: 300px;
    width: 260%;
    height: 290%;
    -webkit-transform:rotate(3deg);
    -o-transform:rotate(3deg);
    -moz-transform:rotate(3deg);
    position: absolute;
    left: -185px;
    top: 14px;
    -webkit-animation-name: stikyopening; /* Chrome, Safari, Opera */
    -webkit-animation-duration: 0.7s; /* Chrome, Safari, Opera */
    animation-name: stikyopening;
    animation-duration: 0.2s;
    animation-timing-function: ease-in;
}


.clipicon{
    background-image: url('images/clip.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size:96px;
    position: absolute;
    right: -25%;
    top: -9px;
    width: 96px;
    height: 96px;
    z-index: 10;
}

.progressbcg{
	background-image: url(images/progress.gif);
    background-position: 50% 50%;
    background-size: 20%;
    background-repeat: no-repeat;
}

.maleicon{
    background-image: url('images/male.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size:16px;
}

.femaleicon{
    background-image: url('images/female.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size:16px;
}


.rxtemplate .popupContent{
    width:100%;
    height:100%;
}
.printimg{
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 1;
}
.rxtemplate{

    position: relative;
    width: 585px;
    height: 690px;
    z-index:11;
}

.editicon{
	background-image: url('images/edit.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size:10px 10px;
}
.triangleopenicone{
 	background-image: url('images/triangleOpen.png');
  	background-repeat: no-repeat;
  	background-position:  center;
  	height:8px;
}

.trianglecloseicone{
 	background-image: url('images/triangleClose.png');
  	background-repeat: no-repeat;
  	background-position:  center;
  	height:8px;
}

.settingicone{
 	background-image: url('images/settings.png');
  	background-repeat: no-repeat;
  	background-position:  center;
  	width:24px;
  	height:24px;
}

.logouticone{
 	background-image: url('images/logout.png');
  	background-repeat: no-repeat;
  	background-position: center center;
  	border:none;
    background-size: 100%;
    background-color: transparent;
}

.saveicone{
    background-image: url('images/save.png');
    background-repeat: no-repeat;
    background-position:   center;
    width:32px;
    height:32px;
    
}

.inreficone{
    background-image: url('images/incoming.png');
    background-repeat: no-repeat;
    background-position: 80%;
    height: 100%;
    font-size: larger;
    line-height: 2;
    background-size: 25px;
    
}
.height-32px{
	height:32px !important;
}
.outreficone{
    background-image: url('images/outgoing.png');
    background-repeat: no-repeat;
    background-position: 80%;
    height: 100%;
    font-size: larger;
    line-height: 2;
    background-size: 25px;
    
}
.reficone {
    background-image: url(images/outgoing.png);
}


.r-item-description{
	font-size: 0.8em;
    color: black;
}

.plusicone{
    background-image: url('images/add.png') !important;
    background-repeat: no-repeat !important;
    background-position:   center !important;
    width:16px;
    height:16px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    outline: none;
}
.foldedicone{
    background-image: url('images/folded.png') !important;
    background-repeat: no-repeat !important;
    background-position:   center !important;
    width:16px;
    height:16px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    outline: none;
    background-size: 100%;
}
.unfoldedicone{
    background-image: url('images/unfolded.png') !important;
    background-repeat: no-repeat !important;
    background-position:   center !important;
    width:16px;
    height:16px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    outline: none;
    background-size: 100%;
}
.deleteicone{
    background-size: 10px 10px;
	background-repeat: no-repeat;
    
}

.uploadicon{
    background-image: url('images/upload.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    
}
.snapshoticon{
    background-image: url('images/snapshot.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
    
}
.picbutton:hover{
    border:solid 1px lightgrey;
    box-shadow: 1px 1px 1px 2px #888888;
}
.picbutton:active{
	border:solid 1px lightgrey;
}
.picbutton{
	cursor:pointer;
    border-radius: 2px;
    border:none;
    height:20px;
	outline: none;
	background-position: 50%;
	background-color: #F3F4F5;
}
.titled-search{
    margin-left: 20%;
    margin-top: -32px;
}

.refreshing{
    background-image: url('images/progress.gif')  !important;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center, center;
    cursor: pointer;
    width: 20px;
    height: 20px;
    float: right;
    
}
.wsavebutton{
    background-image: url('images/save.png')  !important;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center center;
    cursor: pointer;
    width: 20px;
    height: 20px;
   
    
}
.fliptosetting{
	background-image: url('images/setting.png')  !important;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center center;
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.refreshbutton{
    background-image: url('images/refresh.png')  !important;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: 50%;
    cursor: pointer;
    width: 30px;
    height: 30px;
}
.wactioncontainer{
    display: flex;
    justify-content: space-around;
    flex: 0.5;
    align-items: center;
}

.flipbutton{
    background-image: url('images/flip.png')  !important;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    background-position: 50%;
    cursor: pointer;
    width: 30px;
    height: 30px;
    
}
.refreshbutton:active, .wsavebutton:active{
    -webkit-transform: scale(1.04);
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}
.trashicon{
    background-image: url('images/trash.png');
}
.deletebutton{
	background-image: url('images/trash.png') !important;
    background-repeat: no-repeat;
	background-size: 20px 20px;
	backgroung-position: center, center;
	cursor: pointer;
	width: 20px;
	height: 20px;
	float: right;
	margin-right: -10px;
}
.deletebutton:hover{
	box-shadow: 2px 2px 1px #888888;
}
.editicone{
    background-image: url('images/edit.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}

.restarticone{
    background-image: url('images/restart.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}

.stopicone{
    background-image: url('images/stop.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}

.pauseicone{
    background-image: url('images/pause.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}

.lndicone{
    background-image: url('images/kidney.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}

.completeicone{
    background-image: url('images/completeicone.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.completeicone{
    background-image: url('images/terminate.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.encountericone{
    background-image: url('images/consultation.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.remlndicone{
    background-image: url('images/remkidney.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}

.resendicone{
    background-image: url('images/resend.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}

.rejecticone{
    background-image: url('images/eject.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}

.accepticone{
    background-image: url('images/accept.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.fileicone{
    background-image: url('images/file.png') !important;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center center;
}
.viewicone24{
    background-image: url('images/view.png') !important;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center center;
}

.viewicone{
    background-image: url('images/view.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.state{
    background-image: url('images/state.png') !important;
    background-repeat: no-repeat;
    width: 40px;
    background-size: cover;
}
.ok{
    background-position: 100% 50%;
}
.terminated{
    background-position: 50% 50%;
}
.inprogress{
    background-position: 0% 50%;
}

.childrenpevicone{
    background-image: url('images/pev.png');
}
.remotemedicone{
    background-image: url('images/remotemed.png');
}


.patientmenuitem:hover{
    -webkit-transform: scale(1.04);
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}
.patientmenuitem{
	overflow: hidden;
    text-overflow: ellipsis;
    background-repeat: no-repeat !important;
    background-position: 5% 50% !important;
    background-size: 25px 25px !important;
    margin-top: 5px;
    cursor: pointer;
    margin-top: 5px;
    padding-right:10px;
    height: 40px;
    position: relative;
    border-left: solid 1px grey;
    border-top: solid 1px grey;
    border-bottom: solid 1px grey;
    border-radius: 4px 0px 0px 10px;
    background: #FBFCFA;
    
}
.patientinfoicone{
    background-image: url('images/info.png');
}
.patientimageryicone{
    background-image: url('images/imagery.png');
}
.patientencountericone{
    background-image: url('images/encounter.png');
}

.patientsocialicone{
    background-image: url('images/family.png');
    
    
}

.patientmedicone{
    background-image: url('images/medication.png');
 }

.patientallergyicone{
    background-image: url('images/allergy.png');
 }

.patientimmunizationicone{
    background-image: url('images/umbrella.png');
 }

.patientvitalicone{
    background-image: url('images/vital.png');
}

.hearticone{
    background-image: url('images/vital.png');
}
.breathicone{
    background-image: url('images/vs_breath.png');
}

.pressureicone{
    background-image: url('images/vs_pressusre.png');
}
.oxygenicone{
    background-image: url('images/oxygenicon.png');
}
.tempreticone{
    background-image: url('images/vs_temperature.png');
}

.weighticone{
    background-image: url('images/vs_weight.png');
}
.glucoicone{
    background-image: url('images/gluco.png');
}
.patientlabsicone{
    background-image: url('images/laboratory.png');
}
.campaignicone{
    background-image: url('images/campaign.png');
}
.patientappointmenticone{
    background-image: url('images/calendar_full.png');
}

.childrenpevicone{
    background-image: url('images/baby.png');
}

.righticone{
    background-image: url("images/aright.png");
	background-repeat: no-repeat;
	width: 15px;
	height: 25px;
	background-position: right center;
	background-size: 15px 20px;
	
}

.diseaseicone{
    background-image: url('images/disease.png');
}

.allergyicone{
    background-image: url('images/allergy.png');
}
.hospitalizationicone{
    background-image: url('images/hospitalization.png');
}
.familyicone{
    background-image: url('images/family.png');
}

.behavioursicone{
    background-image: url('images/behaviours.png');
}

.designemenuicone{
    background: url('images/design.png') no-repeat;
    width:18px;
 	height:18px;
 	display:inline;
 	position: absolute;
}
.loadericon{
    height:25px;
    width:25px
}
.notificontent{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 50px;
    right: 0px;
    padding-left: 0%;
    padding-right: 15px;
    cursor: pointer;
}
.notificontent div{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.popupnotif{
	border: 1px solid grey;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	position: absolute;
	background-color: white;
	z-index: 1;
	min-width: 150%;
	padding-left: 0px;
	max-height: 300px;
	overflow-y: scroll;
	overflow-x: hidden;
	right: 0px;
	bottom: 75%;
	list-style-type: none;
	-moz-box-sizing: border-box;
}
.popupnotif li:first-child{
    border-top:none;
}
.popupnotif > li{
    border-bottom: solid 1px lightgrey;
    /*lineheight:25px;*/
    padding-left: 5%;
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    cursor: pointer; 
    background-position: 5% 50% !important;
    background-repeat: no-repeat !important;
    background-size:12px 12px; 
    overflow: hidden;
    /*white-space: nowrap;*/
    text-overflow: ellipsis;
    /*line-height: 30px;*/
    font-size: 0.9em;
    position:relative;
    display: flex;
    align-items: center;
}
.popupselect > li{
	border-bottom: solid 1px lightgrey;
    line-height: 4em !important;
	padding-left: 5%;
	font-size:0.8em;
	-moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    cursor: pointer; 
    background-position: 5% 50% !important;
    background-repeat: no-repeat !important;
    background-size:12px 12px;
	display: flex;
    align-items: center;
    max-height: 2.5em;
    overflow: hidden;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.currentitem{
	text-align: center;
    line-height: 30px;
}
.navpopupselect>li{
	border-bottom: solid 1px lightgrey;
    color:black;
    font-size:0.8em;
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    cursor: pointer; 
    background-position: 5% 50% !important;
    background-repeat: no-repeat !important;
    background-size:12px 12px; 
    overflow: hidden;
    text-overflow: ellipsis;
    text-align:center;
    line-height: 1.6em;
}
.navpopupselect>li:hover,
.navpopupselect > li:hover,
.popupnotif > li:hover,
.popupselect > li:hover{
	background-color:lightgrey;
	color:white;
}
.navpopupselect li:first-child{
  
    border-top:none;
}
.popupselect li:last-child{
    border-bottom:none;
}
.selectbox{
	border: solid 1px lightgrey;
	position:relative;
	display:inline-block;
    min-width: 110px;
	min-height: 25px;
	/*lineheight:25px;*/
	background-color: white;
	border-radius: 5px;
	list-style-type: none;
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    
}
.selectbox-cont{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding-left: 5px;
    margin-right: 20px;
    cursor: pointer; 
    background-position: 5px 50% !important;
    background-repeat: no-repeat !important;
    background-size:10px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
    display: flex;
    align-items: center;
    font-size: 0.8em;
}


.selectbox-cont div{
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.popupselect{
	border: solid 1px lightgrey;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    background-color: white;
    z-index: 1000;
    width: 100%;
    padding-left:0px;
    opacity: 0.96;
    max-height: 220px;
    overflow-y: scroll;
    overflow-x: hidden;
    text-overflow:ellipsis;
    left: 0px;
    top:50%;
    list-style-type: none;
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box;
    border-top:none;

}
.navpopupselect{
    position: absolute;
    background-color: white;
    z-index: 1;
    width: 100%;
    padding-left:0px;
    opacity: 0.96;
    max-height: 220px;
    overflow-y: scroll;
    overflow-x: hidden;
    text-overflow:ellipsis;
    color:black;
    bottom:15px;
    list-style-type: none;
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
    border: solid 1px lightgrey;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.topbar{
    height: 40px;
    top: 0px;
    position: fixed;
    background-color: #EFEFEF;
    z-index: 10;
    left: 10%;
    right: 10%;
}
.patientlistul{
	text-indent: 5px;
	list-style-type: none;
	padding: 0px;
	margin:0px;
	
}
.patientlistil{
	height:fit-content;
	border-bottom:solid 1px grey;
    padding: 10px 5px;
}
.patientlistil:hover{ 
	background-color:#CCFFFF;
	 r-style:solid gray;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomleft: 8px;
     border-top-right-radius: 8px;
     border-bottom-left-radius: 8px;
}

.adminmenuitem{
	height:25px;
	border-bottom:solid 1px grey;
	line-height:25px;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 2% 50%;
    padding-left: 15px !important;
}
.adminmenuitem:hover{
	font-weight:bold;
	height:25px;
	border-bottom:solid 1px grey;
	line-height:25px;
}

.profiladminulistil{
    text-indent: 5px;
    list-style-type: none;
    padding: 0px;
    margin:0px;
}

.profiladminmenuitem{
    height:25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 5px;
    line-height:25px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-bottom: #e2ebf3 1px solid;
}
.shadowlight{
    box-shadow: 1px 1px 1px lightgrey;
}
.profiladminmenuitem:hover{
    font-weight:bold;
    height:25px;
    border-bottom:solid 1px grey;
    line-height:25px;
}

.profiladminmenuitem:active{
    -webkit-transform: scale(1.04);
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}
.bottombar{
    position: fixed;
    bottom: 2px;
    height: 30px;
    left: 10%;
    background-color: #EFEFEF;
    z-index: 10;
    right: 10%;
}

.headerContent{
     background-image: url('images/kamit.png');
     background-repeat: no-repeat;
     background-color: white;
     
     height:100px;
     border-style:solid;
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomleft: 8px;
     border-top-right-radius: 8px;
     border-bottom-left-radius: 8px;
     
}
.kcell{
	height:50px;
    width:100%;
    border-top:solid 2px lightgrey;
   
}
.klistFooterItem{
	height:20px;
	width:100%;
	border:solid 1px lightgrey;
}
.ktable{
    overflow-x:hidden;
    border:solid 1px lightgrey;
    background-color: #EFEFEF;
}
.kamitBox{
     border:solid 1px gray;
    -webkit-border-top-right-radius: 8px !important;
    -webkit-border-bottom-left-radius: 8px !important;
    -moz-border-radius-topright: 8px !important;
    -moz-border-radius-bottomleft: 8px !important ;
     border-top-right-radius: 8px !important;
     border-bottom-left-radius: 8px !important;

    -webkit-border-top-left-radius: 0px !important;
    -webkit-border-bottom-right-radius: 8px !important;
    -moz-border-radius-topleft: 0px !important;
    -moz-border-radius-bottomright: 0px !important ;
    border-top-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;

}
.seperator{
    border-bottom: solid 1px  silver;
}
.workerdata{
	flex:10;
	box-sizing: border-box;
    padding: 10px
}

.borderlightgrey{
    border: solid 1px lightgrey;
}
.bordernative{
    border: solid 1px #b1afaf;
}
.backgroundnative{
    background-color: #f8f8f8;
}

.borderright{
	border-right:solid 1px;
}

.borderrightlightgrey{
    border-right: solid 1px lightgrey;
}

.borderleftlightgrey{
    border-left: solid 1px lightgrey;
}

.bordertop{
    border-top:solid 1px lightgrey !important;
}

.borderbottom{
    border-bottom:solid 1px lightgrey !important;
}

.borderbottom-black-1px{
    border-bottom:solid 1px ;
}

.borderbottom-lightgrey-1px{
    border-bottom:solid 1px lightgrey ;
}
.addbutton{
	background-image: url('images/add12px.png') !important;
    background-repeat: no-repeat !important;
    background-position:   4% 50% !important;
    
    -webkit-border-top-right-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
    -moz-border-top-right-radius: 8px;
    -moz-border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    position: relative;
    right: 1px;
    width: 7em;
    background-color: white;
    
}

.height2p1em{
    height: 2.1em;
}

.height-2em{
    height: 2em;
}
.bubble-delete:hover {
    width: 1em;
    height: 1em;
}
.bubble-delete{
    width: 0.8em;
    height: 0.8em;
    background-size: 100%;
    background-image: url('images/delete64.png');
}
.bubble{
	display:inline-block;
	background-color:#C2DFFF ;
	-webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: solid 1px #67a7ff;
	padding: 2px 5px 2px 7px;
	line-height: 1.5em;
	margin:2px;
	text-transform:capitalize;
    box-shadow: inset 0px 0px 8px 1px #8fceff;
    display: inline-flex;;
    align-items: center;
}
.hasnote{
    background-image: url(images/note2.png);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 1% 50%;
    padding-left: 20px;
    font-weight: bold !important;
}
.pstate{
    background-image: url(images/redplus.png);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 1% 50%;
    padding-left: 20px;
    font-weight: bold !important;
    color: red !important;
}
.vstate{
    text-decoration: line-through;
    color: gray;
}
.nstate{
    background-image: url(images/greenminus.png);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: 1% 50%;
    padding-left: 20px;
    font-weight: bold !important;
    color: green !important;
}

.bubble:hover{
    -webkit-transform: scale(1.04);
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}

.logouticone:hover{
    -webkit-transform: scale(1.04);
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}
.hoverscale:hover{
    -webkit-transform: scale(1.04);
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}

.bubble-green{
	background-color:#C9FAB3 !important;
	border: solid 1px #10a12a;
    box-shadow: inset 0px 0px 8px 1px #16e23a;
}
.bubble-red{
	background-color:#f03e3e!important;
	border: solid 1px #f02818;
    box-shadow: inset 0px 0px 8px 1px #c51b11;
}
.bubble-orange{
	background-color:rgb(246, 198, 147) !important;
	border: solid 1px #e85108;
    box-shadow: inset 0px 0px 8px 1px #d34e08;
}
.pop.footer{
    height: 35px;
}
.footer{
    bottom: 1px;
    left: 1px;
    right: 1px;
    position: absolute;
    padding-left:5px;
    padding-right:5px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, OTHER WebKit */
	-moz-box-sizing: border-box;    /* Firefox, OTHER Gecko */
	box-sizing: border-box; 
    border-radius: 2px;
    background-color: #FFFFFF;
    border-top: 1px solid lightgrey;
    /*box-shadow: 1px 1px 1px 1px #888888;*/
    height: 45px;
    display:flex;
    justify-content:space-between;
    align-items: center;
}
.picture-top-30 .top-30px{
	top:30px !important;
}
.picture-top-50 .top-30px{
	top:50px !important;
}

.sideCarousel {
    z-index: 0;
    box-shadow: 2px 2px 2px 2px  #888888;
    
}

.centerCarousel {
    z-index: 1;
    box-shadow: 2px 2px 2px 2px  #888888;
 
}

.encountertitles{
	font-size: 2em;
    font-stretch: extra-expanded;
    font-family: 'Lato';
    color: grey;
    font-weight: 600;
    margin-right: 5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.innerlistitem{
    background-color: aliceblue;
    margin: 0px !important;
    padding: 1px 1px 1px 10px;
    list-style-type: none;
    /*font-style: oblique;*/
    font-family: monospace;
    font-size: 1.1em;
}
.innerdivtoolbar{
    display: flex;
    justify-content: space-between;
    background: #fffef3;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.ksbuttonhasicon{
    background-position: 5% 50%;
    background-repeat: no-repeat;
    background-size: 1.1em !important;
    padding-left: 2em !important;
    text-align: left !important;
}
.zonewithactions{

    contenteditable: true;
    border: solid 2px rgba(128, 128, 128, 0.37);

    border-radius: 5px;
}
.unitexamszone{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.unitexamszone>div{
    flex:1;
    display: flex;
}
.unitexamszone .keywordul{
    border: solid 2px rgba(128, 128, 128, 0.37);
    flex:1;
}
.zonewithactions .ksbutton{
    color: #f9b207;
    border: 1px lightgray solid;
    border-left: none !important;
    border-radius: 0px !important;
    border-bottom: none !important;
}
.zonewithactions .ksbutton:first-child{
    border-bottom-left-radius: 2px !important;
    border-left: none !important;
}
.zonewithactions .ksbutton:last-child{
    border-right: none !important;
    border-bottom-right-radius: 2px !important;
}

.encountertextzone{
    background: #fffef3;
	resize:vertical;
    /*overflow-y: scroll;*/
	font-size: 15px;
	outline: none;
    border-radius: 5px;
    padding: 5px;
}
.encounterzone {
    overflow: visible;
}
.encounterzone .keywordul{
	background: #fffef3;

}
.encounterzone .keywordul {
    border: solid 2px rgba(128, 128, 128, 0.37);

}
.zonewithactions .keywordul{
    height: 100%;
    border: none;
}
.zonewithactions .encounterzone > .background-white{
    border-radius: 5px;
    height: 100%;
}
.encounterzone .keywordul>li:last-child div {

    color: #7373e4;
    font-size: 1.5em;
}

.encounterzone .bubble{
    background-color: #fff3a7;
    border-radius: 5px;
    border: solid 1px #FFC107;
    box-shadow: inset 0px 0px 8px 1px #efb1199c;
}

.roundedborder10px {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.roundedborder5px {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.actionlistborder {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: solid 1px grey;
    width: 80px;
}
.actionlistul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    padding-left: 0px;
    font-size: 0.9em;
}

.bottom-bar{
	border-bottom: 1px solid grey;
}
.actioncelleitem{
	height: 20px;
	line-height: 20px;
	color:grey;
	padding-left: 15px;
    background-position: 3px 50%;
    background-repeat: no-repeat;
    background-size: 10px 10px;
}

.suggestionitem{
	overflow-x:hidden;
	height: 35px;
    line-height: 35px;
    color:grey;
    padding-left: 5px;
    background-position: 3px 50%;
}

.suggestionitem:hover{
	font-weight: bold;
}

.suggestionlistul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    padding-lef:1em;
}



.searchtextbox{
    height:26px !important;
    padding: 0px auto !important;
    margin-right:0px !important;
    text-decoration: none !important;
    border: solid 1px #8C8B8B ;
    width: 80% !important;
    padding-left:2% !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px!important;
}

.searchtextbox:focus, 
.searchtextbox:active{
     border: solid 1px grey;
    outline: none;
    -moz-appearance:none;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px!important;

}
.popupsearch{
    border: solid 1px grey;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    position: absolute;
    background-color: white;
    z-index:1;
    width:82%;
    opacity: 0.96;
    max-height: 220px;
    overflow-y: scroll;
}
.zindex-auto{
    z-index: auto !important;
}
.searchbutton{
    border: solid 1px #8C8B8B;
    text-decoration: none;
    border-bottom-right-radius: 1em !important;
    border-top-right-radius: 1em !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    height:30px !important;
    padding: 0px auto !important;
    margin-left:-5px !important;
    vertical-align: top !important;
    width: 15% !important;
    background-position: center !important;
    background-size:16px !important;
    outline: none !important;
    backgroun-color:lightgrey;
}

.dialog-arrow:after {
	content: '';
    display: block;
    position: absolute;
    top: -22px;
    left: 85%;
    width: 0px;
    height: 0px;
    border-color:  transparent  transparent rgb(251, 252, 250) transparent ;
    border-style: solid;
    border-width: 11px;
}
.dialog-arrow:before {
	 content: '';
    display: block;
    position: absolute;
    top: -23px;
    left: 85%;
    width: 0px;
    height: 0px;
    border-color: transparent  transparent  lightgrey transparent  ;
    border-style: solid;
    border-width: 11px;
}
.top-27px{
    top: 27px;
}
.bottom-27px{
    top: 27px;
}
.roundedborder2px {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.editing {
    border :solid 1px grey;
    background-color: aliceblue;
    min-width: 100px;
    display: inline-block;
    padding: 2px 5px;
}
.cellinputbutton {
	background-color:white;
	border: 1px grey solid;
	height:20px;
	width:7em !important;
	text-align: left;
	color:grey;
	cursor: pointer;
    margin: 1px;
    padding-left: 5px;
    font-size: 0.9em;
    -webkit-appearance: none;
    -moz-appearance: none;
   
    appearance: none;
    background-image: url('images/action-down.png') !important;
    background-position: 95% 50% !important;
    background-repeat: no-repeat !important;
    background-size: 14px;
    line-height:1.2em
 
}

.cellinputbutton:active{
	background-image: url('images/action-up.png') !important;
}
.actionIncone{
    background-image: url('images/action-down.png') !important;
    background-position: 95% 50% !important;
    background-repeat: no-repeat !important;
    background-size: 14px;
}

.cellactiondropdown{
	background-repeat: no-repeat !important;
	background-position: 5% 50% !important;
	height: 20px;
	line-height: 20px;
	padding-left: 20px;
}

.cellinputbutton:active {
    background-color:lightgrey;
}
.pptagepos{
	position: absolute;
	top: 10px;
	right: 5px;
}
.tag{
    background-color: orange;
    border-radius: 50%;
    color: white;
    margin-left: 10px;
    font-size: 0.8em;
    min-width: 2em;
    height: 2em;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    line-height: unset;
    text-indent: 0px;
    padding: 2px;
}

.tagw{
    background-color: orange;
    border-radius: 1em;
    color: white;
    margin-left: 10px;
    font-size: 0.8em;
    height: 2em;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    line-height: unset;
    text-indent: 0px;
    padding: 1px 5px;
}


.mediumicone{
    width:32px;
    height:32px;
}

.largeicone{
    width:64px;
    height:64px;
}
.addactionicon{
	outline: none;
    background-image: url("images/add12px.png");
    background-repeat: no-repeat;
    background-position: 5% 50%;
}
.ksbutton{
    background-color: white;
	border: 1px gray solid;
	height: 25px;
	color: grey;
	cursor: pointer;
	/*margin: 1px;*/
	text-align: center;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    min-width: 8em;
    outline:none;
    padding: 1px 5px;
    margin: 5px;
    font-size: 0.8em;
}
.iconcenterleft{
    background-position: 5% 48%;
}
.ksbutton:hover{
	 background-color:lightgrey ;
     color:white ;
     font-weight: bold;
}
.ksbutton:active {
    -webkit-transform: scale(1.04);
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}



.tableaddaction{
    background-color:white;
    border: 1px lightgray solid;
    height:25px;
    width:7.5em;
    color:gray;
    margin: 1px;
    padding-left: 15px;
    background-image: url('images/add12px.png');
    background-repeat: no-repeat;
    background-position: 5% 50%;
    outline: none;
    
}
.tableaddaction:active {
	 background-color:lightgrey;
	 font-weight: bold;
}
.filtericone{
	background-image: url('images/filter12px.png');
}
.ejecticone{
    background-image: url('images/eject.png');
}
.deleteicone{
    background-image: url('images/delete.png');

}
.deleteicone64{
    background-image: url('images/delete64.png');
    background-position: center;
    background-repeat: no-repeat;
}
.backicone{
    background-image: url('images/back2.png');
    background-position: center;
    background-repeat: no-repeat;
}
.tablefilteraction::first-letter{
    text-transform:uppercase;
}
.tablefilteraction{
    background-color:white;
    border: 1px gray solid;
    height:25px;
    width:8.5em;
    color:grey;
    margin: 1px;
    outline: none;
}
.hide{
	display:none;
}
.tablesearchaction{
	background-color:white;
    border: 1px gray solid;
    height:21px;
    width:8em;
    text-align:  left;
    color:grey;
    padding-left: 20px;
    background-image: url('images/search12px.png');
    background-repeat: no-repeat;
    background-position: 5% 46%;
    outline: none;
}

.kbutton{
    background-color:white;
    border: 1px lightgrey solid;
    width:70px;
    text-align:  center;
    color:grey;
    cursor: pointer;
}
.kbutton:hover{
    background-color:grey !important;
    color:white !important;
    font-weight: bold;
}
.kbutton:active {
    -webkit-transform: scale(1.04);
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}
.displayflex-h>.leavingConfirmation{
    bottom: 140%;
    left: 50%;
}
.displayflex-v>.leavingConfirmation{
    top: -40%;
    left: 30%;
}
.leavingConfirmation{

    background: #FA5858 !important;
    color: white;
    font-size: 10px;
    padding: 3px 10px 3px 10px;
    position: absolute;

}

.arrow-down {
    width: 0; 
    height: 0; 
    border-left: 0px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #FA5858;
    position: absolute;
    bottom: -10px;
}

.dialog-arrow-up {
    width: 0px;
    height: 0px;
	border-left: 20px solid transparent;
	border-right: 5px solid transparent;
	position: absolute;
	left: 200px;
	top: -10px;
	border-bottom: 10px solid rgb(251, 252, 250);
}
.dialog-background{
	background-color:#FBFCFA;
}

.horizontalscroll{
	overflow-x: hidden !important; 
	overflow-y: scroll !important ; 
}
.verticascroll{
    overflow-x: scroll !important;
    overflow-y: hidden !important ;
}

.item-selected {
  background: #F0F0F0 !important;
}
 .suggestPopupContent {
  background: white;
}
.suggestPopupTopCenter {
  border-top: 0px solid #bbb !important;
  background: none !important;
}

.suggestPopupBottom,
.suggestPopupBottomCenter,
.suggestPopupMiddle,
.suggestPopupMiddleLeft,
.suggestPopupMiddleRight{
  border-bottom: 0px solid #bbb !important;
  background: none !important;
}

.suggestPopupTopCenterInner,
.suggestPopupBottomCenterInner,
.suggestPopupMiddleLeftInner,
.suggestPopupMiddleRightInner{
  height: 0px !important;
  line-height: 0px !important;
  background: none !important;
}

.suggestPopupBottomRightInner,
.suggestPopupBottomLeftInner,
.suggestPopupTopRightInner,
.suggestPopupTopLeftInner {
  width: 0px !important;
  height: 0px !important;
  zoom: 0 !important;  
  background: none !important;
}
.suggestPopupBottomRight,
.suggestPopupBottomLeft,
.suggestPopupTopRight, 
.suggestPopupTopLeft {
  width:0px !important;
  height:0px !important;
  background: none !important;
}
/*=== CellTble======*/
.cellTableHeader {
    padding: 0px;
    color: #545454;
    text-align: center;
    font-size: 13px;
    background-image: none;
    background-color: #cfcfcf;
    height: 25px;
    vertical-align: middle;
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(255,255,255,.7);
}
.cellTableFirstColumnHeader {
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
}
.cellTableLastColumnHeader {
    -moz-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
}
.cellTableCell {
    padding: 4px;
    overflow: hidden;
    font-size: 12px;
    color: #454545;
}
.cellTableEvenRow {
    background: #ffffff;
}
.cellTableOddRow {
    background: #ECECEC;
}
.cellTableSelectedRow {
    background: #628cd5;
}
.cellTableSelectedRowCell {
    border: none;
}
.cellTableHoveredRow {
    background: transparent;
}
.cellTableHoveredRowCell {
    border: none;
}
.cellTableKeyboardSelectedRow {
    background: #ffc;
}
.cellTableKeyboardSelectedRowCell {
    border: none;
}
.cellTableKeyboardSelectedCell {
    border: none;
}

.bottomsavepanel{
	position: absolute;
    width: 98%;
    bottom: 5px;
}

.gwt-DatePicker {
  border: 1px solid #ccc;
  border-top:1px solid #999;
  cursor: default;
}
.gwt-DatePicker td,
.datePickerMonthSelector td:focus {
  outline: none;
}
.datePickerMonthSelector td:focus {
  outline: none;
}
.datePickerDays {
  width: 100%;
  background: white;
}
.datePickerDay,
.datePickerWeekdayLabel,
.datePickerWeekendLabel {
  font-size: 85%;
  text-align: center;
  padding: 4px;
  outline: none;
  font-weight:bold;
  color:#333;
  border-right: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}
.datePickerWeekdayLabel,
.datePickerWeekendLabel {
  background: #fff;
  padding: 0px 4px 2px;
  cursor: default;
  color:#666;
  font-size:70%;
  font-weight:normal;
}
.datePickerDay {
  padding: 4px 7px;
  cursor: hand;
  cursor: pointer;
}
.datePickerDayIsWeekend {
  background: #f7f7f7;
}
.datePickerDayIsFiller {
  color: #999;
  font-weight:normal;
}
.datePickerDayIsValue {
  background: #d7dfe8;
}
.datePickerDayIsDisabled {
  color: #AAAAAA;
  font-style: italic;
}
.datePickerDayIsHighlighted {
  background: #F0E68C;
}
.datePickerDayIsValueAndHighlighted {
  background: #d7dfe8;
}
.datePickerDayIsToday {
  padding: 3px;
  color: #fff;
  background: url(images/hborder.png) repeat-x 0px -2607px;
}
.datePickerMonthSelector {
  width: 100%;
  padding: 1px 0 5px 0;
  background: #fff;
}
.datePickerPreviousButton,
.datePickerNextButton,
.datePickerPreviousYearButton,
.datePickerNextYearButton {
  font-size: 120%;
  line-height: 1em;
  color: #3a6aad;
  cursor: hand;
  cursor: pointer;
  font-weight: bold;
  padding: 0px 4px;
  outline: none;
}
td.datePickerMonth,
td.datePickerYear {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  font-size: 100%;
  font-weight: bold;
  color: #333;
}
.gwt-DateBox {
  padding: 5px 4px;
  border: 1px solid #ccc;
  border-top: 1px solid #999;
  font-size: 100%;
}
.gwt-DateBox input {
  width: 8em;
}
.dateBoxFormatError {
  background: #ffcccc;
}
.current{
	flex:3;
	border:solid 1px lightgrey;
	color: grey;
    cursor: pointer;
    outline:none;
    border-left: none;
    border-right: none;
}

.previous{
	flex:1;
	border:solid 1px lightgrey;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: white;
    color: grey;
    cursor: pointer;
    outline:none;
    margin: 0px !important;
}
.previous:hover,
.next:hover,
.current:hover{
    color: white ;
    background-color:lightgrey
}
.previous:active,
.next:active,
.current:active{
    -webkit-transform: scale(1.04);
    -o-transform: scale(1.04);
    -moz-transform: scale(1.04);
}
.next{
	flex:1;
	border:solid 1px lightgrey;
	border-top-right-radius:10px;
	border-bottom-right-radius: 10px;
	background-color: white;
    color: grey;
    cursor: pointer;
    outline:none;
    margin: 0px !important;
}

.rightpanelclose{
    overflow: hidden;
    -webkit-animation: rightpanelclosing; 
    animation: rightpanelclosing;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.66, 0.19, 0.2, 0.79);
}
.rightpanelopen{
    overflow: hidden;
	-webkit-animation: rightpanelopening; 
    animation: rightpanelopening;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.66, 0.19, 0.2, 0.79);
}

/* Chrome, Safari, Opera */
@-webkit-keyframes rightpanelclosing {
    from {height:450px;}
    to {height: 0px;}
    /* Chrome, Safari, Opera */
}

/* Standard syntax */
@keyframes rightpanelclosing {
    from {height:450px;z-index: 1}
    to {height: 0px;z-index: -1}
}

/* Chrome, Safari, Opera */
@-webkit-keyframes rightpanelopening {
    from {height:0px;z-index: 1}
    to {height: 450px;z-index: -1}
    /* Chrome, Safari, Opera */
}

/* Standard syntax */
@keyframes rightpanelopening {
    from {height:0px;}
    to {height: 450px;}
}

.slideupclose{
    overflow: hidden;
    -webkit-animation: slideup;
    animation: slideup;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes slideup {
    from {height:400px;}
    to {height: 150px;}
    /* Chrome, Safari, Opera */
}

/* Standard syntax */
@keyframes slideup {
    from {height:400px;}
    to {height: 150px;}
}

.slidedownopen{
    overflow: hidden;
    -webkit-animation: slidedown;
    animation: slidedown;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.02, 0.62, 0.1, 0.89);
}
/* Chrome, Safari, Opera */
@-webkit-keyframes slidedown {
    from {height:150px;}
    to {height: 100%;}
}

/* Standard syntax */
@keyframes slidedown {
    from {height:150px;}
    to {height: 100%;}

}

.rightpanelclosing2{
    -webkit-animation: rightpanelclosing2; 
    animation: rightpanelclosing2;
    -webkit-animation-duration: 0.5s; 
    animation-duration: 0.5s;
}
.rightpanelopening2{
    -webkit-animation: rightpanelopening2; 
    animation: rightpanelopening2;
    -webkit-animation-duration: 0.5s; 
    animation-duration: 0.5s;
}

.leftpanelresizinglarge{
	-webkit-animation: leftpanelresizinglarge; 
    animation: leftpanelresizinglarge;
    -webkit-animation-duration: 0.5s; 
    animation-duration: 0.5s;
}

.leftpanelresizingsmall{
    -webkit-animation: leftpanelresizingsmall; 
    animation: leftpanelresizingsmall;
    -webkit-animation-duration: 0.5s; 
    animation-duration: 0.5s;
}

@keyframes leftpanelresizinglarge {
    from {flex:3;}
    to {flex: 6;}
     
}
@keyframes leftpanelresizingsmall {
    from {flex:6;}
    to {flex: 3;}
     
}
@keyframes rightpanelopening2 {
    from {flex:0;}
    to {flex: 3;}
     
}
@keyframes rightpanelclosing2 {
    from {flex:3;}
    to {flex: 0;}
     
}

.xslideright{
    -webkit-animation: slideright; 
    animation: slideright;
    -webkit-animation-duration: 0.5s;
}

@keyframes xslideright {
    from {width:0%;}
    to {width: 100%;}
     
}
.slideleft{
	-webkit-animation: slideleft; 
    animation: slideleft;
    -webkit-animation-duration: 0.5s;
}

@keyframes slideleft {
    from {left:0px;}
    to {left: -100%;}
     
}
.lockicon {
    background-image: url(images/lock.png);
    background-repeat: no-repeat;
    background-position: 97% 50%;
    background-size: 8%;
}
.lockbutton{
	background-size: 18%;
}
.secode{
	height: 30px;
    background-color: lightgray;
    border: none;
    font-size: 2em;
    outline: none;
}
.align-self-center {
    align-self: center;
}
.overflowx-hidden{
	overflow-x:hidden;
}
.shake {
  animation: shake 0.62s 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);
  }
}
/*=== CellTble=end=====*/
/** Most GWT widgets already have a style name defined */
/** Set ids using widget.getElement().setId("idOfElement") */


.todo{
	
    background-color: white;
    height: 100%;
    font-size: 3em;
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100%;
}
.todomsg{
	-webkit-transform:rotate(25deg);
    -o-transform:rotate(25deg);
    -moz-transform:rotate(25deg);
    color: lightgrey;
}


.itemdetails{
	background-color: #fff3a7; 
    border-radius: 10px;
    border: solid 1px #FFC107;
}
.itemdetails textarea{
    
    border-radius: 5px;
    border: solid 1px #FFC107;
    
}
.itemdetails input{
    height: 18px;
}
.itemdetails input, .itemdetails select{
    border: none;
    background: #f8f8f8;
    border-radius: 3px;
    border: 1px solid #FFC107;
}

.itemdetails button{
	color: #FFC107;
    border-radius: 5px;
    border: solid 1px #FFC107;
    background-color: #fffef3;
    max-width: 90px !important;
}


.servereventnotif{
    min-width: 400px;
    height: 25px;
    right: 180px;
    border-radius: 5px;
    top: 2.5px;
    text-align: center;
    line-height: 25px;
    color: white;
    font-weight: bold;
    position: absolute;
    z-index: 1000;
}
.paddingfix{
    -webkit-box-sizing: border-box; /* Safari/Chrome, OTHER WebKit */
    -moz-box-sizing: border-box;    /* Firefox, OTHER Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}


.logo-panel{
	width: 90px;
    height: 90px;
    border-radius: 22px;
    vertical-align: middle;
}

.placeicon{
    background-position: center;
    background-size: 30px;
    margin-right: 5px;
}
.exiticone{
    background-image: url('images/exit.svg') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.hospitalicone{
    background-image: url('images/hospital.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.ktablehead{
    background-color: #EFEFEF ;
    max-height: 50px;
    flex: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.rightable .ktablehead{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: none;
}
.rightable .ktable{
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.profilePic {
    height: 100px;
    width: 90px;
    margin: 10px;
}

.redirecticone{
    background-image: url('images/redirect.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.caseicone{
    background-image: url('images/case.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.openicone{
    background-image: url('images/open.png') !important;
    background-size: 10px 10px;
    background-repeat: no-repeat;
}
.center-panel {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-blue-steel {
    text-align:center;
    color:steelblue;
    text-shadow: 1px 1px 1px lightgrey;
}







.backgroundnon {
    border: none;
    background-color: white;
}

.padding-right-20pc {
    padding-right: 20%;
}

.margin-top-50px {
    margin-top: 50px;
}

.max-height-25px {
    max-height: 25px;
}

.unsetheight {
    height: unset;
}

.max-height-80px {
    max-height: 80px;
}

.flex1p1 {
    flex:1.1;
}

.flexcenter {
    justify-content: center;
    align-self: center;
    justify-self: center;
    width: unset;
}

.min-height-80px {
    min-height: 80px;
}

.diseaseplace .keywordul{
    min-height: 45px !important;

}

.background-aliceblue {
    background-color: aliceblue;
}
.background-papayawhip{
    background-color: papayawhip;
}

.fixheigh-50px>ul {
    max-height: 50px;
    overflow-y: scroll;
}
.fillparent{
    height: -webkit-fill-available;
}

.analysis-delete-button:hover{
    box-shadow: #5770a2 1px 1px 1px;
    padding: 2px;
    border-radius: 50%;
}

.analysis-delete-button{
    background-image: url('images/trash.png') !important;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 50%;
    cursor: pointer;
    width: 20px;
    height: 20px;
    float: right;
    display: inline-block;
}

.padding-bottom-0px {
    padding-bottom: 0px !important;
}

.analysis .gwt-StackLayoutPanelHeader {
    width: unset !important;
}

.gwt-StackLayoutPanel .gwt-StackLayoutPanelHeader {

    color: white;
    text-align: center;
}

.analysis .gwt-StackLayoutPanelContent {
    overflow: auto !important;
}

/*
.gwt-StackLayoutPanel .BIOCHIMIE_URINES.gwt-StackLayoutPanelHeader{
    background: unset;
    background-backGroundStyle: #d2c036 !important;
}
.gwt-StackLayoutPanel .BIOCHIMIE_DIVERS.gwt-StackLayoutPanelHeader{
    background: unset;
    background-backGroundStyle: lightgray;
}
.gwt-StackLayoutPanel .BIOCHIMIE_URINES.gwt-StackLayoutPanelHeader{
    background: unset;
    background-backGroundStyle: #d2c036 !important;
}
.gwt-StackLayoutPanel .BIOCHIMIE_URINES.gwt-StackLayoutPanelHeader{
    background: unset;
    background-backGroundStyle: #d2c036 !important;
}
.gwt-StackLayoutPanel .BIOCHIMIE_URINES.gwt-StackLayoutPanelHeader{
    background: unset;
    background-backGroundStyle: #d2c036 !important;
}
.gwt-StackLayoutPanel .BIOCHIMIE_URINES.gwt-StackLayoutPanelHeader{
    background: unset;
    background-backGroundStyle: #d2c036 !important;
}
.gwt-StackLayoutPanel .BIOCHIMIE_URINES.gwt-StackLayoutPanelHeader{
    background: unset;
    background-backGroundStyle: #d2c036 !important;
}
*/
.min-heigh-600px {
    min-height: 600px;
}

.admintoogle {
    bottom: 5px;
    list-style: none !important;
    padding-start: 0px !important;
    background-color: #EFEFEF;
    width: 170px;
    z-index:1000;
    position: absolute;
}

.searchinput {
    outline: none;
    line-height: 25px;
    min-height: 25px;
    outline-offset: unset;
    offset: none;
    border: solid 1px lightgrey;
    border-radius: 8px;
    margin-left: 10px;
    width: 230px;
    background-color: white;
    background-image: url('images/search.png');
    background-repeat: no-repeat;
    background-position: right center;
    padding: 0px 10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, OTHER WebKit */
    -moz-box-sizing: border-box;    /* Firefox, OTHER Gecko */
    box-sizing: border-box;
}

.roundedtopright-10px {
    border-top-right-radius: 10px;
}

.min-width-450px {
    min-width: 450px;
}
.minheight-120px{
    min-heihgt: 120px
}
.mce-tinymce.mce-container.mce-panel{
    -webkit-box-sizing: border-box; /* Safari/Chrome, OTHER WebKit */
    -moz-box-sizing: border-box;    /* Firefox, OTHER Gecko */
    box-sizing: border-box;
}

.margin-left-auto {
    margin-left:auto;

}

.padding-bottom-50px {
    padding-bottom: 50px !important;
}

.zindex1 {
    z-index: 1;
}

.left100pc{
    left: 100%;
}



[data-title]:hover:before {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}
[data-title]:before {
    content: attr(data-title);
    white-space: pre;
    background-color: lightgreen;
    color: #111;
    text-align:left;
    font-size: 1.1em;
    position: absolute;
    padding: 1px 5px 2px 5px;
    bottom: 2.4em;
    left: 0%;
    box-shadow: 1px 1px 3px #222222;
    opacity: 0;
    border: 1px solid green;
    border-radius: 5px;
    z-index: 99999;
    visibility: hidden;
}
[data-title] {
    position: relative;
}

.alerticon {
    background-position: 0% 50% !important;
    background-repeat: no-repeat !important;
    background-size:48px 48px;
    background-image: url("images/alert.png");
    padding-left: 50px;
}

.text-brown {
    color: brown;
}
.kchkbox>input{
    flex:2;
}
.kchkbox>label{
    flex:1;
    font-weight: bold;
}

.kchkbox {
    display: flex;
    flex-direction: row-reverse;
    margin: 5px 0px;
}
.stockitems li:last-child{
    border-bottom:none;
}
.popupContent{
    height: 100% !important;
}

.padding-1px {
    padding: 1px;
}
.settingsflexline input{
    min-width: 0px;
}
[contenteditable="true"].single-line {
    white-space: nowrap;
    overflow: hidden;
}
[contenteditable="true"].single-line br {
    display:none;

}
[contenteditable="true"].single-line * {
    display:inline;
    white-space:nowrap;
}

.pharmaicon{
    width: 48px;
    height: 48px;
    float: right;
}

.right-0px {
    right: 0px;
}

.rss {
    left: 245px;
    right: 295px;
}
.kchkboxI1L4>input{
    flex:1;
}
.kchkboxI1L4>label{
    flex:4;
    font-weight: bold;
}

.kchkboxI1L4 {
    display: flex;
    flex-direction: row-reverse;
    margin: 5px 0px;
}

.circle10px {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.progress{
    background-image: url('images/progress.gif');
    background-position: 50% ;
    background-size: 100%;
    background-repeat: no-repeat;
}

.alikebutton{
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: unset;
    color: gray;
    font-weight: unset;

}

.latlonentry {
    border-radius: 3px;
    border: 1px solid lightgray;
    margin: 2px;
}

.progressbutton{
    background-image: url(images/progress.gif);
    background-position: 100% 50%;
    background-size: 20px;
    background-repeat: no-repeat;
}

.labsheet{
    min-height: 120px !important;
}
.lablegend{
    display: flex;
    flex-direction: row;
}
.biochimieurines{
    background-color: #ffffcc;
}

.bioendocrinologie, .biochimiedivers {
    background-color: #ad7474;
}

.biochimiesang, .bankblood {
    background-color: #ffcccc;
}
.hematologiegeneral{
    background-color:#9683EC;
}
.hemostasecoagulation{
    background-color:#40ff00;
}

.biochimiemedicament, .anticorpsimmuns {
    background-color:#ffffff;
}
.microbiologiegeneral{
    background-color: #C9FAB3;
}
.virologiebiomoleculaire{
    background-color: yellowgreen;
}

.serologie {
    background-color:#FFF8C6;
}
.cytologie{
    background-color:#E238EC;
}

.picker {
    height: 80vh !important;
}
.remedy-rank{
    border-radius: 50%;
    background-color: darkred;
    padding: 5px;
    width: 1em;
    height: 1em;
    text-align: center;
    line-height: 1em;
    color: white;
    font-weight: bolder;
}

.editordiv {
    border: solid 1px rgb(250, 201, 22);
    background: white;
    border-radius: 5px;
    margin: 5px 0px;
}

.lab-analysis-name {
    font-family: Arial Unicode MS, Arial, sans-serif;
    font-size: small;
}

.locked-disease {
    padding-left: 15px !important;
    background-size: 15px !important;
    background-position: 0px 50%;
}
.emergency-disease{
    padding: 5px 0px;
}

.padding-30px {
    padding: 30px;
}
.lineheight2em{
    line-height: 2em;
}

.checkbox-flex {
    align-items: center !important;
    flex-direction: row-reverse !important;
    justify-content: space-around !important;

}
.small-right{
    background-size: 5%;
    background-position: 100% 50%;
}
.upl_error{
    background-image: url('images/upl_error.png');
    background-position: 100%  50% ;
    background-size: 5%;
    background-repeat: no-repeat;
}
.upl_success{
    background-image: url('images/upl_success.png');
    background-position: 100% 50% ;
    background-size:  4%;
    background-repeat: no-repeat;
}
.upl_inprogress{
    background-image: url('images/inprogress.gif');
    background-position: 100% 50% ;
    background-size:  5%;
    background-repeat: no-repeat;
}
.upl_pending{
    background-image: url('images/pending.png');
    background-position: 100% 50% ;
    background-size:  100%;
    background-repeat: no-repeat;
}
.cellicon{
    background-size:  100% !important;
    width: 20px;
    margin-right: 5px;
}

.height-80vh {

    height: 80vh;
}

.width-50vh {
    width: 50vw;
}

.margin-20px{
    margin: 20px;
}
.charticone{
    background-image: url('images/chart.png');
}

.flex-center4 {
    justify-content: space-around;
    align-items: flex-end;
}

.height-inherit {
    height: inherit;
}

.center-backg-position   {
    background-position: center;
}

.backg-size-15px {
    background-size: 15px;
}

.left-15px {
    left: 15px;
}

.top-0px {
    top:0px;
}

.background-argile-red {
    background-color: rgba(175, 6, 6, 0.54) !important;
}

.circle-25px {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.bottom-2px {
    bottom: 0px;
}

.padding-top-50px  {
    padding-top: 50px;
}

.dmibar {
    background-image: linear-gradient(#6090c7, #3f5773, #6090c7);

}

.margin-bottom-10pc {
    margin-bottom: 10%;
}

.absoluteleft {
    left:0px;
}

.searchfield {
    padding: 10px 10px !important;
    background-position: 98% 50% !important;
    font-size: 1.5em;
    background-size: 25px !important;
}

.min-height-25px {
    min-height: 25px;
}

.margin-top-1px {
    margin-top: 1px !important;
}

.justifyself-riht {
    justify-self: flex-end;
}
.alignself-end{
    align-self: flex-end;
}

.left-245px {
    left:245px;
}

.searching  {
    margin-left: 3px;
    background-color: #efefef;
    cursor: pointer !important;
}

.unselectable {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.bottom-20px {
    bottom: 20px;
}

.material-vl {
    display: flex;
    flex-direction: column !important;
    color: black;
    border-bottom: 1px solid lightgrey;
    padding: 2px 1px;
    align-items: flex-start !important;
}
.material-vl >*:first-child{
    font-size: 0.94em !important;
    color: gray !important;
    padding-bottom: 5px;
    padding-top: 5px;
    font-weight: bolder;
    /*flex: 2 !important;*/
}
.material-vl >*:nth-child(2){
    display: flex ;
    min-height: 1.2em;
    align-items: flex-start;

}

.material-lv {
    display: flex ;
    flex-direction: column-reverse !important;
    color: black;
    border-bottom: 1px solid lightgrey;
    padding: 2px 1px;
    align-items: flex-start !important;
}
.material-lv >*:nth-child(2) {
    font-size: 0.94em !important;
    color: gray !important;
    padding-bottom: 5px;
    padding-top: 5px;
    font-weight: bolder;
}
.material-lv >*:first-child{
    display: flex ;
    min-height: 1.2em;
    align-items: flex-end;

}
.mat-floating{
    border-radius: 50%;
    height: 2.5em;
    width: 2.5em;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-color: lightgrey;
    box-shadow: 1px 1px 8px;
    background-size: 1.2em;
    outline: none;
}
.mat-floating:hover{
    box-shadow: 1px 1px 3px;
    background-color: #e7e7e7;
}
.mat-floating:active{
    box-shadow: 1px 1px 2px 2px;
    background-color: #818181;
}
.flex-v-center{
    display: flex;
    align-items: center;
}
.absoluteright1em{
    position: absolute;
    right: 1em;
}

[placeholder].material-i {
    color: black;
    padding: 2px 1px;
    position:relative;
}

[placeholder].material-i {
    border: none;
    outline: none;
    margin-top: 1.3em;
    border-bottom: 1px solid dimgray;
}

[placeholder].material-i:before {
    content: attr(placeholder);
    font-size: 0.6em;
    color: gray !important;
    margin-bottom: 2px;
    position: absolute;
    top: -1.2em;
}

.flex-wrap {
    flex-wrap: wrap;
}

.min-height-400px {
    min-height: 400px;
}

.square-45px {
    width: 45px;
    height: 55px;
}

.childflex1>* {
    flex: 1;
}

.min-height-unset {
    min-height: unset !important;
}

.min-height-30px {
    min-height: 30px !important;
}

.settingselected {
    background-color: aliceblue;
}

.flexhalf-v {
    flex: 0 0 100%;
    max-height: 50%;
    min-height: 50%;
}

.margin-top-26px {
    margin-top: 26px;
}

.margin-top-45px {
    margin-top: 45px;
}

.void-table {
    width: 100%;
    height: 100%;
    color: #9E9E9E;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.margin-right-50px {
    margin-right: 50px;
}

.h-separator {
    width: 100%;
    height: 2px !important;
    background-color: red;
    margin: 5px 1px;
}
.vitalselector{
    display: flex;
    flex-wrap: wrap;

}
.bubbleaction{
    width: 20px;
    height: 20px;
    background-position: 50%;
    background-size: 80%;
    margin-left: 5px;
}
.vitalselector>li {
    padding: 1px 5px 1px 30px;
    border-radius: 10px;
    background-position: 5% 50%;
    background-size: 18px;
    background-repeat: no-repeat;
    background-color: aliceblue;
    box-shadow: inset 0px 1px 10px 0px #b3bfca;
    cursor: pointer;
    margin: 5px;
    font-size: 0.8em;
}
.vitalselector>li:hover{
    background-color: #b2e0ff;
}
.vitalselector>li:active{
    border: solid 1px #ef3810;
    box-shadow: red 3px 3px 6px 0px;
}

.alignitemend {
    align-items: end !important;
}

.unsetlineheight {
    line-height: unset;
}

.remedybottom  {
    width: 220px;
    margin: auto;
    left: 50%;
    right: 50%;
    bottom: 0px;
    height: 100%;
    position: absolute;
}
.remedydropdown{
    width: 230%;
    left: -60%;
    bottom: 30px;
    position: absolute;
}
.remedybottomtitle{
    background-color: #f3e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #685d5d;
    font-size: 1.4em;
    border-radius: 5px;
    box-shadow: 1px 1px 4px;
    cursor: pointer;
}



.proceedate {
    background-color: aliceblue;
    box-shadow: inset 0px 1px 10px 0px #b3bfca;
    padding: 5px;
    border-radius: 5px;
}

.top-50px {
    top:50px !important;
}


.dropdownlike {
    display: flex;
    flex-direction: column;
    position: relative;
}

.dropdownlike *:first-child{
    flex:1;
}
.dropdownlike ul{
    flex:1;
    position: absolute;
    display: none;
    list-style-type: none;
    padding: 2px;
    margin: 0px;
    top: 21px;
    min-width: 100%;

    background: #efefef;
}
.dropdownlike ul.dropup{
    bottom: 40px;
    top: unset;
    color: gray;
}
.dropdownlike ul>li{
    cursor: pointer;
    padding: 5px 10px;
    border-bottom: 1px solid gray !important;

}
.dropdownlike ul>li:last-of-type{
   border-bottom: none !important;

}
.dropdownlike ul>li:hover{
    background-color: lightgray;
    color: #6d1717;
}
.dropdownlike:hover ul{
    display: block;
}

.width-unset {
    width: unset;
}

.actions {
    display: flex;
    justify-content: space-around;
    margin: 5px;
    color: #828282;
}
.actions>*{
    height: 45px;
    border: solid 1px lightgray;
    flex: 1;
    text-align: center;
    cursor: pointer;
    background-position: 4% 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    /* padding-top: 25px; */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
.actions>*:hover{
    background-color: #d0d0d0;
    color: #ffffff;

}
.actions>*:active{
    color: #ee1b2a;
    background-color: #c0c0c0;

}
.appticon{
    background-image: url(images/appointment.png);
}
.refeicon{
    background-image: url(images/reference.png);
}
.hosicon{
    background-image: url(images/hospitalization.png);
}
.admiticon{
    background-image: url(images/admit.png);
}
.vertical-seprator{
    width: 1px;
    background-color: #3A3A3A;
    margin-left: 5px;
    margin-right: 5px;
}
.archivefilename{
    width: auto;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}