@page {
  margin: 0 0 0 0;
}

@media print {
  body {
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  html,
  body {
    height: auto;
  }

  .print-menu {
    padding: 0;
    margin: 40px auto 0 auto;
    page-break-after: always;
    font-size: 90%;
    height: auto;
  }

  p {
    line-height: 1.1;
    padding: 0;
    margin: 0;
  }

  .print-menu-day-title {
    margin: 20px 0 0 0;
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.w-iframe {
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 1000px 104px;
  position: relative;
  overflow: hidden;
}

#printMenuBtn {
  margin-left: 20px;
  cursor: pointer;
}

#dialog {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 902;
}

#dialog.open {
  display: flex;
  z-index: 903;
}

#dialog.open::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 902;
}

.dialog-content {
  position: relative;
  z-index: 910;
  background-color: #fff;
  padding: 5rem;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dialog-content .print-choice {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  justify-content: space-between;
  align-items: center;
}

.dialog-content .print-choice .triggerPrint {
  padding: 10px 30px;
  border: 3px solid #fbe0dc;
  border-radius: 5px;
  background-color: #fff;
  margin: 1rem 0 0 0;
  transition: all 0.2s ease-in;
}

.dialog-content .print-choice .triggerPrint:hover {
  background-color: #fbe0dc;
}

.drop-down {
  border: 2px solid #ff8270;
  border-radius: 5px;
  background-color: #fff;
}

.cm-links-block-for-dummies {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 2rem;
}

@media screen and (max-width: 1100px) {
  #printMenuBtn {
    display: none;
  }

  .cm-links-block-for-dummies {
    flex-direction: column;
    margin-top: 1rem;
  }

  .cm-links-block-for-dummies > a {
    align-self: center;
    margin-top: 0.8rem;
  }

  .cm-menu-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .cm-menu-container > .choose-another-day {
    align-self: center;
    margin-top: 2rem;
  }

  .shitty-grid {
    margin-top: 2rem;
  }
}

.cm-nav-overlay {
  transition: height 0.3s ease;
}
