@import url("https://fonts.googleapis.com/css?family=Roboto:400,300,500,500italic,700,700italic,400italic,300italic");
/*@import url("bootstrap.css");*/
/*@import url("../fonts/font-awesome.css");*/

@font-face {
  font-family: glyphicons;
  src: url(../fonts/glyphicons-halflings-regular.woff);
}

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

@font-face {
  font-family: fontawesome;
  src: url(../fonts/fontawesome-webfont.woff);
}

* {
  margin: 0;
  padding: 0;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-family: fontawesome, sans-serif;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 300;
}

body {
  /*font-family: 'Roboto', Arial, sans-serif;*/
  color: #000000;
  /*font-size: 14px;*/
  
  /*background-color: #ffcccc;*/
  background-color: #001542;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: scroll;
}

a
{
	text-decoration: none;
	color: #001542;
}

a:hover
{
	text-decoration: underline;
	color: #FE6F06;
}

.contenedor_principal
{
  display: grid;
  place-items: center;
  width: 100%;
  background-color: #001542;
}

.contenedor_principal a
{

}

.contenedor_menu
{
  display: grid;
  place-items: center;
  /*border: 1px solid red;*/
}

.logo_principal
{
  max-height: 200px;
  width: auto;
}

.contenedor_principal
{
  width: 100%;
  height: calc(100% - 200px);
}

.tabla_listado,
.tabla_carga
{
  border-collapse: collapse;
  border: 1px solid #001542;
}

.tabla_listado tr:nth-child(odd)
{
  background: #ffe0cc;
}

.tabla_listado th,
.tabla_carga th
{
  background-color: #001542;
  color: white;
  /*border: 1px solid #001542;*/
  border: none;
  font-size: 1.2rem;
  padding: 0.2rem;
  /*padding-left: 0.2rem;*/
}

.tabla_listado td,
.tabla_carga td
{
  color: #001542;
  /*border: 1px solid #001542;*/
  border: none;
  font-size: 1rem;
  padding: 0.2rem;
  /*padding-left: 0.2rem;*/
}

.contenedor_operacion
{
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  border: 2px solid #FE6F06;
  padding: 0.5rem;
  background-color: white;
  color: #001542;
  overflow-x: scroll;
}

/*input[type="submit"]
{
  display: block;
  border-collapse: collapse;
  border: 1px solid #FE6F06;
  background-color: #001542;
  color: #FE6F06;
  text-align: center;
}

input[type="submit"]:hover
{
  border: 5px solid #FE6F06;
}*/

/* ------------------------------clase submit------------------------------ */

button{
  display: block;
  width: 100%;
  height: 3rem;
  /*line-height: 3rem;*/
  /*font-size: 1.5rem;*/
  /*font-family: sans-serif;*/
  text-decoration: none;
  color: #FE6F06;
  border: 2px solid #FE6F06;
  letter-spacing: 0.1rem;
  text-align: center;
  position: relative;
  background: #001542;
  transition: all .35s;
}

button span{
  position: relative;
  z-index: 2;
}

button:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #FE6F06;
  transition: all .35s;
}

button:hover{
  color: #001542;
  cursor: pointer;
}

button:hover:after{
  width: 100%;
}

/* ------------------------------            ------------------------------ */

.contenedor_vender
{
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  border: 2px solid #FE6F06;
  padding: 0.5rem;
  background-color: white;
  color: #001542;
}

.foto_miniatura
{
  cursor: pointer;
  max-height: 50px;
}

#contenedor_ficha
{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);

  z-index: 100;

  display: grid;
  place-items: center;
}

#contenedor_ficha .ficha
{
  width: auto;
  height: auto;
  background-color: white;
  border: 2px solid #FE6F06;
  z-index: 101;
}

.foto_enfocada
{
  position: static;
  background-color: transparent;
  width: auto;
  height: auto;
  max-height: 500px;
  overflow: scroll;
  margin: 5px;

  display: grid;
  place-items: center;
}

.foto_enfocada img
{
  display: block;
  width: 100%;
  height: auto;
}

.carrusel
{
  position: static;
  background-color: white;
  width: 100%;
  height: auto;
  border-top: 1px solid black;
  overflow-x: scroll;
}

.mini_foto
{
  display: inline-block;
  height: auto;
  margin: 5px;
  background-color: white;
  vertical-align: middle;
}

.mini_foto:hover
{
  cursor: pointer;
}

.mini_foto img
{
  max-width: 100px;
  max-height: 100px;
}

