@charset "utf-8";
:root {
  --base-font-size    : 12px;
  --color-gris        : #333;
  --color-gris-claro  : #666;
  --color-gris-oscuro : #000;
  --color-blanco      : #FFF;
  --color-rojo        : #F00;
  --color-rojo-dac    : #E51B24;
  --color-verde       : #0F0;
  --color-verde-dac   : #00A950;
  --color-azul        : #00F;
  --color-amarillo    : #FF0;
  --color-naranja     : #F90;
  --color-morado      : #90F;
  --primary           : #303791;
  --primary-hover     : #3B44B5;
  --secondary         : #FFF;
  --rgba-primary-05   : rgba(46, 85, 250, 0.05);
  --rgba-primary-1    : rgba(46, 85, 250, 0.1);
  --rgba-primary-2    : rgba(46, 85, 250, 0.2);
  --rgba-primary-3    : rgba(46, 85, 250, 0.3);
  --rgba-primary-4    : rgba(46, 85, 250, 0.4);
  --rgba-primary-5    : rgba(46, 85, 250, 0.5);
  --rgba-primary-6    : rgba(46, 85, 250, 0.6);
  --rgba-primary-7    : rgba(46, 85, 250, 0.7);
  --rgba-primary-8    : rgba(46, 85, 250, 0.8);
  --rgba-primary-9    : rgba(46, 85, 250, 0.9);
  --title             : #232323;
  --white             : #FFF;
  --white2            : #E1E6EB;
}

.btn-danger {
  background-color : var(--color-rojo-dac);
  border-color     : var(--color-rojo-dac);
  color            : var(--color-blanco);
}

.btn-danger:hover {
  color            : var(--color-blanco);
  background-color : var(--color-rojo);
  border-color     : var(--color-rojo);
}

.color-verde-dac {
  color : var(--color-verde-dac);
}

body, html {
  font-size : var(--base-font-size);
}

body.users-login {
  background-image  : url(/imagenes/camionetas-dac.jpg);
  background-size   : cover;
  background-repeat : no-repeat;
  display           : flex;
  flex-direction    : column;
  height            : 100%;
}

textarea {
  resize      : none;
  form-sizing : content;
  min-height  : 1em;
}

/** ajustes solo para ios **/
@supports (-webkit-overflow-scrolling: touch) {
  /*
    Al seleccionar un campo de ingreso de texto, o un select, en browser realiza un zoom. (iphone)
    http://stackoverflow.com/questions/2989263/disable-auto-zoom-in-input-text-tag-safari-on-iphone 
  */
  select, textarea, input {
    font-size : 16px !important;
  }

  /** reseteo apariencia de botones ios **/
  input[type="button"],
  input[type="submit"] {
    -webkit-appearance : none;
  }
}

.videoWrapper {
  position       : relative;
  /* 16:9 */
  padding-bottom : 56.25%;
  /* 4:3 */
  /*padding-bottom : 75%; */
  padding-top    : 0;
  height         : 0;
}

.videoWrapper iframe {
  position : absolute;
  top      : 0;
  left     : 0;
  width    : 100%;
  height   : 100%;
}

/*---- aspectRatios ----*/
.aspectRatio43,
.aspectRatio1,
.aspectRatio169,
.aspectRatio168,
.aspectRatio167,
.aspectRatio166,
.aspectRatio165,
.aspectRatio164 {
  position : relative;
}

:is(
  .aspectRatio43,
   .aspectRatio1,
   .aspectRatio169,
   .aspectRatio168,
   .aspectRatio167,
   .aspectRatio166,
   .aspectRatio165,
   .aspectRatio164):before {
  display : block;
  content : " ";
  width   : 100%;
}

.aspectRatio1:before {
  padding-top : 100%;
}

.aspectRatio43:before {
  padding-top : calc((3 / 4) * 100%);
  /*padding-top : 75%;*/
}

.aspectRatio169:before {
  padding-top : calc((9 / 16) * 100%);
}

.aspectRatio168:before {
  padding-top : calc((8 / 16) * 100%);
}

.aspectRatio167:before {
  padding-top : calc((7 / 16) * 100%);
}

.aspectRatio166:before {
  padding-top : calc((6 / 16) * 100%);
}

.aspectRatio165:before {
  padding-top : calc((5 / 16) * 100%);
}

.aspectRatio164:before {
  padding-top : calc((4 / 16) * 100%);
}

.backCover {
  background-position : center;
  background-size     : cover;
  background-repeat   : no-repeat;
}

:is(input[type=password],input[type=text]).verificado {
  border     : none;
  box-shadow : 0 0 7px var(--color-verde-dac);
}

:is(input[type=password],input[type=text]).incorrecto {
  border        : 1px solid var(--color-rojo-dac);
  border-radius : 2px;
  box-shadow    : 0 0 7px var(--color-rojo-dac)
}

.mid-articulos .list a span.thumbnail {
  background-size     : cover;
  background-position : center;
  background-repeat   : no-repeat;
  display             : block;
}

.bodymask {
  background-color : var(--color-blanco);
  display          : none;
  position         : fixed;
  top              : 0;
  left             : 0;
  z-index          : 1000;
  opacity          : .7;
}

.paginacion span,
.paginacion a {
  color            : var(--color-blanco);
  text-decoration  : none;
  margin           : 5px;
  background-color : var(--color-gris-claro);
  padding          : 5px 10px;
  transition       : .5s;
}

.paginacion a:hover,
.paginacion span {
  background-color : var(--color-blanco) !important;
  color            : var(--color-gris-claro);
  transition       : .5s;
}

.paginacion span {
  border : 1px solid #658582;
}

.owl-nav {
  position : absolute;
  bottom   : 29px;
  left     : 0;
}

.owl-prev, .owl-next {
  background-color : #333 !important;
}

.owl-dots {
  position : absolute;
  bottom   : 0;
}

#cboxTitle {
  position   : absolute;
  top        : -22px;
  left       : 0;
  color      : var(--white2);
  background : var(--color-blanco);
  padding    : 0 5px 0 5px;
  font-size  : 14px;
}

#cboxTitle .btnGoFullScreen {
  color : var(--color-gris)
}

:is(textarea,select,input)[data-validation-engine^="validate[requivar(--color-rojo-dac)"] {
  background-color : var(--white2)
}

@media (min-width : 576px) {
  .aspectRatio-sm-none:before {
    display     : none !important;
    padding-top : 0 !important;
  }
}

@media (min-width : 768px) {
  .aspectRatio-md-none:before {
    display     : none !important;
    padding-top : 0 !important;
  }
}

@media (min-width : 992px) {
  .aspectRatio-lg-none:before {
    display     : none !important;
    padding-top : 0 !important;
  }
}

@media (min-width : 1200px) {
  .aspectRatio-xl-none:before {
    display     : none !important;
    padding-top : 0 !important;
  }
}

@media (min-width : 1400px) {
  .aspectRatio-xxl-none:before {
    display     : none !important;
    padding-top : 0 !important;
  }
}

.w-1 {
  width : 1px;
}

.login-form-bx .box-skew1::after {
  background-image    : url(/imagenes/simon-abrams-k_T9Zj3SE8k-unsplash.jpg);
  filter              : brightness(2.7) contrast(0.6) blur(1.7px);
  background-position : top right;
  background-size     : cover;
  background-repeat   : no-repeat;
}

.btnShowPassword {
  position : absolute;
  top      : .75em;
  right    : .6em;
  color    : var(--color-gris-claro);
  cursor   : pointer;
  z-index  : 11111;
}

.LogoHeader img {
  padding : 6px 14px 12px 14px;max-width : 112px;
}

.canditate-des-encargado {
  border : 2px solid var(--color-rojo-dac);
}

.canditate-des-encargado::before,
.canditate-des-encargado::after {
  background-color : var(--color-rojo-dac);
}

.color-rojo-dac {
  color : var(--color-rojo-dac);
}

.articulos-init tr.readed0 td {
  font-weight : bold;
}

.cocarda-encargado {
  top              : 5px;
  left             : 5px;
  padding          : 2px 8px;
  margin           : 0;
  background-color : var(--color-rojo-dac);
  color            : #FFF;
  border-radius    : 8px;
  line-height      : 19px;
  box-shadow       : 0 0 4px #CCC;
  position         : absolute;
}

.candidate-info img {
  border-radius : 0 !important;
  width         : auto;
  max-width     : 160px;
  position      : absolute;
  top           : 50%;
  left          : 50%;
  transform     : translate(-50%, -50%);
}

.canditate-des > a {
  display          : block;
  overflow         : hidden;
  border-radius    : 100%;
  width            : 100%;
  background-color : #FFF;
  padding          : 5px;
  aspect-ratio     : 1;
  position         : relative;
}