﻿html, body {
  margin: 0px;
  background-color: #CBCBCB;
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

@media all and (min-width: 768px) {
    html, body {
        font-size: 10pt;
    }
}

@media all and (max-width: 767px) {
    html, body {
        font-size: 8pt;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
}

.BarraHerramientas {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 9999;
}

.BarraHerramientasContenedor{
    height: 53px;
    /*background-color: chartreuse;*/
}

/*Mueve el botón de cerrar del tooltip a la izquierda*/
.rtClose {
    left: -10px !important;
    width: 32px !important;
    height: 32px !important;
    /*text-align: center !important;*/
    background-image: url(../Imagenes/Cancel_32x32.png) !important;
}

.rtClose .rtCloseIcon ::before
{
    font-family: "" !important;
}


/*Define las caracteristicas de los "rebglones" de las "tablas" donde se ponen los controles*/
.Row, .RowSoloBorde, .RowConRelleno, .RowNoHayDatos {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-spacing: 0px;
  height: 30px;
  vertical-align: middle;
  align-items: center;
}


.RowSoloBorde {
}

.RowConRelleno {
    background-color: #CBCBCB;
}

.BordeRedondeado {
    border-radius: 5px;
}

.RellenoRedondeado {
    background-color: #CBCBCB;
    border-radius: 3px;
}

.SoloBorde, .RellenoRedondeado, .RowSoloBorde, .RowConRelleno {
    border: solid #6E6E6E 1px;
}

.EtiquetaCampoRequerido {
    font-weight: bold;
    color: #404040;
}

    .EtiquetaCampoRequerido:before {
        content: "* ";
        font-weight: bold;
        color: #404040;
    }

.EtiquetaCampo {
    background-color: Transparent;
    font-weight: normal;
    color: #404040;
}

.EtiquetaValor {
  background-color: Transparent !important;
  font-weight: normal !important;
  color: blue !important;
}

.Validator {
    color: red;
    font-weight: bold;
    font-size: 9pt;
}

.ResumenErrores {
    background-color: #FCFAAA;
    border: solid 1px;
    font-weight: bold;
    color: Red;
}

/*Define el alto de los textbox normales y q convierta el texto a mayuculas*/
input[type="text"] {
    text-transform: uppercase !important;
    height: 23px !important;
    padding: 2px !important;
}

/*Define q convierta el texto a mayuculas de los RadTextBox*/
.RadInput .riTextBox {
    text-transform: uppercase !important;
}

/*Define el alto de los textox*/
.riSingle, .riTextBox {
    height: 23px; /*!impotant*/
    padding: 2px !important;
}

/*Para los RadInput q esten deshabilitados*/
.riDisabled, .rcbDisabled, .rddlDisabled {
    font-weight: bold !important;
    color: #6565E5 !important;
}

input:disabled {
    border-color: #909090;
    background-color: #E5E5E5;
    font-weight: bold !important;
    color: blue !important;
}

/*Define el alto de los combobox*/
.RadComboBox * {
    height: 23px !important;
    padding: 0px !important;
    padding-top: 0px !important;
}

/*Define el alto de los dropdow*/
/*.RadDropDownList * {
    height: 21px !important;
    padding: 1px !important;
    padding-top: 0px !important;
}*/

/* Define el alto de los Tabs*/
.RadTabStrip .rtsLevel .rtsLI .rtsLink {
    padding-top: 5px !important;
    height: 10px;
}

.AlinearALaDerecha {
    text-align: right!important;
}

/*define las caracteristicas de todas las "columnas" de las "tablas" donde se ponen los controles*/
@media all and (min-width: 1024px) {

    .Col {
        /*border: solid 1px blue;*/
        display: inline-block;
        margin-right: -2px;
    }
}

@media all and (max-width: 1023px) {

    .Col {
        /*border: solid 1px red;*/
        display: inline-block;
        margin-right: -2px;
    }
}

@media all and (max-width: 767px) {

    .Col {
        /*border: solid 1px green;*/
        display: inline-block;
        margin-right: -2px;
    }
}

