﻿  html, body {
  margin: 0px;
  height: 100%;
  width: 100%;
  /* min-height: 100vh;*/
  /*background-color: red;*/ /* aqui */
  /*background-image: linear-gradient(to bottom right, white, #E4EFF8);*/ /* aqui */
  /*font-family: Calibri, Verdana, Arial, Helvetica, sans-serif;*/ /* aqui */
  /*color: #4C80D0 !important;*/ /* aqui */
}


@media all and (min-width: 1100px) {
  html, body {
    font-size: 10pt;
  }
}

@media all and (max-width: 1099px) {
  html, body {
    font-size: 11pt;
  }

  .Columna {
    margin-bottom: 7px;
  }
}

/*estilo para columnas en celular, siempre es una columna*/
/*@media all and (max-width: 699px) {*/
/*@media all and (max-width: 43rem) {
  .ColumnasPantalla {
    grid-template-columns: 1fr;
  }

  .UnaColumna {
    grid-template-columns: 1fr;
  }
}*/

.ContenedorContenedores {
  display: grid;
  width: 100%;
  row-gap: 15px;
}

  .ContenedorSinBorde, .ContenedorConBorde {
    /* width: 100%;*/
    display: grid;
    row-gap: 5px;
    /*margenes internos*/
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #FCFCFC; /* aqui */
  }

  .ContenedorConBorde {
    /*width: 98% !important;*/
    box-shadow: 0px 0px 2px 1px rgba(72,70,70,0.61); /* aqui */
    border: 1px solid darkgray; /* aqui */
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .FormatoTitulos, .TituloContenedor, .SubTituloContenedor {
    text-align: center;
    font-weight: bold; /* aqui */
    margin-bottom: 10px;
  }

  .Renglon, .TituloContenedor, .SubTituloContenedor {
    display: grid;
    row-gap: 10px;
    width: 100%;
    column-gap: 7px;

  }

  .TituloContenedor {
    text-decoration: underline; /* aqui */
    font-size: 15pt;
  }

  .SubTituloContenedor {
    font-size: 11pt;
    text-decoration: underline; /* aqui */
  }



  .Columna {
    /*display: grid;*/
    width: 100%;
    height: auto;
  }

  .Etiqueta, .EtiquetaRequerida {
    display: flex;
    align-items: center; /*verticalmente*/
    justify-content: start; /* horizontalmente*/
  }

    .EtiquetaRequerida:before {
      content: "* ";
      font-weight: bold;
    }

  .EtiquetaRequerida {
    font-weight: bold;
  }

  .Control, .EtiquetaValor {
    display: flex;
    text-align: left; /* horizontalmente*/
    height: auto;
  }

    .Control > * {
      width: 100% !important;
    }

    .EtiquetaValor * {
      align-items: center; /*verticalmente*/
      /*color: #4C80D0 !important;*/ /* aqui */
      font-weight: bold;
    }


/* inicia controles */

.ToolBar {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 10000;
}

.ToolBarContainer {
  /*height: 52px;*/ /* normal aqui */
  height: 55px; /* skin bootstrap aqui*/
  width: 100%; /*99.681% !important;*/
}


.Validador {
  color: red;
  font-weight: bold;
}

.ResumenErrores {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.divFlotante {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 20000;
  width: 100%;
  height: 100%;
  background: rgba(222,222,222,0.5);

  display: flex;
  align-items: center; /*verticalmente*/
  justify-content: center; /* horizontalmente*/

 /* display: grid;
  justify-content: center;
  align-items: center;*/
}

/*Mueve el botón de cerrar del tooltip a la izquierda*/
.rtClose {
  left: -10px !important;
  width: 32px !important;
  height: 32px !important;
  background-image: url(../Imagenes/Cancel_32x32.png) !important;
}

  .rtClose .rtCloseIcon ::before {
    font-family: "" !important;
  }

/*Define el alto de los textbox normales y q convierta el texto a mayuculas*/
input[type="text"] {
  text-transform: uppercase !important;
  padding: 2px !important;
}

/*Define q convierta el texto a mayuculas de los RadTextBox*/
.RadInput .riTextBox {
  text-transform: uppercase !important;
  padding: 2px !important;
}


/*Define el alto de los textox*/
/*.riSingle, .riTextBox {
  padding: 2px !important;
}*/

.RadLabel {
  height: auto !important;
  /*color: #4C80D0 !important;*/ /*aqui*/
}

/*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 * {
  padding: 0px !important;
}

.RadComboBoxDropDown .rcbList{
  background-color: white;
}

/* alto del botón del combo*/
.rcbActionButton {
  padding-bottom: 4px !important;
}

/* Define el alto de los Tabs*/
.RadTabStrip .rtsLevel .rtsLI .rtsLink {
  padding-top: 5px !important;
  height: 10px;
}

.AlinearALaDerecha {
  text-align: right !important;
}

/* finaliza contrales */
