.x-text-justify{
	text-align: justify;
}
.breadcrumb {
	/*centering*/
	/* display: inline-block; */
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
	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; 
}

.breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 15px;
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 15px 0 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
}
/*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*/
.breadcrumb a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
	left: 14px;
}
.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb 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*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		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*/
.breadcrumb a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb 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;
}


.flat a, .flat a:after {
	background: white;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #1178ca;
    color: white;
}

.flat a:hover:before, .flat a.active:before{
    background: white;
    box-shadow: 0 0 0 1px #1178ca;
    color: black;
}

.icon-bdo-profile:before{
	content:"\f007";
}

.icon-bdo-message:before{
	content:"\f0e0";
}

.icon-right-hand:before{
	content:"\f0f7";
}

.icon-for-all:before{
	content:"\f007"
}

.intaresting-place{
	margin: -30px -20px 12px -20px;
}

.intaresting-place-h3{
  color: #017fbb;
  margin-bottom: 15px;	
}

.intaresting-place-card{
    border: 1px solid #f2f2f2;
    box-shadow: 2px 2px 5px #f2f2f2!important;
	margin-top: 15px;
}

.mandatory-field{
    color: red;
    font-weight: 800;	
}

.x-table{
	border-collapse: collapse;
	
}

.x-table td{
	padding: 0.3rem 0.3rem 0.3rem 0.3rem;
	font-size: 13px;
}
.x-table th{
    padding: 1.5rem 0.3rem 0.4rem 0.3rem;
    border-bottom: 1px solid #c9c9c9;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;	
}

.x-table-border{
	border-collapse: collapse;
	
}

.x-table-border td{
	padding: 0.3rem 0.3rem 0.3rem 0.3rem;
	font-size: 15px;
	border: 1px solid #c1c1c1;
}
.x-table-border th{
    padding: 1.5rem 0.3rem 0.4rem 0.3rem;
    border: 1px solid #c1c1c1;
    font-size: 15px;
    font-weight: bold;
    text-transform: capitalize;	
}

.x-table-header{
	background: #0f6cb5;
	color: white; 
	font-size: 14px!important;
	font-weight:bold!important;
	padding-top: 8px!important;
	padding-left: 5px!important;
	padding-right: 5px!important;
	padding-bottom: 8px!important;

}

.x-caption{
	font-size: 13px!important;
    background: #1178ca;
    color: white;
    padding: 10px!important;
    font-weight: 500;
}

.x-p{
	font-size: 13px;
}

.x-table2{
  border-collapse: collapse;
  width: 100%;
  border:1px solid #c8e0f3;	
}

.x-table2 th{
  text-align: left;
  padding: 9px;	
  font-size: 0.9rem;
  color: #07508b;
  background-color: #c8e0f3;
}

.x-table2 td{
    text-align: left;
    padding: 9px;
    font-size: 0.9rem;
    color: #00668d;
}

.x-table2 tr:nth-child(even) {
	background-color: #f2f2f2;
}

.x-table2 a {
	color: #006a6a;
}


.x-table-brown{
  border-collapse: collapse;
  width: 100%;
  border:1px solid #f9e1e1;	
}

.x-table-brown th{
  text-align: left;
  padding: 9px;	
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #1178ca;
}

.x-table-brown td{
    text-align: left;
    padding: 9px;
    font-size: 0.9rem;
    color: #360000;
}

.x-table-brown tr:nth-child(even) {
	background-color: #dfdfdf;
}

.x-table-brown a {
	color: black;
}

.x-visitor{
  list-style-type: none;
  overflow: hidden;
  padding-left: 0px;
  margin-bottom:0px!important;
}

.x-visitor li{
    margin: 4px;
    padding: 3px 10px;
    background-color: #686868;
    color: white;
    float: left;
    font-size: 16px;
    font-weight: 700; 
}

.bdo-list{
    min-height: 50px;
    padding-left: 5px;
    padding-right: 5px;	
}

 iframe {
  width: 100%!important;
  aspect-ratio: 16 / 9;
}

.x-paragraph{
    font-size: 15px;
    font-family: math;
    color: #545454;	
	line-height: 1.5;
}

.x-ol{
    font-size: 15px;
    font-family: math;
    color: #545454;	
    margin: 10px 0 10px 0px;
}

.x-list-head-1{
    font-weight: 600;
    background: #0f6cb5;
    margin-bottom: 9px;
    color: white;
    padding: 5px;
    font-family: system-ui;
}

.x-list-head-2{
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 9px;	
	font-size: 14px;
}

.x-tree {
    min-height: 20px;
    padding: 19px 0px;
    margin-bottom: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.x-tree ul {
	margin-top:0px;
	margin-bottom:0px;	
	padding-left: 0px;
}
.x-tree li {
    list-style-type:none;
    margin:0;
    padding:10px 5px 0 5px;
    position:relative;
}
.x-tree li::before, .x-tree li::after {
    content:'';
    left:-20px;
    position:absolute;
    right:auto;
}
.x-tree li::before {
    border-left:1px solid #999;
    bottom:50px;
    height:100%;
    top:0;
    width:1px;
}
.x-tree li::after {
    border-top:1px solid #999;
    height:20px;
    top:30px;
    width:25px;
}
.x-tree li span {
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border:1px solid #999;
    border-radius:5px;
    display:inline-block;
    padding:8px 8px;
    text-decoration:none;
    text-align: center;	
	max-width: 300px;
	background-color: #ccf8ff;
}
.x-tree li.parent_li>span {
    cursor:pointer;
}
.x-tree>ul>li::before, .x-tree>ul>li::after {
    border:0;
}
.x-tree li:last-child::before {
    height:30px;
}
.x-tree li.parent_li>span:hover, .x-tree li.parent_li>span:hover+ul li span {
    background:#eee;
    border:1px solid #94a0b4;
    color:#000;
}

.x-header-italic{
    font-size: 20px;
    font-family: serif;
    font-weight: 600;
    font-style: italic;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 15px;	
}

.x-header{
    font-size: 19px;
    font-family: serif;
    font-weight: 600;
    text-decoration: underline;
    text-align: center;
    margin-bottom: 15px;	
}

.x-sub-header{
	font-size: 14px;
    font-family: serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3px;
}
.x-bdo-list{
    float: left;
    line-height: 1.4;
    margin-right: 9px;
    font-size: 0.88em;
    font-weight: 600;
}
