#button{
  display:block;
  margin:20px auto;
  padding:10px 30px;
  background-color:#eee;
  border:solid #ccc 1px;
  cursor: pointer;
}
#overlay{
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #1B3B53 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.is-hide{
  display:none;
}

/* Hide review summary & existing reviews */
/* #product_reviews .review-totals,
#product_reviews .review-list {
    display: none !important;
} */

.star_rating p.review-rating {
    cursor: pointer;
}

.day-box {
    border: 2px solid #e5f5ff;
    border-radius: 12px;
    padding: 10px;
    min-height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0bb5d4;
    font-weight: bold;
    font-size: 18px;
}
.meal-slot {
    border: 2px dashed #d9d9d9;
    min-height: 95px;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.add-meal {
    color: #00bcd4;
    font-weight: 600;
}
.meal-title {
    font-weight: bold;
    text-align: center;
    font-size: 20px;
}

#meal-calendar .meal-slot.past-date {
    filter: grayscale(100%);
    opacity: 0.5;
    pointer-events: none;
}

#meal-calendar .nutrients-box_main.past-date {
    filter: grayscale(100%);
    opacity: 0.5;
    pointer-events: none;
}

.recipe-suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    z-index: 999;
    display: none;
    top: 55px;
    border: 1px solid #00D0D2;
}
.recipe-suggestions div {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
}
.recipe-suggestions div:hover {
    background: #f5f5f5;
}

@media (max-width: 767px) {
  div#pagination {
      margin-top: 15px;
  }
}