@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Oswald:wght@400;600&display=swap%27";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: auto;
  outline: none;
}
@media screen and (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}
body {
  min-height: 100vh;
  padding-bottom: 56px;
  position: relative;
  background-color: #14122b;
  display: grid;
}
@media screen and (min-width: 768px) {
  body {
    grid-template-columns: 50px 33% minmax(0, 1fr) 50px;
    grid-template-rows: auto 128px 402px 60px auto;
    grid-gap: 16px 12px;
    align-content: center;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  body {
    grid-template-columns: 50px 450px minmax(0, 1fr) 50px;
  }
  body.one-offer {
    grid-template-columns: 1fr 450px 364px 1fr;
  }
  body.two-offers {
    grid-template-columns: 1fr 450px 656px 1fr;
  }
}
@media screen and (max-width: 767px) {
  body {
    grid-template-columns: 16px minmax(0, 1fr) 16px;
  }
}
.section {
  grid-column-start: 2;
  align-self: center;
  width: 100%;
  height: fit-content;
}
.section.footer-sponsor {
  grid-row: 5;
  grid-column-end: span 2;
  align-self: end;
}
@media screen and (min-width: 768px) {
  .section.section-header {
    grid-row: 2;
    align-self: start;
    flex-flow: column;
    align-items: flex-start;
    height: auto;
  }
  .section.section-body {
    grid-row: 3;
    grid-row-end: span 1;
    align-self: flex-start;
  }
  .section.cart-header {
    width: 100%;
    max-height: 550px;
    min-height: 410px;
    padding: 0px 20px;
    grid-column: 3;
    grid-row: 2;
    grid-row-end: span 2;
    align-self: end;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .section.cart-body {
    padding: 0px 20px;
    justify-self: start;
    grid-column: 3;
    grid-row: 2;
    grid-row-end: span 2;
    align-self: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .section.cart-body {
    margin: 24px 0 14px;
  }
}
.section-header {
  height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.icon::before {
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 3px;
}
.welcome-text {
  display: block;
  font-family: Montserrat;
  font-size: 14px;
  color: #fff;
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .welcome-text {
    font-size: 20px;
    margin-top: -22px;
  }
}
.welcome-logo {
  width: 62px;
}
@media screen and (min-width: 768px) {
  .welcome-logo {
    width: 125px;
  }
}
.card {
  margin-top: 24px;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(173, 182, 212, 0.45);
  background-color: #fff;
  padding: 16px 8px 8px;
  position: relative;
  overflow: visible;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .card.info {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .card.info {
    width: 100%;
    display: block;
  }
}
.card .share-container {
  background-color: #91cc4e;
  position: absolute;
  top: 0;
  right: 22px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  text-align: center;
  padding: 8px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .card .share-container {
    width: 42px;
    height: 42px;
    padding: 9px;
  }
}
.card .share-container:hover {
  background-color: #c9e077;
}
.card .share-container:active {
  background-color: #93ca3d;
}
.card .share-container .icon {
  width: 20px;
}
@media screen and (min-width: 768px) {
  .card .share-container .icon {
    width: 22px;
  }
}
.card .logo-container {
  top: 0;
  right: 10px;
  transform: translateY(0%);
  width: 100%;
  max-width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent;
  border-color: #636363;
}
.card .logo-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .card .logo-container {
    width: 104px;
    height: 104px;
    max-width: 104px;

  }
}
.card .venue-name {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  color: #14122b;
  padding-right: 88px;
}
@media screen and (min-width: 768px) {
  .card .venue-name {
    margin: 10px 10px;
    font-size: 28px;
    font-weight: bold;
    padding-right: 128px;
  }
}
.card .offer-title {
  margin: 8px 0;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 600;
  color: #302f2f;
}
@media screen and (min-width: 768px) {
  .card .offer-title {
    margin: 16px 0 8px;
    font-size: 22px;
  }
}
.card .venue-desc {
  display: block;
  margin-top: 10px;
  font-family: Muli;
  font-size: 12px;
  color: #14122b;
}
@media screen and (min-width: 768px) {
  .card .venue-desc {
    margin: 8px auto 16px 10px;
    width: 100%;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-height: 1024px) {
  .card .venue-desc {
    width: 100%;
  }
}
.card .offer-desc {
  font-family: Muli;
  font-size: 12px;
  font-weight: 600;
  color: #302f2f;
  margin-bottom: 6px;
  min-height: 40px;
}
@media screen and (min-width: 768px) {
  .card .offer-desc {
    min-height: 54px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
  }
}
.card .address {
  display: block;
  margin: 16px 0px;
}
.card .address span {
  font-family: Muli;
  font-size: 14px;
  font-weight: bold;
  color: #14122b;
}
.card .address a {
  text-decoration: none;
}
.card .address .ico {
  width: 18px;
  margin-right: 8px;
}
@media screen and (min-width: 768px) {
  .card .address {
    margin: 16px 10px 30px;
    padding: 0px;
    height: 20px;
  }
  .card .address a {
    display: flex;
    align-items: center;
  }
  .card .address span {
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.card .address:hover span {
  color: #c9e077;
}
.card .address:active span {
  color: #93ca3d;
}
.card .data-venue {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .card .data-venue {
    margin: 0 auto 32px 10px;
  }
}
.card .data-venue .detailed-info {
  display: block;
  margin-top: 8px;
  margin-right: 16px;
}
.card .data-venue .detailed-info span {
  font-family: Mulish;
  font-size: 16px;
  color: #14122b;
}
.card .data-venue .detailed-info a {
  text-decoration: none;
  display: flex;
  align-items: center;  
}
.card .data-venue .detailed-info .ico {
  width: 24px;
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  .card .data-venue .detailed-info  {
    margin-right: 32px;
    padding: 0px;
    height: 20px;
  }
  .card .data-venue .detailed-info span {
    font-size: 18px;
    font-weight: normal;
  }
  .card .data-venue .detailed-info a {
    text-decoration: none;
  }
}
.card .data-venue .detailed-info:hover span {
  color: #c9e077;
}
.card .data-venue .detailed-info:active span {
  color: #93ca3d;
}
.card .shop {
  display: flex;
  justify-content: space-between;
  margin: 16px 4px 4px;
}
.card .shop .add {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 14px;
  background-color: #e11053;
  text-align: center;
  cursor: pointer;
  align-self: center;
}
.card .shop .add.disabled {
  opacity: 0.4;
}
@media screen and (min-width: 768px) {
  .card .shop .add {
    width: 70px;
    height: 70px;
    padding: 16px;
  }
}
.card .shop .add:hover {
  background-color: #bc092d;
}
.card .shop .add:active {
  background-color: #870a32;
}
.card .shop .add .icon {
  color: #fff;
  width: 32px;
}
@media screen and (min-width: 768px) {
  .card .shop .add .icon {
    width: 36px;
  }
}
.card .shop .info {
  text-align: right;
  align-self: center;
}
.card .shop .info .amount {
  font-family: Oswald;
  font-size: 28px;
  font-weight: bold;
  color: #302f2f;
}
.card .shop .info .until {
  display: block;
  margin-top: 6px;
  font-family: Muli;
  font-size: 12px;
  color: #302f2f;
}
.card .shop .change-quantity {
  display: none;
  align-self: center;
  grid-row-end: span 2;
}
.card .shop .change-quantity .change-from-home {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  padding: 7px 0 0;
  font-size: 14px;
  vertical-align: middle;
  align-self: center;
}
.card .shop .change-quantity .change-from-home.minus {
  border: solid 1px #636363;
  color: #636363;
}
.card .shop .change-quantity .change-from-home.minus:hover {
  border-color: #bc092d;
  color: #bc092d;
}
.card .shop .change-quantity .change-from-home.minus:active {
  border-color: #870a32;
  color: #870a32;
}
.card .shop .change-quantity .change-from-home.plus {
  background-color: #e11053;
  color: #fff;
}
.card .shop .change-quantity .change-from-home.plus:hover {
  background-color: #bc092d;
}
.card .shop .change-quantity .change-from-home.plus:active {
  background-color: #870a32;
}
.card .shop .change-quantity .total-quantity {
  display: inline-block;
  width: 40px;
  text-align: center;
  vertical-align: middle;
}
.card .shop .change-quantity .total-quantity h4 {
  font-family: Oswald;
  font-size: 28px;
  font-weight: bold;
  color: #302f2f;
}
.tab {
  margin-top: 10px;
  width: 100%;
}
.tab .menu-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: Montserrat;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  width: 100%;
  height: 62px;
  padding: 8px 16px 8px 12px;
  background-color: #91cc4e;
  border: none;
}
.tab .menu-button:hover {
  background-color: #c9e077;
}
.tab .menu-button:active {
  background-color: #93ca3d;
}
.tab .menu-button .menu-text-container {
  text-align: left;
  width: 70%;
}
.tab .menu-button .menu-button-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}
.tab .menu-button .menu-button-text {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.57;
}
@media screen and (max-width: 350px) {
  .tab .menu-button .menu-button-text {
    font-size: 12px;
  }
}
.tab .menu-button .icon {
  width: 16px;
}
.tab .menu-button.disabled {
  opacity: 0.4;
  background-color: #91cc4e;
}
.icons-covid {
  grid-column-start: 2;
  align-self: center;
  width: 100%;
  height: fit-content;
  margin: 5px 0 30px 0;
}
@media screen and (min-width: 1023px) {
  .icons-covid {
    width: auto;
    height: 75px;
    grid-column-start: 2;
    align-self: center;
    width: 100%;
    height: fit-content;
  }
}
.icons-covid .header-icons {
  margin: 16px 0;
  color: #fff;
  font-family: "Montserrat";
  margin-bottom: 20px;
}
.icons-covid .icons-flex {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.icons-covid .icons-flex li {
  display: inline-grid;
}
.icons-covid .icons-flex li img {
  height: 44px;
  width: 44px;
  margin: 0 auto;
}
.icons-covid .icons-flex li span {
  margin: auto 0;
  text-align: -webkit-center;
  color: #fff;
  width: 92px;
  font-size: 14px;
  font-family: "Montserrat";
}
.icons-covid .icons-flex div {
  display: inline-flex;
}
.icons-covid .icons-flex div img {
  height: 41px;
  width: 41px;
}
.icons-covid .icons-flex div span {
  margin: auto 0;
  text-align: -webkit-center;
  color: #fff;
  font-family: "Montserrat";
  font-size: 14px;
  text-align: center;
}
.presentation-text {
  display: block;
  margin-top: 24px;
  font-family: Montserrat;
  font-size: 20px;
  color: #fff;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .presentation-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .slick-dots {
    transform: translateY(8px);
  }
}
.carousel {
  margin: 24px 0;
  width: 100%;
}
.carousel .offer.slick-slide {
  border-radius: 18px;
  height: 380px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .carousel .offer.slick-slide {
    width: 284px;
    height: 438px;
  }
}
.carousel .offer.slick-slide .image-container {
  background-size: cover;
  background-position: center center;
  height: 288px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .carousel .offer.slick-slide .image-container {
    width: 284px;
    height: 288px;
  }
}
.carousel .offer.slick-slide .image-container .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.carousel .offer.slick-slide .image-container .name {
  display: block;
  position: absolute;
  top: 18px;
  left: 8px;
  width: calc(100% - 16px);
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
  font-family: Montserrat;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .carousel .offer.slick-slide .image-container .name {
    top: 20px;
  }
}
.carousel .offer.slick-slide .card {
  z-index: 99;
  position: absolute;
  width: 100%;
  bottom: 0;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .carousel .offer.slick-slide .card {
    width: 100%;
    padding: 16px;
  }
}
.carousel .offer.slick-slide.price .image-container {
  height: 232px;
}
.carousel .offer.slick-slide.price .card {
  bottom: 0;
}
.carousel .text {
  display: block;
  position: absolute;
  bottom: 34px;
  left: 8px;
  width: calc(100% - 16px);
  z-index: 5;
}
.carousel .text h4 {
  display: block;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.carousel .text span {
  font-family: Muli;
  font-size: 12px;
  color: #fff;
}
.no-offer {
  background-size: cover;
  background-position: center center;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  min-height: 310px;
  position: relative;
  margin: 24px auto 0px;
  overflow: hidden;
}
.no-offer img.no-offer {
  margin: 0px auto;
  max-width: 620px;
  left: 50%;
  transform: translateX(-50%);
}
.no-offer img.no-offer.mobile-only {
  margin: 0px auto 24px;
}
.no-offer .name {
  display: block;
  position: absolute;
  top: 16px;
  left: 8px;
  width: calc(100% - 16px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  z-index: 5;
}
.no-offer .text {
  display: block;
  position: absolute;
  bottom: 34px;
  left: 8px;
  width: calc(100% - 16px);
  z-index: 5;
}
.no-offer .text h4 {
  display: block;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.no-offer .text span {
  font-family: Muli;
  font-size: 12px;
  color: #fff;
}
.cart-button {
  display: inline-block;
}
.cart-button .order {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 8px;
  background-color: #e11053;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  justify-content: space-between;
  cursor: pointer;
  display: none;
  z-index: 50;
}
.cart-button .order:hover {
  background-color: #bc092d;
}
.cart-button .order:active {
  background-color: #870a32;
}
.cart-button .order .order-text {
  padding: 6px 0;
  font-family: Montserrat;
  font-size: 18px;
  color: #fff;
  display: inline-block;
}
.cart-button .order .order-total {
  font-family: Oswald;
  font-size: 26px;
  font-weight: bold;
  text-align: right;
  color: #fff;
  float: right;
}
@media screen and (min-width: 768px) {
  .cart-button {
    grid-column-start: 3;
    grid-row: 4;
    justify-self: center;
  }
  .cart-button .order {
    position: relative;
    width: 375px;
    height: 60px;
    border-radius: 20px;
    transition: display ease 600ms;
  }
  .cart-button .order .order-text {
    font-size: 16px;
  }
  .cart-button .order .order-total {
    font-size: 24px;
    line-height: 1.46;
  }
}
.footer {
  display: inline-block;
  width: 206px;
  margin: 0px 0px 24px auto;
}
@media screen and (min-width: 768px) {
  .footer {
    justify-self: start;
    grid-column-start: 3;
    grid-row-start: 5;
  }
}
.order {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 8px;
  background-color: #e11053;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  justify-content: space-between;
  cursor: pointer;
  display: none;
}
.order .order-text {
  padding: 6px 0;
  font-family: Montserrat;
  font-size: 18px;
  color: #fff;
}
.order .order-total {
  font-family: Oswald;
  font-size: 26px;
  font-weight: bold;
  text-align: right;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .order {
    grid-column-start: 3;
    grid-row: 4;
    width: 375px;
    height: 60px;
    border-radius: 20px;
  }
  .order .order-text {
    font-size: 16px;
  }
  .order .order-total {
    font-size: 24px;
    line-height: 1.46;
  }
}
#products {
  max-height: 252px;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 8px 0;
  transition: all ease 400ms;
}
#products.shadow {
  -moz-box-shadow: inset 0 -6px 10px -10px #000;
  -webkit-box-shadow: inset 0 -6px 10px -10px #000;
  box-shadow: inset 0 -6px 10px -10px #000;
}
#products::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  #products {
    max-height: 274px;
  }
}
.item {
  margin: 14px 12px;
  display: flex;
}
.item .image-container {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background-size: cover;
  background-position: center center;
}
.item .item-info {
  padding: 10px 0 14px 8px;
  width: calc(100% - 64px);
  display: flex;
  flex-flow: column;
}
.item .item-info .item-name {
  font-family: Montserrat;
  font-size: 16px;
  color: #05071b;
}
.item .item-info .price-total {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
}
.item .item-info .price-total h4 {
  font-family: Oswald;
  font-size: 16px;
  font-weight: bold;
  color: #05071b;
}
.item .item-info .price-total .quantity {
  align-self: flex-end;
}
.item .item-info .price-total .quantity div {
  display: inline-block;
  margin: 0 4px;
}
.item .item-info .price-total .quantity .change {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  padding: 2px 0 0;
  margin: 0 10px;
}
.item .item-info .price-total .quantity .change.minus {
  border: solid 1px #636363;
  color: #636363;
}
.item .item-info .price-total .quantity .change.minus:hover {
  border-color: #bc092d;
  color: #bc092d;
}
.item .item-info .price-total .quantity .change.minus:active {
  border-color: #870a32;
  color: #870a32;
}
.item .item-info .price-total .quantity .change.plus {
  background-color: #e11053;
  color: #fff;
}
.item .item-info .price-total .quantity .change.plus:hover {
  background-color: #bc092d;
}
.item .item-info .price-total .quantity .change.plus:active {
  background-color: #870a32;
}
.item .item-info .price-total .quantity .quantity-total h4 {
  font-family: Oswald;
  font-size: 22px;
  font-weight: bold;
  color: #05071b;
}
.cart-detail {
  background-color: rgba(31, 34, 50, 0.1);
  border-radius: 8px;
  padding: 10px 12px 16px;
}
.cart-detail .flex-separate {
  margin: 0 12px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-detail .flex-separate.subtotal-box {
  padding-bottom: 8px;
  border-bottom: dashed 1px #c0c0df;
}
.cart-detail .flex-separate .sub-total-text {
  font-family: Montserrat;
  font-size: 14px;
  color: #14122b;
}
.cart-detail .flex-separate .sub-total {
  font-family: Oswald;
  font-size: 14px;
  font-weight: 600;
  color: #14122b;
}
.cart-detail .flex-separate .coupon-text {
  opacity: 0.4;
  cursor: not-allowed;
  font-family: Montserrat;
  font-size: 14px;
  color: #14122b;
}
.cart-detail .flex-separate .coupon {
  opacity: 0.4;
  cursor: not-allowed;
  font-size: 14px;
}
.cart-detail .flex-separate .total-text {
  font-family: Montserrat;
  font-size: 20px;
  font-weight: bold;
  color: #14122b;
  padding-top: 14px;
}
.cart-detail .flex-separate .total-order {
  font-family: Oswald;
  font-size: 20px;
  font-weight: bold;
  color: #14122b;
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .cart-detail {
    align-self: center;
    width: 50%;
    margin: 0px auto;
  }
  .cart-detail .flex-separate .sub-total-text {
    font-size: 14px;
  }
  .cart-detail .flex-separate .sub-total {
    font-size: 14px;
    font-weight: bold;
  }
  .cart-detail .flex-separate .coupon-text {
    font-size: 14px;
  }
  .cart-detail .flex-separate .coupon {
    font-size: 14px;
  }
  .cart-detail .flex-separate .total-text {
    font-size: 20px;
    font-weight: bold;
  }
  .cart-detail .flex-separate .total-order {
    font-size: 20px;
    font-weight: bold;
  }
}
@media screen and (max-width: 320px) {
  .cart-detail .flex-separate .total-text {
    padding-top: 0px;
  }
  .cart-detail .flex-separate .total-order {
    padding-top: 0px;
  }
}
@media screen and (min-width: 768px) {
  .buy-type-text {
    align-self: center;
    width: 50%;
    margin: 0px auto;
  }
}
.buy-type-text .payment-text {
  padding-top: 16px;
  font-size: 18px;
  font-family: Montserrat;
  font-weight: 600;
  color: #14122b;
}
.footer {
  width: 100%;
  height: auto;
  display: grid;
  margin-bottom: 16px;
}
.footer .content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-right: 8px;
}
.footer .content .elun {
  display: flex;
  align-items: center;
}
.footer .content .elun p {
  margin-right: 24px;
}
.footer .content .elun a {
  height: 26px;
}
.footer .content p {
  font-family: Muli;
  color: #fff;
  font-size: 12px;
  font-weight: 200;
}
.footer .content .brand {
  display: flex;
  align-items: center;
}
.footer .content .brand img {
  width: 55px;
  margin: 0 0 0 8px;
}
.footer .content .brand .separator {
  width: auto;
  height: auto;
  margin: 16px 24px;
  background: none;
}
