﻿/*Hoja de estilos ERR*/

body
{
   font-family: 'DINPro-Medium';
   color: #606c76;
   font-size: 1em;
   font-weight: 300;
   letter-spacing: 0.01em;
   line-height: 0.8em;
   padding: 1em;
}

#divContAut
{
   position: absolute;
   top: 0em;
   bottom: 0em;
   left: 0em;
   right: 0em;
   overflow: hidden;
}

#divWorking
{
   position: fixed;
   top: 50%;
   left: 50%;
   /*background-color: red;*/ /* <- Ya no*/
   padding: 1em;
   box-shadow: 0px 0px 4px 2px black;
   overflow: hidden;
   max-width: 75%;
   /*width: 34em;
   height: 15em;*/
   transform: translate(-50%, -50%);
   /*Nuevo*/
   background: rgb(246,246,246);
   background: -moz-linear-gradient(180deg, rgba(246,246,246,1) 0%, rgba(208,208,208,1) 100%);
   background: -webkit-linear-gradient(180deg, rgba(246,246,246,1) 0%, rgba(208,208,208,1) 100%);
   background: linear-gradient(180deg, rgba(246,246,246,1) 0%, rgba(208,208,208,1) 100%);
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f6f6f6",endColorstr="#d0d0d0",GradientType=1);
   color: #606060;
   border-radius: 1em;
}

   #divWorking > div:nth-child(1)
   {
      color: red;
      background-color: black;
      padding: 0.1em;
      text-align: center;
      font-size: 2em;
      /*Nuevo*/
      border-top-left-radius: 0.5em;
      border-top-right-radius: 0.5em;
      box-shadow: 2px 2px 2px white;
   }

   #divWorking > div:nth-child(2)
   {
      text-align: center;
      padding: 0.1em;
      font-size: 1.5em;
      line-height: 1em;
      color: black;
   }

#divMsgErrBack
{
   /* position: absolute; */
   width: 100%;
   text-align: center;
   color: white;
   background-color: black;
   padding: 1em;
   box-sizing: border-box;
   cursor: pointer;
   /*Nuevo*/
   border-bottom-left-radius: 1em;
   border-bottom-right-radius: 1em;
   box-shadow: 2px 2px 2px 0 white;
   transition: all 0.3s ease-in-out;
}

   #divMsgErrBack:hover
   {
      color: red;
   }