/* Minification failed. Returning unminified contents.
(794,32): run-time error CSS1019: Unexpected token, found ' '
(794,32): run-time error CSS1019: Unexpected token, found ' '
(794,32): run-time error CSS1042: Expected function, found ' '
(794,32): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(795,35): run-time error CSS1019: Unexpected token, found ' '
(795,35): run-time error CSS1019: Unexpected token, found ' '
(795,35): run-time error CSS1042: Expected function, found ' '
(795,35): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
 */
div.dataTables_length label {
	font-weight: normal;
	text-align: left;
	white-space: nowrap;
}

div.dataTables_length select {
	width: 75px;
	display: inline-block;
}

div.dataTables_filter {
	text-align: right;
}

div.dataTables_filter label {
	font-weight: normal;
	white-space: nowrap;
	text-align: left;
}

div.dataTables_filter input {
	margin-left: 0.5em;
	display: inline-block;
}

div.dataTables_info {
	padding-top: 8px;
	white-space: nowrap;
}

div.dataTables_paginate {
	margin: 0;
	white-space: nowrap;
	text-align: right;
}

div.dataTables_paginate ul.pagination {
	margin: 2px 0;
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	div.dataTables_length,
	div.dataTables_filter,
	div.dataTables_info,
	div.dataTables_paginate {
		text-align: center;
	}
}


table.dataTable td,
table.dataTable th {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


table.dataTable {
	clear: both;
	margin-top: 6px !important;
	margin-bottom: 6px !important;
	max-width: none !important;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
	cursor: pointer;
}

table.dataTable thead .sorting { background: url('../images/sort_both.png') no-repeat center right; }
table.dataTable thead .sorting_asc { background: url('../images/sort_asc.png') no-repeat center right; }
table.dataTable thead .sorting_desc { background: url('../images/sort_desc.png') no-repeat center right; }

table.dataTable thead .sorting_asc_disabled { background: url('../images/sort_asc_disabled.png') no-repeat center right; }
table.dataTable thead .sorting_desc_disabled { background: url('../images/sort_desc_disabled.png') no-repeat center right; }

table.dataTable thead > tr > th {
	padding-left: 18px;
	padding-right: 18px;
}

table.dataTable th:active {
	outline: none;
}

/* Scrolling */
div.dataTables_scrollHead table {
	margin-bottom: 0 !important;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

div.dataTables_scrollHead table thead tr:last-child th:first-child,
div.dataTables_scrollHead table thead tr:last-child td:first-child {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

div.dataTables_scrollBody table {
	border-top: none;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

div.dataTables_scrollBody tbody tr:first-child th,
div.dataTables_scrollBody tbody tr:first-child td {
	border-top: none;
}

div.dataTables_scrollFoot table {
	margin-top: 0 !important;
	border-top: none;
}

/* Frustratingly the border-collapse:collapse used by Bootstrap makes the column
   width calculations when using scrolling impossible to align columns. We have
   to use separate
 */
table.table-bordered.dataTable {
	border-collapse: separate !important;
}
table.table-bordered thead th,
table.table-bordered thead td {
	border-left-width: 0;
	border-top-width: 0;
}
table.table-bordered tbody th,
table.table-bordered tbody td {
	border-left-width: 0;
	border-bottom-width: 0;
}
table.table-bordered th:last-child,
table.table-bordered td:last-child {
	border-right-width: 0;
}
div.dataTables_scrollHead table.table-bordered {
	border-bottom-width: 0;
}




/*
 * TableTools styles
 */
.table.dataTable tbody tr.active td,
.table.dataTable tbody tr.active th {
	background-color: #08C;
	color: white;
}

.table.dataTable tbody tr.active:hover td,
.table.dataTable tbody tr.active:hover th {
	background-color: #0075b0 !important;
}

.table.dataTable tbody tr.active th > a,
.table.dataTable tbody tr.active td > a {
	color: white;
}

.table-striped.dataTable tbody tr.active:nth-child(odd) td,
.table-striped.dataTable tbody tr.active:nth-child(odd) th {
	background-color: #017ebc;
}

table.DTTT_selectable tbody tr {
	cursor: pointer;
}

div.DTTT .btn:hover {
	text-decoration: none !important;
}

ul.DTTT_dropdown.dropdown-menu {
  z-index: 2003;
}

ul.DTTT_dropdown.dropdown-menu a {
	color: #333 !important; /* needed only when demo_page.css is included */
}

ul.DTTT_dropdown.dropdown-menu li {
	position: relative;
}

ul.DTTT_dropdown.dropdown-menu li:hover a {
	background-color: #0088cc;
	color: white !important;
}

div.DTTT_collection_background {
	z-index: 2002;	
}

/* TableTools information display */
div.DTTT_print_info {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 150px;
	margin-left: -200px;
	margin-top: -75px;
	text-align: center;
	color: #333;
	padding: 10px 30px;
	opacity: 0.95;

	background-color: white;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	
	-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
}

div.DTTT_print_info h6 {
	font-weight: normal;
	font-size: 28px;
	line-height: 28px;
	margin: 1em;
}

div.DTTT_print_info p {
	font-size: 14px;
	line-height: 20px;
}

div.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 60px;
    margin-left: -50%;
    margin-top: -25px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 1.2em;
    background-color: white;
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%);
}



/*
 * FixedColumns styles
 */
div.DTFC_LeftHeadWrapper table,
div.DTFC_LeftFootWrapper table,
div.DTFC_RightHeadWrapper table,
div.DTFC_RightFootWrapper table,
table.DTFC_Cloned tr.even {
    background-color: white;
    margin-bottom: 0;
}
 
div.DTFC_RightHeadWrapper table ,
div.DTFC_LeftHeadWrapper table {
	border-bottom: none !important;
    margin-bottom: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
 
div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,
div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,
div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,
div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
 
div.DTFC_RightBodyWrapper table,
div.DTFC_LeftBodyWrapper table {
    border-top: none;
    margin: 0 !important;
}
 
div.DTFC_RightBodyWrapper tbody tr:first-child th,
div.DTFC_RightBodyWrapper tbody tr:first-child td,
div.DTFC_LeftBodyWrapper tbody tr:first-child th,
div.DTFC_LeftBodyWrapper tbody tr:first-child td {
    border-top: none;
}
 
div.DTFC_RightFootWrapper table,
div.DTFC_LeftFootWrapper table {
    border-top: none;
    margin-top: 0 !important;
}


/*
 * FixedHeader styles
 */
div.FixedHeader_Cloned table {
	margin: 0 !important
}


table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
  top: 8px;
  left: 4px;
  height: 16px;
  width: 16px;
  display: block;
  position: absolute;
  color: white;
  border: 2px solid white;
  border-radius: 16px;
  text-align: center;
  line-height: 14px;
  box-shadow: 0 0 3px #444;
  box-sizing: content-box;
  content: '+';
  background-color: #31b131;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child.dataTables_empty:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child.dataTables_empty:before {
  display: none;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
  content: '-';
  background-color: #d33333;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
  display: none;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
  padding-left: 27px;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
  top: 5px;
  left: 4px;
  height: 14px;
  width: 14px;
  border-radius: 14px;
  line-height: 12px;
}
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
  position: relative;
  cursor: pointer;
}
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
  top: 50%;
  left: 50%;
  height: 16px;
  width: 16px;
  margin-top: -10px;
  margin-left: -10px;
  display: block;
  position: absolute;
  color: white;
  border: 2px solid white;
  border-radius: 16px;
  text-align: center;
  line-height: 14px;
  box-shadow: 0 0 3px #444;
  box-sizing: content-box;
  content: '+';
  background-color: #31b131;
}
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  content: '-';
  background-color: #d33333;
}
table.dataTable > tbody > tr.child {
  padding: 0.5em 1em;
}
table.dataTable > tbody > tr.child:hover {
  background: transparent !important;
}
table.dataTable > tbody > tr.child ul {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
table.dataTable > tbody > tr.child ul li {
  border-bottom: 1px solid #efefef;
  padding: 0.5em 0;
}
table.dataTable > tbody > tr.child ul li:first-child {
  padding-top: 0;
}
table.dataTable > tbody > tr.child ul li:last-child {
  border-bottom: none;
}
table.dataTable > tbody > tr.child span.dtr-title {
  display: inline-block;
  min-width: 75px;
  font-weight: bold;
}

.timeline {
    position: relative;
    padding: 20px 0 20px;
    list-style: none;
}

.timeline:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    margin-left: -1.5px;
    background-color: #eeeeee;
}

.timeline > li {
    position: relative;
    margin-bottom: 20px;
}

.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li > .timeline-panel {
    float: left;
    position: relative;
    width: 46%;
    padding: 20px;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.175);
    box-shadow: 0 1px 6px rgba(0,0,0,0.175);
}

.timeline > li > .timeline-panel:before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 26px;
    right: -15px;
    border-top: 15px solid transparent;
    border-right: 0 solid #ccc;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #ccc;
}

.timeline > li > .timeline-panel:after {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 27px;
    right: -14px;
    border-top: 14px solid transparent;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #fff;
}

.timeline > li > .timeline-badge {
    z-index: 100;
    position: absolute;
    top: 16px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    border-radius: 50% 50% 50% 50%;
    text-align: center;
    font-size: 1.4em;
    line-height: 50px;
    color: #fff;
    background-color: #999999;
}

.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline-badge.primary {
    background-color: #2e6da4 !important;
}

.timeline-badge.success {
    background-color: #3f903f !important;
}

.timeline-badge.warning {
    background-color: #f0ad4e !important;
}

.timeline-badge.danger {
    background-color: #d9534f !important;
}

.timeline-badge.info {
    background-color: #5bc0de !important;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
    margin-bottom: 0;
}

.timeline-body > p + p {
    margin-top: 5px;
}
/*td032*/
.panel-body .but
{
    margin-top: 20px;
}
.navbar-default.bg_custom,footer p,.nav > li > a:focus, .nav > li > a:hover
{
    background-color: black;
}
.bg_sidebar
{
    background:#CF2A26;

}
.nav > li > a
{
    color:#fff;
}
footer p
{
    color: #fff;
    padding:15px 0px;
}
.navbar-default .navbar-brand {
  color: #fff;
}
div#dataTables-example_filter ,.pagination{
  float: right;
}


/*14-7-15 login css*/
.left {float:left;}
.right {float:right;}
.cboth {clear:both;}
.s10 {height:10px;}
.s20 {height:20px;}
.s30 {height:30px;}
.s40 {height:40px;}
.s50 {height:50px;}
.s60 {height:60px;}
.s70 {height:70px;}
.s80 {height:80px;}
.topbar {
	/*background-image: url(../images/shade_top.jpg);*/
	background-repeat: repeat-x;
	background-position: left top;
}
.logo_box {
	margin: auto;
	width: 100%;
    float:left;
	padding: 10px 0;
	/*background-image: url(../images/building.png);*/
	background-repeat: no-repeat;
	background-position: right bottom;
}

.logo_box .logo img{max-width: 100%; padding-top: 0px; max-height:59px;} /*width: 200px;*/
.ptb15 {padding: 15px 0;}
.logo_box .sel-lang .select2-container{width:100% !important}

.redbar {
	background-image: url(../images/red_bar.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	height: 40px;
}
.redbox_cont {
	margin: auto;
	height: 40px;
	width: 100%;
}
.btn.btn-primary.new_btn
{
    margin: 20px 0 0;
    background:#CF2A26;
    border:1px solid #CF2A26;
}
.redbox_cont h2 {
	line-height: 0px;
	color: #FFFFFF;
	padding-left: 10px;
      font-size: 20px;
}
.login_new .panel-heading,.login_new h3.panel-title,.panel-default>.panel-heading
{
    background-color:#CF2A26 !important;
    color:#fff;
}

h1 {
	font-family: "Open Sans", Arial, San-serif;
	font-size: 24px;
	font-weight: normal;
}
.ac {
	text-align: center;
}
.user {
	float: right;
	color: #FFFFFF;
	padding-top: 11px;
	padding-right: 10px;
}
.user span {
	padding-right: 11px;
	padding-left: 11px;
	color: rgba(255, 255, 255, 0.5);
}
.user a {
	color: #FFFFFF;
	text-decoration: none;
}
.modules  {
	float: left;
	width: 290px;
	margin-right: 15px;
	margin-bottom: 33px;
	position: relative;
}
.modules .module_logo {
	float: left;
	height: 85px;
	width: 85px;
	margin-right: 15px;
}
.modules .module_detail {
	float: left;
	width: 190px;
	height: 120px;
	overflow: hidden;
}
.modules .module_detail p {
	color: #999999;
}

.module_detail h3 {
	font-family: "Open Sans", Arial, San-serif;
	font-size: 18px;
	font-weight: 400;
	padding-bottom: 8px;
	padding-top: 0px;
}
.enter {
	width:80px;
	height:0px;



transition:height .6s;
-ms-transition:height .6s; /* Firefox 4 */
-moz-transition:height .6s; /* Firefox 4 */
-webkit-transition:height .6s; /* Safari and Chrome */
-o-transition:height .6s; /* Opera */
	display:block;
	overflow:hidden;
	white-space:nowrap;
	text-align:right;
	position:absolute;
	top:-10px;
	right:0px;
	background-image: url(images/enter_bg.png);

}
.modules:hover  .enter {
	height:65px;
}
.enter:hover {
	background-image: url(images/enter_bg_h.png);
}
.login_tab {
	margin: auto;
}
.login_tab th {
	text-align: left;
	padding-top: 12px;
	padding-right: 6px;
	padding-bottom: 4px;
	padding-left: 6px;
	font-size: 14px;
}
.login_tab td {
	padding: 6px;
}.tbox1 {
	padding: 6px;
	width: 240px;
	border: 1px solid #CCCCCC;
}
.btn_login {
	background-image: url(images/btn_login.png);
	background-repeat: repeat-x;
	background-position: left top;
	color: #FFFFFF;
	border: 1px solid #5D5D5D;
	width: 100px;
	text-align: center;
	padding-top: 6px;
	padding-bottom: 6px;
	cursor:pointer;
	margin-right: 15px;
}
.login {
	width: 260px;
	margin: auto;
	padding: 20px;
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
}
.login .form_hd {
	font-weight: bold;
	font-size: 13px;
	display: block;
	padding-bottom: 6px;
}
.login .form {
	padding-bottom: 14px;
}
/*login end*/

@media (max-width:767px) {
    ul.timeline:before {
        left: 40px;
    }

    ul.timeline > li > .timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
    }

    ul.timeline > li > .timeline-badge {
        top: 16px;
        left: 15px;
        margin-left: 0;
    }

    ul.timeline > li > .timeline-panel {
        float: right;
    }

    ul.timeline > li > .timeline-panel:before {
        right: auto;
        left: -15px;
        border-right-width: 15px;
        border-left-width: 0;
    }

    ul.timeline > li > .timeline-panel:after {
        right: auto;
        left: -14px;
        border-right-width: 14px;
        border-left-width: 0;
    }


.grup_name {
    text-transform:lowercase; font-weight:700;
}
    .grup_name input {
        width:auto !important;
        min-width:0;
        font-weight:100;
    }


    .hsse_list .form-control[readonly] { background-color:transparent; border:none;   box-shadow: none;
  word-break: break-word;
}


    .datepicker {
z-index:1051 !important;
}



    .ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all
{
    z-index:999999!important;

}
    }


.layout{margin: 0px auto; max-width: 600px;}
    .layout-inn {border: 1px solid #E21A1A; border-radius: 4px; min-height: 300px; max-height: 400px; overflow: auto; padding: 10px 15px; margin-top: 10px;
     box-shadow: 0 0px 4px #E21A1A; -webkit-box-shadow: 0 0px 4px #E21A1A; -moz-box-shadow: 0 0px 4px #E21A1A;display: inline-block;}
    .wid100 {width:100%;float:left}
body {background: url(../Images/bg.jpg) repeat center center #f1f1f1; background-size: cover; height: 100%;}

.layout-inn.min-height-400 { min-height:400px}
/*!
 * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

body {
    background-color: #f8f8f8;
}

#wrapper {
    width: 100%;
}

#page-wrapper {
    padding: 0 15px;
    min-height: 616px;
    background-color: #fff;
}
/* custom css site home page*/
.site_pro_hme_pg .site_pro_hme_sel select {
    height: 22px;
    border-radius: 0;
    padding: 0 5px;
    font-size:13px; 
}
.start_button {
background: #404040 !important;
border:none !important;  
padding:  4px 12px;
width:auto;

}
.edit_button {
background: #FF9900 !important; 
border:none !important;  
padding: 4px 12px;
width:auto;
}
.view_button {
background: #7B76B6 !important;
border:none !important;
padding:  4px 12px;
width:auto;
}
.del_button {
background: #BC141A !important;
border:none !important;
padding:  4px 12px;
width:auto;
margin-left: 10px;
}
.site_pro_hme_sel table tr td {
padding: 5px; 
text-align:left;
}
.start_tab_pg {
background:none !important;
border:none !important;
}
.start_tab_pg .ui-tabs-panel {
padding:20px 0 !important;

}
.start_tab_pg .ui-widget-header {
background: none !important;
border:none;
}


.start_tab_pg  ul li {
    background : #BC141A !important;
    border-radius:0 !important;
    border:none !important;
}
    .start_tab_pg ul li a {
        color: #fff !important;
    }

.list_hse_sec select {
     height: 30px  !important;
    padding: 0 5px  !important;
    width: 35% !important;
}


.list_hse_sec select1 {
     height: 30px  !important;
    padding: 0 5px  !important;
    width: 64% !important;
}



@media(min-width:768px) {
    #page-wrapper {
        position: inherit;
        margin: 0 0 0 250px;
        padding: 0 30px;
        border-left: 1px solid #e7e7e7;
    }
}

 .panel.panel-default {
  margin-top: 10px;
}

.navbar-top-links {
    margin-right: 0;
}

.navbar-top-links li {
    display: inline-block;
}

.navbar-top-links li:last-child {
    margin-right: 15px;
}

.navbar-top-links li a {
    padding: 15px;
    min-height: 50px;
}

.navbar-top-links .dropdown-menu li {
    display: block;
}

.navbar-top-links .dropdown-menu li:last-child {
    margin-right: 0;
}

.navbar-top-links .dropdown-menu li a {
    padding: 3px 20px;
    min-height: 0;
}

.navbar-top-links .dropdown-menu li a div {
    white-space: normal;
}

.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
    width: 310px;
    min-width: 0;
}

.navbar-top-links .dropdown-messages {
    margin-left: 5px;
}

.navbar-top-links .dropdown-tasks {
    margin-left: -59px;
}

.navbar-top-links .dropdown-alerts {
    margin-left: -123px;
}
.span2 {
  margin-bottom: 15px;
}

.btn-primary {
  color: #fff;
  background:#CF2A26;
    border:1px solid #CF2A26;
}

pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #000;
  border-color: #F90D1F;
}
.navbar-top-links .dropdown-user {
    right: 0;
    left: auto;
}

.pagination > .active > a, pagination > .active > span{background:#CF2A26;    border:1px solid #CF2A26;}

.panel-default>.panel-heading {
  color: #fff;
  background-color: #CF2A26;
  border-color: #ddd;
}
.panel-default {
  border-color: #E21A1A;
}

.sidebar .sidebar-nav.navbar-collapse {
    padding-right: 0;
    padding-left: 0;
}

.sidebar .sidebar-search {
    padding: 15px;
}

.sidebar ul li {
    border-bottom: 1px solid #e7e7e7;
}

.sidebar ul li a.active {
    background-color: #000;
}

.sidebar .arrow {
    float: right;
}

.sidebar .fa.arrow:before {
    content: "\f104";
}

.sidebar .active>a>.fa.arrow:before {
    content: "\f107";
}

.sidebar .nav-second-level li,
.sidebar .nav-third-level li {
    border-bottom: 0!important;
}

.sidebar .nav-second-level li a {
    padding-left: 37px;
}

.sidebar .nav-third-level li a {
    padding-left: 52px;
}

@media(min-width:768px) {
    .sidebar {
        z-index: 1;
        position: absolute;
        width: 250px;
        margin-top: 0px;
    }

    .navbar-top-links .dropdown-messages,
    .navbar-top-links .dropdown-tasks,
    .navbar-top-links .dropdown-alerts {
        margin-left: auto;
    }
}

.btn-outline {
    color: inherit;
    background-color: transparent;
    transition: all .5s;
}

.btn-primary.btn-outline {
    color: #428bca;
}

.btn-success.btn-outline {
    color: #5cb85c;
}

.btn-info.btn-outline {
    color: #5bc0de;
}

.btn-warning.btn-outline {
    color: #f0ad4e;
}

.btn-danger.btn-outline {
    color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
    color: #fff;
}

.chat {
    margin: 0;
    padding: 0;
    list-style: none;
}

.chat li {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #999;
}

.chat li.left .chat-body {
    margin-left: 60px;
}

.chat li.right .chat-body {
    margin-right: 60px;
}

.chat li .chat-body p {
    margin: 0;
}

.panel .slidedown .glyphicon,
.chat .glyphicon {
    margin-right: 5px;
}

.chat-panel .panel-body {
    height: 350px;
    overflow-y: scroll;
}

.login-panel {
    margin-top: 25%;
}

.flot-chart {
    display: block;
    height: 400px;
}

.flot-chart-content {
    width: 100%;
    height: 100%;
}

.dataTables_wrapper {
    position: relative;
    clear: both;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    background: 0 0;
}

table.dataTable thead .sorting_asc:after {
    content: "\f0de";
    float: right;
    font-family: fontawesome;
}

table.dataTable thead .sorting_desc:after {
    content: "\f0dd";
    float: right;
    font-family: fontawesome;
}

table.dataTable thead .sorting:after {
    content: "\f0dc";
    float: right;
    font-family: fontawesome;
    color: rgba(50,50,50,.5);
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.428571429;
}

.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 18px;
    line-height: 1.33;
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
}

.show-grid [class^=col-] {
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ddd;
    background-color: #eee!important;
}

.show-grid {
    margin: 15px 0;
}

.huge {
    font-size: 40px;
}

.panel-green {
    border-color: #5cb85c;
}

.panel-green .panel-heading {
    border-color: #5cb85c;
    color: #fff;
    background-color: #5cb85c;
}

.panel-green a {
    color: #5cb85c;
}

.panel-green a:hover {
    color: #3d8b3d;
}

.panel-red {
    border-color: #d9534f;
}

.panel-red .panel-heading {
    border-color: #d9534f;
    color: #fff;
    background-color: #d9534f;
}

.panel-red a {
    color: #d9534f;
}

.panel-red a:hover {
    color: #b52b27;
}

.panel-yellow {
    border-color: #f0ad4e;
}

.panel-yellow .panel-heading {
    border-color: #f0ad4e;
    color: #fff;
    background-color: #f0ad4e;
}

.panel-yellow a {
}

.panel-yellow a:hover {
    color: #df8a13;
}
.hsse_list .form-control[readonly] { background-color:transparent; border:none;   box-shadow: none;
  word-break: break-word;
}
.grup_name {
    text-transform:uppercase; font-weight:700;
}
    .grup_name input {
        width:auto !important;
        min-width:0;
        font-weight:100;
    }
span.group_title {
    padding-top:8px;
}
.table_groups_wise th {
    padding-right:5px;
    }
 .table_groups_wise th .form-control {
        width: 140px;
    }
.tab_group_ryt {
    border-left: 1px solid #ccc;
}
.tab_group_lft {
    padding-right:10px;
}
.tab_group_ryt  #DivGrid{
    margin-top: 25px;
    padding-left: 20px;
}
    .tab_group_ryt #DivGrid a.btn-default {
        margin-top: 10px;
        margin-left: 40px;
    }

   .form-control .display_none {
    display: none;
}
.hsse_report_pg {
    padding:20px !important;
   
}
.hsse_report_pg .panel-default .panel-body  {
    overflow-x:scroll;
}



panel-default>.panel-heading {
  color: #fff;
  background-color: #CF2A26;
  border-color: #ddd;
}
.panel-default {
  border-color: #E21A1A;
}

.bg_custom .navbar-brand {
padding:7px 15px;}


.editor-field label {
    color: red;
}


.popup_input {
    color: #000;
    font-size: 20px;
    margin: 20px 0 0;
    text-align: left;
    width: 100%;
}
.confirm_button {
        width: 60%; margin:0 auto;
}
.confirm_button > input {
    height: 35px;
    width:75px; text-align:center; margin:0 2px;
    cursor: pointer;
}


.close_button {
    text-align: center;
    width: 100%;
    border-color:red;
}
.close_button > input {
    height: 35px;
}


#dialog h1 {
    font-size: 20px;
    text-align: center;
    width: 100%;
}
/*TD032*/
#no-more-tables.widget-body .table-bordered > tbody > tr > td,
#no-more-tables.widget-body .table-bordered > tbody > tr > th,
#no-more-tables.widget-body .table-bordered > tfoot > tr > td,
#no-more-tables.widget-body .table-bordered > tfoot > tr > th,
#no-more-tables.widget-body .table-bordered > thead > tr > td,
#no-more-tables.widget-body .table-bordered > thead > tr > th,popup_input tr > td {
    border: 1px solid #000;
}
    #no-more-tables.widget-body .table-bordered > div {
        position: absolute;
        top: 0;
        

    }

#no-more-tables.widget-body .chart-height {
    width: 130px;color:#000;
}
#no-more-tables.widget-body svg:not(:root) {
    position: relative;
    bottom: 50px;
}
#no-more-tables.widget-body div#high, #no-more-tables.widget-body div#low, #no-more-tables.widget-body div#medium {
    width: 30px;
}


#dialog.more-content {
    height: 500px;
    top: 0;
    width: 720px;
    margin-left: -305px;

}
#dialog .closebutton {
        position: relative;
    top: 5px;
    float: right;
}

#dialog .closebutton input{
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    height: 30px;
    width: 110px;
}

    #dialog .popup_input {
        margin:0;
    }
#myModal .modal-content {
border:8px solid #000;
}

#myModal .modal-header .close {
    margin-top: -10px;
    font-size: 25px;
}

#myModal .popup_input {
font-size:14px;
color:#999;
}

.button-custom {
    height: 32px ! important;
    width: 200px;
    background-color:#286090;
    border-color:#204d74;

}

.custom-bg-tab .ui-widget-header {
    background:#cf2a26;
    border: 1px solid #cf2a26;
}

