/* CSS Document */
@font-face {
  font-family: "League Spartan";
  src: url("../fonts/spartan/LeagueSpartan-Bold.woff2") format("woff2"), url("LeagueSpartan-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Agape";
  src: url("../fonts/agape/Agape-Light.woff2") format("woff2"), url("../fonts/agape/Agape-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Agape";
  src: url("../fonts/agape/Agape-Italic.woff2") format("woff2"), url("../fonts/agape/Agape-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Agape";
  src: url("../fonts/agape/Agape-Bold.woff2") format("woff2"), url("../fonts/agape/Agape-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Agape";
  src: url("../fonts/agape/Agape-Thin.woff2") format("woff2"), url("../fonts/agape/Agape-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  outline: none !important;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

.mob {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .mob {
    display: block !important;
  }
}

.desk {
  display: block;
}
@media screen and (max-width: 768px) {
  .desk {
    display: none;
  }
}

ul {
  margin: 0;
}

li {
  list-style: none;
}

body {
  width: 100%;
  height: 100vh;
  background: #ffffff;
  font-family: "Agape";
  font-size: 14px;
  display: flex;
  flex-direction: column;
  color: #000000;
}

.contenedor {
  flex: 1;
  width: 100%;
  padding-top: 148px;
}
.contenedor .retorno {
  width: 100%;
  max-width: 1200px;
  padding: 10px 40px;
  border-top: 1px solid #f3f3f3;
  font-size: 14px;
  margin: 10px auto 0 auto;
  color: #919191;
}
.contenedor .retorno ul {
  margin-bottom: 0px;
}
.contenedor .retorno ul li {
  display: inline-block;
  padding: 0px 5px;
}
.contenedor .retorno a {
  text-decoration: none;
  color: #3b22a4;
  font-weight: bold;
}
.contenedor .titulo {
  padding-top: 15px;
  padding-bottom: 30px;
  text-transform: uppercase;
  font-size: 21px;
  text-align: center;
}

header {
  width: 100%;
  position: fixed;
  z-index: 10;
  background: #ffffff;
}
header .anuncio {
  padding: 12px;
  font-size: 16px;
  text-align: center;
  font-family: "League Spartan";
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  header .anuncio {
    font-size: 12px;
  }
}
header .menu_bar {
  z-index: 100;
  position: fixed;
  width: 50%;
  background: rgba(255, 255, 255, 0.9803921569);
  height: 100%;
  border-radius: 0px 15px 0px 0px;
  left: -50%;
}
@media screen and (max-width: 768px) {
  header .menu_bar {
    width: 95%;
    left: -100%;
  }
}
header .menu_bar .cierra_menu {
  width: 100%;
}
header .menu_bar .cierra_menu img {
  width: 100px;
  padding: 10px;
}
header .menu_bar nav {
  padding: 10px;
}
header .menu_bar nav ul li {
  margin-bottom: 10px;
  padding: 10px 20px;
}
header .menu_bar nav ul li.submenu {
  padding: 8px;
}
header .menu_bar nav ul li.submenu .alin {
  display: flex;
}
header .menu_bar nav ul li.submenu a {
  padding: 0px;
}
header .menu_bar nav ul li.submenu:hover {
  background: #aba6cb;
  color: #ffffff;
}
header .menu_bar nav ul li.submenu img {
  width: 10px;
  margin-left: 5px;
}
header .menu_bar nav ul li a {
  width: 100%;
  padding: 8px;
  padding-right: 100%;
  font-size: 14px;
  text-transform: uppercase;
}
header .menu_bar nav ul li .children {
  display: none;
  margin-top: 10px;
}
header .menu_bar nav ul li .children ul li {
  background: #ddcfe2;
  color: black;
  padding: 8px;
  margin-bottom: 3px;
}
header .menu_bar nav ul li .children ul li a:hover {
  padding: 8px;
}
header .principal {
  display: flex;
  align-items: center;
}
header .principal .menu {
  width: 100px;
  padding: 10px;
}
header .principal .personal {
  width: calc(100% - 100px);
  background: #3b22a4;
  padding: 10px;
  margin: 5px 0px 5px 5px;
  border-radius: 10px 0px 0px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .principal .personal .logo {
  width: 250px;
  padding: 0px 20px;
}
header .principal .personal .registro {
  display: flex;
  flex-direction: column;
}
header .principal .personal .registro a {
  color: #ffffff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
header .principal .personal .registro a img {
  width: 30px;
  margin-left: 10px;
}
header .principal .personal .registro .carrito {
  padding: 5px 0px;
  display: flex;
  justify-content: flex-end;
}
header .principal .personal .registro .carrito .contador {
  position: absolute;
  background: #ffffff;
  padding: 2px 4px;
  border-radius: 16px;
  font-size: 10px;
  color: #3b22a4;
  text-align: center;
}

.form_buscador {
  padding: 10px;
  width: 40%;
  max-width: 440px;
}
@media screen and (max-width: 768px) {
  .form_buscador {
    width: calc(100% - 20px);
    border: 1px solid #000000;
    border-radius: 5px;
    margin: 10px;
  }
}
.form_buscador form {
  display: flex;
}
.form_buscador form input {
  width: calc(100% - 50px);
  border: none;
  padding: 10px 12px;
  border-radius: 5px 0px 0px 5px;
}
.form_buscador form input::-moz-placeholder {
  font-style: italic;
  color: #aeaeae;
}
.form_buscador form input::placeholder {
  font-style: italic;
  color: #aeaeae;
}
.form_buscador form button {
  width: 50px;
  border-radius: 0px 5px 5px 0px;
  background-color: #ffffff;
  cursor: pointer;
  border: none;
}

.registro_mob {
  border-radius: 5px;
  background-color: #3b22a4;
  font-size: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .registro_mob {
    margin: 10px;
    padding: 10px;
  }
}
.registro_mob img {
  width: 30px;
}
.registro_mob a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.banners {
  width: 100%;
  margin-top: 7px;
}
.banners img {
  width: 100%;
}

.banner_prom {
  width: 100%;
  padding: 0px 5px;
}
.banner_prom img {
  width: 100%;
  padding: 0px 5px;
}

.banner_sec {
  width: 100%;
  padding: 10px 5px;
}
.banner_sec img {
  width: 100%;
  padding: 0px 5px;
}

.banner_sus {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .banner_sus {
    margin-top: 10px;
  }
}
.banner_sus img {
  width: 100%;
}

.banner_mob {
  width: 100%;
  margin-top: 7px;
}
.banner_mob img {
  width: 100%;
}

.titulo_productos {
  font-family: "League Spartan";
  text-align: center;
  padding: 20px;
  font-size: 23px;
}

.productos {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0px 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
}
.productos .vacio {
  min-height: 170px;
  text-align: center;
  padding: 30px;
  font-family: "League Spartan";
  font-size: 20px;
}
.productos .producto {
  width: 24%;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .productos .producto {
    width: 90%;
  }
}
.productos .producto .imagen {
  width: 100%;
}
.productos .producto .imagen img {
  width: 100%;
  height: auto;
}
.productos .producto .nombre {
  padding: 5px;
  text-align: center;
  font-size: 15px;
}
.productos .producto .precio {
  text-align: center;
  font-family: "League Spartan";
  display: flex;
  justify-content: center;
  align-items: center;
}
.productos .producto .precio .normal {
  margin-right: 5px;
}
.productos .producto .precio .oferta {
  color: #9c0505;
  font-size: 11px;
  text-decoration: line-through;
  margin-left: 5px;
}
.productos .producto .precio .onsale {
  position: absolute;
  top: 22px;
  left: 23px;
  color: #ffffff;
  background: #3b22a4;
  padding: 10px 5px 7px;
  border-radius: 13px;
  font-size: 12px;
}

.sesion {
  max-width: 1100px;
  margin: 20px auto;
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 60px;
}
.sesion .soycliente {
  width: 50%;
  border-right: 1px solid #d3d3d3;
}
.sesion .nuevocliente {
  width: 50%;
}
.sesion .titulo_form {
  font-size: 21px;
  margin: 10px 0px 0px 0px;
  padding: 0px 0px 5px 0px;
  font-weight: bold;
}
.sesion .mensaje {
  text-align: center;
  font-size: 15px;
  padding: 0px 0px 11px 0px;
  line-height: 14px;
}
.sesion .registro {
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  min-height: 350px;
}
.sesion .registro a {
  color: #9d1c28;
  text-decoration: none;
}
.sesion .registro input {
  padding-top: 6px;
  padding-right: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  font-size: 14px;
  border: 1px solid #3e3e3e;
  width: 100%;
}
.sesion .registro input[type=submit] {
  background-color: #2c2c2c;
  border: 0 none;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  height: 38px;
  text-transform: uppercase;
  width: 100%;
  border-radius: 5px;
}
.sesion .registro .datos {
  margin-top: 10px;
  margin-bottom: 10px;
}
.sesion .medio {
  width: 50%;
}
.sesion .registrarse {
  text-align: center;
  padding: 30px;
}
.sesion .registrarse a {
  color: #3f3f3f;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
}
.sesion .registrarse a:hover {
  text-decoration: underline;
}
.sesion .titulo {
  text-align: center;
  font-size: 20px;
  margin: 15px 0px 0px 0px;
  padding: 0px 0px 10px 0;
  font-weight: bold;
}
.sesion .vacio {
  text-align: center;
  min-height: 300px;
  padding: 20px;
}
.sesion .vacio .btn_seguir {
  background-color: #000000;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto;
  border-radius: 5px;
}
.sesion .vacio .btn_seguir a {
  color: #ffffff;
  text-transform: uppercase;
}
.sesion .logueado {
  width: 100%;
  margin: auto;
  display: flex;
}
.sesion .logueado .primaria {
  width: 80%;
}
.sesion .logueado .primaria .codigo {
  text-align: center;
  padding: 20px;
}
.sesion .logueado .primaria .formulario {
  padding: 25px;
}
.sesion .logueado .primaria .formulario .dato {
  padding: 6px;
  display: flex;
}
.sesion .logueado .primaria .formulario .dato .detalle {
  width: 30%;
  text-align: right;
  padding: 2px 10px;
  font-size: 13px;
}
.sesion .logueado .primaria .formulario .dato .variable {
  width: 70%;
}
.sesion .logueado .primaria .formulario .dato .variable input[type=text] {
  padding: 0px 10px;
  width: 300px;
}
.sesion .logueado .primaria .formulario .dato .variable input[type=number] {
  padding: 0px 0px 0px 10px;
  width: 150px;
}
.sesion .logueado .primaria .formulario .dato .variable textarea {
  resize: none;
  padding: 10px;
}
.sesion .logueado .primaria .formulario input[type=submit] {
  background: #181717;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  display: block;
  line-height: 36px;
  font-size: 15px;
  height: 44px;
  margin: 10px auto;
  text-transform: uppercase;
  width: 70%;
}
.sesion .logueado .primaria .msj {
  padding: 20px 40px;
}
.sesion .logueado .primaria .msj .texto {
  text-align: center;
  padding: 27px 0 0 0;
}
.sesion .logueado .primaria .msj .retorno_btn {
  width: 134px;
  font-size: 14px;
  background: #000000;
  padding: 5px;
  text-decoration: none;
  text-align: center;
  margin: 40px auto;
  border-radius: 3px;
  text-transform: uppercase;
}
.sesion .logueado .primaria .msj .retorno_btn a {
  text-decoration: none;
  color: #ffffff;
}
.sesion .logueado .primaria .mispedidos {
  width: 100%;
  padding: 3px 10px;
}
.sesion .logueado .primaria .mispedidos .linea {
  display: inline-flex;
  padding: 0;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  vertical-align: bottom;
}
.sesion .logueado .primaria .mispedidos .codigo {
  width: 18%;
}
.sesion .logueado .primaria .mispedidos .desc {
  width: 38%;
}
.sesion .logueado .primaria .mispedidos .monto {
  width: 15%;
}
.sesion .logueado .primaria .mispedidos .fecha {
  width: 15%;
}
.sesion .logueado .primaria .mispedidos .estado {
  width: 10%;
}
.sesion .logueado .secundaria {
  width: 20%;
  background-color: #fdfdfd;
  padding: 20px 0;
  border: 1px solid #e7e7e7;
  border-radius: 7px;
}
.sesion .logueado .secundaria ul li {
  padding: 5px 20px;
  border-bottom: 1px solid #f5f5f5;
}
.sesion .logueado .secundaria ul li:hover {
  background-color: #eaeaea;
}
.sesion .logueado .secundaria ul li.select {
  background-color: #eaeaea;
}
.sesion .logueado .secundaria ul li a {
  padding: 5px;
  display: block;
  color: #181717;
  text-decoration: none;
}
.sesion .logueado .secundaria .titulo {
  text-align: center;
  font-size: 20px;
  padding: 0px 0px 15px 0px;
}
.sesion .cuadro {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .sesion .cuadro {
    flex-direction: column;
  }
}
.sesion .cuadro .prendas {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .sesion .cuadro .prendas {
    width: 100%;
  }
}
.sesion .cuadro .prendas .tachado {
  text-decoration: line-through;
  color: #ee8273;
  font-size: 10px;
}
.sesion .cuadro .prendas .cabecera_prendas {
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  color: #272727;
  font-size: 15px;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  justify-content: space-around;
}
.sesion .cuadro .prendas .cabecera_prendas .producto_detalle {
  width: 50%;
}
.sesion .cuadro .prendas .cabecera_prendas .cantidad {
  width: 30%;
  text-align: center;
}
.sesion .cuadro .prendas .cabecera_prendas .subtotal {
  width: 20%;
}
.sesion .cuadro .prendas .detalle {
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  color: #272727;
  font-size: 15px;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  justify-content: space-around;
}
.sesion .cuadro .prendas .detalle .descripcion {
  width: 50%;
  display: flex;
  align-items: center;
}
.sesion .cuadro .prendas .detalle .descripcion .imagen {
  width: auto;
}
.sesion .cuadro .prendas .detalle .descripcion .imagen img {
  width: 100%;
  height: auto;
}
.sesion .cuadro .prendas .detalle .descripcion .datos {
  width: 70%;
  padding-left: 15px;
  text-transform: none;
}
.sesion .cuadro .prendas .detalle .descripcion .datos .nombre {
  padding-bottom: 10px;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .sesion .cuadro .prendas .detalle .descripcion .datos .nombre {
    font-size: 12px;
  }
}
.sesion .cuadro .prendas .detalle .descripcion .datos .precio_uni {
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: bold;
}
.sesion .cuadro .prendas .detalle .descripcion .datos .talla {
  padding-bottom: 10px;
  font-size: 14px;
}
.sesion .cuadro .prendas .detalle .descripcion .datos .color {
  padding-bottom: 10px;
  font-size: 13px;
}
.sesion .cuadro .prendas .detalle .cantidad {
  width: 30%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.sesion .cuadro .prendas .detalle .cantidad input {
  background: #d5d5d5;
  border: 0 none;
  border-radius: 21px;
  color: #2c2c2c;
  cursor: pointer;
  width: 25px;
  height: 25px;
  padding: 4px;
  margin: 1px;
}
.sesion .cuadro .prendas .detalle .cantidad .sube_baja {
  width: auto;
}
.sesion .cuadro .prendas .detalle .cantidad .cant {
  width: 25px;
}
.sesion .cuadro .prendas .detalle .subtotal {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.sesion .cuadro .prendas .detalle .subtotal .eliminar input[type=submit] {
  background: url(../images/svg/trash.svg);
  border: 0;
  display: inline-block;
  height: 18px;
  width: 20px;
  cursor: pointer;
}
.sesion .cuadro .prendas .supera {
  width: 100%;
}
.sesion .cuadro .prendas .supera p {
  font-size: 10px;
  color: #f31a1a;
}
.sesion .cuadro .pedido_compra {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .sesion .cuadro .pedido_compra {
    width: 100%;
  }
}
.sesion .cuadro .pedido_compra #sumario {
  width: 100%;
  padding: 10px;
  text-transform: uppercase;
  color: #272727;
  font-size: 15px;
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
}
.sesion .cuadro .pedido_compra #total {
  width: 99%;
  padding: 10px;
}
.sesion .cuadro .pedido_compra #cantidad {
  font-size: 13px;
  padding: 0px 10px;
}
.sesion .cuadro .pedido_compra #check {
  margin-top: 30px;
}
.sesion .cuadro .pedido_compra #check .btn {
  font-size: 15px;
  background: #2c2c2c;
  padding: 9px;
  text-decoration: none;
  text-align: center;
  margin: 10px auto;
  text-transform: uppercase;
  width: 100%;
}
.sesion .cuadro .pedido_compra #check .btn a {
  color: #ffffff;
  text-decoration: none;
}
.sesion .cuadro .pedido_compra #check .btn2 {
  width: 100%;
  color: #ffffff;
  font-size: 18px;
  background: #cacaca;
  padding: 16px;
  text-decoration: line-through;
  text-align: center;
  margin: 40px auto;
  border-radius: 3px;
  text-transform: uppercase;
}
.sesion .cuadro .pedido_compra .oferta {
  border: 1px solid #c5c5c5;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
}
.sesion .cuadro #pedido {
  width: 30%;
  padding-left: 20px;
}

.mensaje {
  text-align: center;
  font-size: 20px;
  padding: 20px;
}

.checkout {
  width: 80%;
  margin: auto;
  padding: 20px;
  text-align: center;
}
.checkout .alerta {
  width: 100%;
  margin-bottom: 80px;
}
.checkout .alerta input {
  width: 30%;
  padding: 4px;
}
.checkout .btn {
  width: 50%;
  color: #2c2c2c;
  font-size: 18px;
  background: #2c2c2c;
  padding: 10px;
  margin: 20px auto;
  text-transform: uppercase;
  border-radius: 5px;
}
.checkout .btn a {
  color: #ffffff;
  text-decoration: none;
}
.checkout input[type=submit] {
  background: #2c2c2c;
  border: 0 none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  height: 46px;
  margin: 15px auto;
  text-transform: uppercase;
}

.orden {
  width: 40%;
  padding: 10px 20px;
}
.orden .cuadro {
  width: 100%;
}
.orden .cuadro .prendas {
  width: 100%;
}
.orden .cuadro .prendas .cabecera_prendas {
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: 18px;
  border-bottom: 1px solid #393939;
}
.orden .cuadro .prendas .detalle {
  padding: 20px;
  float: none;
  overflow: hidden;
  font-size: 15px;
}
.orden .cuadro .prendas .detalle .imagen {
  float: left;
  width: 30%;
}
.orden .cuadro .prendas .detalle .imagen img {
  width: 100%;
  height: auto;
}
.orden .cuadro .prendas .detalle .datos {
  float: left;
  width: 70%;
  padding: 10px;
}
.orden .cuadro .prendas .detalle .tachado {
  text-decoration: line-through;
  color: #989898;
  font-size: 11px;
}
.orden .cuadro .pedido_resumen .total {
  font-size: 15px;
  font-weight: bold;
}
.orden .cuadro .pedido_resumen .total_cupon {
  font-size: 19px;
  text-decoration: line-through;
  color: #ce161a;
}
.orden .cuadro .pedido_resumen .aclara {
  font-size: 12px;
  color: #1fb7e7;
  padding: 4px 0px 4px 0px;
}
.orden .cuadro .pedido_resumen .envio {
  font-size: 13px;
  color: #a0a0a0;
}

.mensaje_salida {
  padding: 10px;
  text-align: center;
}
.mensaje_salida .salida {
  margin-top: 20px;
  margin-bottom: 20px;
}
.mensaje_salida .regreso {
  margin-top: 30px;
}
.mensaje_salida .regreso a {
  background-color: #3b22a4;
  padding: 10px;
  color: #fff;
  border-radius: 10px;
}

.datos_metodo {
  width: 100%;
  padding-left: 35px;
}
.datos_metodo .datos_tarjeta_elegida {
  border: 1px solid #dbdbdb;
  margin-bottom: 10px;
  padding: 10px 30px 15px;
  border-radius: 5px;
}
.datos_metodo .linea_tarjeta {
  border: 1px solid #dbdbdb;
  margin-bottom: 10px;
  padding: 10px 30px 15px;
  border-radius: 5px;
}
.datos_metodo .linea_tarjeta .todas {
  padding: 10px;
  text-align: center;
}
.datos_metodo .linea_tarjeta .tarjetas ul {
  display: flex;
  justify-content: center;
}

footer {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  footer {
    margin-top: 10px;
  }
}
footer .redes {
  background: #fbfbfb;
  display: flex;
  padding: 20px;
  justify-content: center;
}
footer .redes img {
  width: 33px;
  margin: 0px 4px;
}
footer .secciones_foot {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 10px;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  footer .secciones_foot {
    flex-direction: column;
  }
}
footer .secciones_foot .seccion_foot {
  width: 25%;
}
@media screen and (max-width: 768px) {
  footer .secciones_foot .seccion_foot {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
footer .secciones_foot .seccion_foot .titulo {
  font-family: "League Spartan";
  text-transform: uppercase;
  font-size: 15px;
  padding: 10px 0;
}
footer .secciones_foot .seccion_foot .lista ul li {
  padding: 5px;
}
footer .secciones_foot .seccion_foot .tarjetas {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
footer .secciones_foot .seccion_foot .tarjetas .tarjeta {
  width: 25%;
  padding: 8px;
}
footer .secciones_foot .seccion_foot .tarjetas .tarjeta img {
  width: 100%;
}
footer .secciones_foot .seccion_foot .logo {
  text-align: center;
  padding: 20px;
}
footer .secciones_foot .seccion_foot .logo img {
  width: 100%;
  max-width: 170px;
}
footer .marck {
  background: #3b22a4;
  padding: 5px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 11px;
}/*# sourceMappingURL=styles.css.map */