/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Feb 14, 2019, 4:52:26 AM
    Author     : Jessie
*/



.bg-body{
    background-image: url('../img/bg/1.jpg');
    background-size: cover;
    background-repeat: no-repeat;

}

.hp-loading{
    display:    none;
    position:   fixed;
    z-index:    99999;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .4 ) 
        url('../img/loading/802.gif') 
        48% 20% 
        no-repeat;
}

body.hpload .hp-loading{
    overflow: hidden;
    display: block;
}

#ace-settings-container{
    margin-top: 100px;
    position: fixed;
}


#x-main-panel{
    top : 50%;
}

.fc-more-popovers{
    top : -10px;
}
/*Side Bar Panel */
.patient-info-sidebar{
    position: fixed;
    right: 0;
    bottom: 0;
    height: 80vh;
    width: 300px;
    padding: 10px 0px;
    /*border: solid 1px black;*/
    /*z-index: 2;*/
}
.patient-info-sidebar span{
    z-index: 2;
}
.patient-info-sidebar  .show-xpanel{
    display: block;
}
.patient-info-sidebar  .hide-xpanel{
    display: none;
}


/*Physician Order input-size*/
.order-ipt{
    height:25px;font-size:8pt;
}

th, td { 
    font-size: 12px;
    white-space: normal; 
}

/*CKEDITOR 5*/
.ck-editor__editable_inline {
    min-height: 400px;
}

div.float-title{
    position: fixed;
    right: 0;
    top: 16%;
    padding: 5px;
    color: black;
    text-align: center;
    background-color: #e3e5e6;
    border: 2px solid #2492e0;
    z-index: 1;
}

/*FLOATED BUTTON*/
div.float-button{
    position: fixed;
    right: 0;
    top: 25%;
    padding: 5px;
    color: black;
    background-color: #e3e5e6;
    border: 2px solid #2492e0;
    z-index: 1;
}
div.float-button a{
    color:black;
    font-weight: bold;
    /*text-shadow: 2px 1px #000;*/
}
@media only screen and (max-width: 700px) {
    div.float-button{
        right: 0%;
        top: 25%;
    }
    div.float-title{
        top: 5%; 
        right: 25%;
    }
}
@media only screen and (max-width: 900px) {
    div.float-button{
        top: 18%;
    }
    div.float-title{
        top: 5%; 
    }
}

/*Physician Orders Medication*/
.wrap-issue-word{
    word-wrap: break-word; 
    white-space: -moz-pre-wrap; 
    white-space: pre-wrap; 
    width: 250px;
    overflow: hidden;
}

/*Input Border Bottom*/
.ipt-border-bottom{
  border: 0;
  outline: 0;
  background: transparent;
  border-bottom: 1px solid black;
}

/*PRIN MEDIA*/
@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}


/*Auto Complete CSS*/
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}



/*Custom Tooltip*/
.tooltipevent {
    position:absolute;
    width:500px;
    height:auto;
    background:#a1ffce;
    color: #000000;
    padding: 10px;
    border : .5px solid black;
    border-radius: 5px;
    font-size: 12px;
    z-index:9999;
}
