﻿/*Importación de fuente personalizada*/
@font-face{
    font-family:ubuntuBolt;
    src:url("../fonts/Ubuntu/Ubuntu-B.ttf") format('truetype');
}
@font-face{
    font-family :ubuntuMedium;
    src:url("../fonts/Ubuntu/Ubuntu-M.ttf") format('truetype');
}
@font-face {
  font-family: ubuntuLight;
  src: url("../fonts/Ubuntu/Ubuntu-L.ttf") format('truetype');
}
body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family:ubuntuLight;    
}

/* Estilo para el cotenedor principal*/
.body-content-p {
    margin-top:0px;        
    width:100%;
    padding-left:5px;
    padding-right:5px;
    padding-bottom:20px;   
}
/*Estilo para el menú*/

/*img en el menu*/
.navbar-brand {
  padding: 0px;
}
.navbar-brand>img {
  height: 100%;
  padding: 15px;
  width: auto;
}
.navbar-brand {
  height: 70px;
}

.navbar-default {
    background-color: #fff;
    border-color: #5cbcf6;
}
.navbar-default .navbar-nav > li > a {
    color: #808080;
    font-family:ubuntuBolt;
    font-size:1.3em;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
    background-color:#5cbcf6;
    color:#fff;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    color:#fff;
    background-color:#5cbcf6;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    background-color:#5cbcf6;
    color:#fff;
}
/*Estilo para el dropdown menu*/
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    background-color:#5cbcf6;
}
.dropdown-menu .divider {
    background-color: rgba(85,85,85,0.6);
}
.dropdown-menu > li > a {
    font-size:1.0em;    
    color: #808080;    
    padding: 0px 20px;
}
/*Estilo para los titulos*/
h3{
    font-family:ubuntuBolt;
    color:#808080;
}
/*Estilo para las tablas*/
table thead tr th{
    font-size:1.2em;
}

table tr th a{
    /*color:#5cbcf6;*/
    font-size:1.2em;
    margin-right:5px;
}

table thead tr th{
    color:#808080;
}

table tbody tr td{
    /*color:#808080;*/
    font-size:1.1em;
}

/*table tbody tr td:hover{
    background-color:#7ad79a !important;
    color:#fff !important;
}*/

/* estilo para los componentes de formulario */
input,
select,
textarea {
    max-width: 100%;
}
.form-control {
    border:1px solid #7ad79a;
    color:#808080;
    font-size:1.2em;
}
.control-label{
    color:#808080;
    font-size:1.3em;
}
/*Estilo para los botones*/
.btn{
    border: none;
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}
.btn:hover{
    color: #fff;
}
.btn:before,
.btn:after{
    content: "";
    position: absolute;
    transition: all 0.25s ease 0s;
}
.btn.btn-lg:before,
.btn.btn-lg:after{
    width: 24px;
    height: 24px;
}
.btn.btn-sm:before,
.btn.btn-sm:after{
    width: 18px;
    height: 18px;
}
.btn.btn-xs:before,
.btn.btn-xs:after{
    width: 14px;
    height: 14px;
}
.btn:before{
    top: -5px;
    right: -5px;
}
.btn:after{
    bottom: -5px;
    left: -5px;
}
.btn:hover:before,
.btn:hover:after{
    width: 100%;
    height: 100%;
}
.btn.red{
    background: #ff6e6e;
}
.btn.red:before{
    border-top: 2px solid #ff6e6e;
    border-right: 2px solid #ff6e6e;
}
.btn.red:after{
    border-bottom: 2px solid #ff6e6e;
    border-left: 2px solid #ff6e6e;
}
.btn.blue{
    background: #5cbcf6;
}

    .btn.blue:before {
        border-top: 2px solid #5cbcf6;
        border-right: 2px solid #5cbcf6;
    }

    .btn.yellow {
        background: #f1ce27;
    }

        .btn.yellow:before {
            border-top: 2px solid #f1ce27;
            border-right: 2px solid #f1ce27;
        }

.btn.blue:after{
    border-bottom: 2px solid #5cbcf6;
    border-left: 2px solid #5cbcf6;
}
.btn.orange{
    background: #ef965c;
}
.btn.orange:before{
    border-top: 2px solid #ef965c;
    border-right: 2px solid #ef965c;
}
.btn.orange:after{
    border-bottom: 2px solid #ef965c;
    border-left: 2px solid #ef965c;
}
.btn.green{
    background: #7ad79a;
}
.btn.green:before{
    border-top: 2px solid #7ad79a;
    border-right: 2px solid #7ad79a;
}
.btn.green:after{
    border-bottom: 2px solid #7ad79a;
    border-left: 2px solid #7ad79a;
}
@media only screen and (max-width: 767px){
    .btn{ margin-bottom: 25px; }
}
/*sobreescribir el color de algunos botones*/
.btn-primary{
    background: #5cbcf6;
}
.btn-success{
     background: #7ad79a;
}

/*Estilo para el contenedor de las vistas*/
.views{      
    min-height:200px;
    padding-top:40px;
    padding-left:20px;
    padding-right:20px;
    padding-bottom:100px;
    margin:auto 20px auto;
    box-shadow:0px 0px 7px rgba(85,85,85,0.6)
}
.pull-right{
    margin-top:20px;
    margin-bottom:20px;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  height:auto;
  width: 100%;
  line-height: 1;
}

hr {
    border-top: 2px solid #5cbcf6 !important;
}
footer{   
    text-align:center;
}

/*estilo para el scroll en las tablas*/
/*.table-container{
    width: 100%;
    overflow-y: auto;
    _overflow: auto;
    margin: 0 0 1em;
}*/

/*.table-container::-webkit-scrollbar
{
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
}
 
.table-container::-webkit-scrollbar-thumb
{
    border-radius: 8px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, .3);
}*/

