/* IMPORT FONT */ @import url(roboto.css);

  /* ======== */
 /*  BASICS  */
/* ======== */

/* Sticky footer styles
-------------------------------------------------- */
html {
	position: relative;
	min-height: 100%;
}

body {
	padding-top: 90px;
	margin-bottom: 40px;
	font-family: 'Roboto', sans-serif;
	overflow-x: hidden;
	line-height: initial;
}
  /* ======= */
 /*  GRIDS  */
/* ======= */

.container-fluid{
	padding-right: 50px;
	padding-left: 50px;
}
@media (max-width: 767px){
	.container-fluid{
		padding-right: 10px;
		padding-left: 10px;
	}
}

.col-xs-5c,
.col-sm-5c,
.col-md-5c,
.col-lg-5c {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5c {
	width: 19.5%;
	float: left;
}

@media (min-width: 768px) {
    .col-sm-5c {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5c {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5c {
        width: 20%;
        float: left;
    }
}

  /* ========= */
 /*  HELPERS  */
/* ========= */
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;
}
.link-light{
	color: #00a19c;
}
.link-light:hover,
.link-light:active,
.link-light:focus{
	color: rgba(255,255,255,.9);
	text-decoration: none;
}

.no-padding{
	padding: 0;
}
.more-padding{
	padding: 30px 60px;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background: #f1f1f1;
    opacity: 1;
    border: none;
    border-radius: 1px;
}

hr.hr-dark{
	border-color: #cecece;
}

hr.dotted{
	display: inline-block;
	width: 100%;
	margin: 0;
	border-top: 1px dotted #d3d8df;
	float: left;
}

  /* ========= */
 /*  SHADOWS  */
/* ========= */


.shadow-bottom:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 15px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#00000000',GradientType=0 );
	bottom: -15px;
	left: 0;
}

.shadow-top:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 15px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#00000000',GradientType=0 );
	top: 0;
	left: 0;
}

.shadow-left:after{
	content: "";
	position: absolute;
	width: 15px;
	height: 90%;
	background: -moz-linear-gradient(left, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
	top: 0;
	left: 0;
}

.shadow-bottom,
.shadow-top,
.shadow-left{
	position: relative;
}
  /* ============= */
 /*  BACKGROUNDS  */
/* ============= */

body.bg-dark{
	background: #2f3243;
	color: #fff;
}
body.bg-dark legend{
	color: #fff;
}
.bg-green{
	background: #009690;
	color: #fff;
	border-top-color: #007b76;
}
.bg-blue{
	background: #0d72aa;
	color: #fff;
	border-top-color: #095a86;
}
.bg-lightblue{
	background: #19bae4;
	color: #272727;
	border-top-color: #1794b5;
}
.bg-light{
	background: #f1f1f1;
    color: #fff;
    border-top-color: #bdbdbd;
}
.text-green{
	color: #268a8a;
}

  /* ======= */
 /*  FONTS  */
/* ======= */

h1, h2, h3{
	font-weight: 300;
}

.text-thin{
	font-weight: 100;
}
.text-bold{
	font-weight: 500;
}
  /* ================ */
 /*  NAVBAR DEFAULT  */
/* ================ */

.navbar-default{
	background: #00a19c;
	background-color: #00a19c;
	border: none;
	border-bottom: 5px solid teal;
	box-shadow: 0 0 10px 2px rgba(0,0,0,.2);
	border-radius: 0;
	z-index: 1040;
}

.navbar-default .navbar-brand{
	color: #fff;
}
.navbar-default .navbar-nav>li>a{
	color: #fff;
}
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover{
	color: #f5c52d;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover{
	color: #fff;
	background: teal;
}
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover{
	color: #f5c52d;
}
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover{
	color: teal;
	background: #f5c52d;
}
.navbar-default .navbar-text {
    color: #fff;
    font-weight: 400;
    margin-bottom:0;
}
.navbar-version{
    font-size:9px;
    text-align: right;
}
@media (max-width: 768px){
	.navbar-nav{
		margin-top: 0;
	}
	.navbar-default .navbar-header {
		width: 150px;
		float: left;
	}
	.navbar-default .navbar-text {
		float: left;
		margin-left: 20px;
	}
	.dropdown-menu li a{
		background: #fff;
	}
}
  /* ======= */
 /*  BRAND  */
/* ======= */

.navbar-brand{
	padding: 9px 15px;
}
.navbar-brand img{
	width: 160px;
}

  /* ======== */
 /*  INPUTS  */
/* ======== */

.input{
	background: rgba(255,255,255, .8);
	border: none;
	float: left;
	clear: both;
	width: 100%;
	outline: none;
	color: #5c5c5c;
	font-size: 14px;
	border: 1px solid #00a19c;
	border-radius: 3px;
	padding: 5px;
}

  /* ========= */
 /*  BUTTONS  */
/* ========= */

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus,
.form-control:focus {
    outline: none !important;
    border-color: inherit;
}

.btn{
	border: none;
	border-radius: 2px;
	box-shadow:  0px 2px 5px rgba(0,0,0,.1);
	padding-left: 20px;
	padding-right: 20px;
}

.btn-default{
	border: 1px solid #c1bfbf;
	color: #4d4b4e;
	background: rgb(245,255,254);
	background: -moz-linear-gradient(top, rgba(245,255,254,1) 0%, rgba(194,199,202,1) 100%);
	background: -webkit-linear-gradient(top, rgba(245,255,254,1) 0%,rgba(194,199,202,1) 100%);
	background: linear-gradient(to bottom, rgba(245,255,254,1) 0%,rgba(194,199,202,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5fffe', endColorstr='#c2c7ca',GradientType=0 );
}

.btn-primary{
	color: #fff;
	background: rgb(0,195,189);
	background: -moz-linear-gradient(top, rgba(0,195,189,1) 0%, rgba(0,153,149,1) 100%);
	background: -webkit-linear-gradient(top, rgba(0,195,189,1) 0%,rgba(0,153,149,1) 100%);
	background: linear-gradient(to bottom, rgba(0,195,189,1) 0%,rgba(0,153,149,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00c3bd', endColorstr='#009995',GradientType=0 );
	box-shadow: 1px 1px 5px rgba(0,0,0,.3);
}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary{
	color: #fff;
	background: rgb(0,195,189) !important;
}

.btn-secondary{
	color: #fff;
	background: rgb(87,193,223);
	background: -moz-linear-gradient(top, rgba(87,193,223,1) 0%, rgba(69,152,176,1) 100%);
	background: -webkit-linear-gradient(top, rgba(87,193,223,1) 0%,rgba(69,152,176,1) 100%);
	background: linear-gradient(to bottom, rgba(87,193,223,1) 0%,rgba(69,152,176,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#57c1df', endColorstr='#4598b0',GradientType=0 );
}

.btn-secondary:hover,
.btn-secondary:focus{
	color: #fff;
}

.btn-secondary.active,
.btn-secondary:active,
.open>.dropdown-toggle.btn-secondary{
	color: #fff;
	background: rgb(87,193,223) !important;
}

.btn-blue{
	background: #53bddc;
	background: -moz-linear-gradient(top, #53bddc 0%, #469cb4 100%);
	background: -webkit-linear-gradient(top, #53bddc 0%,#469cb4 100%);
	background: linear-gradient(to bottom, #53bddc 0%,#469cb4 100%);
	color: #fff !important;
}


@media (max-width: 768px){
	.dropdown-toggle{
		width: 50px;
		height: 50px;
		float: right;
	}
	.dropdown-toggle span{
		width: 50px;
		height: 50px;
	    top: 9px;
	    left: 4px;
	}
}
/* BOTON REDONDO */
.btn-redondo{
	position: relative;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: #e2e2e2;
	background: -moz-linear-gradient(45deg, #e2e2e2 0%, #ffffff 100%);
	background: -webkit-linear-gradient(45deg, #e2e2e2 0%,#ffffff 100%);
	background: linear-gradient(45deg, #e2e2e2 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#ffffff',GradientType=1 );
	display: inline-block;
	font-size: 25px;
	font-weight: 300;
	text-align: center;
	padding-top: 30px;
	color: #898989;
	box-shadow: 0px 2px 10px rgba(0,0,0,.5);
	margin: 20px 0;
	transition: all .5s ease;
	border: 5px solid #27c1bc;
}
.btn-redondo.blue{
	color: #0078a4;
}
.btn-redondo.blue{
	border: 5px solid #008fc4;
}
.btn-redondo span{
	display: block;
	font-size: 35px;
}
.btn-redondo:hover{
	background: #ffffff;
	background: -moz-linear-gradient(45deg, #ffffff 0%, #e2e2e2 100%);
	background: -webkit-linear-gradient(45deg, #ffffff 0%,#e2e2e2 100%);
	background: linear-gradient(45deg, #ffffff 0%,#e2e2e2 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e2e2e2',GradientType=1 );
	color: #898989;
	transition: all .5s ease;
}
.btn-redondo.btn-r-sm{
	width: 90px;
	height: 90px;
	border: 3px solid;
	font-size: 20px;
	padding-top: 25px;
	margin: 0;
}
.btn-redondo.btn-r-sm span{
	font-size: 26px;
}
  /* ======= */
 /*  FORMS  */
/* ======= */

.form-control{
	display: block;
    width: 100%;
    height: 31px;
    padding: 10px 8px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #00a19c;
    border-radius: 2px;
    background: #f1f1f1;
    background: -moz-linear-gradient(top, #f1f1f1 0%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #f1f1f1 0%,#ffffff 100%);
    background: linear-gradient(to bottom, #f1f1f1 0%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f1f1', endColorstr='#ffffff',GradientType=0 );
}

.form-group input{
	float: left !important;
}
.form-group img{
	margin: 4px
}
.form-group label {
    clear: both;
    float: left;
    width: 100%;
    font-size: 11px;
    color: #a2a2a2;
    font-weight: 400;
    padding-left: 0 !important;
    margin-left: 9px;
}

.form-control.no-borders{
	border: none;
}

/* .input-group .form-control{
	border-radius: 2px 0 0 2px;
}
.input-group .form-control:focus{
	box-shadow: none;
}*/
.input-group-addon{
	border: 1px solid #00a19c  !important;
	border-right: none !important;
}

  /* ======== */
 /*  CHECKS  */
/* ======== */

.checkbox label{
	padding-left: 0;
	    padding-right: 30px;
	    font-weight: 400;
}

.checkbox label:after{
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr .cr-icon{
    color: #00a19a;
}

.checkbox label input[type="checkbox"]{
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon{
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon{
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr{
   opacity: .5;
}

.checkbox .cr{
	float: right;
display: inline-block;
border: 1px solid #c3c3c3;
border-radius: .30em;
width: 1.3em;
height: 1.3em;
margin-left: 10px;
box-shadow: 1px 1px 5px rgba(0,0,0,.1);
background: rgb(255,255,255);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(239,239,239,1) 100%);
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(239,239,239,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 );
}

.well{
/* 	background: #fff; */
	border-radius: 3px;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	color: #262626;
}

.well header,
.well .header{
	position: relative;
	padding: 20px 30px 15px 30px;
	border-bottom: 1px solid #ededed;
}

.well header.header-slim{
	padding: 6px 23px 5px 23px;
}

.well .content{
	padding: 10px;
}

.well footer{
	position: relative;
	padding: 15px 30px 20px 30px;
	border-top-width: 1px;
    border-top-style: solid;
    border-top-color: inherit;
}

  /* ======== */
 /*  MODALS  */
/* ======== */

.modal-header{
	padding: 8px 20px 8px 20px;
}
.modal-header .modal-title{
	font-size: 13px;
	font-weight: 300;
}
.modal-body{
	color: #595959;
}
.modal-footer{
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
}
button.close,
.close{
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	color: #fff;
	background: rgba(255,255,255,.5);
	border: 1px solid #fff;
	border-radius: 50%;
	font-size: 30px;
	font-weight: 100;
	text-align: center;
	opacity: 1;
}

.close span{
	position: relative;
	top: -5px;
}

.close:focus, .close:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .8;
}

  /* ========= */
 /*  SIDEBAR  */
/* ========= */

.toggle-menu{
	position: fixed;
	top: 40px;
	left: 0px;
	padding: 12px 10px 10px 10px;
	background: teal;
	border-radius: 0 20px 20px 0;
	transition: all .5s ease;
	color: #fff;
	z-index: 10;
}

.toggle-menu:hover,
.toggle-menu:focus{
	color: #fff;
	text-decoration: none;
}

  /* =========== */
 /*  DROPDOWNS  */
/* =========== */

.dropdown select {
    display: inline-block;
    width: 100%;

    margin: 0;
    padding:5px 10px;
    color:#888;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%);
    border-radius:5px;
    border:none;
    box-shadow: 1px 1px 5px rgba(0,0,0,.3);
	font-weight: 400;

    outline:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;

}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .dropdown select {padding-right:18px}
}

label.dropdown {
	position:relative;
	width: 100%;
}

label.dropdown:after {
   content:"\e604";
    width: 38px;
    height: 40px;
    right: 0;
    font-family: 'simple-line-icons';
    font-style: normal;
    font-weight: 400;
    color:#aaa;
    text-align: center;
    top:0px;
    padding-top: 6px;
    position:absolute;
    pointer-events:none;
    color: #009f9a;
    text-shadow: 1px 1px 0 white;
}

label.dropdown[disabled]:after{
	color: red;
}

label.dropdown:before {
    content:'';
    border-radius: 0 5px 5px 0;
    right:0; top:0;
    width:40px; height:100%;

    background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 );

	border-left: 1px solid #fff;
	box-shadow: inset 1px 0px 0px #e8e8e8;

    position:absolute;
    pointer-events:none;
    display:block;
}

  /* ============= */
 /*  PAGINATIONS  */
/* ============= */

.pagination{
	float: right;
	margin: 10px 0 20px 0;
	background: #212433;
	border-radius: 5px;
}

.pagination>li>a, .pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #b3b3b3;
	text-decoration: none;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #484957;
	transition: all .5s ease;
}
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
	z-index: 2;
	color: #ffffff;
	background-color: transparent;
	border-bottom: 4px solid #5cfeff;
	padding-bottom: 0px;
	font-weight: 500;
	transition: all .2s ease;
}

.pagination>li:first-child>a,
.pagination>li:last-child>a,
.pagination>li:first-child>span,
.pagination>li:last-child>span{
    margin-left: 0;
	border-radius: 0;
	border-bottom: none;
}
.pagination>li:first-child>a:hover,
.pagination>li:last-child>a:hover,
.pagination>li:first-child>span:hover,
.pagination>li:last-child>span:hover {
	border-bottom: none;
}

input.gotopage{
	float: right;
	width: 50px;
	margin: 10px 0 20px 0;
}

/*DROPDOWNS*/
/* SELECTS SM */

.dropdown-sm select {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding:3px 10px;
    color:#888;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%);
    border-radius:2px;
    border: 1px solid #e6e6e6;
    box-shadow: 1px 1px 5px rgba(0,0,0,.2);
	font-weight: 400;

    outline:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;

}

/* Targetting Webkit browsers only. FF will show the dropdown-sm arrow with so much padding. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .dropdown-sm select {padding-right:18px}
}

label.dropdown-sm {
	position:relative;
	width: 100%;
}
label.dropdown-sm:after {
	content:"\e604";
	width: 38px;
	height: 40px;
	right: 0;
	font-family: 'simple-line-icons';
	font-style: normal;
	font-weight: 400;
	color:#aaa;
	text-align: center;
	top:0px;
	padding-top: 5px;
	position:absolute;
	pointer-events:none;
	color: #009f9a;
	text-shadow: 1px 1px 0 white;
}
label.dropdown-sm:before {
    content:'';
    border-radius: 0 5px 5px 0;
    right:0; top:0;
    width:40px; height:100%;

    background: rgb(255,255,255);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(234,234,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(234,234,234,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaea',GradientType=0 );

	border-left: 1px solid #fff;
	border-top: 1px solid #e6e6e6;
	box-shadow: inset 1px 0px 0px #e8e8e8;

    position:absolute;
    pointer-events:none;
    display:block;
}

/* FOOTER */

.footer {
	text-align: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	/* Set the fixed height of the footer here */
	height: 40px;
	padding: 13px;
	background: #212433;
}

/* TABLES */
.table{
	background: #fff;
	color: #888;
	border-radius: 3px;
}

.mvc-grid-pager .active span {
	background-color: #34445d!important;
	border-color: #83AED3;
	color: #FFFFFF;
}

/* TABLES */
table{
	box-shadow: 0 0 10px 1px rgba(0,0,0,.2);
	background: #fff;
	margin-bottom: 0 !important;
}
thead{
	position: relative;
	/* background: #eeeeee;
	color: #454545; */
	font-size: 11px;
	box-shadow: inset 0px -5px 20px -5px rgba(0,0,0,.2);

	background: #0d72a9;
	color: #fff;
}
tbody{
	position: relative;
}
th{
	font-weight: 400;
	padding: 10px 5px;
    text-align: center;
    border-right: 1px solid #6390a9;
    border-bottom: 1px solid #6390a9;
}
tbody tr {
    height: 45px;
    border: 0px solid #2f3243;
    transition: all .2s ease;
    vertical-align: middle;
}
tbody tr td{
	vertical-align: middle;
}
.table>thead>tr>th{
	border-bottom: none;
}

.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>th{
	/* color: #7f7f7f; */
	color: #fff;
	border-top: none;
	font-size: 11px;
	font-weight: 500;
}
.table>tbody>tr>td,
.table>tfoot>tr>td,
.table>thead>tr>td{
	color: #131313;
	font-size: 13px;
	font-weight: 400;
}
.table>tbody>tr>td:hover{
	color: #222;
	background-color: #edfffe;
}
.panel .table{
	margin-bottom: 0;
}

/* TABLE SECONDARY */
.table-secondary{
	background: #f1f1f1;
}
.table-secondary>thead>tr>th{
	font-size: 16px;
	font-weight: 300;
	color: #6d6d6d;
	background: #fff;
	text-align: left;
	padding-left: 15px;
}
.table-secondary>tbody>tr>th{
	background: #e1e1e1;
	font-weight: 300;
}
.table-secondary>tbody>tr>td{
	font-weight: 500;
}
.table-secondary>tbody>tr>td,
.table-secondary>tbody>tr>th,
.table-secondary>tfoot>tr>td,
.table-secondary>tfoot>tr>th,
.table-secondary>thead>tr>td,
.table-secondary>thead>tr>th{
	border: none;
}
/* TABLE BORDERED */
.table-bordered {
    border: none;
}
.table-bordered>thead{
	background: #fff;
}
.table-bordered>thead>tr>th{
	border-top: none;
	border-left-color: transparent;
	border-right-color: transparent;
	border-bottom: 5px solid #fff;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}
.table-bordered>tbody>tr>th{
	border: 1px solid transparent;
	text-align: right;
	padding: 6px 20px !important;
}
.table-bordered>tbody>tr>td{
	background: #f9f9f9;
	border-right: 10px solid #fff;
	border-left: 10px solid #fff;
	text-align: right;
	padding: 6px 20px !important;
}
/* TABLE SCROLL */
table.table-scroll {width: 850px;}
.table-scroll thead,
.table-scroll tbody,
.table-scroll tr,
.table-scroll td,
.table-scroll th { display: block; }

.table-scroll tr:after {
    content: ' ';
    display: block;
    visibility: hidden;
    clear: both;
}

.table-scroll thead th {height: 30px;}

.table-scroll tbody {
    overflow-y: auto;
}

.table-scroll thead {
    /* fallback */
}
.table-scroll tbody td,
.table-scroll thead th {
	width: 16.6666666667%;
	float: left;
}
/*TABLE SMALL TEXT*/
.table.small-text>tbody>tr>td,
.table.small-text>tfoot>tr>td,
.table.small-text>thead>tr>td{
	color: #131313;
	font-size: 11px;
	font-weight: 400;
}
.table.small-text>tbody>tr>td,
.table.small-text>tbody>tr>th,
.table.small-text>tfoot>tr>td,
.table.small-text>tfoot>tr>th,
.table.small-text>thead>tr>td,
.table.small-text>thead>tr>th{
	padding: 6px;
}
.table-hover>tbody>tr:hover {
    background-color: #aec6d3;
}
.table-hover>tbody>tr>td:hover {
    background-color: #aec6d3;
}
.table-attached-up{
	background: #0d72a9;
	border-radius: 5px 5px 0 0;
	padding: 10px 0;
	color: #fff;
}
.table-attached-up a{
	color: #fff;
}
.table-attached-up ul{
	list-style: none;
	margin: 0 0 0 10px;
	padding: 0;
	float: left;
}
.table-attached-up ul li{
	float: left;
	margin: 0 10px;
	color: #fff;
}
.table-attached-up ul li:first-child{
	margin-left: 0;
}
.table-attached-up ul li:last-child{
	margin-right: 0;
}
.table-attached-up ul li a{
	color: #fff;
}
.table-attached-up p{
	padding: 10px;
}
.table-flat thead{
	background: #00a19c;
	color: #fff;
}
.table-flat>tbody>tr>th,
.table-flat>tfoot>tr>th,
.table-flat>thead>tr>th{
	color: #fff;
}
/*DATA TABLES*/
.table-extra-content{
    display:none;
}
.data-table{
	width: 100%;
	color: #333;
}

.data-table thead{
	background: #0d72a9;
	color: #fff;
}
.data-table tbody{
	border-top: 1px solid #fff;
}
/*.data-table tbody tr:first-child td{
	border-top: 4px solid #fff;
}*/
.table-extra-content tbody tr:first-child td{
	border-top: 0px solid #fff !important;
}
.table-extra-content tbody tr td{
    vertical-align: middle;
    text-align: center;
}
.data-table th{
	padding: 10px 5px;
	text-align: center;
	border-right: 1px solid #6390a9;
    border-bottom: 1px solid #6390a9;
}
.data-table th:last-child{
	border-right: none;
}
.data-table tbody tr:nth-child(4n+1){
	background: #ececec;
}
/*.data-table tbody tr:hover{
	background: #aec6d3;
}*/
.data-table tbody tr td{
	padding: 5px;
	font-size: 12px;
}
.data-table tbody tr td:first-child{
	padding-left: 15px;
}
td.data-table_valor{
	background: #00a19c;
	color: #fff !important;
	text-align: center;
	/*border-bottom: 2px solid #fff;*/
}
td.data-table_valor:hover{
    background: #00a19c !important;
}
.data-table_dias{
	text-align: center;
	position: relative;
    width: 80px;
}
td.data-table_dias:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 4px;
	height: 40px;
}
td.data-table_dias.red:after{
	background: #f51e1e;
}
td.data-table_dias.yellow:after{
	background: #f5a91e;
}
td.data-table_dias.green:after{
	background: #09b546;
}

td.data-table_estado{
	background: #d8e4ea;
	color: #0d72a9;
    border-top: 1px solid #fff;
}
/*tr.selected td.data-table_estado{
    border-top: 1px solid transparent;
}*/
img.tomar-grid {
	margin-top: 3px !important;
	width: 20px !important;
	margin-left: 5px;
}
.data-table tbody tr{
	height: 45px;
	border: 0px solid #2f3243;
	transition: all .2s ease;
}
.data-table tbody tr.selected{
	border: 0px solid #2f3243;
}
.data-table tbody tr.selected td{
	height: 45px;
	background: #a1c5c4  !important;
	color: #6f8483   !important;
}
.data-table .table-extra-content{
    background: #abaebf;
}
.table-extra-content tbody{
        border-top: 0px solid #fff;
}
.data-table_acciones{
    width: 180px;
}
.table-extra-content .mvc-grid .table thead tr{
    height: auto;
        background: transparent;
}
.table-extra-content .mvc-grid .table thead tr th{
    padding: 5px 0;
    height: auto;
    color: #fff;
}
.table-extra-content .mvc-grid .table thead{
    background: #0d72a9;

}
.table-extra-content td{
    padding:10px !important;
}
.table-extra-content td .mvc-grid tr{
    height: 25px;
}
.table-extra-content{
    height: 0;
}

.expand-all span, .expand-row span{
    transform: rotate(0deg);
    transition: all .5s ease;
    display: inline-block;
}
.expanded-icon span{
    transition: all .5s ease;
    transform: rotate(90deg);

}
svg{
	width: 22px;
	height: 22px;
}
.selected .svg path{
	fill: #6f8483    ;
}
.active .svg path{
	fill: #fff  ;
}
.active .svg: path:hover{
	fill: #0d72a9  ;
}
.acciones-list{
    list-style: none;
    margin: 0;
    padding: 0;
}
.acciones-list li{
    float: left;
    margin-right: 20px;
}
.acciones-list li:last-child{
    margin-right: 0px;
}

/*RESPONSIVE ADJUSTMENTS */
@media (max-width: 767px){
	body{
		padding-top: 110px;
	}
	/* .container-fluid{
		padding-left: 40px;
	} */
	.js-left{
		top: 60px !important;
	}
	.footer{
		font-size: 9px;
	}
}
