body {
  background: white;
}
.offers-container {
  width: 100%;
  overflow: hidden;
}

.offers-container .top-container {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  height: 50vh;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  padding: 20px;
}
.bar {
  width: 100%;
  height: 10vh;
  background: #92261c;
  font-size: 24px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: white;
  align-items: center;
  justify-content: center;
  display: flex;
}
.offers-container .top-container .top-background {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(146, 38, 28, 0.6)), to(rgba(146, 38, 28, 0.6))), url("../Assets/super-via2.jpg");
  background: linear-gradient(0deg, rgba(146, 38, 28, 0.6), rgba(146, 38, 28, 0.6)), url("../Assets/super-via2.jpg");
  background-size: cover;
  background-position: center;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  z-index: -1;
}

.offers-container .top-container .offers-title {
  text-transform: uppercase;
  color: #fff;
  font-size: 4rem;
  text-align: center;
}

.offers-container .top-container .start-end-offer-week {
  text-transform: uppercase;
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 0.015em;
  text-align: center;
}

.offers-container .no-offer-msg {
  text-align: center;
  margin: 20px;
  font-size: 1.8rem;
  color: #ff3928;
}

.offers-container .note {
  color: #ff3928;
  margin: 2px;
  font-size: 12px;
}

.offers-container .offers {
  width: 100%;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.offers-container .offers .offer {
  width: 320px;
  height: 100%;
  min-height: 450px;
  max-height: 450px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  padding: 10px;
  background-color: #fff;
}

.offers-container .offers .offer:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (max-width: 766px) {
  .categoria {
  display: flex !important;
}
}
#categorias li a {
  text-decoration: none;
  color: #92261c;
}
.back-up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 4rem;
  color: #92261c;
  border: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
  background-color: transparent;
  cursor: pointer;
}

.back-up.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
/*# sourceMappingURL=offers.css.map */