/* .testeo{position: fixed; top: 10px; left:10px; z-index: 10000; background: white; padding: 20px; color:black;} */

/*------------ F U E N T E S ------------*/
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,700");
/*Notas*/
@font-face {
  font-family: "KsIcon";
  src: url(../f/KsIcon_0.ttf) format("truetype");
}
/*------------ C O L O R E S ------------*/

:root {
  /*Colores*/
  --Fispa0: #2f4e6f;
  --Fispa1: #4576ee;
  --Fispa2: #757575;
  --Fispa3: #e6e6e6;
  --Fispa4: #424242;
  --Fispa5: white;
  --Fispa6: #ff0000; /*rojo*/
  --Fispa7: #ffb000; /*amarillo*/
  --Fispa8: #008800; /*verde*/
}

/*------------ C S S B a s i c o ------------*/
* {
  border: 0;
  padding: 0;
  margin: 0;
  outline: 0;
  text-decoration: none;
  list-style: none;
  font-weight: normal;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  color: var(--Fispa4);
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  width: 100vw;
  background: var(--Fispa5);
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: center;
}

/*NAV*/
.nav {
  height: 60px;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  background: var(--Fispa0);
  box-shadow: 0 0 5px gray;
  border-bottom: 4px solid var(--Fispa1);
}
.nav .logo {
  width: 30%;
  text-align: center;
}

.nav nav {
  height: 45px;
  width: 50%;
  margin-right: 5%;
}
.nav ul {
  height: 45px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.nav ul li a {
  font-weight: inherit;
  letter-spacing: 1px;
  color: var(--Fispa5);
}
.nav ul li:hover a,
.nav ul .pagSelect a {
  font-weight: bold;
  letter-spacing: 0.5px;
}

.arriba,
.menuMobile {
  display: none;
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 10000;
  background: var(--Fispa1);
  color: var(--Fispa5);
  font-family: "KsIcon";
  text-align: center;
  line-height: 50px;
  font-size: 40px;
  border-radius: 50%;
  box-shadow: -4px 4px 3px rgba(0, 0, 0, 0.2);
  bottom: 20px;
  right: 5px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.menuMobile {
  bottom: 90px;
  background: var(--Fispa7);
}
@keyframes example {
  0% {
    background-color: var(--Fispa6);
  }
  50% {
    background-color: red;
  }
  100% {
    background-color: var(--Fispa6);
  }
}

#btnAmin {
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 16px;
  background-color: red;
  animation-name: example;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

/*BANNER*/
.banner {
  height: 300px;
  width: 100vw;
  overflow: hidden;
  margin-top: 60px;
}
.banner .kslider {
  height: 100%;
}
.banner .kslider .diapositiva {
  height: 100%;
  width: 100vw;
}
.banner .kslider .diapositiva img {
  width: 100%;
  -webkit-filter: blur(0px) grayscale(0.5) opacity(0.9);
  -o-filter: blur(0px) grayscale(0.5) opacity(0.9);
  filter: blur(0px) grayscale(0.5) opacity(0.9);
}

.banner .infoBanner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-around;
}
.busProducto {
  width: 300px;
  height: 45px;
  display: flex;
  justify-content: space-between;
}
.busProducto > * {
  height: 100%;
  background: transparent;
  color: white;
}
.banner .infoBanner .busProducto {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 5px black;
  border: solid white 3px;
}
.busProducto .busTxt,
#catBuscar {
  min-width: 250px;
  padding: 0px 2%;
  font-size: 20px;
  font-weight: bold;
  color: var(--Fispa0);
}
/* #catBuscar{ } */
.busBtn {
  width: 20%;
  font-family: KsIcon;
  font-size: 25px;
  cursor: pointer;
  color: var(--Fispa1);
}

/*CONTENIDOS*/
.contenidos {
  min-height: 110vh;
}
.categorias {
  width: 240px;
  background: var(--Fispa1);
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  float: left;
  margin-bottom: 15px;
}
.categorias .tiendaNombre {
  height: 45px;
  line-height: 45px;
  letter-spacing: 1px;
  font-size: 18px;
  text-align: center;
  color: white;
  background: var(--Fispa0);
}
.categorias li {
  border-bottom: thin solid var(--Fispa3);
  line-height: 22px;
  cursor: pointer;
  margin: 5px;
  padding-bottom: 5px;
}
.categorias li a {
  width: 100%; /*! height: 100%; */
  display: block;
  padding: 0 2px;
  color: white;
  letter-spacing: 1px;
}
.categorias li:hover a {
  background: var(--Fispa0);
  color: white;
}

section {
  float: right;
  width: calc(100% - 280px);
  display: flex;
  flex-flow: column;
}
section header {
  width: 100%;
  height: 100px;
  font-size: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
section h1 {
  font-size: 30px;
  font-weight: bold;
}

.funciones {
  height: max-content;
  width: 100%;
  display: flex;
}
.funciones .columna1,
.funciones .columna2 {
  display: flex;
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
}
.funciones .columna1 {
  width: 40%;
}
.funciones .columna2 {
  width: 60%;
}
.funciones .columna1 .video {
  height: 100%;
  width: 100%;
}
.funciones .columna1 .video iframe {
  width: 100%;
  height: 100%;
}

.funciones .columna2 form {
  width: 350px;
  height: 45px;
  background: white;
  border: thin solid var(--Fispa2);
}
.funciones .columna2 .busProducto input[type="text"] {
  color: var(--Fispa2);
}
.funciones .columna2 .busProducto input[type="submit"] {
  color: var(--Fispa1);
}

.funciones .columna2 > div,
.funciones .columna2 > a {
  width: 90%;
  height: 35px; /*! background: white; */
  display: flex;
  cursor: pointer;
}
.funciones .columna2 > div:hover,
.funciones .columna2 > a:hover {
  background: var(--Fispa3);
}

.funciones .columna2 > div span,
.funciones .columna2 > a span {
  width: 10%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: var(--Fispa1);
  font-family: KsIcon;
  font-size: 30px;
}
.funciones .columna2 > div p,
.funciones .columna2 > a p {
  line-height: 45px;
  color: var(--Fispa2);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

/*TEXTO DESTACADO*/
.textoDestacado {
  width: 90%;
  background: var(--Fispa3);
  padding: 15px 0px;
  margin: 45px 0px 35px 5%;
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.textoDestacado span {
  font-family: KsIcon;
  color: var(--Fispa2);
  font-size: 45px;
  text-align: center;
  position: absolute;
  top: 15px;
  left: 2%;
}
.textoDestacado p,
.textoDestacado p b {
  color: var(--Fispa2);
  font-size: 30px;
  width: 90%;
  letter-spacing: 1px;
}
.textoDestacado p b {
  font-weight: bold;
}

h2 span {
  line-height: 30px;
  font-size: 26px;
  color: var(--Fispa0);
}

/*NOVEDADES*/
.novedades {
  width: 100%;
}
.novedades h2 {
  line-height: 30px;
  font-size: 26px;
  color: var(--Fispa2);
  margin: 30px 0px 30px 0px;
  border-bottom: solid thin var(--Fispa2);
}

.novedades .lsitadoNovedades {
  display: flex;
  justify-content: space-evenly;
  gap: 24px;
  flex-flow: row wrap;
}
.novedades .lsitadoNovedades > div {
  width: 220px;
  height: 383px;
  margin: 10px 4px;
  border: solid thin var(--Fispa2);
}

.novedades .FispaAncla {
  height: 50px; /*! height: 50px; */
  background: transparent;
  display: block;
}

.novedades .lsitadoNovedades div .novImg {
  width: 100%;
  height: 180px;
  margin: 25px 0px 0px 0px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 3px var(--Fispa3);
  border-top: solid 3px var(--Fispa3);
}
.novedades .lsitadoNovedades div .novImg .img {
  overflow: hidden;
  height: 100%; /*! width: 150px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

.novedades .lsitadoNovedades div .novData {
  width: 96%;
  height: 150px;
  margin-left: 2%;
  overflow-y: auto;
  font-size: 14px;
  line-height: 25px;
  z-index: 10;
  background: white;
}

.novedades .lsitadoNovedades div .novData h3 {
  color: var(--Fispa1);
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px;
}

.novedades .lsitadoNovedades a,
.producto {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  text-align: right;
  padding-right: 10px;
  line-height: 25px;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 2;
  cursor: pointer;
}

.novedades .lsitadoNovedades div .seguirLink {
  width: 100%;
  height: 15px;
  display: block;
  background: var(--Fispa1);
  position: absolute;
  bottom: 0px;
  z-index: 1;
  text-align: center;
  color: white;
  line-height: 15px;
  font-size: 12px;
  letter-spacing: 2px;
}

.novedades .lsitadoNovedades .cintaNovedad {
  position: absolute;
  left: -5px;
  top: -5px;
}

.masNovedades {
  width: 100%;
  height: 45px;
  background: var(--Fispa1);
  margin-bottom: 15px;
  color: white;
  float: left;
  text-align: center;
  line-height: 45px;
  letter-spacing: 1px;
  font-size: 20px;
}
.masNovedades:hover {
  background: var(--Fispa0);
}

.novedades .ProductoEncontrado {
  outline: var(--Fispa1) solid thick;
}

/*FOOTER*/
footer {
  height: 90px;
  width: 100vw;
  display: block;
  background: var(--Fispa0);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

footer .afip {
  height: 80%;
  margin-left: 20px;
}
footer .afip img {
  height: 100%;
}

footer .contacto {
  margin-left: 30px;
}
footer .contacto p,
footer .contacto a {
  color: white;
}

footer .kamCreativo {
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 5px;
  right: 30px;
  cursor: pointer;
}
footer .kamCreativo:hover {
  color: rgba(255, 255, 255, 0.6);
}

/*VENTANA EMERGENTE y PRODUCTO*/
.ventanaEmergente,
.ventanaProducto {
  position: fixed;
  z-index: 5000;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
}
.ventanaEmergente .ventanaE {
  width: 500px;
  height: 250px;
  background: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  z-index: 5001;
}
.ventanaProducto .ventanaE {
  width: 90vw;
  max-height: 96vh;
  background: white;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  z-index: 5001;
  overflow-y: scroll;
}

.ventanaE .ventanaTitulo {
  width: 100%;
  height: 25px;
  background: var(--Fispa1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ventanaE .ventanaTitulo h6 {
  color: white;
  padding-left: 5px;
  letter-spacing: 1px;
}
.ventanaE .ventanaTitulo span {
  color: rgba(255, 255, 255, 0.5);
  width: 50px;
  cursor: pointer;
}
.ventanaE .ventanaTitulo span:hover {
  color: rgba(255, 255, 255, 1);
}

.ventanaEmergente .ventanaE .ventanaData {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
.ventanaEmergente .ventanaE .ventanaData p {
  line-height: 25px;
  font-size: 18px;
  margin: 20px;
}
.ventanaEmergente .ventanaE .ventanaData input,
.ventanaEmergente .ventanaE .ventanaData .btnEnviar {
  width: 70%;
  border: 1px solid var(--Fispa2);
  line-height: 40px;
  margin: 0 0 10px 0;
  text-align: center;
  font-size: 25px;
}
.ventanaEmergente .ventanaE .ventanaData .btnEnviar {
  background: var(--Fispa1);
  color: white;
  border: none;
}
.ventanaEmergente .ventanaE .ventanaData .btnEnviar:hover {
  cursor: pointer;
  background: var(--Fispa0);
}

.prodData {
  display: flex;
  flex-flow: column; /*overflow: hidden;*/
  justify-content: center;
  align-items: center;
}

.prodImgs {
  width: 100%;
  height: auto;
  margin: 25px 0px 5px 0px;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: solid 3px var(--Fispa3);
  border-top: solid 3px var(--Fispa3);
}
.ventanaProducto .prodImgs {
  /* max-height: 500px; */
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}
@media screen and (min-width: 1025px) {
    .ventanaProducto .prodImgs {
        max-width: 600px;
      }
  }
.prodImgs .img {
  overflow: hidden;
  height: 500px;
  max-height: 90vw;
  text-align: center;
}
/*.prodImgs .imgV img,.prodImgs .imgH img{max-height:100%;max-width: 100%;}*/
.imgH img {
  width: 90%;
  transform: scale(0.8);
}
.imgV img {
  height: 90%;
  transform: scale(0.8);
}

.ventanaProducto .imgV img,
.ventanaProducto .imgH img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 500px;
  transform: scale(1);
}

.prodInfos {
  /*! overflow-y: auto; */
  /* max-height: 40vh; */
  margin-bottom: 15px;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
}
.prodInfos > * {
  width: 100%;
  max-width: 700px;
  text-align: left;
}
.prodInfos h2 {
  color: var(--Fispa1);
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  padding: 5px;
  font-size: 25px;
}
.prodData label {
  font-size: 25px;
  letter-spacing: 1px;
  padding-left: 15px;
  color: var(--Fispa1);
}
.prodInfo {
  padding: 15px;
  letter-spacing: 1px;
}

/*En construcción*/
.enBreve {
  background: var(--Fispa0);
  color: White;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}
@media (min-width: 1024px) {
  body > .contenidos {
    width: 90%;
    min-height: 120vh;
  }
  /*.novedades .lsitadoNovedades > div{width: 24%;}*/
}

/*CONTACTO*/

.dataArtMail {
  /* margin: 15px 15%; */
  display: flex;
  width: 100%;
  height: 1000px; /* text-align: center; */
  flex-flow: column; /* justify-content: center; */
}
.dataArtMail #kform {
  display: flex;
  justify-content: space-around;
  max-width: 90%;
  min-width: 70%; /* display: inline-block; */
}

.dataArtMail #kform .GrupoDatos1 {
  width: 48%;
  display: flex;
  flex-flow: column;
}
.dataArtMail #kform .GrupoDatos1 .dato,
.dataArtMail .GrupoDatos1 .dato1 {
  width: 100%;
  justify-content: space-between;
  margin: 10px 0;
}
.dataArtMail #kform .GrupoDatos1 label {
  width: 100%;
  margin: 0px 0px 0px 0px;
}
.dataArtMail #kform .GrupoDatos1 input,
.dataArtMail .GrupoDatos1 textarea {
  width: 100%;
  background: var(--Fispa3);
  padding: 5px;
}
.dataArtMail #kform .GrupoDatos1 input,
.dataArtMail #kform .GrupoDatos1 label {
  height: 40px;
}
.dataArtMail #kform .GrupoDatos1 textarea {
  height: 200px;
}

.dataArtMail .btnEnviarConsulta {
  width: 150px;
  line-height: 26x;
  padding: 4px 10px;
  background: var(--Fispa0);
  box-shadow: 1px 1px 1px var(--Fispa3);
  color: var(--Fispa5);
  text-align: center; /*! bottom:-60px; */
  cursor: pointer; /*! right: 1%; */ /*! position: absolute; */ /*! left: 0; */ /*! self-position: center; */
}
.dataArtMail .btnEnviarConsulta:hover {
  background: var(--Fispa1);
}
.dataArtMail .daraArtAviso {
  margin: 20px 0 0 0;
  font-size: 16px; /* position: relative; */ /*! left: 0px; */
}

#enviado {
  color: var(--Fispa8);
  font-size: 15px;
  text-align: center; /*! position:absolute; */ /*! bottom:-78px; */
  right: 0px;
  width: 100%; /*! background: red; */
}
.aviso,
#avisoText {
  position: absolute;
  top: 20px;
  left: 120px;
  width: 100%;
}
#avisoText {
  top: 110px;
}
.aviso span {
  color: var(--Fispa7);
  font-size: 12px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.galeriaVideos {
  width: 100%;
  height: auto;
  display: flex;
  flex-flow: wrap;
}
.galeriaVideos .video {
  width: 23%;
  margin: 15px 1%;
  background: gray;
}
.galeriaVideos .videoVisor {
  width: 100%;
  height: 150px;
  background:
    url(../../imagenes/fispaCarga.gif) center center no-repeat,
    url(paper.gif) left top repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.galeriaVideos .videoVisor iframe {
  width: 100%;
  height: 100%;
}
.galeriaVideos .videoTitulo {
  width: 100%;
  height: 80px;
  background: var(--Fispa3);
  line-height: 40px;
  padding: 5px;
}
.galeriaVideos .videoPopUp {
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 100;
  width: 100%;
  min-height: 100%;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.popUp {
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popUp .cerrarPopUp {
  position: absolute;
  top: 70px;
  right: 25px;
  width: 150px;
  height: 50px;
  background: white;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  background: red;
  color: white;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 100;
}
.popUp .cerrarPopUp:hover {
  font-size: 25px;
}

.popUp .videoVisor {
  width: 70vw;
  height: 70vh;
}
.popUp .videoVisor iframe {
  width: 100%;
  height: 100%;
}

/*Stock*/
* .stockSi,
.stockCo,
.stockNo {
  position: absolute;
  top: 27px;
  right: 0;
  width: 75%;
  height: 25px;
  background: var(--Fispa8);
  text-align: center;
  color: white;
  margin: 0 0 10px 0;
  font-size: 15px;
  line-height: 25px;
  border-bottom-left-radius: 15px;
  letter-spacing: 1px;
  font-weight: bold;
}
.stockNo {
  background: var(--Fispa6);
}
.stockCo {
  background: var(--Fispa7);
}
/*MOBILE -------------------------------------------------------------*/

@media (max-width: 1024px) {
  .nav {
    position: relative;
  }
  .nav .logo {
    width: auto;
    height: 50px;
    display: block;
    margin: 10px 0 0 0;
  }
  .nav .logo img {
    width: 100%;
  }
  .nav {
    height: auto;
    flex-flow: column;
    margin: 0;
    padding: 5px;
  }
  .nav nav,
  .nav nav ul {
    height: auto;
    align-content: center;
    margin: 5px 0 0 0;
    flex-wrap: wrap;
    width: 100%;
  }
  .nav nav ul li {
    width: 45%;
    min-height: 50px;
    margin: 5px 0 5px 0;
    text-align: center;
    padding: 5px 5px;
    border-radius: 10px;
    font-size: 16px;
    background-color: var(--Fispa1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .arriba,
  .menuMobile {
    display: block;
  }

  .banner {
    padding: 0;
    margin: 0 0 20px 0;
    height: 150px;
  }

  .banner .kslider {
    height: 100%;
  }
  .banner .kslider .diapositiva {
    height: 100%;
    width: 100vw;
  }
  .banner .kslider .diapositiva img {
    height: 100%;
    width: auto;
  }

  .busProducto {
    width: 90%;
    height: 125px;
    flex-flow: column;
  }
  .busProducto > * {
    margin: 5px 0px;
    width: 98%;
  }

  .busBtn {
    align-self: flex-end;
  }

  .contenidos {
    width: 90%;
  }
  .contenidos .categorias {
    display: none;
    position: fixed;
    top: 10px;
    z-index: 10000;
    width: 80%;
    box-shadow: -8px 15px 8px rgba(0, 0, 0, 0.5);
  }
  .contenidos .categorias .tiendaCat {
    overflow-y: scroll;
    max-height: 82vh;
    border-bottom: 10px solid var(--Fispa0);
  }
  .contenidos .categorias .tiendaCat li {
    padding: 15px 0;
  }

  .contenidos section {
    width: 100%;
  }
  .contenidos section header {
    margin: 0 0 25px 0;
  }

  .contenidos section .funciones {
    height: max-content;
    flex-flow: column;
  }
  .contenidos section .funciones .columna1,
  .contenidos section .funciones .columna2 {
    width: 100%;
  }
  .contenidos section .funciones .columna1 {
    height: 300px;
    text-align: center;
  }
  .contenidos section .funciones .columna1 iframe {
    max-width: 600px;
  }
  .contenidos section .funciones .columna2 {
    padding: 15px 0px;
  }

  .textoDestacado {
    margin: 0;
    width: 100%;
  }
  .textoDestacado span {
    font-size: 20px;
    padding: 0;
    margin: 0;
  }
  .textoDestacado p {
    font-size: 20px;
    top: 10px;
  }

  .FispaAncla {
    margin: 0;
    top: 0;
    padding: 0;
  }
  .novedades {
    margin: 0;
    top: 0;
    padding: 0;
  }
  .novedades h2 {
    margin: 0;
    top: 0;
    padding: 0;
  }

  .novedades .lsitadoNovedades > div {
    min-width: 230px;
    height: 405px;
  }

  .ventanaProducto .ventanaE {
    position: absolute;
    top: 2vh;
    width: 90%;
    height: 98vh;
  }
  .novedades .lsitadoNovedades div .seguirLink {
    font-size: 18px;
    height: 35px;
    line-height: 35px;
  }

  #kform {
    flex-flow: column;
  }
  .dataArtMail #kform .GrupoDatos1 {
    width: 100%;
  }

  .galeriaVideos .video {
    width: 48%;
  }
}

/*------------ C O N T A C T O ------------*/

/*F O R M   A C C E S O*/
.formAcceso {
  /*     background: pink; */
  width: 100%;
  display: flex;
  justify-content: center;
  height: 280px;
  position: relative;
}
.formAcceso > div {
  /*     background: green; */
  width: 50%;
  border: solid thin var(--Fispa0);
}
.formAcceso h6 {
  font-size: 20px;
  font-weight: bold;
  background: var(--Fispa0);
  color: white;
  padding: 10px;
  letter-spacing: 2px;
}

.formAcceso form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.formAcceso p {
  margin: 20px 0px;
  text-align: center;
}

.formAcceso input,
.formAcceso .btnEnviar {
  width: 300px;
  height: 50px;
  font-size: 30px;
  text-align: center;
  border: solid thin var(--Fispa0);
}

.formAcceso .btnEnviar {
  margin-top: 10px;
  background: var(--Fispa1);
  border: none;
  line-height: 50px;
  color: white;
  cursor: pointer;
}

.formAcceso .btnEnviar:hover {
  background: var(--Fispa0);
}

.accMjs {
  width: 100%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--Fispa6);
}
/**********************************************************/
.kformContenedor {
  width: 60%;
  padding-left: 20%;
  display: flex;
  /*align-items: center;*/
  flex-direction: column;
  padding: 0 0px 0 0;
}
.formDato {
  width: 100%;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;

  padding: 5px;
}
.formDato label {
  min-height: 30px;
  line-height: 30px;
  text-align: left;
  padding: 0 10px 0 0;
  letter-spacing: 1px;
}
.formDato input,
.formDato textarea,
.formDato select {
  border: solid thin var(--Fispa0);
  font-size: 1.2rem;
  padding: 0.5rem;
}
#ktipoX {
  border-color: var(--Fispa1);
}

.formDatoTxt textarea {
  resize: vertical;
}
.formBtn {
  width: 60%;
  display: flex;
  align-content: flex-end;
  justify-content: flex-end;
}
.formBtn div {
  background: var(--Fispa0);
  color: white;
  padding: 8px 32px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
}
.formBtn div:hover {
  background: var(--Fispa1);
}
.formDato .avisoX {
  background: var(--Fispa5);
  color: var(--Fispa6);
  border: solid thin var(--Fispa0);
  letter-spacing: 1px;
  position: absolute;
  right: 35px;
  font-size: 14px;
  padding: 1px 5px;
  width: auto;
  display: inline-block;
}
.formMensajes {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px 0;
}
.formMensajes > * {
  width: 100%;
  text-align: center;
  padding: 5px 0;
  letter-spacing: 1px;
  color: var(--Fispa5);
  margin: 0 0 10px 0;
}
.formMensajes .daraArtAviso {
  background: var(--Fispa1);
}
.formMensajes .formAlert {
  font-weight: bold;
  background: var(--Fispa7);
}
.formMensajes #enviando {
  font-weight: bold;
  background: var(--Fispa8);
}
.formMensajes #enviado {
  color: white;
  font-weight: bold;
  background: var(--Fispa1);
}

.descargaFac {
  margin-top: 5px;
  background: var(--Fispa1);
  border: none;
  line-height: 30px;
  color: white;
  cursor: pointer;
  position: relative;
  top: 120%;
  width: 300px;
  text-align: center;
  letter-spacing: 2px;
}

/* ---------------- PROXIMAMENTE */
:root {
  --color_prox: rgb(197, 18, 18);
}
/* .prox__1 {
	outline: solid 2px var(--color_prox);
} */
.prox__1 .novImg::after {
  content: "próxima incorporación";
  background: var(--color_prox);
  color: white;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  height: 24px;
  /* width: 80%; */
  bottom: 10px;
  left: 5%;
  right: 5%;
  z-index: 1000;
  /* transform: rotate(-90deg); */
}
.novImg {
  position: relative;
  /* background: lightgoldenrodyellow; */
}

@media only screen and (max-width: 600px) {
  .kformContenedor {
    align-items: start;
  }

  .kformContenedor {
    width: 100%;
    padding-left: 0%;
  }
}
