﻿
/*clases*/

body {
    padding-top: 60px;
    padding-bottom: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/*fin menu flotante*/
.fondo-tuinen {
    background-color: #ffcc00;
}
.body-content {
    padding-top:10px;
}

.labelSec {
    font-weight: bold;
    font-size: 18px;
    color: darkolivegreen;
}
.labelCur {
    font-weight: bold;
    font-size: 16px;
    color: darkblue;
}
.labelCarr {
    font-weight: bold;
    font-size: 13px;
    color: goldenrod;
}
.margin_top5 {
    margin-top:5px;
}
.padding_top10 {
    padding-top:10px;
}
.padding_top5 {
    padding-top:5px;
}
.padding_bottom5 {
    padding-bottom:5px;
}
.padding_left10 {
    padding-left:10px;
}
.panel:before {
    margin-bottom:10px;
}

.btn-guardar {
  color: #ffffff;
  background-color: #337AB7;
  border-color: white;
}
.btn-iniciasesion {
  color: #ffffff;
  background-color: #337AB7;
  border-color: darkgray;
}
    .btn-guardar:hover,
    .btn-iniciasesion:hover {
        color:white;
    }
.alineacion-center,
.alineacion-center div{
    text-align:center;
}

.card-box {
    padding: 10px;
    box-shadow: 0 0px 8px 0 rgb(202, 202, 199), 0 1px 0px 0 rgba(0, 0, 0, 0.02);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    background-clip: padding-box;
    margin-bottom: 10px;
    background-color: #ffffff;
    font-size: 14px;
    border-color: #bce8f1;
}
/*GRIDVIEW*/
.GridviewScrollC1Header TH, .GridviewScrollC1Header TD 
{ 
    padding: 5px; 
    font-weight: bold; 
    white-space: nowrap; 
    border-right: 1px solid #CCCCCC; 
    border-bottom: 1px solid #CCCCCC; 
    background-color: #999999; 
    color:#FFFFFF; 
    text-align: left; 
    vertical-align: bottom; 
} 
.GridviewScrollC1Item TD 
{ 
    padding: 5px;
    white-space: nowrap; 
    border-right: 1px solid #CCCCCC; 
    border-bottom: 1px solid #CCCCCC; 
    background-color: #FFFFFF; 
} 
.GridviewScrollC1Pager  
{ 
    border-top: 1px solid #AAAAAA; 
    background-color: #FFFFFF; 
} 
.GridviewScrollC1Pager TD 
{ 
    padding-top: 3px; 
    font-size: 14px; 
    padding-left: 5px; 
    padding-right: 5px; 
} 
.GridviewScrollC1Pager A 
{ 
    color: #666666; 
} 
.GridviewScrollC1Pager SPAN 
{ 
    font-size: 16px; 
    font-weight: bold; 
}
/*para otro grid*/
.GridviewScrollHeader TH, .GridviewScrollHeader TD 
{ 
    text-align:center;
    padding: 5px; 
    font-weight: bold; 
    white-space: nowrap; 
    border-right: 1px solid #AAAAAA; 
    border-bottom: 1px solid #AAAAAA; 
    background-color: #EFEFEF; 
    text-align: left; 
    vertical-align: bottom; 
} 
.GridviewScrollItem TD 
{ 
    padding: 5px; 
    white-space: nowrap; 
    border-right: 1px solid #AAAAAA; 
    border-bottom: 1px solid #AAAAAA; 
    background-color: #FFFFFF; 
} 
.GridviewScrollPager  
{ 
    border-top: 1px solid #AAAAAA; 
    background-color: #FFFFFF; 
} 
.GridviewScrollPager TD 
{ 
    padding-top: 3px; 
    font-size: 14px; 
    padding-left: 5px; 
    padding-right: 5px; 
} 
.GridviewScrollPager A 
{ 
    color: #666666; 
}
.GridviewScrollPager SPAN

{
    font-size: 16px;
    font-weight: bold;
}
/*FIN GRIDVIEW*/

/*MASTER PAGE*/
.main-header {
    padding-top: 5px;
    background: #910d34;
    color: white;
    height: 60px;
    z-index: 1000;
    width: 100%; /* hacemos que la cabecera ocupe el ancho completo de la página */
    left: 0; /* Posicionamos la cabecera al lado izquierdo */
    top: 0; /* Posicionamos la cabecera pegada arriba */
    position: fixed; /* Hacemos que la cabecera tenga una posición fija */
}
.main-footer {
    text-align: center;
    padding-top: 1px;
    background: #910d34;
    height: 42px;
    color: white;
    z-index: 1000;
    width: 100%;
    left: 0;
    bottom: 0;
    position: fixed;
}

/*INICIO CHECKBOX*/
.checkbox label {
    display: inline-block;
    cursor: pointer;
    color: #912E30;
    position: relative;
    padding: 5px 15px 5px 38px;
    font-size: 1em;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
    .checkbox label:hover {
        background: rgba(255, 65, 54, 0.1);
    }
    .checkbox label:before {
      content: "";
      display: inline-block;
      width: 17px;
      height: 17px;
      position: absolute;
      left: 15px;
      border-radius: 3px;
      background: none;
      border: 3px solid #912E30; 
    }
.checkbox input[type="checkbox"] {
    display:none;
}
    .checkbox input[type="checkbox"]:checked + label:before {
        display:none;
    }
    .checkbox input[type="checkbox"]:checked + label {
        background-color:darkgreen;
        color:#fff;
        padding:5px 15px;
    }
/*FIN CHECKBOX*/