﻿@charset "UTF-8";
/* CSS Document */

body{
	background:#e3e3e3;
	border-top:4px solid #cc0000;	
}
body.login{
	background:#e7e7e7 url(../images/bg/bg_login.jpg)	;
	background-repeat:no-repeat;
	background-position:center top;
	background-size:cover;
}
.clear{
	clear:both;	
}
hr{
	background:#cc0000;
	height:5px;
	margin:0;
	padding:0;
}
h1{
	margin:5px 0;
	padding:5px 0;
	color:#cc0000;	
}
h1 strong{
	color:#222222;	
}
h2{
	margin:5px 0;
	padding:5px 0;
	color:#cc0000;	
}
h2 strong{
	color:#222222;	
}
h3{
	margin:5px 0;
	padding:5px 0;
	color:#cc0000;	
}
h3 strong{
	color:#222222;	
}
h4{
	margin:5px 0;
	padding:5px 0;
	color:#cc0000;
}
h4 strong{
	color:#222222;	
}
.dim h4{
	margin:5px 0;
	padding:5px 0;
	color:#fff;
}
.dim h4 strong{
	color:#222222;	
}
.dim header label{
	color:#fff;
}
h5{
	margin:5px 0;
	padding:5px 0;
	color:#cc0000;	
}
h5 strong{
	color:#222222;	
}
h6{
	margin:5px 0;
	padding:5px 0;
	color:#cc0000;	
}
h6 strong{
	color:#222222;	
}
p{
	color:#222222;
	font-size:16px;	
}
p strong{
	font-weight:bold;
}
strong.red,
p strong.red{
	color:#cc0000;
	font-weight:bold;
}
button{
	font-size:16px;
	background:#cc0000;
	color:#fff;
	border:none;
	margin:5px;
	padding:7px 15px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
    -webkit-transition: background ease-out 0.25s;
    -moz-transition: background ease-out 0.25s;
    -o-transition: background ease-out 0.25s;
    transition: background ease-out 0.25s;
}
button.full_width{
	width:100%;	
}
button.half_width{
	width:50%;	
}
button.quarter_width{
	width:25%;	
}
button small{
 	font-size:14px;
 	line-height:10px !important;
 	color:rgba(255,255,255,0.75);
}
button.full_btn{
	background:#cc0000;
	color:#fff;
	padding:5px 15px;
}
.no_margin,
.col_no_margin{
	margin:0 !important;	
}
.no_padding,
.col_no_padding{
	padding:0 !important;
}
.min_padding{
	padding:10px !important;
}
.grab_item{
	cursor:move;	
}
.border_top{
	border-top:1px solid #f1f1f1 !important;
}
.border_right{
	border-right:1px solid #f1f1f1 !important;
}
.border_bottom{
	border-bottom:1px solid #f1f1f1 !important;
}
.border_left{
	border-left:1px solid #f1f1f1 !important;
}
.padding_top{
	padding-top:10px !important;
}
.margin_top{
	margin-top:10px !important;
}
.margin_right{
	margin-right:10px !important;
}
.margin_bottom{
	margin-bottom:10px !important;
}
.margin_left{
	margin-left:10px !important;
}
.align_right {
	text-align: right !important;
}
.align_left{
	text-align:left;	
}
.valign_top{
	vertical-align:top !important;
}
.float_left{
	float:left;	
	margin-left:0 !important;
}
.float_right{
	float:right;	
}
.max_width{
 	width:auto !important; 
}
button:hover{
	background:#dd0000;
}
button.black{
	background:#222;	
}
button.black:hover{
	background:#333;
}
.dim button.black{
	border:1px solid #555;
}
button.green{
	background:#00aa00;	
}
button.green:hover{
	background:#00cc00;
}
.dim green.black{
	border:1px solid #00cc00;
}
.center{
	text-align:center;
}



button.big_btn{
	background:#cc0000;
	color:#fff;
	padding:15px 35px;
	min-width:300px;
}
/* -------
-------------
---------------
**
**  Login Page
**
-----------
-----
*/
.login_form{
	width:300px;
	margin:160px auto 0 auto;
	padding:170px 0 0 0;
	background:url(../images/assets/login_logo.png);
	background-repeat:no-repeat;
	background-position:center top;
}
.login_form h3{
	font-weight:normal;
	font-size:15px;
	color:#333;
}
.login_form input{
	width:100%;
	margin:8px 0;
	padding:15px 15px 15px 45px;
	border:none;
	font-size:16px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.login_form span{
	display:block;	
}
.login_form span.username,
.login_form span.password{
	position:relative;
}
.login_form span:before{
	font-size:22px;
    font-family: FontAwesome !important;
	font-weight:normal;
	position:absolute;
	color:#999;
	top:18px;
	left:15px;
}
.login_form span.username:before{
    content: "\f007";
}
.login_form span.password:before{
    content: "\f023";
}
.login_form input[type="submit"]{
	margin:11px 0;
	font-size:20px;
	text-transform:uppercase;
	background:#cc0000;
	color:#fff;
	border:none;
    -webkit-transition: background ease-out 0.25s;
    -moz-transition: background ease-out 0.25s;
    -o-transition: background ease-out 0.25s;
    transition: background ease-out 0.25s;
}
.login_form input[type="submit"]:hover{
	background:#dd0000;
}
.login_form a.recover_password{
	font-size:15px;
	line-height:40px;
	color:#666666;
}
.login_form a.recover_password:hover{
	color:#333;
	text-decoration:none;
}
.login_form a.recover_password .fa{
	padding-right:2px;	
}
body.login .assistance{
	width:100%;
	color:#000000;
	font-size:15px;
	line-height:60px;
	font-weight:bold;
	text-align:center;
	position:fixed;
	bottom:0px;
	background:rgba(231,231,231,0.8);
	border-top:1px solid rgba(231,231,231,1.0);
	text-shadow:0px 1px 1px #fff;
}
body.login .assistance strong{
	color:#cc0000;
}
.validation-summary-errors ul{
	margin:0;
	padding:0;
}
    .validation-summary-errors ul li {
        list-style: none;
        margin: 5px 0;
        /*padding: 5px 10px;*/
        color: #cc0000;
        font-size: 20px;
        border-right: 3px solid #ffffff;
        /*border-right:3px solid #cc0000;*/
        /*border-left:3px solid #cc0000;*/
        border-left: 3px solid #ffffff;
        /*background: rgba(0,0,0,0.025);*/
    }
.validation-summary-errors ul li:before{
	font-family: "FontAwesome";
	/*content: "\f05e";*/
	padding-right:7px;
}


/* -------
-------------
---------------
**
**  Dashboard Page
**
-----------
-----
*/
.dashboard.content section{
	margin:0;	
}
.dashboard.content section .highlight{
	padding:0;
}
.dashboard.content section .section_row .section_col{
	text-align:center;
	padding:15px;
}
.dashboard .section_col label{
	color:#222222;
	font-size:20px;
	line-height:20px;
	font-weight:normal;
}
.dashboard .section_col p{
	color:#33449c;
	font-size:55px;
	line-height:55px;
	font-weight:bold;
	margin:0;
	padding:0;
}
.dashboard .section_col p.money{
	color:#222222;
	font-size:35px;
	line-height:35px;
}


/* -------
-------------
---------------
**
**  Demo Settings
**
-----------
-----
*/
.dim{
	position:absolute;
	top:0;
	left:0;
	display:block;
	width:100%;
	height:100vh;
	z-index:999;
}
.dim .background{
	position:fixed;
	top:0;
	left:0;
	display:block;
	width:100%;
	height:100vh;	
	background:rgba(0,0,0,0.8);
	z-index:9998;
}
.dim .content{
	position:relative;
	display:block;
	width:80%;
	margin:0 auto;
	padding:0;
	z-index:9999;
}
.dim .small_content{
	width:40%;
	min-width:550px;
}
.popup{
	display:block;
	width:80%;
	min-width:1300px;	
	height:250px;	
	margin:20% auto;
	z-index:9999;
}
.dim .action_row .half_col,
.dim .action_row .full_col{
	padding:10px 0 !important;
}
.dim .action_row button{
	width:90%;
	padding:25px 5px;
	font-size:23px;
	line-height:23px;
}
.dim .action_row .full_col button{
	width:95%;
}
.dim label h1{
	color:#fff;
}
.dim .content section .section_row .section_col,
.dim .content section .section_row .full_col,
.dim .content section .section_row .section_col label{
	font-size:25px;	
}
.dim .section_row .section_col{
	padding:20px 20px !important; 
}
.dim .section_row .section_col,
.dim .section_row .section_col label{
	font-size: 18px !important;
}


/* -------
-------------
---------------
**
**  Bootstrap Settings
**
-----------
-----
*/
.fixed-table-pagination{
 	margin:10px 25px; 
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
    background-color: #cc0000;
    border-color: #cc0000;
    color: #fff;
    cursor: default;
    z-index: 2;
}
.pagination > li > a, .pagination > li > span {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #cc0000;
    float: left;
    line-height: 1.42857;
    margin-left: -1px;
    padding: 6px 12px;
    position: relative;
    text-decoration: none;
}
.pagination > li > a:focus,
.pagination > li > a:hover{
    color: #cc0000;
}
.nav-tabs{
    background:#efefef;
    padding:5px 5px 0 5px;
}
.nav-tabs li a{
    color:#333; 
}
.nav-tabs li.active a,
.nav-tabs li.active a:focus{
    color:#cc0000;
    font-weight:bold;
}


/* -------
-------------
---------------
**
**  Header & Navigation
**
-----------
-----
*/
.nav_header{
	width:100%;
	background:#ebebeb;	
	border-top:1px solid #fff;	
	border-bottom:1px solid #fff;
	margin-top:38px;
}
.nav_header .row{
	width:80%;
	min-width:1300px;	
	margin:0 auto;
}
.nav_header .navigation a{
	display:block;
	padding:85px 0 10px 0;
	font-size:14px;
	line-height:20px;
	text-align:center;
	text-transform:uppercase;
	color:#444444;
	background-repeat:no-repeat;
	background-position:center top;
    -webkit-transition: background ease-out 0.25s;
    -moz-transition: background ease-out 0.25s;
    -o-transition: background ease-out 0.25s;
    transition: background ease-out 0.25s;
}
.nav_header .navigation .logo,
.nav_header .navigation .nav_item{
	margin:0;	
	padding:0;	
}
.nav_header .navigation .active a{
	color:#cc0000;
	border-right:1px solid #f4f4f4;
	border-left:1px solid #f4f4f4;
	background:rgba(0,0,0,0.05);
	background-repeat:no-repeat;
	background-position:center top;
}
.nav_header .navigation a:hover{
	text-decoration:none;
	background:rgba(0,0,0,0.025);
	background-repeat:no-repeat;
	background-position:center top;
}
.nav_header .navigation a.dashboard{ background-image:url(../images/icons/icon_dashboard.png); }
.nav_header .navigation a.clients{ background-image:url(../images/icons/icon_clients.png); }
.nav_header .navigation a.claims{ background-image:url(../images/icons/icon_claims.png); }
.nav_header .navigation a.reports{ background-image:url(../images/icons/icon_reports.png); }
.nav_header .navigation a.contact{ background-image:url(../images/icons/icon_contact.png); }
.nav_header .navigation a.cc_form{ background-image:url(../images/icons/icon_forms.png); }
.nav_header .navigation a.setup{ background-image:url(../images/icons/icon_setup.png); }

.sub_nav_header{
	width:100%;
	background:#222222;
}
.sub_nav_header .sub_navigation{
	width:78%;
	min-width:1200px;	
	margin:0 auto;
}
.sub_nav_header .sub_navigation .nav_item{
	margin:0;	
	padding:0;
	float:left;
}
.sub_nav_header .sub_navigation .nav_item a{
	display:block;
	font-size:14px;
	line-height:40px;
	color:#ffffff;
	margin:0;	
	padding:0 20px;
	border-right:1px solid rgba(0,0,0,0.8);
	border-left:1px solid rgba(255,255,255,0.15);
    -webkit-transition: background ease-out 0.5s;
    -moz-transition: background ease-out 0.5s;
    -o-transition: background ease-out 0.5s;
    transition: background ease-out 0.5s;
}
.sub_nav_header .sub_navigation .active a{
	background:#cc0000;
}
.sub_nav_header .sub_navigation .nav_item:first-of-type a{
	border-left:none;	
}
.sub_nav_header .sub_navigation .nav_item:last-child a{
	border-right:none;	
	background:#ff6600 !important;
}
.sub_nav_header .sub_navigation .nav_item a:hover{
	text-decoration:none;	
	background: rgba(255,255,255,0.1);
}
.sub_nav_header .sub_navigation .active a:hover{
	text-decoration:none;	
	background:#dd0000;
}


/* -------
-------------
---------------
**
**  Content
**
-----------
-----
*/
.content{
	width:80%;
	min-width:1200px;	
	margin:0 auto 40px auto;	
}
.content header{
	margin:40px 0 0 0;
}
.content header strong{
	text-transform: uppercase;
} 
.content footer{
	text-align:right;
}
.content footer button{
	font-size:18px;
	margin:0 0 0 15px;
	padding:10px 20px;
	
}
.content section{
	background:#fff;
	border-top:7px solid #cc0000;
	margin:0 0 30px 0;
	padding:0;
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}
.content section .highlight{
	width:100%;
	background:#fbfbfb;
	border-top:1px solid #f1f1f1;
	margin:0;
	padding:0 25px;
}
.content section .section_row{
	border-bottom:1px solid #f1f1f1;
	clear:both;
}
.content section .half_width_row{
	padding-right:30%;
	padding-left:30%;
}
header{
	font-size:18px;
	color:#cc0000;
}
.content section .section_row header{
	font-size:18px;
	background:#cc0000;
	color:#cc0000;
	padding:0 15px;
	color:#fff;
} 
header.editable,
header.red{
	padding:0 15px;	
	background:#cc0000;
	color:#fff;
	font-size:16px;
	min-height:47px;
}
header label{
	float:left;
	margin:10px 0;
	padding:0;
}

thead label i.sort_indicator{
	padding-left:5px;
}
.smaller_labels thead tr th label{
	font-size:12px;
	padding: 0 5px !important;
}
.smaller_labels thead tr th .fa {
    padding: 0 5px 0 0 !important;
}
header button{
	float:right;
	margin:10px 0;
	padding:0;
	background:none;
}
header.section_nav{
 	background:none; 
 	margin:0;
 	padding:0;
}
header.section_nav label{
 	color:#cc0000; 
}
header.section_nav button,
header button{
 	color:#cc0000; 
 	display:block;
	margin:25px 0;
 	padding:0 5px;
	font-size:20px;
}
section header button,
header.section_nav button.white,
header button.white{
 	color:#fff; 
 	display:block;
	margin:25px 0;
 	padding:0 5px;
	font-size:20px;
}
section header button,
header button,
header button.white{
	margin:9px 0;	
}
header.section_nav button:hover,
header button:hover{
 	color:#fff; 
 	background:#cc0000;
}
header button:hover,
header.section_nav button.white:hover,
header button.white:hover{
 	color:#cc0000 !important;
 	background:#fff !important;
}
.content section .half_col header{
	color:#333;
}
header.section_header{
 	background:#cc0000; 
	margin:20px 0 0;
 	padding:5px 15px 0 15px;
}
header.section_header label{
 	color:#fff; 
}
header.section_header button{
 	color:#fff; 
 	display:block;
 	padding:0 5px;
}
header.section_header button:hover{
 	color:#cc0000; 
 	background:#fff;
}
.content section .half_col header{
	color:#333;
}
.content section .half_col header.editable{
	padding:0 15px;
	background:none;
	color:#cc0000;
	font-size:16px;
}
.content section .half_col header.editable button{
	color:#cc0000;
}
.content section .half_col header label{
	float:left;
	margin:10px 0;
	padding:0;
	color:#cc0000;
	font-size:18px;
}
.content section .half_col header button{
	float:right;
	margin:10px 0;
	padding:0;
	background:none;
}
.content section .half_col header.editable{
	padding:0 15px;	
	background:none;
	color:#cc0000;
	font-size:16px;
}
.content section .half_col header.editable button{
	color:#cc0000;
}
.content section .section_row header button:hover{
	background:none;	
}
.content section .section_row .section_col{
	font-size:17px;
	line-height:22px;
	padding:25px 25px;
	border-right:1px solid #f1f1f1;
	vertical-align:middle;
	display: table-cell;
}
.content section .section_row .full_col{
	font-size:18px;
	line-height:22px;
	padding:25px 25px;
	border-right:1px solid #f1f1f1;
	vertical-align:middle;
	display: block;
	width:100%;
}
.content section .section_row .col_50{
	width:50%;
	float:left;
}
.content section .section_row .multiple_fields input{
	margin-right:10px;
}
.content section .section_row .section_col_right{
	width:100%;
	text-align:right;
	font-size:18px;
	line-height:22px;
	padding:25px 25px;
	border-right:1px solid #f1f1f1;
	vertical-align:middle;
}
.content section .section_row .section_col:last-of-type{
	border:none;	
}
.content section .section_row .section_col textarea{
	font-size:16px;
	line-height:28px;
	margin-left:5px;
	padding:0 7px;
	border:1px solid #d0d0d0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display:table-cell;
	vertical-align:middle;
}
.content section .section_row .section_col input{
	font-size:16px;
	line-height:28px;
	padding:0 7px;
	border:1px solid #d0d0d0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.content section .section_row .full_col textarea{
	font-size:16px;
	line-height:28px;
	padding:0 7px;
	border:1px solid #d0d0d0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display:block;
	width:100%;
}
input.inp-2{
	width:20px;	
}
input.inp-4{
	width:40px;	
}
input.inp-6{
	width:60px;	
}
input.inp-8{
	width:80px;	
}
input.inp-10{
	width:100px;	
}
input.inp-12{
	width:120px;	
}
input.inp-14{
	width:140px;	
}
input.inp-16{
	width:160px;	
}
input.inp-18{
	width:180px;	
}
input.inp-20{
	width:200px;	
}
input.inp-30{
	width:300px;	
}
input.inp-40{
	width:400px;	
}
input.inp-50{
	width:500px;	
}
input.inp-60{
	width: 900px;
}
textarea.text-400{
 	width:700px !important; 
}
.content section .section_row .section_col.date_field label,
.content section .section_row .section_col.radio_field label{
	margin:0;
	padding:0;	
	vertical-align:middle;
	/*display: table-cell;*/
	font-weight:bold;
}
.content section .section_row .section_col.radio_field label{
	display: table-cell;
}
.content section .section_row .section_col .input-group{
	
}
.content section .section_row .section_col .input-group.date,
.content section .section_row .section_col .input-group.customDateTime,
.content section .section_row .section_col .input-group.bootstrap-timepicker
{
	width:145px;
	padding-left:10px;
	vertical-align:middle;
	display: inline-block;
}
.content section .section_row.datetimepicker_section .section_col .input-group.date,
.content section .section_row.datetimepicker_section .section_col .input-group.customDateTime,
.content section .section_row.datetimepicker_section .section_col .input-group.bootstrap-timepicker {
    width: initial;
}
.content section .section_row .section_col .input-group.date .form-control,
.content section .section_row .section_col .input-group.customDateTime .form-control,
.content section .section_row .section_col .input-group.bootstrap-timepicker .form-control {
    font-size: 14px;
    width: 90px;
    vertical-align: middle;
    display: table-cell;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    float: left;
}
.content section .section_row.datetimepicker_section .section_col .input-group.date .form-control,
.content section .section_row.datetimepicker_section .section_col .input-group.customDateTime .form-control,
.content section .section_row.datetimepicker_section .section_col .input-group.bootstrap-timepicker .form-control {
    width: 165px;
}
.content section .section_row .section_col .input-group.date .input-group-addon,
.content section .section_row .section_col .input-group.customDateTime .input-group-addon,
.content section .section_row .section_col .input-group.bootstrap-timepicker .input-group-addon {
    width: auto;
    height: 28px;
    vertical-align: middle;
    display: table-cell;
    padding: 8px 12px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-bottomleft: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.content section .section_row .section_col.radio_field ul{
	margin:0;
	padding:0;
	vertical-align:middle;
	display: table-cell;
	white-space: nowrap;
}
.content section .section_row .section_col.radio_field ul li{
	margin:0;
	padding:2px 0 0 35px;	
	list-style:none;
	font-size:14px;
	line-height:15px;
	min-width:90px;
}
.content section .section_row .section_col.radio_field ul.inline li{
	float:left;	
	margin:0;
	padding:2px 0 0 15px;	
	list-style:none;
	font-size:14px;
	line-height:15px;
	min-width:50px;
}
.content section .section_row .section_col.radio_field ul li input{
	margin-right:5px;
	line-height:15px;
}
.content section .section_row .section_col.radio_field ul.horizontal li
.content section .section_row .section_col ul.horizontal li{
	margin:0;
	padding:2px 0 0 15px;	
	list-style:none;
	font-size:14px;
	line-height:15px;
	min-width:60px;
	display:inline;
}

.content section .section_row .section_col .btn-group{
	width:145px;
	min-width:140px;
	margin:0;
	padding:0;
	vertical-align:middle;
	padding-left:10px;
}
.content section .section_row .section_col.radio_field ul li label{
	font-weight: normal;
	display: inline;
} 
/*
.content section .section_row .section_col .btn-group .btn-default{
	width:100px;
}
.content section .section_row .section_col .btn-group .dropdown-toggle{
	width:30px;
	background:#444444;
	color:#fff;
	border-color:#444444;
}
.content section .section_row .section_col .dropdown-toggle:hover,
.content section .section_row .section_col .dropdown-toggle:active{
	background:#cc0000;
	color:#fff;
	border-color:#cc0000;
}
*/
.content section .section_row .section_col.center_value{
	text-align:center;	
}
.content section .section_row .section_col.center_value label{
	display:block;
	width:100%;	
}
.content section .section_row .half_col{
	width:50%;
	display: inline-block;
    float: left;
}
.content section .section_row .half_col input.default{
	width:450px;
}
.content section .section_row .no_padding{
 	padding:0;
}


.content table {
    /*width: 100%;*/
    width: calc(100% - 1px);
    margin: 0 0 40px 0;
}
.content table.no_header{
		
}
.content .highlight table{
 	border-left:1px solid #eee; 
}
.fixed-table-container{
	margin:0;	
}
.content table thead{
}
.content table thead tr th{
	background:#222222;
	color:#fff;
	padding:10px 15px;
	font-weight:normal;
	/*border-right:1px solid rgba(0,0,0,0.12);*/
	/*position:relative;*/
	height:5px;
	min-height:5px;
}
.fixed-table-container thead th .th-inner{
	/*border-right:1px solid rgba(255,255,255,0.2);*/
}
.fixed-table-container thead th:last-of-type .th-inner{
	border-right:none;
}
.content table thead tr th.small_col{
	width:25px;	
}
.content table thead tr th.medium_col{
	width:100px;	
}
.content table thead tr th.large_col{
	width:200px;	
}
.content table thead tr th.xlarge_col{
	width:300px;	
}
.content table thead tr th:last-of-type{
	border-right:none;
}
.content table tbody tr{
	border-right:1px solid #dddddd;
	border-left:1px solid #dddddd;
}
.content table tbody tr td{
	padding:15px;
	font-weight:normal;
	border-right:1px solid #dddddd;
}
table thead tr th.table_label,
table tbody tr td.table_label{
 	background:#fff; 
	border:1px solid #eee;
	border-right:1px solid #ddd;
	text-align:right;
}
.highlight table thead tr th.table_label,
.highlight table tbody tr td.table_label{
 	background:#fbfbfb; 
	border:1px solid #fbfbfb;
	border-right:1px solid #ddd;
	text-align:right;
}

.content table tbody tr td:last-of-type{
	border-right:none;
}
.content table tbody tr:nth-child(even) {
    background: #f7f7f7;
}
.content table tbody{
	border-bottom:1px solid #dddddd;
}
.content table tfoot tr{
	border-right:1px solid #999;
	border-left:1px solid #999;
}
.content table tfoot tr td{
	background:#999;
	color:#fff;
	padding:10px 15px;
	font-weight:normal;
	border-right:1px solid #999;
}
.content table tfoot tr td:last-of-type{
	border-right:none;
}
.content table tfoot tr td label{
	padding-right:10px;	
}
.content table tfoot tr td label:after {
    content: ": ";
}
.content table tr td.status{
	color:#cc0000;
	font-weight:bold;
}
.th-inner{
 	padding:0 !important;
}
.content table thead tr th{
	padding:0;
}
.content table thead tr th .search{
	background:#fff;
	padding:15px 15px;
	min-height:65px;
}
.content table thead tr th label{
	background:#222222;
	width:auto;
	margin:0;
	padding:0 15px 0 15px;
	line-height:45px;
	font-weight:normal;
}
.content table thead tr th .fa{
	padding:0 15px 0 0;	
}
.section_row table td a,
.half_col table td a,
.dropzone a{
	color:#cc0000;
	font-size:16px;
	font-weight:bold;
	text-transform:uppercase;
}
.section_row table td a:hover{
	text-decoration:none;
}
.section_row table td a .fa{
	font-size:18px;
	padding-left:2px;
}
.section_row table.scroll_table{
	display:block;
	width:200px;
	height:320px;
	max-height:320px;
    overflow:scroll; 
    overflow-y: scroll;
	border-top:1px solid #dddddd;
	border-bottom:1px solid #dddddd;
}
.section_row table.scroll_table tr,
.section_row table.scroll_table tr td{
	width:100%;
	display:inline-block;
}
.section_row table.scroll_table tr td{
	padding:9px;	
}

.section_row .col_data{
	
}
.section_row .col_data label{
	text-align:center;	
}
.content section .section_row .col_data label,
.content section .section_row .col_data input,
.content section .section_row .col_data textarea{
	width:100%;
	display:block;
	margin:0;
	margin-bottom:20px;
}
.content section .section_row .col_data textarea{
	height:150px;	
}




.content section .section_row .section_col .btn-group .caret{
	border:none;
	position:absolute;
	background:#ff6600;
	top:1px;
	right:0;
	line-height:34px;
}
.content section .section_row .section_col .btn-group .caret:before {
    font-family: "FontAwesome";
    content: "\f078";
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    margin: 0;
	padding: 0;
	background:#444;
	color:#fff;
	position:absolute;
	top:0;
	right:0;
	width:30px;
	-webkit-border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	-moz-border-radius-bottomright: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.strong {
    font-weight: bold !important;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance:textfield;
}
.section_col > label:after {
    content: ": ";
}
.section_col > label.data{
	font-weight:normal;	
}
.section_col > label.data:after {
    content: "";
}
span.red {
	color:#FF0000;
}
.truncate {
	max-width: 700px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
}
table td .table_btns{
	width:90px;
	display: table;
}
table td .table_btns button{
	font-size:17px;
	padding:0;
	margin:0 7px;
	color:#cc0000;
	background:none;
	font-weight:normal;
}


/* -------
-------------
---------------
**
**  Modal Settings
**
-----------
-----
*/
.modal {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
}
.modal .content header h4 {
	color: #fff;
    font-size: 25px;
    font-weight: bold;
}
.modal .content section {
}


/* -------
-------------
---------------
**
**  Address Book & Account Permissions
**
-----------
-----
*/
.directory a{
	color:#cc0000;	
}
.directory .left_col,
.directory .right_col{
	padding:10px 0;	
}
.directory .left_col{
	border-right:1px solid #ededed;	
}
.directory .add_header{
	padding:0;
}
.header{
	border-bottom:1px solid #ededed;	
	padding:0 10px 10px 10px;
}
.search_header{
	position:relative;
	padding:0;
}
.search_text{
	padding:7px 20px 7px 7px;
}
.search_text label{
	padding-top:4px;
}
.search_header input.search,
.content section .section_row .section_col .search_header input.search{
	font-size:14px;
	line-height:21px;
	width:100%;
	position:absolute;
	top:5px;
	right:90px;
	padding:7px 20px 7px 7px;
	border:1px solid #ccc;
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}
.content section .section_row .section_col .search_header input.search{
	line-height:20px;
}
.search_header button.search,
.content section .section_row .section_col .search_header button.search{
	width:100px;
	position:absolute;
	right:0;
  
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
  
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
.directory .nav-tabs{
	background:#cc0000;
	padding:0;
	border:none;  
}
.directory .nav-tabs li{
	border:none;
	margin:0;  
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border-right:1px solid rgba(255,255,255,0.30);
}
.directory .nav-tabs li.active{
	border:none;  
}
.directory .nav-tabs li a{
	margin:0;
	font-size:16px;
	font-weight:bold;
	color:#fff;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border:none;  
	border-right:1px solid rgba(0,0,0,0.25); 
}

.directory .nav-tabs li:last-of-type a{
	/*border-right:none;	*/
}
.directory .nav-tabs li.active a,
.directory .nav-tabs li.active a:focus{
	color:#cc0000;
	font-weight:bold;
	border:none;  
}
.directory .nav-tabs li a:hover{
	background:rgba(0,0,0,0.3);	
}
.directory .nav-tabs li.active a:hover{
	background:#fff;
}
.directory .nav-tabs li.active,
.directory .nav-tabs li.active a{
	border:none;	
}
.directory .tab-content{
	max-height:500px;
	overflow:scroll;	
}
.directory .tab-content header{
	font-size:18px;
	color:#cc0000;
	border-bottom: 2px solid #cc0000;
	margin:10px 10px 0 10px;
	padding:5px 8px;
}
.directory .tab-content section{
	border:none;
	margin:0 10px 10px 10px;
	padding:0;
}
.directory .tab-content section h3{
	color:#333;
	font-size:18px;
	line-height:18px;
	font-weight:normal;
	border-bottom:1px solid #d1d1d1;
	margin:0;
	padding:15px 20px;
	cursor:pointer;
}
.directory .tab-content section h3:hover{
	background:rgba(0,0,0,0.035);
}
.directory .contact .section_row .section_col{
	padding:10px 20px;
}
.account_permissions .contact .section_row .section_col{
	padding:20px;
}
.directory .right_col{
	margin:0;
	padding:0; 
}
.directory .contact header{
	margin:0;
	padding:0px 15px; 
	border-bottom:1px solid #f1f1f1;
}
.directory .contact header label h2{
	color:#000;
}
.directory .contact header button{
	margin:23px 0 0 0;
}
.directory .contact header .btn-group{
	margin:0 auto 23px auto;	
	width:90%;
}
.directory .contact header .btn-group button{
	padding:10px;
	font-size:18px;
	color:#000;
}
.directory .contact header .btn-group button.active{
	color:#fff;
	background:#cc0000;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	box-shadow:none;	
	border:1px solid #cc0000;
}



/* -------
-------------
---------------
**
**  User Bar
**
-----------
-----
*/
.logoff{
	background:rgba(204,0,0,0.9);
	top:0;
	left:0;
	border:none;
	border-bottom:1px solid #fff;
	position:fixed;
	width:100%;
	height:43px !important;
	z-index:1001;
	margin:0;
	padding:0;
}
.logoff span{
	color:#fff;
	width:1300px;
	min-width:1300px;
	margin:0 auto;
	padding:0;
	display:block;
	text-align:right;
	text-shadow:0px 1px 1px rgba(0,0,0,0.35);
}
.logoff span:before{
	font-family: "FontAwesome";
	content: "\f007";
	padding-right:10px;
}
.logoff span a{
	display:inline-block;
	color:#fff;
	text-align:center;
	background:rgba(0,0,0,0.2);
	border-right:1px solid #f00000;
	border-left:1px solid #e00000;
	margin-left:10px;
	padding:10px;
	width:100px;
}
.logoff span a:before{
	font-family: "FontAwesome";
	content: "\f08b";
	padding-right:5px;
}
.logoff span a:hover{
	text-decoration:none;
	background:rgba(0,0,0,0.3);
}.temp_fill {width:100% !important;}


.bootstrap-datetimepicker-widget .btn.btn-primary {
    background-color: #cc0000;
    border-color: initial;
}

.bootstrap-datetimepicker-widget a {
    color: #cc0000;
}

.datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active:focus, .datepicker table tr td span.active:hover:focus, .datepicker table tr td span.active.disabled:focus, .datepicker table tr td span.active.disabled:hover:focus, .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:hover.active, .open .dropdown-toggle.datepicker table tr td span.active, .open .dropdown-toggle.datepicker table tr td span.active:hover, .open .dropdown-toggle.datepicker table tr td span.active.disabled, .open .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
    background-color: #cc0000;
    border-color: initial;
}

/*.content section .section_row .row-container {
	display: block !important;
}

	.content section .section_row .row-container .field-container {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
	}

		.content section .section_row .row-container .field-container .label-container {
			width: 10% !important;
		}

		.content section .section_row .row-container .field-container .input-container {
			width: 88% !important;
		}



.content section .section_row .row-container.field-container .input-container textarea {
				width: 100% !important;
				max-width: 100% !important;
}*/

.table-main {
	width: 80% !important;
	margin: 0 auto !important;
	padding: 0px !important;
}

.code-col {
	width: 16%;
}

.title-col {
	width: 32%;
}

.rate-col {
	width: 14%;
}

.effective-date-col {
	width: 26%;
}

.edit-col {
	width: 12%;
}

.policy-date {
	float: left;
	margin-left: 10px;
}
.modrateclass {
	width: 100% !important;
}

.d-flex {
	display: flex;
}




.bottom-history-row {
	display: flex !important;
	justify-content: end;
	align-items: center;
	border-right: none !important;
}

	.bottom-history-row a {
		margin-right: 10px;
		color: #cc0000;
		font-size: 20px;
	}