/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 5, 2017, 3:34:29 PM
    Author     : Eduardo Moratalla
*/

.logo-image{
    max-width: 100%;
    height: 2.00rem !important;
    position: relative;
    top: -4px;
}

.styled-checkbox {
  position: absolute; 
  opacity: 0; 

  & + label {
    position: relative;
    cursor: pointer;
    padding: 0;
  }

  /*// Box.*/
  & + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: white;
  }

  /*// Box hover*/
  &:hover + label:before {
    background: #f35429;
  }
  
  /*// Box focus*/
  &:focus + label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
  }

  /*// Box checked*/
  &:checked + label:before {
    background: #f35429;
  }
  
  /*// Disabled state label.*/
  &:disabled + label {
    color: #b8b8b8;
    cursor: auto;
  }

  /*// Disabled box.*/
  &:disabled + label:before {
    box-shadow: none;
    background: #ddd;
  }

  /*// Checkmark. Could be replaced with an image*/
  &:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 
      2px 0 0 white,
      4px 0 0 white,
      4px -2px 0 white,
      4px -4px 0 white,
      4px -6px 0 white,
      4px -8px 0 white;
    transform: rotate(45deg);
  }
}



/*//////////////////////*/
.bar-chart{
    background-color: whitesmoke;
    border-radius: 5px;
    padding: 25px 10px;
}

.widget .error:nth-child(3){
    font-weight: bolder;
    color:rgba(255,255,255,0.8);
    background-color: rgba(0,0,0,0.75);
    padding: 2px 8px;
    border-radius: 3px;
   
}

.dropdown-menu.menu-left{
    left : -60;
}
.dashboard-button{
    background-color:#fcb216;
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
}

.dashboard-button:hover{
    background-color:#FFC345;
    color:#fff;
    font-size: larger;
    font-family: 'Roboto Condensed', sans-serif;
}


.align-bottom{
        margin-top: auto;
}

.body{
    font-family: 'Source Sans Pro', sans-serif;
}

.jumbotron.small-padding{
    padding:25px 0;

}

.jumbotron h2{
    font-size:2.5rem;
    font-family: 'Roboto Condensed', sans-serif;
}

.tile{
    margin-left: 5px;
    padding: 20px 0;
    text-align: center;
    min-height: 90px;
    border-radius: 6px;
    margin-bottom: 5px;
}


.error{
    color : red;
}


.widget thead{

    font-weight: bold;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
/*    background-color: #FCB216;*/
}

.widget-title{
    font-family: 'Roboto Condensed', sans-serif;
}

.widget  tbody > tr > td {
    background-color: #F3FAFF;
    font-family: 'Source Sans Pro', sans-serif;
}

.widget  tbody > tr > td a,
.widget  tbody > tr > td a:hover {
        color: #212529;
}

.widget .dropdown-toggle{
    position: absolute;
    top: -60px;
    right: 0px;
    
}

.dropdown-menu li:first-child{
    margin-left: 5px;
}

.dropdown-menu a{
    text-decoration: none;
    padding: 5px 10px;
    color: black;
    font-weight: normal !important;
}

.dropdown-menu a:hover{
    color: gray;
}



.bs-example .pagination {
    margin-top: 10px;
    margin-bottom: 10px;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}


/*li {
    float: left;
    list-style: outside none none;
    
}*/

.inner-text{
    color:#000;
}

.pagination>li {
    display: inline;
    float: left;
    list-style: outside none none;
}

.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #000;
    text-decoration: none;
    background-color: #ddd;
    border: 1px solid #ccc;
}

.left-arrow{
    border-radius: 6px 0 0 6px;
}

.right-arrow{
    border-radius: 0 6px 6px 0;
}

.left-arrow:hover{
    background-color: #333;
    color: #fff;
}

.right-arrow:hover{
    background-color: #333;
    color: #fff;
}


@media screen and (max-width: 767px){
    .tile{
        margin-left: 0;
        margin-bottom: 15px;
        max-width: 100%;
    }
}





.dropzone {
  position: relative;
  border: 10px dotted #FFF;
  border-radius: 20px;
  color: white;
  font: bold 24px/200px arial;
  height: 200px;
  margin: 30px auto;
  text-align: center;
  width: 200px;
  /*max-width: 100%;*/
}

.dropzone.hover {
  border: 10px solid #FE5;
  color: #FE5;
}

.dropzone.dropped {
  background: #222;
  border: 10px solid #444;
}

.dropzone div {
/*  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;*/
    
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex; /* add */
    justify-content: center; /* add to align horizontal */
    align-items: center; /* add to align vertical */

}

.dropzone img {
  border-radius: 10px;
  vertical-align: middle;
  max-width: 95%;
  max-height: 95%;
}

.dropzone [type="file"] {
  cursor: pointer;
  position: absolute;
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}















@media screen and (min-width : 767px){
    /*.tile:first-child{
    margin-left: 0;
}*/

.widget.col-md-3{
    max-width: 24.2%;
}
.widget.col-md-6{
    max-width: 49%;
}

.widget.col-md-12{
    max-width: 99%;
}


.widget-title{
    font-size: 1.5em;
    
}

}

