
html { 
	-ms-overflow-style: none; 
	font-family: Arial, sans-serif;
}
/* width */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
	background: transparent; 
	border-radius: 5px;
}
::-webkit-scrollbar-track:hover {
	background: #f1f1f1; 
	opacity: 0.3;
}
/* Handle */
::-webkit-scrollbar-thumb {
	background: #bbbbbb; 
	border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #999999; 
}
@media only screen and (max-width: 768px) {
    ::-webkit-scrollbar {
    	width: 16px;
    	height: 16px;
    }
    ::-webkit-scrollbar-thumb {
        min-height:20px;
    }
    /*::-webkit-scrollbar-button:single-button {
        background-color: fuchsia;
        height: 16px;
        width: 16px;
    }*/
}
body {
	background-color: #f0f0f0; 
	font-family: Arial, sans-serif;
}
.redborder {border: 1px solid red;}
.box {
	padding: 0;
	margin: 1vh 0;
	display: table;
}
.a-list {
	background-color: #fff;
	height: 100%;
	display: table-cell;
	border: 1px solid #c5e8ec;
	padding-bottom: 10px;
	font-size: 13px;
}
.a-title {
	background-color: #fff;
	font-size: 13px;
	border: 1px solid #c5e8ec;
}
.a-list p {
	font-size: 15px;
	margin-bottom: 0;
}
.a-list .title,
.a-title .title-only {
	position: relative;
    color: #256c74;
    font-weight: 400;
    font-size: 18px;
    font-family: inherit;
    padding: 8px 0;
}
.a-list .title {
    margin-bottom: 5px;
	border-bottom: 3px solid #c5e8ec;
    /*cursor: pointer;*/
}
.a-list .table {
	margin-bottom: 0!important;
}
.a-list .table td {
	/*border: 0!important;*/
	padding: 5px!important;
}
.pt {
	padding-top: 15px;
}
.nametag {
	font-size: 11px; 
	background-color: #e6e6e6; 
	padding: 5px; 
	border-radius: 20px; 
	font-weight: bold;
	font-style: italic;
}

/*Pill style navbar*/
.pill-nav .nav-tabs {
	border-bottom: none;
	margin-bottom: 5px;
}
.pill-nav .nav-tabs li {
	margin: 3px 0;
}
.pill-nav .nav-tabs>li>a {
	color: #256c74;
	border-radius: 50px;
	padding: 5px 15px;
	background-color: #fff;
	font-size: 12px;
	font-weight: bold;
	cursor: pointer;
	border: none;
	margin-right: 8px;
	border: 1px solid #ccc;
	text-decoration: none;
	white-space: normal;
}
.pill-nav .nav-tabs>li>a:hover,
.pill-nav .nav-tabs>li>a:focus {
	border: 1px solid #ccc;
}
.pill-nav .nav-tabs>li.active>a,
.pill-nav .nav-tabs>li.active>a:focus, 
.pill-nav .nav-tabs>li.active>a:hover {
	background-color: #669966;
	color: #fff;
	border: 0;
}
.pill-nav .nav-tabs>li>a.active,
.pill-nav .nav-tabs>li>a.active:focus, 
.pill-nav .nav-tabs>li>a.active:hover {
	background-color: #669966;
	color: #fff;
	border: 0;
}
.nav-clr .nav-tabs li.active a {
    background-color: #006600!important;
}
.pill-nav .badge {
	font-size: 100%;
}

/*Accordian arrow*/
.accor-title {
	cursor: pointer;
}
.accor-title::after {
	font-family: "Font Awesome 5 Free";
	content: "\f107";
	float: right;
	transition: all 0.5s;
	font-weight: 900;
	font-size: 20px;
}

.accor-title[aria-expanded="true"]::after {
	font-family: "Font Awesome 5 Free";
	content: "\f106";
	font-weight: 900;
	font-size: 20px;
}

/*Tooltips custom design*/
.ui-tooltip, .arrow:after {
    background: white;
    border: 1px solid black;
}
.ui-tooltip {
	position: absolute;
	color: black;
	font-size: 12px;
	padding: 5px;
}
.ui-tooltip:focus {
	display: none;
}
.arrow {
	width: 70px;
	height: 16px;
	overflow: hidden;
	position: absolute;
	left: 50%;
	margin-left: -35px;
	bottom: -16px;
}
.arrow.top {
	top: -16px;
	bottom: auto;
}
.arrow.left {
	left: 20%;
}
.arrow:after {
	content: "";
	position: absolute;
	left: 20px;
	top: -20px;
	width: 25px;
	height: 25px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.arrow.top:after {
	bottom: -20px;
	top: auto;
}

.tree {
	padding-top: 100px;
}
.tree ul {
	padding-left: 0;
	padding-top: 20px; 
	position: relative;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.tree li {
	float: left; text-align: center;
	list-style-type: none;
	position: relative;
	padding: 20px 20px 0 20px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

/*We will use ::before and ::after to draw the connectors*/

.tree li::before, .tree li::after{
	content: '';
	position: absolute; 
	top: 0; 
	right: 50%;
	border-top: 1px solid #ccc;
	width: 50%; 
	height: 20px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.tree li::after{
	right: auto; 
	left: 50%;
	border-left: 1px solid #ccc;
}

/*We need to remove left-right connectors from elements without 
any siblings*/
.tree li:only-child::after, .tree li:only-child::before {
	display: none;
}

/*Remove space from the top of single children*/
.tree li:only-child { 
	padding-top: 0;
}

/*Remove left connector from first child and 
right connector from last child*/
.tree li:first-child::before, .tree li:last-child::after{
	border: 0 none;
}
/*Adding back the vertical connector to the last nodes*/
.tree li:last-child::before{
	border-right: 1px solid #ccc;
	border-radius: 0 5px 0 0;
	-webkit-border-radius: 0 5px 0 0;
	-moz-border-radius: 0 5px 0 0;
}
.tree li:first-child::after{
	border-radius: 5px 0 0 0;
	-webkit-border-radius: 5px 0 0 0;
	-moz-border-radius: 5px 0 0 0;
}

/*Time to add downward connectors from parents*/
.tree ul ul::before{
	content: '';
	position: absolute; top: 0; 
	left: 50%;
	border-left: 1px solid #ccc;
	width: 0; 
	height: 20px;
}

.tree li a{
	border: 1px solid #ccc;
	padding: 5px 5px 0 5px;
	text-decoration: none;
	color: #666;
	font-family: arial, verdana, tahoma;
	font-size: 13px;
	display: inline-block;
	max-width: 350px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	cursor: default;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
.tree li a:hover, .tree li a:hover+ul li a {
	/*background: #c8e4f8; */
	color: #000; 
	border: 1px solid red;
}
/*Connector styles on hover*/
.tree li a:hover+ul li::after, 
.tree li a:hover+ul li::before, 
.tree li a:hover+ul::before, 
.tree li a:hover+ul ul::before{
	border-color:  red;
}
.tree li a .button {
	position: absolute;
	text-align: center;
	z-index: 99;
	margin-left: -40px;
	margin-top: 3px;
	width: 80px;
}
.tree li a button {
	padding: 3px;
	cursor: pointer;
	font-size: 10px;
}
.tree li a button span {
	top: 0;
}
.tree li a button:focus {
	outline: none;
	border-color: #4cae4c;
	background-color: #5cb85c;
}
.num {
    font-weight: bold;
    font-size: 20px;
    background-color: yellow;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
}
.borderless > tbody > tr > td,
.borderless > tbody > tr > th,
.borderless > tfoot > tr > td,
.borderless > tfoot > tr > th,
.borderless > thead > tr > td,
.borderless > thead > tr > th {
    border: none;
}
.comp-color {
	color: #f1502e;
	font-size: 10px;
	font-weight: bold;
}
.dep-color {
	color: blue;
	font-size: 10px;
	font-weight: bold;
}
.pos-color {
	color: green;
	font-size: 10px;
	font-weight: bold;
}
.sec-color {
	color: purple;
	font-size: 10px;
	font-weight: bold;
}
.team-color {
	color: grey;
	font-size: 10px;
	font-weight: bold;
}

table.dataTable tbody tr.odd.selected {
 background-color:#acbad4
}
 
table.dataTable tbody tr.even.selected {
 background-color:#acbad5
}

.hasDatepicker:read-only:enabled {
    background:white;
}

.font-100 {
	font-size: 100%!important;
}

.sticky {
    position:sticky;
    top:60px;
    z-index:1;
    background:white;
}

.text-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.labelselect {
    border:2px solid #87cefa;
    border-radius:1em;
    
    animation-duration: 600ms;
    animation-name: border-blink;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.text-blink_pfm {
   animation-duration: 500ms;
   animation-name: blink;
   animation-iteration-count: infinite;
   animation-direction: alternate;
}
.box-blink_pfm {
   animation-duration: 800ms;
   animation-name: box-blink;
   animation-iteration-count: infinite;
   animation-direction: alternate;
}
.textfont-blink_pfm {
   animation-duration: 1000ms;
   animation-name: text-blink;
   animation-iteration-count: infinite;
   animation-direction: alternate;
}
@keyframes blink {
   from {
      opacity: 1;
   }
   to {
      opacity: 0;
   }
}
@keyframes box-blink {
   from {
       box-shadow: 1px 1px 5px 2px red;
   }
   to {
       box-shadow: 1px 1px 5px 2px transparent;
   }
}
@keyframes text-blink {
   50% {
       text-shadow: 1px 1px 20px red;
   }
}
@keyframes border-blink {
   from {
       border-color: #87cefa;
   }
   to {
       border-color: transparent;
   }
}