@CHARSET "UTF-8";

html {

}

body{
	font-family: 'Open Sans', sans-serif;
	background-color:#f5f5f5;
	font-size:0.9em;
	margin:0px;
	padding:0px;
	height:100%;
	min-height:100%;
	width:100%;
	-webkit-appearance: none;
}

.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 1020; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.active{
    display:block;
}

.listItemHoverable
{
    padding: 3px 5px 3px 5px;
}

.searchResultBox
{
    cursor:pointer;
    width:100%;
    margin-top:30px;
}

.cbeMargins
{
    padding:15px;
    padding-bottom:5em;
    font-family:Roboto;
    max-width:900px;
    margin:auto;
}

.searchResultPictureBox
{
    float:right;
    border-radius:5px;
    border:1px solid black;
    padding:5px;
    object-fit: scale-down;
    max-height:100px;
    max-width:100px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin:auto;
}

.applicationPictureBox
{
    border-radius:5px;
    border:1px solid black;
    padding:5px;
    object-fit: scale-down;
    max-height:100px;
    max-width:100px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin:auto;
}

.applicationPictureBox:hover
{
    cursor:pointer;
}

.msg-box-img
{
    object-fit: scale-down;
    max-height:50px;
    max-width:50px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin:auto;
    align-items: center;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border: 1px solid grey;
}

.close-msg-box-cross
{
    padding:0 !important;
    margin:0 !important;
}

.close-msg-box-cross:focus{
    outline:none !important;
}

.profile_box_item{
    border:1px solid grey;
}

.profile_box_item:hover{
    cursor:pointer;
}

ul.tag-editor{
    min-height: 5vh;
}

.max-width{
    width:100%;
}

.consultRequestLabelHeaderDiv{
    background-color:#212529;
    border-radius:5px;
}

.consultRequestLabelHeaderText{
    font-size:1.3em;
    color:white;
}

.consultRequestMdTextArea
{
    resize:none;
    height:15vh;
    max-height:15vh;
}

.consultRequestSmTextArea
{
    resize:none;
    height:10vh;
    max-height:10vh;
}

.consultRequestLgTextArea
{
    resize:none;
    height:20vh;
    max-height:20vh;
}

.tdCellInput
{
    display: block; padding: 0; margin: 0; border: 0; width: 100%;
}

.nav-item:hover{
    cursor:pointer;
}

.consultationPageContent{
    min-height: 60vh;
    overflow-y: auto;
}

.extraInfoTextArea
{
    min-height:15vh;
}

.noLeftMargin
{
    margin-left:0;
}

.pointer:hover
{
    cursor:pointer;
}

/************************************ SIDEBAR CSS **********************************/
/* Shrinking the sidebar from 250px to 80px and center aligining its content*/
#sidebar.active {
    min-width: 80px;
    max-width: 80px;
    text-align: center;
}

/* Toggling the sidebar header content, hide the big heading [h3] and showing the small heading [strong] and vice versa*/
#sidebar .sidebar-header strong {
    display: none;
}
#sidebar.active .sidebar-header h3 {
    display: none;
}
#sidebar.active .sidebar-header strong {
    display: block;
}

#sidebar ul li a {
    text-align: left;
}

#sidebar.active ul li a {
    padding: 20px 10px;
    text-align: center;
    font-size: 0.85em;
}

#sidebar.active ul li a i {
    margin-right:  0;
    display: block;
    font-size: 1.8em;
    margin-bottom: 5px;
}

/* Same dropdown links padding*/
#sidebar.active ul ul a {
    padding: 10px !important;
}

/* Changing the arrow position to bottom center position, 
   translateX(50%) works with right: 50% 
   to accurately  center the arrow */
#sidebar.active a[aria-expanded="false"]::before, #sidebar.active a[aria-expanded="true"]::before {
    top: auto;
    bottom: 5px;
    right: 50%;
    transform: translateX(50%);
}

@media (max-width: 768px) {
    /* 80px and its content aligned to centre. Pushing it off the screen with the
       negative left margin
    */
    #sidebar.active {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
        margin-left: -80px !important;
    }


    /* Reappearing the sidebar on toggle button click */
    #sidebar {
        margin-left: 0; 
    }


    /* Toggling the sidebar header content, 
       hide the big heading [h3] and showing the small heading [strong] and vice versa
    */
    #sidebar .sidebar-header strong {
        display: none;
    }
    #sidebar.active .sidebar-header h3 {
        display: none;
    }
    #sidebar.active .sidebar-header strong {
        display: block;
    }

    /* Downsize the navigation links font size */
    #sidebar.active ul li a {
        padding: 20px 10px;
        font-size: 0.85em;
    }

    #sidebar.active ul li a i {
        margin-right:  0;
        display: block;
        font-size: 1.8em;
        margin-bottom: 5px;
    }

    /* Adjust the dropdown links padding*/
    #sidebar.active ul ul a {
        padding: 10px !important;
    }

    /* Changing the arrow position to bottom center position, 
      translateX(50%) works with right: 50% 
      to accurately  center the arrow */
    #sidebar.active a[aria-expanded="false"]::before, #sidebar.active a[aria-expanded="true"]::before {
        top: auto;
        bottom: 5px;
        right: 50%;
        transform: translateX(50%);
    }
}

::-webkit-scrollbar {
	width: 6px !important;
	opacity: 0.4 !important;
}

/* Track */
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
	-webkit-border-radius: 5px !important;
	border-radius: 5px !important;
	opacity: 0.4 !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
	-webkit-border-radius: 5px !important;
	border-radius: 10px !important;
	background: rgb(117, 117, 117) !important;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5) !important;
	opacity: 0.4 !important;
}

::-webkit-scrollbar-thumb:window-inactive {
	background: #41617D !important;
	opacity: 0.2 !important;
}

::-moz-scrollbarthumb-vertical {
	-webkit-border-radius: 5px !important;
	border-radius: 10px !important;
	background: rgb(117, 117, 117) !important;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5) !important;
	opacity: 0.4 !important;
}

::-moz-scrollbarthumb-horizontal {
	-webkit-border-radius: 5px !important;
	border-radius: 10px !important;
	background: rgb(117, 117, 117) !important;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5) !important;
	opacity: 0.4 !important;
}

::-moz-scrollbartrack-horizontal {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
	-webkit-border-radius: 5px !important;
	border-radius: 5px !important;
	opacity: 0.4 !important;
}

::-moz-scrollbartrack-horizontal {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
	-webkit-border-radius: 5px !important;
	border-radius: 5px !important;
	opacity: 0.4 !important;
}

.noPaddingAll
{
    padding:0;
}

.sidebarWidth
{
    min-width: 250px;
    max-width: 250px;
}

.navbar-brand
{
    font-size:1.1em;
}

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

.dashboardBoxDiv{
    border:1px solid grey;
}

.iconBox{
    
}

.dropdown-toggle::after {
    display: none;
}

.inputLabel{
    font-size:1.0em;
}

label{
    margin-bottom:-0.05em;
}

.input-group-text{
    font-size:0.9em;
}

.dropdown-hover:hover
{
    background-color:#d8d9da;
}

.tableheader-hover:hover
{
    background-color: #3A6480 !important;
}

.fa-1_5x
{
    font-size:1.5em;
}

#map {
    width: 100%;
    height: 150px;
}

.search-input{
    position: relative;
    left: -300px;
    opacity: 0;
}

.underline:hover
{
    text-decoration: underline;
}

.sectionHeader:hover
{
    color:#3498DB;
}

.ChatBox
{
    position: fixed;
    bottom: 0;
    right: 0;
}

.modal.face.left .modal-dialog{
    left:50%;
}

.modal.fade:not(.in).left .modal-dialog {
    -webkit-transform: translate3d(75%, 0, 0);
    transform: translate3d(75%, 0, 0);
}

/* FILE DROPPER */

#drop-zone {
    width: 100%;
    height: 100%;
    min-height: 150px;
    border: 3px dashed rgba(0, 0, 0, .3);
    border-radius: 5px;
    font-family: Arial;
    text-align: center;
    position: relative;
    font-size: 20px;
    color: #7E7E7E;
}
#drop-zone input {
    position: absolute;
    cursor: pointer;
    left: 0px;
    top: 0px;
    opacity:0;
    width: 100%;
    height: 100%;
}
/*Important*/
 #drop-zone.mouse-over {
    border: 3px dashed rgba(0, 0, 0, .3);
    color: #7E7E7E;
    
}
/*If you dont want the button*/
 #clickHere {
    display: inline-block;
    cursor: pointer;
    color: white;
    font-size: 17px;
    width: 150px;
    border-radius: 4px;
    background-color: #4679BD;
    padding: 10px;
}
#clickHere:hover {
    background-color: #376199;
}
#filename {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5em;
}
.file-preview {
    background:#ccc;
    border:5px solid #fff;
    box-shadow:0 0 4px rgba(0, 0, 0, 0.5);
    display:inline-block;
    width:60px;
    height:60px;
    text-align:center;
    font-size: 14px;
    margin-top:5px;
}
.closeBtn:hover {
    color:red;
}

.tooltip_custom {
}

.tooltip_custom .tooltiptext {
    top:-3px;
    left:120%;
    visibility: hidden;
    width: 300px;
    /*background-color: #fafafa;*/
    color:white;
    text-align: center;
    border-radius: 6px;
    padding: 3px 0;
    font-weight:bold;
    opacity:0.9;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip_custom:hover .tooltiptext {
  visibility: visible;
  transition: visibility 0s linear 1s;
}

.tooltip_devices {
}

.tooltip_devices .tooltiptext {
    top:-3px;
    left:120%;
    visibility: hidden;
    width: 300px;
    /*background-color: #fafafa;*/
    color:white;
    text-align: center;
    border-radius: 6px;
    padding: 3px 0;
    font-weight:bold;
    opacity:0.9;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip_devices:hover .tooltiptext {
  visibility: visible;
  transition: visibility 0s linear 1s;
}

.activities_list {
    cursor:pointer;
    clear:both;
    text-align:center;
    margin:4px;
    background-color:transparent;
    border:none;
    border-right:2px solid rgb(210,210,210);
    padding-right:0px;
    width:100%;
}
/* END OF FILE DROPPER */