.custom-fonts{
    font-weight:400;
    font-size:11px;
    text-transform:uppercase;
}

#trip_request_table tr td, #claim_request_table tr td {
  text-align:center;
}

@media only screen and (max-width : 768px) {
.main-footer {
text-align:Center;
}

.main-footer .row .text-right {
text-align:Center !important;
}

}


/*breadcrumb11*/


/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Merriweather+Sans);

* {margin: 0; padding: 0;}


.breadcrumb1 {
	/*centering*/
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag; 
	    margin-bottom: 10px;
}

.breadcrumb1 a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 10px 0 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
	    border-radius: 0px !important;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb1 a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb1 a:first-child:before {
	left: 14px;
	text-align: center;
}
.breadcrumb1 a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb1 a.active, .breadcrumb1 a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb1 a.active:after, .breadcrumb1 a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumb1s using rotated pseudo elements*/
.breadcrumb1 a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb1 a */
	width: 36px; 
	height: 36px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	/*stylish arrow design using box shadow*/

	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb1 a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb1 a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
	text-align: center;
}

html { -ms-overflow-style: -ms-autohiding-scrollbar; }



.flat a, .flat a:after {
	background: #e8e8e8;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover,
.flat a:hover:after{
	background: grey;
	color:white !important;
}

.flat a.active, .flat a.active:after{
	background: #005a2b;
	color:white !important;
}

.flat a.active:before, .flat a:hover:before {
	background: black;
	color:white;
	box-shadow:none;

}

.green_square {
  height: 10px;
  width: 10px;
  background-color: #5ef500;
  display: inline-block;
}

.yellow_square {
  height: 10px;
  width: 10px;
  background-color: #fddc3c;
  display: inline-block;
}

.grey_square {
  height: 10px;
  width: 10px;
  background-color: #b6ebff;
  display: inline-block;
}

.red_square {
  height: 10px;
  width: 10px;
  background-color: #ff7964;
  display: inline-block;
}

.orange_square {
  height: 10px;
  width: 10px;
  background-color: #ffb240;
  display: inline-block;
}

.approv-box{
        background: #5ef500;
}
.sendforapprov{
        background: #fff800;
}
.pending-approv{
        background: #b6ebff;
}

.reject-approv{
        background: #ff7964;
}

.currectn-approv{
        background: #ffb240;
}
.error_highlight{
	    border-color: red !important;
    	box-shadow: 0 0 3px rgb(247, 3, 26) !important;
}

.attach_icons_grp{
    display: block;
    list-style-type: none;
    padding-left: 0px;
    text-decoration:underline;
    margin-bottom:2px;
    font-size: 0.84rem;
}

.remove-icon{
    cursor:pointer;
}

.menu_active{
    background: #666 !important;
    color: white !important;
}
/* Card Collapse and Expand Icons */
.card .card-header h4:after{
    content: "\e95f";
    font-family: 'icomoon' !important;
    font-size:14px;
    float:right;
}

.collapsed-card .card-header h4:after{
    content: "\e966";
    font-family: 'icomoon' !important;
    font-size:14px;
    float:right;
}

.set_tr_border
{
    border:solid 2px #005a2b;
}

.card .card-header {
background: #e8eaed !important;
}

/* Table Width auto temporary*/
.cont-width th, .cont-width td {
    padding: 3px;
    width: 15% !important;
}

*:focus {
    box-shadow : none !important;
}

select{
   border:0px;
   outline:0px;
}
.attach-div {
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
}

body {
    -ms-overflow-style: scrollbar !important;
}

table.dataTable {
    border-collapse: collapse !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
   table.dataTable {
    width:99% !important;
}
}