:root {
  --color-brand-primary: #CC0813; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

p {
  margin: 0; }

body {
  background: #f7f7f7;
  margin: 0;
  font-family: 'Rubik', sans-serif; }

* {
  box-sizing: border-box; }

ul {
  list-style: none;
  padding: 0;
  margin: 0; }

a {
  text-decoration: none;
  color: #000;
  display: inline-block; }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

strong {
  font-family: 'Rubik'; }

html {
  scroll-behavior: smooth; }

.o-wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto; }

body {
  line-height: 1.5;
  background-color: #fcfaea; }

/**** Header ****/
.c-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  background: #fdfdfd;
  padding: 1rem;
  box-shadow: 0 3px 21px 0 rgba(0, 0, 0, 0.03); }
  .c-header .c-logo {
    color: var(--color-brand-primary);
    font-size: 1.35rem;
    margin-bottom: 0.5rem; }
    @media (max-width: 799px) {
      .c-header .c-logo {
        flex-basis: 100%; } }
    @media (min-width: 800px) {
      .c-header .c-logo {
        margin-bottom: 0; } }
  @media (min-width: 800px) {
    .c-header {
      display: flex; } }

.c-nav ul {
  display: flex; }

.c-nav li:not(:last-child) {
  margin-right: 1.5rem; }

.c-nav a:hover {
  color: var(--color-brand-primary); }

@media (max-width: 799px) {
  .c-nav {
    flex: 0 0 50%; } }

@media (min-width: 800px) {
  .c-nav {
    margin-left: auto;
    margin-right: 1.5rem; } }

.c-header__follow {
  color: #555;
  text-align: right; }
  .c-header__follow svg {
    width: 22px;
    height: 22px;
    fill: #1DA1F2;
    display: inline-block;
    vertical-align: middle; }
  @media (max-width: 799px) {
    .c-header__follow {
      flex: 0 0 50%; } }

.c-box__wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem 0;
  --opacity: 0.3;
  background: linear-gradient(rgba(252, 250, 234, var(--opacity)), rgba(252, 250, 234, var(--opacity))), url("../img/floor.jpg") center/cover; }

.table-full {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  background: url(../img/table-3.png) center/contain no-repeat;
  text-align: center;
  padding: 1rem;
  flex: 0 0 250px;
  width: 100%;
  font-size: 0;
  color: transparent; }
  @media (min-width: 900px) {
    .table-full {
      padding: 3rem;
      flex: 0 0 450px;
      width: 850px; } }

.c-box {
  padding: 0 1rem; }
  .c-box p {
    max-width: 580px;
    font-size: 18px;
    color: #4d3535;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    text-align: center; }
    .c-box p::selection {
      background: rgba(0, 172, 238, 0.2); }
    @media (min-width: 800px) {
      .c-box p {
        font-size: 22px; } }

.c-box__title {
  margin: 0.5rem 0 0;
  font-size: 24px;
  color: var(--color-brand-primary); }
  .c-box__title svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    width: 40px; }
    @media (min-width: 800px) {
      .c-box__title svg {
        font-size: 65px; } }
  @media (min-width: 800px) {
    .c-box__title {
      font-size: 40px;
      margin: 1rem 0 0; } }

.c-box__buttons {
  max-width: initial !important;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  margin-bottom: 0 !important; }
  .c-box__buttons .c-button {
    text-align: center; }

.c-box__cat {
  position: absolute;
  left: 50%;
  margin-left: -60px;
  width: 120px;
  top: -105px;
  z-index: -1; }

/**** Button ****/
.c-button {
  display: inline-block;
  color: #fff;
  background: linear-gradient(to bottom, #ef414b, #CC0813);
  font-size: 18px;
  font-weight: 500;
  padding: 8px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  background-origin: border-box;
  transition: 0.3s ease-out; }
  .c-button:hover {
    box-shadow: 0 0 0 6px rgba(204, 8, 19, 0.2), 0 8px 10px 8px rgba(204, 8, 19, 0.2); }

.c-button ~ svg .naughty-head {
  transition: 0.3s ease-out; }

.c-button--primary:hover ~ svg .naughty-head {
  transform: rotate(-7deg);
  transform-origin: 155px 7px; }

.c-button--ghost:hover ~ svg .naughty-head {
  transform: rotate(9deg);
  transform-origin: 110px 48px; }

.c-button--ghost {
  background: transparent;
  color: var(--color-brand-primary);
  border-color: var(--color-brand-primary); }

/**** Section ****/
.c-section {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  align-items: center; }
  @media (min-width: 800px) {
    .c-section {
      grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .c-section p {
    max-width: 450px; }
    .c-section p > code {
      display: inline-block;
      padding: 2px;
      border-radius: 4px;
      font-size: 14px;
      color: #4d3535;
      background: #f5f0cd; }

.c-section__item {
  align-self: start; }
  .c-section__item > * + * {
    margin-top: 1rem; }
  @media (min-width: 800pxx) {
    .c-section__item {
      background-color: rgba(0, 0, 0, 0.03);
      padding: 1rem 2rem;
      border-radius: 8px; } }

.c-section--outside {
  padding-bottom: 6rem; }

.c-section--normal,
.c-section--basic {
  display: block; }
  .c-section--normal > * + *,
  .c-section--basic > * + * {
    margin-top: 2rem; }

.c-section--demo > * + * {
  margin-top: 0.5rem; }

.c-section--demo p {
  margin-bottom: 1rem; }

.c-section--basic .c-section__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem; }
  @media (min-width: 800px) {
    .c-section--basic .c-section__item {
      grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); } }

img {
  max-width: 100%; }

/**** Table ****/
.c-plate {
  position: relative;
  width: 96px;
  height: 96px;
  outline: none !important; }
  .c-plate:after {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    right: 18px;
    background: #0000001a;
    border-radius: 6px; }
  .c-plate.salmon {
    background: url(../img/salmon.svg) center/contain no-repeat; }
  .c-plate.chicken {
    background: url(../img/chicken.svg) center/contain no-repeat; }
  .c-plate.steak {
    background: url(../img/steak.svg) center/contain no-repeat; }
  .c-plate.kebab {
    background: url(../img/kebab.svg) center/contain no-repeat; }
  .c-plate.konafa {
    background: url(../img/konafa.svg) center/contain no-repeat; }
  .c-plate.icecream {
    background: url(../img/icecream.svg) center/contain no-repeat; }
  .c-plate.donut {
    background: url(../img/donut.svg) center/contain no-repeat; }
  .c-plate.cake {
    background: url(../img/cake.svg) center/contain no-repeat; }

.c-table:not(.grid) .c-plate {
  background-color: #75371f !important;
  border-radius: 12px;
  box-shadow: inset 0 0 0 5px #482010, 0 3px 5px 0 rgba(255, 255, 255, 0.2);
  padding: 10px;
  background-origin: content-box !important; }
  .c-table:not(.grid) .c-plate:first-child, .c-table:not(.grid) .c-plate:last-child {
    background-color: #753820 !important; }

.c-table {
  background: url(../img/table-bg.jpg) center/cover no-repeat;
  height: 400px;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #f1c6b7; }
  .c-table.eg-0 .c-plate {
    width: 96px;
    height: 96px; }
  .c-table.eg-1 {
    display: flex; }
    .c-table.eg-1 .c-plate {
      width: 70px;
      height: 70px; }
      @media (min-width: 400px) {
        .c-table.eg-1 .c-plate {
          width: 96px;
          height: 96px; } }
  .c-table.eg-2 {
    display: flex; }
    .c-table.eg-2 .c-plate {
      width: 50%;
      outline: solid 1px; }
  .c-table.eg-3 {
    display: flex;
    flex-wrap: wrap; }
    .c-table.eg-3 .c-plate {
      width: 50%;
      outline: solid 1px; }
  .c-table.eg-3-1 {
    display: flex;
    flex-wrap: wrap; }
    .c-table.eg-3-1 .c-plate {
      width: 50%;
      height: initial;
      background-size: 95px; }
  .c-table.eg-4 {
    display: flex;
    flex-wrap: wrap; }
    .c-table.eg-4 .c-plate {
      width: 50%;
      height: 90px;
      outline: solid 1px; }
  .c-table.eg-4-1 {
    display: flex;
    flex-wrap: wrap;
    align-content: space-evenly; }
    .c-table.eg-4-1 .c-plate {
      width: 50%;
      height: 90px;
      outline: solid 1px; }
  .c-table.eg-5 {
    display: flex;
    flex-wrap: wrap; }
    .c-table.eg-5 .c-plate {
      width: 90px;
      height: 90px;
      outline: solid 1px; }
  .c-table.eg-6 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .c-table.eg-6 .c-plate {
      width: 70px;
      height: 70px;
      outline: solid 1px; }
      @media (min-width: 400px) {
        .c-table.eg-6 .c-plate {
          width: 90px;
          height: 90px; } }
  .c-table.eg-7 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; }
    .c-table.eg-7 .c-plate {
      width: 70px;
      height: 70px;
      outline: solid 1px; }
      @media (min-width: 400px) {
        .c-table.eg-7 .c-plate {
          width: 90px;
          height: 90px; } }
  .c-table.eg-8 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; }
    .c-table.eg-8 .c-plate {
      width: 70px;
      height: 70px;
      outline: solid 1px; }
      .c-table.eg-8 .c-plate:first-child {
        align-self: flex-start; }
      .c-table.eg-8 .c-plate:last-child {
        align-self: flex-end; }
      @media (min-width: 400px) {
        .c-table.eg-8 .c-plate {
          width: 90px;
          height: 90px; } }
  .c-table.eg-72 {
    display: flex;
    flex-wrap: wrap; }
  .c-table.eg-72-1 {
    display: flex;
    flex-wrap: wrap; }
    .c-table.eg-72-1 .c-plate.salmon {
      flex-grow: 1; }
  .c-table.eg-9 {
    display: grid; }
    .c-table.eg-9 .c-plate {
      outline: solid 1px; }
  .c-table.eg-10 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr; }
    .c-table.eg-10 .c-plate {
      background-size: 86px 86px; }
  .c-table.eg-11 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center; }
    .c-table.eg-11 .c-plate {
      background-size: 86px 86px; }
  .c-table.eg-12 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    align-items: center; }
    .c-table.eg-12 .c-plate {
      background-size: 86px 86px; }
  .c-table.eg-13 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    align-items: center; }
    .c-table.eg-13 .c-plate:nth-child(2) {
      align-self: start; }
    .c-table.eg-13 .c-plate {
      background-size: 86px 86px; }
  .c-table.eg-14 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    align-items: center; }
    .c-table.eg-14 .c-plate:nth-child(2) {
      align-self: start;
      justify-self: end; }
    .c-table.eg-14 .c-plate {
      background-size: 86px 86px; }
  .c-table.eg-15 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 100px); }
    @media (min-width: 500px) {
      .c-table.eg-15 {
        grid-template-columns: repeat(2, 150px); } }
    .c-table.eg-15.with-grid-lines:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 200px;
      height: 100%;
      background: linear-gradient(to right, transparent calc(98px), var(--color-brand-primary) 100px, transparent calc(100px + 2px), transparent 302px, var(--color-brand-primary) 204px, transparent 0), linear-gradient(to bottom, transparent calc(50% - 2px), var(--color-brand-primary) 50%, transparent calc(50% + 2px)); }
      @media (min-width: 500px) {
        .c-table.eg-15.with-grid-lines:after {
          width: 306px;
          background: linear-gradient(to right, transparent calc(148px), var(--color-brand-primary) 150px, transparent calc(150px + 2px), transparent 302px, var(--color-brand-primary) 306px, transparent 0), linear-gradient(to bottom, transparent calc(50% - 2px), var(--color-brand-primary) 50%, transparent calc(50% + 2px)); } }
    .c-table.eg-15:before {
      content: "Empty Space";
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1;
      height: 100%;
      width: calc(100% - 200px);
      background: rgba(204, 8, 19, 0.35);
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      color: #222;
      font-size: 22px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center; }
      @media (min-width: 500px) {
        .c-table.eg-15:before {
          width: calc(100% - 306px); } }
    .c-table.eg-15 .c-plate {
      background-size: 86px 86px; }
  .c-table.eg-16 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 100px);
    justify-content: space-between; }
    @media (min-width: 500px) {
      .c-table.eg-16 {
        grid-template-columns: repeat(2, 150px); }
        .c-table.eg-16 .c-plate {
          background-size: 70px 70px; } }
    .c-table.eg-16.with-grid-lines:after {
      display: none; }
    .c-table.eg-16:before {
      content: "Empty Space";
      position: absolute;
      left: 100px;
      top: 0;
      z-index: 1;
      height: 100%;
      width: calc(100% - 200px);
      background: rgba(204, 8, 19, 0.35);
      color: #222;
      font-size: 22px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center; }
      @media (min-width: 500px) {
        .c-table.eg-16:before {
          left: 159px;
          width: calc(100% - 318px); } }
    .c-table.eg-16 .c-plate {
      background-size: 86px 86px; }
  .c-table.eg-17 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 120px); }
    @media (min-width: 500px) {
      .c-table.eg-17 {
        grid-template-rows: repeat(2, 120px); }
        .c-table.eg-17 .c-plate {
          background-size: 70px 70px; } }
    .c-table.eg-17.with-grid-lines:after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, transparent calc(50% - 2px), var(--color-brand-primary) 50%, transparent calc(50% + 2px)), linear-gradient(to bottom, transparent calc(120px - 2px), var(--color-brand-primary) 120px, transparent calc(120px + 2px), transparent 240px, var(--color-brand-primary) 244px, transparent 0); }
    .c-table.eg-17:before {
      content: "Empty Space";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      height: calc(100% - 240px);
      background: rgba(204, 8, 19, 0.35);
      color: #222;
      font-size: 22px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center; }
    .c-table.eg-17 .c-plate {
      background-size: 86px 86px; }
  .c-table.eg-18 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 120px);
    align-content: space-between; }
    .c-table.eg-18.with-grid-lines:after {
      display: none; }
    .c-table.eg-18:before {
      content: "Empty Space";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 129px;
      z-index: 1;
      height: calc(100% - 234px);
      background: rgba(204, 8, 19, 0.35);
      color: #222;
      font-size: 22px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center; }
    .c-table.eg-18 .c-plate {
      background-size: 86px 86px; }
  .c-table.with-grid-lines:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent calc(50% - 2px), var(--color-brand-primary) 50%, transparent calc(50% + 2px)), linear-gradient(to bottom, transparent calc(50% - 2px), var(--color-brand-primary) 50%, transparent calc(50% + 2px)); }

.o-wrapper {
  counter-reset: test; }

.css-grid {
  counter-reset: grid; }
  .css-grid .c-title:before {
    counter-increment: grid;
    content: counter(grid); }

/**** Title ****/
.c-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-brand-primary); }
  .c-title:before {
    counter-increment: test;
    content: counter(test);
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #cc0813;
    box-shadow: 0px 3px 0px rgba(204, 8, 19, 0.1);
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin-right: 0.35rem; }
  @media (min-width: 800px) {
    .c-title {
      font-size: 1.5rem; }
      .c-title:before {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 24px;
        margin-right: 0.75rem; } }
  .c-title.counter-none {
    margin-bottom: 0; }
    .c-title.counter-none:before {
      display: none; }

/**** Footer ****/
.c-footer {
  --opacity: 0.3;
  background: linear-gradient(rgba(252, 250, 234, var(--opacity)), rgba(252, 250, 234, var(--opacity))), url("../img/floor.jpg") center/cover;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 -5px 10px 0 rgba(0, 0, 0, 0.1);
  font-size: 15px; }
  @media (min-width: 800px) {
    .c-footer {
      font-size: initial; } }
  .c-footer h2,
  .c-footer p,
  .c-footer a {
    margin: 0 0 0.5rem;
    color: #222; }
  .c-footer h2 {
    color: var(--color-brand-primary);
    font-size: calc(14px + 1vw); }
    @media (max-width: 2000px) {
      .c-footer h2 {
        font-size: 1.5rem; } }
  .c-footer a {
    text-decoration: underline; }
  .c-footer img {
    display: block;
    margin: -35px auto 1rem;
    width: 100px; }

pre {
  border-radius: 6px;
  max-width: 460px; }

.mb-1 {
  margin-bottom: 1.5rem; }

.mb-0 {
  margin-bottom: 0; }

.note {
  position: relative;
  max-width: 460px !important;
  background: #fff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.07);
  padding: 22px 8px 8px 12px;
  margin-top: 2rem;
  border-radius: 7px; }
  .note:before {
    content: "Values for " attr(data-for);
    position: absolute;
    left: 13px;
    top: -9px;
    color: #fff;
    background: #cc0813;
    padding: 2px 8px;
    font-size: 14px;
    border-radius: 5px; }

.other-articles {
  margin-top: 1rem; }
  .other-articles li:not(:last-child) {
    margin-bottom: 1rem; }
  @media (min-width: 800px) {
    .other-articles li {
      font-size: 18px; } }
  .other-articles a {
    text-decoration: underline;
    text-decoration-color: cornflowerblue; }

hr {
  height: 20px;
  background: var(--color-brand-primary);
  border: 0; }

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; }

#carbonads {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif; }

#carbonads {
  position: relative;
  display: flex;
  max-width: 330px;
  margin: 2rem auto;
  background-color: #f3f3f3;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1); }

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

#carbonads a:hover {
  color: inherit; }

#carbonads span {
  position: relative;
  display: block;
  overflow: hidden; }

#carbonads .carbon-wrap {
  display: flex; }

.carbon-img {
  display: block;
  margin: 0;
  line-height: 1; }

.carbon-img img {
  display: block; }

.carbon-text {
  font-size: 13px;
  padding: 10px;
  line-height: 1.5;
  text-align: left; }

.carbon-poweredby {
  display: block;
  padding: 8px 10px;
  background: -webkit-repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(0, 0, 0, 0.025) 5px, rgba(0, 0, 0, 0.025) 10px) rgba(241, 243, 244, 0.4);
  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(0, 0, 0, 0.025) 5px, rgba(0, 0, 0, 0.025) 10px) rgba(241, 243, 244, 0.4);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  font-size: 9px;
  line-height: 1; }

#mc_embed_signup {
  font: inherit !important; }

#mc_embed_signup form {
  background: #f7f7f7;
  padding: 1rem !important;
  border-radius: 5px;
  margin-top: 1.5rem; }

#mc_embed_signup .button {
  margin: 0 !important;
  -ms-flex-item-align: end;
  -webkit-align-self: end;
  align-self: end;
  background-color: #3863d9 !important; }

#mc_embed_signup .button:hover {
  background-color: #244cba !important; }

#mc_embed_signup input {
  font-size: 16px !important; }

#mc_embed_signup input:focus {
  border-color: #3863d9 !important;
  outline: none; }

.mc-title {
  font-size: 1.5rem !important;
  margin: 0 0 0.5rem !important; }

.mc-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem; }

.mc-input-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 1rem; }

@media (min-width: 800px) {
  .mc-input-group {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem; } }

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  margin-bottom: 0 !important; }

.mc-field-group {
  width: 100% !important;
  padding-bottom: 0 !important; }

#mc_embed_signup div#mce-responses {
  width: 100% !important;
  padding: 0.5rem 0 !important;
  margin: 0 !important; }

#mc_embed_signup #mce-error-response {
  line-height: 1.45;
  font-weight: normal !important; }
