.menu-button {
  background-color: #db0000;
  position: relative;
  width: 37px;
  height: 25px;
  cursor: pointer;
}
.cd-primary-nav-trigger {
  height: 100%;
  width: 37px;
}
.cd-primary-nav-trigger .cd-menu-icon {
  display: inline-block;
  position: absolute;
  top: calc(50% - 1.3px);
  bottom: auto;
  right: 0px;
  width: 100%;
  height: 4px;
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cd-primary-nav-trigger .cd-menu-icon::before {
  top: -13px;
}
.cd-primary-nav-trigger .cd-menu-icon::after {
  top: 13px;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
  background-color: rgba(255,255,255,0);
  z-index: 9999;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: top 0.2s, -webkit-transform 0.3s ease 0.3s;
  transition: top 0.2s, -webkit-transform 0.3s ease 0.3s;
  transition: top 0.2s, transform 0.3s ease 0.3s;
  transition: top 0.2s, transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  top: 0;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition: top 0.2s, -webkit-transform 0.3s ease 0.3s;
  transition: top 0.2s, -webkit-transform 0.3s ease 0.3s;
  transition: top 0.2s, transform 0.3s ease 0.3s;
  transition: top 0.2s, transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
}
.cd-primary-nav-trigger .cd-menu-icon.not-clicked {
  z-index: 1000;
}
.cd-primary-nav-trigger .cd-menu-icon.not-clicked::before {
  top: -11px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: top 0.2s ease 0.3s, -webkit-transform 0.3s;
  transition: top 0.2s ease 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.2s ease 0.3s;
  transition: transform 0.3s, top 0.2s ease 0.3s, -webkit-transform 0.3s;
}
.cd-primary-nav-trigger .cd-menu-icon.not-clicked::after {
  top: 11px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: top 0.2s ease 0.3s, -webkit-transform 0.3s;
  transition: top 0.2s ease 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.2s ease 0.3s;
  transition: transform 0.3s, top 0.2s ease 0.3s, -webkit-transform 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .cd-primary-nav-trigger .cd-menu-icon {
    width: 100%;
    height: 4px;
  }
}
@media only screen and (max-width: 768px) {
  .cd-primary-nav-trigger .cd-menu-icon {
    width: 100%;
    height: 3px;
  }
}
.cd-primary-nav-trigger .cd-menu-icon::before,
.cd-primary-nav-trigger .cd-menu-icon:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .cd-primary-nav-trigger .cd-menu-icon::before {
    top: -13px;
  }
}
@media only screen and (max-width: 768px) {
  .cd-primary-nav-trigger .cd-menu-icon::after {
    top: 13px;
  }
}
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before,
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .cd-primary-nav-trigger .cd-menu-icon.not-clicked::before {
    top: -10px;
  }
}
@media only screen and (max-width: 768px) {
  .cd-primary-nav-trigger .cd-menu-icon.not-clicked::after {
    top: 10px;
  }
}
body {
  background-color: #000;
  color: #fff;
}
.banner {
  margin: auto;
  max-width: 1100px;
}
.top-line {
  background-color: #db0000;
  height: 6px;
  z-index: 400;
}
.header {
  margin: auto;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 400;
}
.header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.header-nav ul li {
  margin: 0px;
  padding: 0px;
}
.header-nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0px 15px;
  background-image: url("../img/separator.svg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.header-nav ul li a:hover {
  color: #f00;
  text-decoration: none;
}
.header-nav ul li:first-child a {
  padding-left: 0px;
}
.header-nav ul li:last-child a {
  padding-right: 0px;
  background-image: none;
}
.header-red-box {
  background-color: #db0000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px;
}
.header-phone a {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-phone a img {
  margin-right: 5px;
}
.header-phone a:hover {
  color: #fff;
  text-decoration: none;
}
.header-menu-btn {
  margin-left: 20px;
}
.menu-button {
  margin-left: 20px;
}
#siteNavigation {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 200;
  width: 100vw;
  background-color: #000;
  margin-top: 93px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
#siteNavigation.nav-hidden {
  height: 0vh;
}
#siteNavigation.nav-show {
  height: calc(100vh - 93px);
}
.navigation-container {
  max-width: 1100px;
  margin: auto;
  padding-top: 30px;
}
.navigation-container ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.navigation-container ul li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.navigation-container ul li a {
  color: #fff;
  text-align: center;
  display: block;
}
.navigation-container ul li a:hover {
  color: #db0000;
  text-decoration: none;
}
.destacados {
  max-width: 1100px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-image: url("../img/fnd_destacados.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.destacado {
  display: block;
  margin: 0px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.destacado:hover {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}
.rightBorder {
  display: none !important;
}
footer {
  background-color: #342f2b;
  max-width: 1100px;
  margin: auto;
  padding: 0px 30px;
  padding-top: 30px;
  padding-bottom: 5px;
}
.footer-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.footer-col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
.logo-footer {
  margin-bottom: 30px;
}
.redes-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.redes-footer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 3px;
}
.footer-col-2 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.footer-sub-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-family: 'Poppins', sans-serif;
}
.footer-col h2 {
  color: #ffeccb;
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.footer-col ul li {
  margin-bottom: 0.3em;
}
.footer-col ul li a {
  color: #ffeccb;
  font-size: 14px;
  font-weight: 400;
}
.slogan-1 {
  width: 200px;
  height: auto;
}
.slogan-2 {
  width: 90px;
  height: auto;
}
.slogan-3 {
  width: 70px;
  height: auto;
}
.footer-sub-col-2 .seccionFidepuntos iframe {
  width: 100%;
  height: 350px;
}
.footer-sub-col {
  padding: 0px 0px;
  border-right: 1px solid #ffeccb;
  padding-right: 14px;
  margin-right: 14px;
}
.widget-1 {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}
.widget-2 {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
  margin-bottom: 8px;
}
.widget-3 {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}
#CDSSCROLLINGRAVE.narrow {
  width: 200px !important;
}
#CDSWIDEXC {
  font: normal 11px Trip Sans VF, Trip Sans, Arial, sans-serif;
  color: #000;
  background-color: #fff;
  overflow: hidden;
  width: 199px !important;
  margin: 0px !important;
  padding: 0 0 9px;
  text-align: center;
  border: solid #34e0a1;
  border-width: 1px;
  position: relative;
}
.footer-col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}
.footer-col-3 p {
  text-align: center;
  line-height: 1.2em;
  color: #ffeccb;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.footer-slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-tels {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding-top: 10px;
}
.footer-tels img {
  margin-right: 4px;
}
.footer-tels a {
  margin-right: 4px;
  color: #fff;
}
.footer-tels span {
  margin-right: 4px;
}
.slogan-2 {
  margin: 10px 0px;
}
.derechos {
  background-color: #db0000;
  font-size: 14px;
  padding: 5px 0px;
}
.derechos-container {
  max-width: 1100px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Poppins', sans-serif;
}
.derechos-container strong {
  font-weight: 700;
}
.derechos-container a {
  font-weight: 700;
  color: #fff;
}
.derechos-container a:hover {
  color: #fff;
  text-decoration: none;
}
.section-video {
  max-width: 1100px;
  background-color: #464646;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0px;
}
.section-video-container {
  width: 560px;
  height: 315px;
}
.section-submenu {
  max-width: 1100px;
  background-color: #db0000;
  margin: auto;
}
.section-submenu ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.section-submenu ul a {
  color: #fff;
  padding: 0px 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.section-submenu ul a:hover {
  text-decoration: none;
}
.section-submenu ul a.active {
  color: #000;
}
.section-content {
  max-width: 1100px;
  margin: auto;
  color: #000;
  background-color: #fff;
  padding: 40px 0px;
}
.section-content article {
  max-width: 900px;
  margin: auto;
  min-height: 244px;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
}
.section-content article h1 {
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 35px;
  margin-bottom: 0.6em;
}
.section-content article p {
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
}
.section-content article p a {
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.section-content article ol li {
  margin-bottom: 1em;
}
.section-content article .opciones-envio-hv {
  text-align: center;
  margin-top: 40px;
}
.section-content article .opciones-envio-hv p {
  color: #666;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.section-content article .opciones-envio-hv p a {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #db0000;
}
.section-content article .opciones-envio-hv p a:hover {
  text-decoration: none;
}
.section-pilares-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-pilares-btn a {
  background-color: #db0000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 1px 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.section-pilares-btn a:hover {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
  text-decoration: none;
}
.section-submenu-franja {
  min-height: 30px;
}
.section-banner {
  max-width: 1100px;
  margin: auto;
}
.section-banner img {
  width: 100%;
  height: auto;
}
.form-trabaja-con-nosotros {
  width: 617px;
  margin: auto;
}
.form-trabaja-con-nosotros {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #a0a0a0;
}
.form-trabaja-con-nosotros label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #a0a0a0;
}
.form-trabaja-con-nosotros .btn-primary {
  background-color: #db0000;
  border-color: #db0000;
  border-radius: 0px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  padding: 2px 15px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.form-trabaja-con-nosotros .btn-primary:hover {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}
#facebook {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.franquicia-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 40px auto;
  padding-left: 50px;
  margin-bottom: 1.1em;
}
.franquicia-title h1 {
  padding: 0px;
  margin: 0px !important;
}
.franquicia-title-target {
  background-image: url("../img/target.svg");
}
.franquicia-title-mejor-opcion {
  background-image: url("../img/mejor.svg");
}
.contacto-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 95%;
  margin: auto;
}
.contacto-col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contacto-col-1 {
  width: 30%;
}
.contacto-col-2 {
  width: 19%;
  margin: 0px 30px;
}
.contacto-col-2 >h2 {
  color: #db0000;
  font-size: 22px;
  line-height: 1em;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1em;
}
.contacto-col-2 .sucursal {
  border-bottom: 1px solid #b8b8b8;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.contacto-col-2 .sucursal h2 {
  color: #000;
  font-size: 18px;
  line-height: 1em;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0px;
  padding: 0px;
  margin-bottom: 0.3em;
}
.contacto-col-2 .sucursal p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
}
.contacto-col-3 {
  width: 30%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.contacto-col-1 .form-group {
  margin-bottom: 0.5rem;
}
.contacto-col-1 .form-group label {
  color: #a0a0a0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}
.form-contact-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-contact-button .btn-primary {
  background-color: #db0000;
  border-color: #db0000;
  color: #fff;
  border-radius: 0px;
  padding: 0px;
  margin: 0px;
  line-height: 1em;
  padding: 3px 10px;
  padding-bottom: 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}
#map-canvas {
  width: 100%;
  height: 100%;
}
.contenedor-tienda {
  background-color: #fff;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  color: #000;
}
.columnas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columna {
  min-height: 500px;
}
.columna-centro {
  width: 300px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0px 30px;
  padding-top: 20px;
}
.paso {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  padding-top: 30px;
}
.pasoNumero {
  position: relative;
  margin-right: 10px;
}
.opciones {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.pasoContenido {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.opcion {
  background-image: url("../img/separador_tipo_pedido.svg");
  background-repeat: no-repeat;
  background-position: right center;
}
.opcion:last-of-type {
  background-image: none;
}
.opcion.sedes {
  cursor: pointer;
}
.pasoTitulo {
  font-family: 'Unkempt', cursive;
  font-size: 30px;
  width: 200px;
  text-align: center;
  line-height: 0.9em;
  margin-right: 10px;
}
.opcion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.opcion img {
  height: 50px;
  width: auto;
}
.opcion span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1em;
  margin-top: 0.5em;
}
.pasoContenido1 .opciones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pasoContenido1 .opciones .opcion {
  padding: 0px 40px;
  cursor: pointer;
}
.pasoContenido1 .opciones .opcion span {
  text-align: center;
  text-transform: uppercase;
}
.pasoContenido1 .opciones .opcion span.active {
  color: #db0000;
}
.pasoContenido2 .opciones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pasoContenido2 .opciones .opcion {
  padding: 0px 40px;
  cursor: pointer;
}
.pasoContenido2 .opciones .opcion span {
  text-align: center;
  text-transform: uppercase;
}
.pasoContenido2 .opciones .opcion span.active {
  color: #db0000;
}
.pasoNumero {
  width: 46px;
}
.paso-3 {
  border-bottom: none;
}
.categoria-seleccionada {
  background-color: #000;
  padding: 5px 10px;
  margin: 0px;
}
.categoria-seleccionada h2 {
  color: #fff;
  padding: 0px;
  margin: 0px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
}
#productos {
  padding-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-bottom: 30px;
}
.hamburguesaListado .producto h2 {
  background-color: #5a2911;
  font-size: 16px;
  padding: 0px;
  margin: 0px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hamburguesaListado .producto .foto {
  margin-bottom: 5px;
  width: 100%;
  height: 170px;
}
.hamburguesaListado .producto .foto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detallesPresentacionTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.producto-unidad-precio h2 {
  font-size: 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #000;
}
.producto-unidad-descripcion {
  height: 45px;
}
.producto-unidad-descripcion p {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 12px;
}
.btn-add-unidad {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.opciones-categorias {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.opciones-categorias select {
  background-color: #db0000;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  text-align: center;
  border-color: #db0000;
  text-transform: uppercase;
}
.opciones-categorias select:active {
  border-color: #db0000;
}
.opciones-categorias select:focus {
  border-color: #db0000;
}
.separador-unidad {
  background-color: #000;
  height: 2px;
  width: 100%;
  margin: 5px 0px;
}
.producto-unidad-descripcion-combo {
  margin: 0px;
  height: auto;
  margin-bottom: 5px;
}
.columna-derecha {
  width: 311px;
  background-color: #ececec;
  padding: 28px 0px;
}
.fanCanWest p {
  text-align: center;
  font-family: 'Unkempt';
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 0.9em;
  text-align: center;
  color: #000;
}
.fanCanWest img {
  display: block;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 10px;
}
.headerDerecho {
  display: block;
  margin: 14px 0px;
}
.headerDerecho .sesion {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: rgba(0,0,0,0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerDerecho .sesion a {
  display: block;
  padding: 0px 5px;
  border-right: 2px solid #000;
  color: rgba(0,0,0,0.8);
}
.headerDerecho .sesion a:last-of-type {
  border-right: none;
}
.headerDerecho .sesion a:hover {
  color: #db0000;
}
.items-contenedor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.items {
  position: relative;
  margin-bottom: 10px;
}
.itemsCantidad {
  width: 40px;
  height: 40px;
  background-color: #db0000;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0px;
  right: -18px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
}
.detallesDeLaOrden {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detallesDeLaOrdenContenerdo {
  background-color: #db0000;
  color: #fff;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  padding: 10px 20px;
}
#PedidoEstatico {
  padding: 0px 20px;
  margin-top: 20px;
}
.indicaciones {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  min-height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0px;
}
.pedido {
  margin-top: 10px;
}
.pedido h3 {
  text-align: center;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: rgba(0,0,0,0.8);
}
.sideFan {
  margin-top: 5px;
  text-align: center;
}
.sideFan a {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: rgba(0,0,0,0.8);
}
.sideFan a:hover {
  text-decoration: none;
}
.accionFan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
.accionFan input {
  margin-right: 10px;
}
.accionFan span {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #000;
}
.sideFormaPago {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sideFormaPago h2 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: rgba(0,0,0,0.8);
  margin-bottom: 10px;
}
.sideFormaPago span {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #000;
}
.forma-de-pago-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.forma-de-pago-option input {
  margin-right: 8px;
}
.formCupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0px;
}
.formCupon input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 5px;
  border: 1px solid #b8b8b8;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 30px;
}
.formCupon input::-webkit-input-placeholder {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #a0a0a0;
}
.formCupon input::-moz-placeholder {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #a0a0a0;
}
.formCupon input:-ms-input-placeholder {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #a0a0a0;
}
.formCupon input::-ms-input-placeholder {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #a0a0a0;
}
.formCupon input::placeholder {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #a0a0a0;
}
.formCupon input:focus {
  outline: none;
}
.formCupon button {
  border: 1px solid #db0000;
  background-color: #db0000;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  color: #fff;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
}
.btnPagar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btnPagar {
  margin-top: 10px;
  color: #fff;
  background-color: #db0000;
  border: none;
  text-transform: uppercase;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  padding: 8px 30px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btnPagar:hover {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
  outline-color: transparent;
}
.modal {
  color: #000;
}
.modal .modal-header {
  background-color: #000;
}
.modal-header-variaciones {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.modal-header-variaciones .close {
  opacity: 1 !important;
}
.modal-header-variaciones .close span {
  color: #fff !important;
  text-shadow: none;
}
.modal-header-variaciones .close span:hover {
  color: #fff !important;
}
.modal-header-logo img {
  height: 50px;
  width: 100%;
}
.modal-header-slogan {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-header-slogan h2 {
  font-family: 'Poppins';
  font-size: 30px;
  color: #ffeccb;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  font-weight: 700;
}
.modal-header-slogan img {
  height: 30px;
  width: 100%;
}
.variaciones h2 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 38px;
  color: #000;
}
.variaciones .modal-footer {
  padding: 0rem;
  padding-top: 1.3rem;
}
.variaciones .modal-footer .btn-primary {
  background-color: #db0000;
  border-color: #db0000;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.variaciones .modal-footer .btn-primary:hover {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
  outline-color: transparent;
}
.variacion {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000;
}
.variacion:last-of-type {
  margin-bottom: 20px;
}
.variacion input[type='checkbox'] {
  width: 1em;
  height: 1em;
  background-color: #fff;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid #ddd;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
.variacion input[type='checkbox']:checked {
  background-color: #db0000;
}
.textoOrden {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 1em;
}
.pedidoNombre {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 1em;
  margin-bottom: 0.3em;
}
.contenidoPedidoEstatico .hamburguesa .precio {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
}
.remove-btn {
  width: 20px;
}
.remove-btn img {
  width: 100%;
  height: auto;
}
.pedidoEditar {
  width: 20px;
}
.pedidoEditar img {
  width: 100%;
  height: auto;
}
.contenedor-registrate {
  background-color: #fff;
  color: #000;
  margin: auto;
  max-width: 1100px;
  min-height: 526px;
}
.columnasRegistro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
}
.columnaRegistro {
  padding: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 350px;
  background-color: #fafafa;
}
.columnaRegistro h4 {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  margin: 0px;
  padding: 0px;
}
.columnaRegistro label {
  display: block;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  margin: 0px;
  padding: 0px;
}
.columnaRegistro input[type=text],
.columnaRegistro input[type=password],
.columnaRegistro select,
.columnaRegistro input[type=date] {
  width: 100%;
  height: 30px;
  margin: 0px;
  padding: 0px;
  margin-bottom: 5px;
}
.columnaRegistro .dosCols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.columnaRegistro .dosCols >div {
  width: 49%;
}
.columnaRegistro .cuatroCols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columnaRegistro .cuatroCols select {
  margin-right: 3px;
}
.columnaRegistro .cuatroCols #dir1 {
  margin-right: 3px;
  width: 90px;
  text-align: center;
}
.columnaRegistro .cuatroCols #dir2 {
  margin-right: 3px;
  margin-left: 3px;
  width: 90px;
  text-align: center;
}
.columnaRegistro .cuatroCols #dir3 {
  margin-left: 3px;
  width: 90px;
  text-align: center;
}
.columnaRegistro input[type='checkbox'] {
  margin-right: 5px;
}
.columnaRegistro a {
  color: #db0000;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
}
.columnaRegistro a:hover {
  text-decoration: none;
}
.registrar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}
.registrar button {
  color: #fff;
  background-color: #db0000;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.registrar button:hover {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}
.cuatro-cols-ubicacion {
  width: 100%;
}
.modal-body {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1em;
  color: #000;
}
.modal-body label {
  font-size: 20px;
  font-weight: 700;
}
.modal-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.6em;
  margin-top: 0.6em;
  color: #5a5a5a;
}
.modal-body p {
  font-size: 16px;
  margin-bottom: 0.3em;
}
.modal-body p a {
  color: #db0000;
}
.modal-body .btn-primary {
  background-color: #db0000;
  border-color: #db0000;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-bottom: 20px;
}
.modal-body .btn-primary:hover {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}
.modal-content-center {
  text-align: center;
}
.direccionEntrega {
  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 10px;
  padding-top: 10px;
}
.direccionEntrega h2 {
  font-weight: 400;
  font-size: 13px;
  text-align: left;
}
.btnCambiarDireccion {
  font-size: 13px;
}
.loader {
  position: fixed;
  background-color: rgba(219,0,0,0.8);
  top: 0px;
  width: 100vw;
  height: 100vh;
  left: 0px;
  z-index: 999999999;
  display: none;
}
.loader-container {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.loader-animation img {
  width: 250px;
  height: auto;
  position: relative;
  -webkit-animation: balanceo 2s ease-in-out infinite;
          animation: balanceo 2s ease-in-out infinite;
}
.header-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-cart img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.header-cart:hover img {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
}
.header-cart a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}
.header-cart a:hover {
  color: #fff;
}
.precio-original {
  display: block;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.carrito-con-productos {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color: #28d885;
  z-index: 999999999;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
          box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
  cursor: pointer;
  display: block;
}
.carrito-con-productos-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px;
}
.carrito-con-productos-content img {
  width: 80%;
  height: auto;
}
.carrito-con-productos-content span {
  color: #fff;
  font-weight: 700;
  text-align: center;
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 11px;
  background-color: #f00;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1em;
}
.carousel-item img {
  width: 100%;
  height: auto;
}
.agregarDireccion:hover {
  text-shadow: none !important;
}
.direction-separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
}
.tituloPerfil {
  padding: 10px;
  margin: 0px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
}
.direccion-perfil {
  -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
          box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
  margin-bottom: 5px;
  padding: 10px;
  position: relative;
}
.direccion-perfil p {
  margin: 0px;
  padding: 0px;
}
.direccion-perfil .opcionDireccionBorrar {
  color: #db0000;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.agregarDireccion {
  color: #db0000;
  cursor: pointer;
}
.form-control {
  padding: 5px !important;
}
@-webkit-keyframes balanceo {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes balanceo {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media (max-width: 1100px) {
  .banner {
    max-width: 95%;
  }
  .banner img {
    max-width: 100%;
    height: auto;
  }
  .header {
    max-width: 95%;
  }
  .header-nav {
    display: none;
  }
  .destacados {
    max-width: 95%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .destacado {
    margin-bottom: 10px;
  }
  .destacado:last-of-type {
    margin-bottom: 0px;
  }
  footer {
    max-width: 95%;
  }
  .derechos-container {
    max-width: 95%;
  }
  .section-content {
    max-width: 95%;
  }
  .section-banner {
    max-width: 95%;
  }
  .section-banner img {
    width: 100%;
    height: auto;
  }
  .contenedor-tienda {
    max-width: 95%;
  }
  .paso {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pasoHeader {
    width: 100%;
  }
  .pasoTitulo {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (max-width: 1024px) {
  .columnasRegistro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 800px) {
  .footer-cols {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-col-1 {
    margin: 0px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-bottom: 30px;
  }
  .footer-sub-col-3 {
    border-right: none;
  }
  .footer-col-3 {
    margin: 0px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .section-content article {
    max-width: 95%;
  }
  .contenedor-tienda .columnas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contenedor-tienda .columnas .columna-centro {
    width: 100%;
  }
  .contenedor-tienda .columnas .columna-derecha {
    width: 100%;
    padding-bottom: 60px;
  }
}
@media (max-width: 700px) {
  #productos {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .navigation-container {
    padding-top: 90px;
  }
  .footer-sub-cols {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer-sub-col {
    width: 100%;
    border: none;
    padding-bottom: 20px;
  }
  .footer-sub-col-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-tels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-tels span {
    display: none;
  }
  .footer-tels a {
    margin-bottom: 20px;
  }
  .footer-tels a:last-of-type {
    margin-bottom: 0px;
  }
  .footer-tels img {
    margin-bottom: 20px;
  }
  #facebook {
    width: 100%;
    overflow-x: hidden;
  }
  .section-submenu ul li a {
    padding: 0px 0px;
    padding-right: 20px;
  }
  .section-submenu ul li:last-of-type a {
    padding-right: 0px;
  }
  .contacto-cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contacto-cols .contacto-col-1 {
    width: 100%;
  }
  .contacto-cols .contacto-col-2 {
    width: 100%;
  }
  .contacto-cols .contacto-col-3 {
    width: 100%;
    height: 300px;
  }
  .pasoHeader {
    margin-bottom: 20px;
  }
  .pasoContenido1 .opciones {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pasoContenido1 .opciones .opcion {
    padding: 0px 0px;
    background-image: none;
  }
  .pasoContenido1 .opciones .opcion img {
    height: 50px;
  }
  .pasoContenido1 .opciones .opcion span {
    font-size: 14px;
  }
  .pasoContenido2 .opciones {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pasoContenido2 .opciones .opcion {
    padding: 0px 0px;
    background-image: none;
    width: 95px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .pasoContenido2 .opciones .opcion img {
    height: 45px;
  }
  .pasoContenido2 .opciones .opcion span {
    font-size: 14px;
  }
  .paso-3 .opciones-categorias select {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .categoria-seleccionada h2 {
    text-align: center;
    font-size: 18px;
  }
  .hamburguesaListado .producto .foto {
    height: 110px;
  }
  .hamburguesaListado .producto h2 {
    font-size: 12px;
    height: auto;
    min-height: 50px;
  }
  .producto-unidad-precio h2 {
    font-size: 12px;
  }
  .producto-unidad-descripcion p {
    font-size: 10px;
  }
  .producto-unidad-descripcion {
    height: 48px;
  }
  .producto-unidad-descripcion-combo {
    height: 30px;
  }
  .modal-header-slogan h2 {
    font-size: 20px;
  }
}
/*# sourceMappingURL=LayoutStyle.css.map */