:root {
  --color1: #ff6600;
  --color2: #e9a766;
}

@font-face{
    font-family:'Material Icons';    
    font-style:normal;
    font-weight:400;
    src: local('Material Icons'),local('MaterialIcons-Regular'),url('../fonts/materialIcons-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url('../fonts/open_sans_regular.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Regular.ttf);
}

body{
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #FFF;
    margin: 0;    
    background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,41,61,1) 50%, rgba(0,0,0,1) 100%);
    background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(0,41,61,1) 50%,rgba(0,0,0,1) 100%);
    background: linear-gradient(to right, rgba(0,0,0,1) 0%,rgba(0,41,61,1) 50%,rgba(0,0,0,1) 100%);
    background-image: url(/assets/img/custom/background_infoshop.png); background-position: center; background-size: cover; height: 100vh;

    /*background: url("/assets/img/fondo.png") repeat-y center; */

}

button, .form-control{
    outline: none;
}

.logo_login{
    background-image: url(/assets/img/custom/logo_login_infoshop.png);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 290px !important; 
    margin-left: calc(50% - 145px) !important; 
    top: calc(50% - 250px) !important;
}

.loading_login{
    top: 0;
    width: 10%;
    position: absolute;
    margin-left: 45%;
    z-index: 20;
    margin-top: calc(50vh - 5%);
    margin-top: -webkit-calc(50vh - 5%);
    margin-top: -moz-calc(50vh - 5%);
    display: none;
}

/***********************************/
    /*  CSS PARA EL LOGIN */
/***********************************/

.fondoLogin{
    border: 1px solid #3D3D3D;
    border-radius: 5px;
    box-shadow: 1px 1px 10px #3A3A3A;
    margin-top: 35px;
    -webkit-transition: opacity 1.5s;
    -moz-transition: opacity 1.5s;
    transition: opacity 1.5s;
    background-color: rgba(0, 0, 0, 0.75);
}

.img_login{
  position: absolute;
  top: 0px;
  right: 0px;
}

.body-login table label{
    font-family: Roboto;
}

.logoIncio_transition{
    box-shadow: 0px 2px 64px 36px rgba(0,0,0,0.75);
    background: rgba(0,0,0,0.92);
    background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.7) 51%, rgba(0,0,0,0.57) 100%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(0,0,0,0.7)), color-stop(45%, rgba(0,0,0,0.7)), color-stop(51%, rgba(0,0,0,0.7)), color-stop(100%, rgba(0,0,0,0.57)));
    background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.7) 51%, rgba(0,0,0,0.57) 100%);
    background: -o-radial-gradient(center, ellipse cover, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.7) 51%, rgba(0,0,0,0.57) 100%);
    background: -ms-radial-gradient(center, ellipse cover, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.7) 51%, rgba(0,0,0,0.57) 100%);
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.7) 51%, rgba(0,0,0,0.57) 100%);
}

.logo_inicio_effect{
    margin-top: 137px;
}

.tablaLogin{
    width: 95%;
    position: relative;
    margin: auto;
    padding: 5px;
    margin-top: 7%; 
}

.tablaLogin tr td
{
    width: auto;
    padding: 10px;
    text-align: left;
    color: #FFF;
}

.tablaLogin tr #idIcon .imgPerfil{
    width: 230px;
    position: absolute;
    opacity: 0.4;
    top: -200%;
    left: 50px;
    transition: all 0.5s ease-in-out;
}

.tablaLogin tr #idIcon:focus .imgPerfil{
    opacity: 1;
}

.tablaLogin tr td .ancho
{
    width: 200px;
}

#btnAcceder{
    background-color: #ff6600;
    border-color: #ff6600;
}

.tablaLogin tbody tr input, #btnAcceder{
    opacity: 0.5;
}

.tablaLogin tbody tr input:required:focus:valid, #btnAcceder:focus{
    opacity: 1;
    box-shadow: inset 0 2px 1px rgba(0,0,0,.075), 0 0 21px rgba(255, 102, 0, .6);
    -webkit-box-shadow: inset 0 2px 1px rgba(0,0,0,.075), 0 0 21px rgba(255, 102, 0, .6);
    -moz-box-shadow: inset 0 2px 1px rgba(0,0,0,.075), 0 0 21px rgba(255, 102, 0, .6);
}

body .tablaLogin .invalid {
    background: #fff url(/assets/img/invalid.png) no-repeat 98% center !important;
    border-color: #e9a766;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 102, 0, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(255, 102, 0, .6);
}

.tablaLogin .required {
    background: #fff url(/assets/img/red_asterisk.png) no-repeat 98% center;
}

button{
    margin-right: 0px;
    text-align: center;
    width: 100%;
    height: 3em;
    border-color: transparent;
    border-radius: 3px;
    color: white;
    background-color: #ff6600;
    cursor: pointer;
}

.opacity_login{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 19;
}

input[type=text], .body-login input[type=password]{
    text-align: center;
}

.form-control {
  display: block;
  width: 100%;
  height: 20px;
  padding: 6px 0px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  
}

.form-control:focus {
  border: 1px solid #e9a766;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.form-control:required:focus {
  border-color: #e9a766;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); 
}

.form-control:invalid {
  background-color: rgb(255,255,255);
  opacity: .8;
}

.form-control:focus:invalid {
  /*background: #fff url(/assets/img/invalid.png) no-repeat 98% center;*/
  border-color: #b03535;
}

.form-control:disabled {
background-image: none;
}

.form-control:required:valid {
  background: #fff url(/assets/img/valid.png) no-repeat 97% center;
  border-color: #28921f;
}

.form-control:input.empty {

  border-color: #e9a766;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.form-control:focus + .form_hint {display: inline;}
.form-control:required:valid + .form_hint {background: #28921f;}
.form-control:required:valid + .form_hint::before {color:#28921f;}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}

#fondoFilter{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;
    transition: opacity 2s;
    background: #ff6600;
}



/***********************************/
    /*  FIN CSS PARA EL LOGIN */
/***********************************/
