.rc-slider {
  position: relative;
  height: 14px;
  padding: 5px 0;
  width: 100%;
  border-radius: 6px;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 4px;
  border-radius: 6px;
}
.rc-slider-track {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 6px;
  background-color: #abe2fb;
}
.rc-slider-handle {
  position: absolute;
  width: 14px;
  height: 14px;
  cursor: pointer;
  cursor: -webkit-grab;
  margin-top: -5px;
  cursor: grab;
  border-radius: 50%;
  border: solid 2px #96dbfa;
  background-color: #fff;
  touch-action: pan-x;
}
.rc-slider-handle:focus {
  outline: none;
}
.rc-slider-handle:hover {
  border-color: #57c5f7;
}
.rc-slider-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.rc-slider-handle-dragging.rc-slider-handle-dragging.rc-slider-handle-dragging {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
}
.rc-slider-handle-click-focused:focus {
  border-color: #96dbfa;
  box-shadow: unset;
}
.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}
.rc-slider-mark-text-active {
  color: #666;
}
.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}
.rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-dot-reverse {
  margin-right: -4px;
}
.rc-slider-disabled {
  background-color: #e9e9e9;
}
.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  box-shadow: none;
  background-color: #fff;
  cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px;
}
.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.rc-slider-tooltip-hidden {
  display: none;
}
.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}
.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
@-moz-keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@-o-keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@-moz-keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
@-webkit-keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
@-o-keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
#configurator .plan-title {
  text-align: start;
  border-bottom: 1px solid #2c3650;
  padding-bottom: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
#configurator .plan-title .tooltip {
  margin-left: 8px;
}
#configurator .plan-title.float {
  float: right;
}
#configurator .controls-border {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #dfe3df;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  #configurator .hr-mb-16 {
    margin-bottom: 16px;
  }
}
#configurator .pill-selector,
#configurator .small-pill-selector {
  border: 1px solid #dfe3df;
}
#configurator .pill-selector.selected,
#configurator .small-pill-selector.selected,
#configurator .pill-selector:active,
#configurator .small-pill-selector:active {
  border: 1px solid #dfe3df;
  background-color: #e2f5ef;
}
#configurator .pill-selector.disabled,
#configurator .small-pill-selector.disabled {
  color: #dfe3df;
}
#configurator .pill-selector.disabled:active,
#configurator .small-pill-selector.disabled:active {
  background-color: rgba(0,0,0,0);
}
#configurator .pill-selector {
  width: 50%;
}
#configurator .small-pill-selector {
  height: 40px;
  width: 50px;
}
@media only screen and (max-width: 800px) {
  #configurator .small-pill-selector {
    height: 27px;
    width: 50px;
  }
}
#configurator .occasions .small-pill-selector {
  width: 87px;
}
@media only screen and (max-width: 800px) {
  #configurator .occasions .small-pill-selector {
    width: 44px;
    height: 40px;
  }
}
#configurator-total .plan-configurator-footer {
  padding: 16px 0;
}
#configurator-total .plan-configurator-footer .hr-wide {
  width: 100%;
}
#configurator-total .plan-configurator-footer .slug {
  height: 21px;
}
#configurator-total .plan-configurator-footer .new-price {
  margin-top: -12px;
}
@media only screen and (max-width: 800px) {
  #configurator-total .plan-configurator-footer {
    width: 100%;
    z-index: 200;
    background-color: #fff;
    border-top: 1px solid #2c3650;
  }
  #configurator-total .plan-configurator-footer .hr-mb-16 {
    margin-bottom: 8px;
  }
  #configurator-total .plan-configurator-footer .hr-mb-32 {
    margin-bottom: 16px;
  }
  #configurator-total .plan-configurator-footer .slug {
    height: 19px;
  }
  #configurator-total .plan-configurator-footer.fixed {
    padding: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
  }
  #configurator-total .plan-configurator-footer .new-price {
    margin-top: -6px;
  }
}
#configurator-total .old-price {
  color: #b1bab1;
  text-decoration: line-through;
}
.square-selector,
.rect-selector {
  text-align: center;
  cursor: pointer;
  width: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  margin-right: 16px;
  margin-bottom: 16px;
}
.square-selector.selected,
.rect-selector.selected {
  border: 2px solid #2c3650;
}
@media only screen and (max-width: 800px) {
  .square-selector,
  .rect-selector {
    margin-right: 0px;
    width: 28vw;
  }
}
.rect-selector {
  height: 85px;
}
@media only screen and (max-width: 800px) {
  .rect-selector {
    height: 12vw;
    font-size: 12px;
  }
}
.square-selector {
  height: 176px;
  font-size: 10px;
  font-family: MaisonExtendedBold, "Avenir Light", Arial, sans-serif;
}
@media only screen and (max-width: 800px) {
  .square-selector {
    height: 28vw;
  }
}
.square-selector > img {
  height: 74px;
  margin: 25px auto;
}
@media only screen and (max-width: 800px) {
  .square-selector > img {
    height: 40px;
    margin: 10px auto;
  }
}
.square-selector > .icon {
  font-family: Hungryroot2020;
  font-size: 48px;
  height: 55px;
  margin: 25px auto;
}
@media only screen and (max-width: 800px) {
  .square-selector > .icon {
    height: 40px;
    margin: 10px auto;
    line-height: 42px;
    font-size: 32px;
  }
}
.square-selector > .cropped-img {
  height: 100%;
  background-size: cover;
  background-position-x: center;
}
.pill-selector,
.small-pill-selector {
  text-align: center;
  cursor: pointer;
  height: 40px;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #d5d7dc;
  margin-left: -1px;
  margin-right: -1px;
  margin-bottom: 0px;
  font-size: 14px;
}
.pill-selector:first-child,
.small-pill-selector:first-child {
  border-radius: 5px 0px 0px 5px;
}
.pill-selector:last-child,
.small-pill-selector:last-child {
  border-radius: 0px 5px 5px 0px;
}
.pill-selector.selected,
.small-pill-selector.selected {
  border: 2px solid #2c3650;
  z-index: 100;
  font-family: MaisonNeueDemi, "Avenir Light", Arial, sans-serif;
}
@media only screen and (max-width: 800px) {
  .pill-selector,
  .small-pill-selector {
    width: 100px;
  }
}
.checkbox-selector,
.radio-selector {
  border: none;
  width: 100%;
  display: flex;
  margin-bottom: 12px;
  align-items: center;
}
.checkbox-selector::before {
  content: url("/public/img/edit_delivery/checkbox_unchecked.svg");
  height: 15px;
  margin: 0 4px;
}
.checkbox-selector.selected::before {
  content: url("/public/img/edit_delivery/checkbox_checked.svg");
}
.radio-selector::before {
  content: url("/public/img/edit_delivery/radio_unchecked.svg");
  height: 15px;
  margin: 0 4px;
}
.radio-selector.selected::before {
  content: url("/public/img/edit_delivery/radio_checked.svg");
}
.options-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.options-container .option-subtext {
  font-size: 12px;
  font-family: MaisonNeueBook, "Avenir Light", Arial, sans-serif;
}
@media only screen and (max-width: 800px) {
  .options-container {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 800px) {
  .options-container.pills {
    justify-content: center;
  }
}
.options-container > div:focus {
  outline: none;
}
.options-container .selector-option {
  position: relative;
  cursor: pointer;
}
.await-loading {
  opacity: 0;
}
.await-done {
  transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
  opacity: 1;
}
.tooltip,
.educational-tooltip {
  position: relative;
  display: inline-block;
}
.tooltip .trigger,
.educational-tooltip .trigger {
  width: 18px;
  height: 18px;
}
.tooltip .message,
.educational-tooltip .message {
  color: #fff;
  font-size: 14px;
  font-family: MaisonNeueBook, "Avenir Light", Arial, sans-serif;
  position: absolute;
  width: 170px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3650;
  padding: 16px;
  right: -193px;
  top: -40px;
  z-index: 300;
}
@media only screen and (max-width: 800px) {
  .tooltip .message,
  .educational-tooltip .message {
    width: 150px;
    padding: 8px;
    right: -25px;
    top: 35px;
  }
}
.tooltip .tooltip-tip,
.educational-tooltip .tooltip-tip {
  position: absolute;
  top: 0px;
  left: 17px;
  width: 20px;
  height: 19px;
  margin-left: 5px;
  background-color: #2c3650;
  display: inline-block;
  clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 50%);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 50%);
  z-index: 300;
}
@media only screen and (max-width: 800px) {
  .tooltip .tooltip-tip,
  .educational-tooltip .tooltip-tip {
    top: 22px;
    left: -5px;
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  }
}
.educational-tooltip .message {
  color: #fff;
  font-size: 14px;
  font-family: MaisonNeueBook, "Avenir Light", Arial, sans-serif;
  position: absolute;
  width: 170px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c3650;
  padding: 16px;
  left: -45px;
  top: 21px;
  z-index: 300;
  border-radius: 5px;
}
.educational-tooltip .message .close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 15px;
}
.educational-tooltip .message .close:before {
  font-family: FontAwesome;
  content: '\f00d';
  color: #fff;
}
.educational-tooltip .tooltip-tip {
  position: absolute;
  top: 14px;
  left: -38px;
  width: 16px;
  height: 8px;
  margin-left: 5px;
  background-color: #2c3650;
  display: inline-block;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 50% 0%);
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 50% 0%);
  z-index: 300;
}
.modal {
  width: 592px;
  min-height: 180px;
  position: absolute;
  background-color: #fff;
  z-index: 900;
  transform: translate(calc((100vw - 592px) / 2), 30vh);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 48px 48px;
}
.modal .close {
  top: 0px;
}
@media only screen and (max-width: 800px) {
  .modal {
    width: 90vw;
    transform: translate(5vw, 35vh);
    padding: 24px 24px;
  }
}
.modal.one-time-modal-height-adjustment {
  padding: 0;
  transform: translate(calc((100vw - 592px) / 2), calc((100vh - 500px) / 2));
}
@media only screen and (max-width: 800px) {
  .modal.one-time-modal-height-adjustment {
    transform: translate(5vw, 13vh);
  }
}
.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 900;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0,0,0,0.7);
  opacity: 1;
}
.generic-modal {
  width: 100%;
}
.generic-modal .modal-txt-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.generic-modal .modal-btn-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.generic-modal .modal-btn-container > div {
  margin-left: 16px;
}
@media only screen and (max-width: 800px) {
  .generic-modal .modal-btn-container {
    flex-direction: column-reverse;
  }
  .generic-modal .modal-btn-container > div {
    width: 100%;
    margin-left: 0px;
  }
  .generic-modal .modal-btn-container > div:last-child {
    margin-bottom: 8px;
  }
}
.rdp-modal-component .modal {
  text-align: left;
  padding: 0px;
  width: auto;
  background-color: rgba(0,0,0,0);
  transform: none;
  left: calc((100vw - 1000px) / 2);
  top: calc((100vh - 700px) / 2);
}
@media only screen and (max-width: 800px) {
  .rdp-modal-component .modal {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
  }
}
.rdp-modal-component .closeBtn {
  width: 736px;
  margin-right: 0px;
  position: static;
  bottom: -40px;
}
@media only screen and (max-width: 800px) {
  .rdp-modal-component .closeBtn {
    position: fixed;
    width: 100vw;
    bottom: 0;
  }
}
.rdp-modal-component .close {
  right: 16px;
  top: 16px;
  font-size: 20px;
  position: absolute;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.1);
  padding: 7px 9px;
  border-radius: 45px;
  background-color: #fff;
}
.rdp-modal-component .close:before {
  font-family: FontAwesome;
  content: '\f00d';
  color: #2c3650;
}
.tab-selector {
  width: 600px;
  display: flex;
  margin: auto;
  border-bottom: 1px solid #dfe3df;
  border-top: 1px solid #dfe3df;
  z-index: 300;
}
@media only screen and (max-width: 800px) {
  .tab-selector {
    width: 100vw;
    background-color: #fff;
  }
}
.tab-selector > div {
  color: #70768d;
  text-align: center;
  width: 50%;
  padding: 16px 8px;
  font-family: MaisonExtendedBold, "Avenir Light", Arial, sans-serif;
}
.tab-selector > div.selected {
  color: #2c3650;
  border-bottom: 4px solid #2c3650;
}
.pairing-card .rating-card {
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  min-height: 450px;
  border: 1px solid #babab1;
  padding-bottom: 32px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .rating-card {
    width: 100%;
  }
}
.pairing-card .rating-card .header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding: 25px 25px 10px 25px;
}
.pairing-card .rating-card .header .info {
  align-self: center;
}
.pairing-card .rating-card .header .dishTypeImg {
  height: 100px;
  width: 100px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .rating-card .header .dishTypeImg {
    height: 95px;
    width: 95px;
  }
}
.pairing-card .rating-card .body {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.pairing-card .rating-card .body .static-txt {
  padding: 25px 0 0 25px;
}
.pairing-card .rating-card .body .ingredients-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px 20px 20px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .rating-card .body .ingredients-container {
    padding: 0 0 20px 0;
  }
}
.pairing-card .rating-card .body .ingredients-container .itemContainer {
  width: 47%;
  display: flex;
  align-items: center;
  padding: 10px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .rating-card .body .ingredients-container .itemContainer {
    width: 50%;
    padding-right: 0;
  }
}
.pairing-card .rating-card .ratingSection {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 100%;
  padding: 0px 16px;
}
.pairing-card .rating-card .thumbnailImg {
  max-height: 65px;
  max-width: 65px;
}
.pairing-card .order-details-card,
.pairing-card .myhungryroot-card {
  background-color: #fff;
  padding: 32px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .order-details-card,
  .pairing-card .myhungryroot-card {
    padding: 16px;
  }
}
.pairing-card .order-details-card .order-content,
.pairing-card .myhungryroot-card .order-content {
  border-top: 1px solid #dfe3df;
  padding-top: 24px;
  display: flex;
}
@media only screen and (max-width: 800px) {
  .pairing-card .order-details-card .order-content,
  .pairing-card .myhungryroot-card .order-content {
    flex-direction: column;
  }
}
.pairing-card .order-details-card .order-content .instructions-section,
.pairing-card .myhungryroot-card .order-content .instructions-section {
  width: 55%;
}
@media only screen and (max-width: 800px) {
  .pairing-card .order-details-card .order-content .instructions-section,
  .pairing-card .myhungryroot-card .order-content .instructions-section {
    width: 100%;
  }
}
.pairing-card .order-details-card .order-content .ingredients-section,
.pairing-card .myhungryroot-card .order-content .ingredients-section {
  width: 45%;
  margin: 0 32px 0 0;
}
@media only screen and (max-width: 800px) {
  .pairing-card .order-details-card .order-content .ingredients-section,
  .pairing-card .myhungryroot-card .order-content .ingredients-section {
    margin: 0 0 16px 0;
    width: 100%;
  }
}
.pairing-card .order-details-card .add-ons,
.pairing-card .myhungryroot-card .add-ons {
  padding-top: 24px;
  border-top: 1px solid #dfe3df;
}
.pairing-card .order-details-card .add-ons .hr-subtitle-md,
.pairing-card .myhungryroot-card .add-ons .hr-subtitle-md {
  color: #70768d;
  margin-left: 8px;
}
.pairing-card .order-details-card .pairing-image,
.pairing-card .myhungryroot-card .pairing-image,
.pairing-card .order-details-card .dishtype-image,
.pairing-card .myhungryroot-card .dishtype-image {
  height: 176px;
  padding: 32px 32px 1px 32px;
  margin: -32px -32px 32px -32px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .order-details-card .pairing-image,
  .pairing-card .myhungryroot-card .pairing-image,
  .pairing-card .order-details-card .dishtype-image,
  .pairing-card .myhungryroot-card .dishtype-image {
    height: 148px;
    padding: 16px;
    margin: -16px -16px 16px -16px;
    background-size: 20%;
  }
}
.pairing-card .order-details-card .dishtype-image,
.pairing-card .myhungryroot-card .dishtype-image {
  background-size: 100%;
  height: 96px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .order-details-card .dishtype-image,
  .pairing-card .myhungryroot-card .dishtype-image {
    height: 80px;
    background-size: 180%;
  }
}
.pairing-card .order-details-card .pairing-image,
.pairing-card .myhungryroot-card .pairing-image {
  background-size: 960px;
  background-position-x: -106px;
  background-position-y: -406px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .order-details-card .pairing-image,
  .pairing-card .myhungryroot-card .pairing-image {
    background-size: 140%;
    background-position-x: 48%;
    background-position-y: 92%;
  }
}
.pairing-card .customization-card {
  border: solid 1px #d5d7dc;
}
.pairing-card .customization-card .customization-card-title {
  color: #2c3650;
}
.pairing-card .customization-card .pairing-image,
.pairing-card .customization-card .main-dish-image {
  height: 164px;
  background-size: 149%;
  background-position-x: 50%;
  background-position-y: 100%;
}
@media only screen and (max-width: 800px) {
  .pairing-card .customization-card .pairing-image,
  .pairing-card .customization-card .main-dish-image {
    height: 164px;
  }
}
.pairing-card .customization-card .main-dish-image {
  background-size: 162%;
}
@media only screen and (max-width: 800px) {
  .pairing-card .customization-card-title {
    font-size: 18px;
  }
}
.pairing-card .customization-card .averageRatingContainer {
  font-size: 12px;
}
.pairing-card .customization-card .averageRatingContainer .fa-star {
  color: #2c3650;
  font-size: 12px;
  margin-right: 4px;
}
.pairing-card .customization-card .averageRatingContainer .fa-star:before {
  font-family: FontAwesome;
  content: '\f005';
  color: #000;
}
.pairing-card .customization-card .averageRatingContainer .fa-star::before {
  color: #2c3650;
  margin-right: 2px;
}
.pairing-card .customization-card .averageRatingContainer .fa-star-notEnough {
  color: #eff1ef;
  font-size: 12px;
  margin-right: 4px;
}
.pairing-card .customization-card .averageRatingContainer .fa-star-notEnough:before {
  font-family: FontAwesome;
  content: '\f005';
  color: #000;
}
.pairing-card .customization-card .averageRatingContainer .fa-star-notEnough::before {
  color: #b1bab1;
}
.pairing-card .customization-card .averageRatingContainer .numRating {
  color: #70768d;
}
.pairing-card .customization-card .averageRatingContainer .averageRating {
  margin-right: 2px;
}
.pairing-card .customization-card .averageRatingContainer .notEnoughTxt {
  color: #70768d;
}
.pairing-card .myhungryroot-card {
  width: 738px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .myhungryroot-card {
    width: 100%;
  }
}
.pairing-card .myhungryroot-card .ingredients-section {
  width: 100% !important;
  margin: 0px !important;
}
.pairing-card .myhungryroot-card .ingredients-section .ingredients-list {
  display: flex;
  flex-wrap: wrap;
}
.pairing-card .myhungryroot-card .ingredients-section .ingredients-list .itemContainer {
  width: 50%;
}
@media only screen and (max-width: 800px) {
  .pairing-card .myhungryroot-card .ingredients-section .ingredients-list .itemContainer {
    width: 100%;
  }
}
.pairing-card .header {
  display: flex;
  justify-content: space-between;
}
.pairing-card .header img {
  width: 72px;
}
.pairing-card .header .dishtype-and-infos {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}
.pairing-card .header .dishtype-and-infos .pairing-infos {
  display: flex;
  justify-content: space-between;
  color: #70768d;
  font-size: 14px;
}
@media only screen and (max-width: 800px) {
  .pairing-card .header .dishtype-and-infos .pairing-infos {
    flex-direction: column;
  }
}
.pairing-card .header .dishtype-and-infos .pairing-infos span {
  margin-right: 8px;
}
.pairing-card .header .dishtype-and-infos .pairing-infos span .time:before {
  font-family: Hungryroot2020;
  content: '≓';
  color: #70768d;
}
.pairing-card .header .dishtype-and-infos .pairing-infos span .calories:before {
  font-family: Hungryroot2020;
  content: '≗';
  color: #70768d;
}
.pairing-card .header .dishtype-and-infos .pairing-infos span .tray:before {
  font-family: Hungryroot2020;
  content: '≔';
  color: #70768d;
}
.pairing-card .header .dishtype-and-infos .pairing-infos span .time,
.pairing-card .header .dishtype-and-infos .pairing-infos span .calories,
.pairing-card .header .dishtype-and-infos .pairing-infos span .tray {
  margin-right: 4px;
  vertical-align: middle;
}
.pairing-card .header .dishtype-and-infos .pairing-infos span .order-date {
  margin: 0px 0px 0px 4px;
  font-family: MaisonNeueDemi, "Avenir Light", Arial, sans-serif;
}
.pairing-card .header .dishtype-and-infos .pairing-infos .ratingContainer {
  display: flex;
}
.pairing-card .header .dishtype-and-infos .pairing-infos .ratingContainer .fa-star-selected:before {
  font-family: FontAwesome;
  content: '\f005';
  color: #2c3650;
}
.pairing-card .header .dishtype-and-infos .chef-pick {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #388555;
}
.pairing-card .header .dishtype-and-infos .chef-pick .chef-hat {
  width: 17px;
  margin-right: 4px;
}
.pairing-card .instructions {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.pairing-card .instructions > div:first-child {
  margin-right: 4px;
}
.pairing-card .instructions .toggle {
  color: #e94d41;
}
.pairing-card .ingredients {
  width: 100%;
}
.pairing-card .ingredients .thumbnailImg {
  max-height: 65px;
  max-width: 65px;
  margin-right: 8px;
}
.pairing-card .ingredients .itemContainer {
  display: flex;
  align-items: center;
}
.pairing-card .ingredients .itemContainer.anchor_black {
  color: #000;
  text-decoration: none;
}
.pairing-card .ingredients .itemContainer .brandName {
  color: #70768d;
  text-transform: uppercase;
}
.pairing-card .ingredients .itemContainer .item-qty,
.pairing-card .ingredients .itemContainer .swap-item {
  flex-grow: 1;
  text-align: right;
  margin-left: 16px;
  font-family: MaisonNeueDemi, "Avenir Light", Arial, sans-serif;
  font-size: 12px;
  min-width: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pairing-card .ingredients .itemContainer .mul-icon {
  display: flex;
  align-items: center;
}
.pairing-card .ingredients .itemContainer .mul-icon:before {
  font-family: HungryRootIcons;
  content: 'x';
  color: #000;
}
.pairing-card .ingredients .edit-pen {
  font-size: 16px;
  padding: 10px;
}
.pairing-card .ingredients .edit-pen:before {
  font-family: Hungryroot2020;
  content: '≷';
  color: #70768d;
}
.pairing-card .pairing-rating-component {
  padding: 16px;
  background-color: #f7f8f9;
  margin-top: 24px;
  width: 100%;
}
.pairing-card .pairing-rating-component .star-rating-component {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .pairing-card .pairing-rating-component .star-rating-component {
    flex-direction: column;
    align-items: flex-start;
  }
  .pairing-card .pairing-rating-component .star-rating-component .hr-subtitle-md-bold {
    margin-bottom: 8px;
  }
}
.pairing-card .pairing-rating-component .star-rating-component .star-ratings {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .pairing-card .pairing-rating-component .star-rating-component .star-ratings {
    width: 100%;
    justify-content: space-between;
  }
}
.pairing-card .pairing-rating-component .star-rating-component .star-ratings .stars {
  display: flex;
  margin-right: 8px;
  font-size: 20px;
}
.pairing-card .pairing-rating-component .star-rating-component .star-ratings .stars .fa-star {
  cursor: pointer;
  padding-right: 4px;
}
.pairing-card .pairing-rating-component .star-rating-component .star-ratings .stars .fa-star:before {
  font-family: FontAwesome;
  content: '\f006';
  color: #70768d;
}
.pairing-card .pairing-rating-component .star-rating-component .star-ratings .stars .fa-star-selected {
  cursor: pointer;
  padding-right: 4px;
}
.pairing-card .pairing-rating-component .star-rating-component .star-ratings .stars .fa-star-selected:before {
  font-family: FontAwesome;
  content: '\f005';
  color: #2c3650;
}
.pairing-card .pairing-rating-component .star-rating-component .star-ratings .no-rating {
  cursor: pointer;
  color: #70768d;
}
.pairing-card .pairing-rating-component .star-rating-component .star-ratings .no-rating:hover {
  color: #2c3650;
}
.pairing-card .pairing-rating-component .star-rating-component .star-ratings .no-rating.selected {
  color: #2c3650;
}
.pairing-card .pairing-rating-component .pairing-feedback {
  margin-top: 16px;
}
.pairing-card .pairing-rating-component .pairing-feedback .text-field-container {
  background: #fff;
  position: relative;
  padding: 10px 0;
}
.pairing-card .pairing-rating-component .pairing-feedback .text-field-container textarea {
  border: none;
  width: 100%;
  height: 77px;
  resize: none;
}
.pairing-card .pairing-rating-component .pairing-feedback .text-field-container .submit-btn {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-family: MaisonExtendedBold, "Avenir Light", Arial, sans-serif;
  font-size: 12px;
  color: #70768d;
  cursor: pointer;
}
#feedback-modal-react-component .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
  }
}
#feedback-modal-react-component .bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-moz-keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@-o-keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@-moz-keyframes open_drawer {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@-webkit-keyframes open_drawer {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@-o-keyframes open_drawer {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes open_drawer {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@-moz-keyframes close_drawer {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -100%;
  }
}
@-webkit-keyframes close_drawer {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -100%;
  }
}
@-o-keyframes close_drawer {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -100%;
  }
}
@keyframes close_drawer {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -100%;
  }
}
@-moz-keyframes cart_icon_animation {
  0% {
    font-size: 25px;
  }
  85% {
    font-size: 30px;
  }
  100% {
    font-size: 25px;
  }
}
@-webkit-keyframes cart_icon_animation {
  0% {
    font-size: 25px;
  }
  85% {
    font-size: 30px;
  }
  100% {
    font-size: 25px;
  }
}
@-o-keyframes cart_icon_animation {
  0% {
    font-size: 25px;
  }
  85% {
    font-size: 30px;
  }
  100% {
    font-size: 25px;
  }
}
@keyframes cart_icon_animation {
  0% {
    font-size: 25px;
  }
  85% {
    font-size: 30px;
  }
  100% {
    font-size: 25px;
  }
}
@-moz-keyframes points_animation {
  0% {
    opacity: 0;
    transform: translate(0px, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes points_animation {
  0% {
    opacity: 0;
    transform: translate(0px, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@-o-keyframes points_animation {
  0% {
    opacity: 0;
    transform: translate(0px, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@keyframes points_animation {
  0% {
    opacity: 0;
    transform: translate(0px, -10px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
#feedback-modal-react-component .drawer {
  height: 624px;
  width: 40%;
  position: absolute;
  background: #fff;
  right: 0;
  padding: 32px;
  height: 100%;
  z-index: 200;
  display: none;
  padding-bottom: 72px;
}
@media only screen and (max-width: 800px) {
  #feedback-modal-react-component .drawer {
    padding: 32px 16px;
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
  }
}
#feedback-modal-react-component .drawer.visible {
  display: block;
  bottom: 0;
}
#feedback-modal-react-component .drawer.animate-show {
  animation-name: open_drawer;
  animation-duration: 0.5s;
}
#feedback-modal-react-component .drawer.hide {
  display: block;
  bottom: -100%;
  animation-name: close_drawer;
  animation-duration: 0.5s;
}
#feedback-modal-react-component .drawer .scrollable-container {
  width: 100%;
  height: 100%;
  overflow: scroll;
}
#feedback-modal-react-component .drawer .btn-container {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  padding: 16px 32px;
}
@media only screen and (max-width: 800px) {
  #feedback-modal-react-component .drawer .btn-container {
    padding: 16px 16px;
  }
}
#feedback-modal-react-component .drawer .btn-container .hr-btn-hol {
  height: 40px;
  line-height: initial;
  width: 100%;
}
#feedback-modal-react-component .drawer-overlay {
  z-index: 150;
}
@media only screen and (max-width: 800px) {
  #feedback-modal-react-component .drawer-overlay {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: #000;
    opacity: 0;
  }
}
#feedback-modal-react-component a {
  color: #0066c8;
}
#feedback-modal-react-component .hr-paragraph {
  color: #70768d;
  font-weight: 500;
}
#feedback-modal-react-component .modal {
  max-width: 450px;
  max-height: 600px;
  padding: 15px;
  transform: translate(calc((100vw - 450px) / 2), 10vh);
}
#feedback-modal-react-component .modal.feedback-modal-content {
  justify-content: flex-start;
  height: 600px;
}
#feedback-modal-react-component .modal.feedback-modal-content .hr-center-section {
  height: 100%;
  justify-content: flex-start;
}
#feedback-modal-react-component .modal.feedback-modal-content .btn-container {
  margin-top: auto;
}
@media only screen and (max-width: 800px) {
  #feedback-modal-react-component .modal {
    max-height: none;
    transform: translate(5vw, 25vh);
  }
  #feedback-modal-react-component .modal.feedback-modal-content {
    background: none;
    width: 100vw;
    height: 80vh;
    bottom: 0;
    left: 0;
    transform: none;
  }
}
#feedback-modal-react-component .last-box-icon {
  margin-top: 32px;
  height: 102px;
}
@media only screen and (max-width: 800px) {
  #feedback-modal-react-component .last-box-icon {
    height: 64px;
  }
}
#feedback-modal-react-component .close {
  cursor: pointer;
  position: absolute;
  height: 44px;
  width: 44px;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
#feedback-modal-react-component .close:before {
  font-family: FontAwesome;
  content: '\f00d';
  color: #70768d;
}
#feedback-modal-react-component .options-container {
  width: 80%;
  margin: auto;
}
@media only screen and (max-width: 800px) {
  #feedback-modal-react-component .options-container {
    margin-bottom: auto;
  }
}
#feedback-modal-react-component .options-container .selector-option {
  margin-bottom: 28px;
}
#feedback-modal-react-component .options-container .selector-option.selected::before {
  align-self: flex-start;
}
#feedback-modal-react-component .options-container .selector-option .option-note {
  color: #70768d;
}
#feedback-modal-react-component .drawer .drawer-content {
  height: 100%;
}
#feedback-modal-react-component .item-ratings-view {
  max-height: 100%;
  overflow: hidden;
}
#feedback-modal-react-component #grocery-list-component {
  overflow-y: scroll;
  height: 60vh;
  width: 100%;
  padding: 0 10% 32px;
}
@media only screen and (max-width: 800px) {
  #feedback-modal-react-component #grocery-list-component {
    width: 100%;
  }
}
#feedback-modal-react-component #grocery-list-component .sectionContainer {
  border-bottom: none;
  margin-bottom: 8px;
}
#feedback-modal-react-component #grocery-list-component .sectionContainer:first-child {
  margin-top: 0;
}
#feedback-modal-react-component #grocery-list-component .sectionContainer .periodicity-pill {
  height: 44px;
}
#feedback-modal-react-component #thank-you-component {
  height: 70%;
  width: 90%;
  margin: auto;
}
@media only screen and (max-width: 800px) {
  #feedback-modal-react-component #thank-you-component {
    padding: 72px 0 0;
  }
}
.stars-component {
  display: flex;
  font-size: 20px;
}
.stars-component .fa-star {
  cursor: pointer;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stars-component .fa-star:before {
  font-family: FontAwesome;
  content: '\f006';
  color: #70768d;
}
.stars-component .fa-star.fa-star-selected:before {
  font-family: FontAwesome;
  content: '\f005';
  color: #2c3650;
}
.product-card-simple {
  width: 100%;
  background-color: #fff;
  position: relative;
}
.product-card-simple .productCardImg {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 800px) {
  .product-card-simple .productCardImg {
    height: 130px;
  }
}
.product-card-simple .productCardImg.small {
  height: 140px;
}
.product-card-simple .pack-img {
  position: absolute;
  bottom: 2%;
  right: 2%;
  height: 50%;
}
.product-card-simple .is_new_icon {
  position: absolute;
  top: 4%;
  right: 4%;
  height: 20%;
}
.product-card-simple .info {
  padding: 16px;
}
@media only screen and (max-width: 800px) {
  .product-card-simple .info {
    padding: 8px;
  }
}
.product-card-simple .info .brand {
  color: #70768d;
  text-transform: uppercase;
}
.product-card-simple .marked-never {
  background-color: #2c3650;
}
.product-card-simple .dietary-tags {
  text-transform: uppercase;
  color: #70768d;
}
.product-card-simple .marked-never-msg {
  font-family: MaisonNeueDemi, "Avenir Light", Arial, sans-serif;
  position: absolute;
  top: 33%;
  left: 20%;
  color: #fff;
  z-index: 10;
  pointer-events: none;
}
@media only screen and (max-width: 800px) {
  .product-card-simple .marked-never-msg {
    left: 19%;
  }
}
.groceryItemContainer .grocery-item-component {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}
.groceryItemContainer .grocery-item-component .groceryItemBrandName {
  color: #70768d;
  text-transform: uppercase;
}
.groceryItemContainer .grocery-item-component .groceryItemPackagedImg {
  max-width: 94px;
  max-height: 104px;
}
.groceryItemContainer .grocery-item-component .groceryItemNameContainer {
  flex-grow: 3;
}
.groceryItemContainer .grocery-item-component .groceryItemQty {
  font-size: 12px;
  margin-left: 16px;
  width: 30px;
}
.periodicity-pill {
  display: flex;
  justify-content: space-between;
  height: 31px;
  width: 100%;
  border: 1px solid rgba(177,186,177,0.4);
  border-radius: 3px;
  margin-top: 8px;
  font-size: 10px;
  color: #b1bab1;
  text-transform: uppercase;
  border-right: transparent;
}
.periodicity-pill .periodicityBtn {
  width: 34%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border-right: 1px solid rgba(177,186,177,0.4);
  cursor: pointer;
}
.periodicity-pill .selected {
  background-color: rgba(177,186,177,0.2);
  color: #2c3650;
}
.pills-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 16px 32px 16px 0px;
}
@media only screen and (max-width: 800px) {
  .pills-container {
    margin: 16px 16px 16px 0px;
  }
}
.filter-pill {
  display: flex;
  border-radius: 15px;
  background-color: #d5d7dc;
  font-family: MaisonNeueMedium;
  cursor: pointer;
  font-size: 14px;
  padding: 4px 8px;
  margin-right: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-pill.non-interactive {
  cursor: default;
}
.filter-pill.anchor-black {
  color: #000;
  text-decoration: none;
}
@media only screen and (max-width: 800px) {
  .filter-pill {
    font-size: 12px;
  }
}
@media only screen and (max-width: 800px) {
  .filter-pill .filter-name {
    margin-top: 2px;
  }
}
.filter-pill .filter-pill-x {
  font-size: 16px;
  font-weight: 600;
}
.filter-pill .close-x:before {
  font-family: FontAwesome;
  content: '\f00d';
  color: #2c3650;
}
@media only screen and (max-width: 800px) {
  .foods-react-component {
    padding: 16px;
  }
}
.featuredPairingCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 734px;
  background-color: #fff;
}
@media only screen and (max-width: 800px) {
  .featuredPairingCard {
    width: 296px;
  }
}
.featuredPairingCard .topSection {
  display: flex;
}
@media only screen and (max-width: 800px) {
  .featuredPairingCard .topSection {
    flex-direction: column-reverse;
  }
}
.featuredPairingCard .topSection .infoSection {
  width: 50%;
  padding: 32px;
}
@media only screen and (max-width: 800px) {
  .featuredPairingCard .topSection .infoSection {
    width: 100%;
    padding: 16px;
  }
}
.featuredPairingCard .topSection .topSectionLine {
  width: 100%;
  border-bottom: 1px solid #dfe3df;
}
.featuredPairingCard .topSection .ingredients {
  min-height: 297px;
}
@media only screen and (max-width: 800px) {
  .featuredPairingCard .topSection .ingredients {
    min-height: 289px;
  }
}
.featuredPairingCard .topSection .featuredPairingImg {
  background-size: 250%;
  background-position: center bottom;
  width: 368px;
  height: auto;
}
@media only screen and (max-width: 800px) {
  .featuredPairingCard .topSection .featuredPairingImg {
    background-size: 150%;
    background-position: center bottom;
    width: 100%;
    height: 164px;
  }
}
.featuredPairingCard .seeInstructionSection {
  text-align: center;
  padding: 16px;
  border-top: 1px solid #dfe3df;
  font-size: 12px;
  text-transform: uppercase;
}
.rdp-customize {
  width: 736px;
  background: #fff;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 800px) {
  .rdp-customize {
    width: 90vw;
  }
}
.rdp-customize .header {
  margin: 0 32px 16px 32px;
  padding: 24px 0 16px 0;
  border-bottom: 1px solid #dfe3df;
}
@media only screen and (max-width: 800px) {
  .rdp-customize .header {
    margin: 0 16px 16px 16px;
  }
}
.rdp-customize .featuredQuote {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  margin: 0 32px 0px 32px;
  flex-direction: column;
  border-bottom: 1px solid #dfe3df;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .rdp-customize .featuredQuote {
    padding: 16px 0;
    margin: 0 16px 16px 16px;
    text-align: center;
  }
}
.rdp-customize .featuredQuote .quote {
  margin-bottom: 8px;
}
.rdp-customize .body-holder {
  display: flex;
  margin: 0 32px;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .rdp-customize .body-holder {
    flex-direction: column;
    margin: 0 16px;
  }
}
.rdp-customize .body-holder .ingredients,
.rdp-customize .body-holder .instructions {
  width: 45%;
  padding-top: 16px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 800px) {
  .rdp-customize .body-holder .ingredients,
  .rdp-customize .body-holder .instructions {
    padding-top: 16px;
    width: 100%;
  }
}
.rdp-customize .body-holder .ingredients .itemContainer,
.rdp-customize .body-holder .instructions .itemContainer {
  display: flex;
  align-items: center;
}
.rdp-customize .body-holder .ingredients .thumbnailImg,
.rdp-customize .body-holder .instructions .thumbnailImg {
  height: 56px;
  width: 56px;
}
.rdp-customize img {
  width: 100%;
}
.rdp-customize {
  position: relative;
  display: flex;
  width: 1000px;
  overflow: hidden;
}
.rdp-customize .img-container {
  background-size: cover;
  background-position: center;
  width: 60%;
}
.rdp-customize .info-container {
  width: 40%;
  height: 624px;
  overflow: scroll;
}
.rdp-customize .body-holder {
  display: flex;
  flex-direction: column;
  padding-bottom: 72px;
}
.rdp-customize .body-holder .ingredients,
.rdp-customize .body-holder .instructions {
  width: 100%;
}
.rdp-customize .closeBtn {
  width: 1000px;
}
.rdp-customize .add-remove-btn-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  padding: 16px 32px;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0), #fff 50%);
}
@media only screen and (max-width: 800px) {
  .rdp-customize .add-remove-btn-container {
    width: 100%;
    padding: 16px 16px;
  }
}
.rdp-customize .add-remove-btn-container .add-only-button,
.rdp-customize .add-remove-btn-container .update-only-button {
  background-color: #2c3650;
  color: #fff;
  border-color: #fff;
}
.rdp-customize .add-remove-btn-container .add-only-button .points-container,
.rdp-customize .add-remove-btn-container .update-only-button .points-container {
  border-left: 1px solid #fff;
}
.rdp-customize .add-remove-btn-container .add-only-button .points-container .currency-icon,
.rdp-customize .add-remove-btn-container .update-only-button .points-container .currency-icon {
  width: 15px;
  margin-left: 5px;
}
.rdp-customize .add-remove-btn-container .add-only-button .add-text.sku,
.rdp-customize .add-remove-btn-container .update-only-button .add-text.sku {
  width: 195px;
}
.rdp-customize .btm-liner-gradient {
  position: absolute;
  height: 70px;
  width: 40%;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0), #fff 50%);
}
@media only screen and (max-width: 800px) {
  .rdp-customize .btm-liner-gradient {
    height: 50px;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .rdp-customize {
    position: static;
    display: block;
    width: 100vw;
    overflow: scroll;
  }
  .rdp-customize .img-container {
    width: 100vw;
    height: 90vw;
    background-size: cover;
    background-position-y: 100%;
  }
  .rdp-customize .img-container.dishtype-img {
    background-position-y: 90%;
  }
  .rdp-customize .info-container {
    width: 100%;
    overflow: initial;
    padding-bottom: 16px;
  }
}
.pdp-modal .header {
  margin-bottom: 0;
}
.pdp-modal .header .brand-name {
  text-transform: uppercase;
  color: #70768d;
}
.pdp-modal .header .pills-container {
  margin-bottom: 0;
}
.pdp-modal .header .pills-container .filter-pill {
  margin-right: 4px;
  padding: 2px 6px;
}
.pdp-modal .product-details-text {
  color: #70768d;
}
.pdp-modal .product-details-text p {
  color: #70768d !important;
}
.pdp-modal .dish-type-container {
  padding-bottom: 24px;
}
.pdp-modal .dish-type-container .dish-type {
  min-height: 98px;
  width: 80px;
  float: left;
  text-align: center;
  margin-top: 8px;
}
@media only screen and (max-width: 800px) {
  .pdp-modal .dish-type-container .dish-type {
    min-height: 72px;
    width: 72px;
  }
}
.pdp-modal .dish-type-container .dish-type .dish-type-img {
  width: 54px;
  height: 54px;
}
@media only screen and (max-width: 800px) {
  .pdp-modal .dish-type-container .dish-type .dish-type-img {
    width: 50px;
    height: 50px;
  }
}
.pdp-modal .dish-type-container .dish-type.anchor-black {
  color: #000;
  text-decoration: none;
}
.pdp-modal .hr-line-separator {
  border-color: #d5d7dc;
}
.pdp-modal .hr-paragraph-bold {
  margin-top: 15px;
  display: inline-block;
}
@media only screen and (max-width: 800px) {
  .pdp-modal .hr-paragraph-bold {
    margin-top: 5px;
    font-size: 14px;
  }
}
.share-container {
  padding-top: 14px;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 800px) {
  .share-container {
    flex-direction: column;
    padding: 0;
    height: auto;
  }
}
.share-container .share-link-container {
  width: 100%;
  height: 48px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  background: #f7f8f9;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .share-container .share-link-container {
    width: 100%;
    margin: 0;
  }
}
.share-container .share-link-container .link-text {
  width: 100%;
}
.share-container .share-link-container .link-text .share-link {
  font-size: 14px;
  padding: 0 16px;
  border: none;
  width: 100%;
  opacity: 0.5;
  color: #70768d;
  background: 0;
}
.share-container .share-link-container .copy-button {
  cursor: pointer;
  font-family: MaisonExtendedBold, "Avenir Light", Arial, sans-serif;
  font-size: 12px;
  margin-right: 24px;
  display: flex;
  align-items: center;
}
#grocery-list-component {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  #grocery-list-component {
    padding: 16px;
  }
}
#grocery-list-component .groceryItemHeader {
  text-transform: uppercase;
}
#grocery-list-component .cookieDoughPromo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#grocery-list-component .cookieDoughPromo .cookie-reminder-img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
#grocery-list-component .sectionContainer {
  border-bottom: 1px solid #dfe3df;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
#grocery-list-component .sectionContainer:first-child {
  margin-top: 40px;
}
.slides-modal .modal {
  width: 520px;
  height: 654px;
  transform: translate(calc((100vw - 520px) / 2), calc((100vh - 678px) / 2));
  justify-content: flex-end;
}
@media only screen and (max-width: 800px) {
  .slides-modal .modal {
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    transform: translate(0, 0);
  }
}
.slides-modal .slides-modal-body {
  text-align: left;
  min-height: 678px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 520px;
}
@media only screen and (max-width: 800px) {
  .slides-modal .slides-modal-body {
    min-height: auto;
    width: auto;
    display: block;
  }
}
.slides-modal .slides-modal-body .slides-modal-lower-half {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 48px 48px;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .slides-modal .slides-modal-body .slides-modal-lower-half {
    justify-content: center;
    padding: 0 24px 24px 24px;
  }
}
.slides-modal .slides-modal-body .modal-img {
  width: 324px;
  margin: auto;
  margin: 24px auto;
}
@media only screen and (max-width: 800px) {
  .slides-modal .slides-modal-body .modal-img {
    margin: auto;
    width: 75vw;
    position: absolute;
    top: 12vh;
    left: 12.3vw;
    z-index: -1;
  }
}
.slides-modal .slides-modal-body .title {
  font-family: GTSectra, "Times New Roman", serif;
  font-weight: 700;
  font-size: 32px;
}
.slides-modal .slides-modal-body .hr-subtitle-lg {
  margin-bottom: 32px;
}
.slides-modal .slides-modal-body .nextContainer {
  align-self: flex-end;
  display: flex;
  align-items: center;
  font-family: MaisonNeueMedium;
  cursor: pointer;
}
.slides-modal .slides-modal-body .nextContainer .next-icon:before {
  font-family: Hungryroot2020;
  content: '≩';
  color: #2c3650;
}
.slides-modal .slides-modal-body .nextContainer .next-icon:before {
  font-size: 12px;
}
.slides-modal .slides-modal-body .dots-container {
  width: 64px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slides-modal .slides-modal-body .dots-container .dot {
  width: 8px;
  height: 8px;
  background-color: #d5d7dc;
  border-radius: 4px;
  margin-bottom: 32px;
}
.slides-modal .slides-modal-body .dots-container .dot.full {
  background-color: #2c3650;
}
.slides-modal .slides-modal-body .hr-logo {
  width: 84px;
  position: absolute;
  top: 0;
  transform: translate(calc(50vw - 42px), 10px);
  z-index: 100;
}
.educational-modal .educational-modal-body .educational-modal-lower-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px 32px 48px;
}
@media only screen and (max-width: 800px) {
  .educational-modal .educational-modal-body .educational-modal-lower-half {
    padding: 0 24px 24px 24px;
  }
}
.educational-modal .educational-modal-body .modal-img {
  width: 100%;
}
.educational-modal .educational-modal-body .title {
  font-family: GTSectra, "Times New Roman", serif;
  font-size: 24px;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .educational-modal .educational-modal-body .title {
    font-size: 20px;
  }
}
.educational-modal .educational-modal-body .subtext {
  text-align: center;
  color: #70768d;
  margin-bottom: 40px;
}
@media only screen and (max-width: 800px) {
  .educational-modal .educational-modal-body .subtext {
    margin-bottom: 60px;
  }
}
.educational-modal .educational-modal-body .nextContainer {
  align-self: flex-end;
  display: flex;
  align-items: center;
  font-family: MaisonNeueMedium;
  cursor: pointer;
}
.educational-modal .educational-modal-body .nextContainer .next-icon:before {
  font-family: Hungryroot2020;
  content: '≩';
  color: #2c3650;
}
.educational-modal .educational-modal-body .nextContainer .next-icon:before {
  font-size: 12px;
}
.exit-intent-modal {
  width: 680px;
  height: 522px;
  background-image: url("/public/img/homepage/exit_intent_desktop.jpg");
  background-size: cover;
  background-position: center;
  transform: translate(calc((100vw - 680px) / 2), calc((100vh - 522px) / 2));
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .exit-intent-modal {
    background-image: url("/public/img/homepage/exit_intent_mobile.png");
    width: 100vw;
    height: 100vh;
    transform: translate(0, 0);
    padding: 16px;
  }
}
.exit-intent-modal .modal-content {
  width: 432px;
  background-color: #fff;
  padding: 40px;
}
@media only screen and (max-width: 800px) {
  .exit-intent-modal .modal-content {
    width: 100%;
    padding: 24px;
  }
}
.exit-intent-modal .modal-content .subhead {
  color: #70768d;
}
.exit-intent-modal .modal-content .close {
  right: 16px;
  top: 16px;
  font-size: 20px;
  position: absolute;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.1);
  padding: 7px 9px;
  border-radius: 45px;
  background-color: #fff;
}
.exit-intent-modal .modal-content .close:before {
  font-family: FontAwesome;
  content: '\f00d';
  color: #2c3650;
}
.exit-intent-modal .modal-content .products-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.exit-intent-modal .modal-content .products-container .cyo-product-container {
  text-align: left;
  position: relative;
  width: 31%;
}
.exit-intent-modal .modal-content .products-container .cyo-product-container .checkbox-selector {
  position: absolute;
  top: 10px;
  right: 5px;
  width: initial;
}
.exit-intent-modal .modal-content .products-container .cyo-product-container .product-card-simple .info {
  padding: 8px 0px;
}
.exit-intent-modal .modal-content .products-container .cyo-product-container .product-card-simple .info .hr-paragraph-bold {
  font-size: 14px;
  letter-spacing: 0.18px;
}
.exit-intent-modal .modal-content .products-container .cyo-product-container.selected .productCardImg {
  outline: 2px solid #2c3650;
}
.exit-intent-modal .modal-content .products-container .cyo-product-container .mobile-product-card {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid #d5d7dc;
  border-radius: 5px;
}
.exit-intent-modal .modal-content .products-container .cyo-product-container .mobile-product-card .hr-subtitle-sm {
  color: #70768d;
  text-transform: uppercase;
}
.exit-intent-modal .modal-content .products-container .cyo-product-container .mobile-product-card.selected {
  border-color: #2c3650;
}
.exit-intent-modal .modal-content .products-container .cyo-product-container .mobile-product-card img {
  height: 56px;
  padding-right: 8px;
}
.exit-intent-modal .modal-content.var-3 .forty-off {
  font-size: 72px;
  font-family: MaisonNeueDemi, "Avenir Light", Arial, sans-serif;
}
.exit-intent-modal .modal-content.var-2 {
  width: 520px;
}
@media only screen and (max-width: 800px) {
  .exit-intent-modal .modal-content.var-2 {
    width: 100%;
  }
  .exit-intent-modal .modal-content.var-2 .products-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .exit-intent-modal .modal-content.var-2 .products-container .cyo-product-container {
    width: 100%;
    height: 64px;
    margin-bottom: 8px;
  }
  .exit-intent-modal .modal-content.var-2 .products-container .cyo-product-container:last-child {
    margin-bottom: 0;
  }
}
.exit-intent-modal.var-2 {
  height: 648px;
  transform: translate(calc((100vw - 680px) / 2), calc((100vh - 648px) / 2));
}
@media only screen and (max-width: 800px) {
  .exit-intent-modal.var-2 {
    height: 100vh;
    transform: translate(0, 0);
  }
}
.four-servings .pairing-card .ingredients .thumbnailImg {
  max-width: 40px;
  max-height: 40px;
}
.four-servings .pairing-card .ingredients .itemContainer {
  margin-bottom: 8px;
}
.four-servings .pairing-card .ingredients .ingredient-name {
  font-size: 12px;
}
.four-servings .pairing-card .ingredients .brandName {
  font-size: 10px;
}
.four-servings .pairing-card.rdp .ingredients .thumbnailImg,
.four-servings .pairing-card.cart-recipe-card .ingredients .thumbnailImg {
  max-width: 65px;
  max-height: 65px;
}
.four-servings .pairing-card.rdp .ingredients .ingredient-name,
.four-servings .pairing-card.cart-recipe-card .ingredients .ingredient-name {
  font-size: 14px;
}
.four-servings .pairing-card.rdp .ingredients .brandName,
.four-servings .pairing-card.cart-recipe-card .ingredients .brandName {
  font-size: 12px;
}
.collapsible-form {
  width: 736px;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
  min-height: 122px;
}
@media only screen and (max-width: 800px) {
  .collapsible-form {
    min-height: 80px;
    width: 90%;
  }
}
.collapsible-form .top-section {
  display: flex;
}
.collapsible-form .form-icon {
  display: flex;
  align-items: center;
}
.collapsible-form .form-icon > img {
  padding: 16px;
  width: 150px;
}
@media only screen and (max-width: 800px) {
  .collapsible-form .form-icon > img {
    width: 80px;
    padding: 8px;
    margin-right: 8px;
  }
}
.collapsible-form .form-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 24px;
  min-height: 150px;
  padding-right: 16px;
}
.collapsible-form .form-summary:focus {
  outline: none;
}
@media only screen and (max-width: 800px) {
  .collapsible-form .form-summary {
    width: 80%;
    min-height: auto;
    padding: 16px 16px 16px 0;
    margin-left: 0px;
  }
}
.collapsible-form .form-summary .form-title {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .collapsible-form .form-summary .form-title {
    margin-bottom: 8px;
  }
}
.collapsible-form .form-summary .form-title .title {
  display: inline;
  margin-bottom: 0;
  font-family: MaisonNeueDemi, "Avenir Light", Arial, sans-serif;
}
.collapsible-form .form-summary .form-title .edit-button {
  position: absolute;
  align-self: flex-end;
  color: #2c3650;
  font-size: 20px;
  font-family: MaisonExtendedBold, "Avenir Light", Arial, sans-serif;
  top: 0px;
  right: 5px;
  padding: 10px;
}
.collapsible-form .form-summary .form-title .edit-button:focus {
  outline: none;
}
.collapsible-form .form-content {
  position: relative;
  border-top: 0.5px solid #dfe3df;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 32px;
  margin: auto;
}
@media only screen and (max-width: 800px) {
  .collapsible-form .form-content {
    width: 100%;
    padding: 16px;
    justify-content: space-between;
  }
}
#react-height-button a {
  width: 300px;
}
@media only screen and (max-width: 800px) {
  #react-height-button a {
    width: 100%;
  }
}
#react-height-button .cta-btn {
  width: 300px;
}
@media only screen and (max-width: 800px) {
  #react-height-button .cta-btn {
    width: 100%;
  }
}
#react-height-button .cta-wrapper {
  height: 123px;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 16px 31px;
  z-index: calc(layer_modal-1);
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.6) 19%, #fff 34%);
}
.g-login-container {
  position: relative;
  width: 100%;
}
.g-login-container .g-signin22 {
  width: 250px;
  cursor: pointer;
}
.g-login-container .loading-msg {
  display: none;
}
.g-login-container .loading-msg:not(.hidden) {
  position: absolute;
  width: 250px;
  top: 0;
  background-color: rgba(255,255,255,0.9);
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 16%;
  font-size: 14px;
}
.hr-faq-container {
  width: 593px;
  margin: auto;
}
@media only screen and (max-width: 800px) {
  .hr-faq-container {
    width: 100%;
  }
}
.hr-faq:first-child {
  border-top: 1px solid #2c3650;
}
.hr-faq {
  border-bottom: 1px solid #2c3650;
  padding: 15px 0 5px 0;
  width: 100%;
  position: relative;
  font-size: 16px;
}
@media only screen and (max-width: 800px) {
  .hr-faq {
    font-size: 13px;
  }
}
.hr-faq .hr-faq-header {
  display: flex;
  justify-content: space-between;
  font-family: MaisonNeueDemi, "Avenir Light", Arial, sans-serif;
}
.hr-faq .hr-faq-header .hr-faq-minus,
.hr-faq .hr-faq-header .hr-faq-plus {
  padding: 10px 0px 12px 90%;
  font-size: 20px;
  position: absolute;
  right: 0px;
  top: 0px;
}
.hr-faq .hr-faq-content {
  font-family: MaisonNeueBook, "Avenir Light", Arial, sans-serif;
  margin-top: 10px;
  max-height: 0px;
  overflow: hidden;
  text-align: left;
}
.breadcrumb-component {
  text-transform: none;
  margin: auto;
  font-size: 14px;
}
.breadcrumb-component li {
  margin: 0 4px;
}
.breadcrumb-component li:first-child {
  margin-left: 0;
}
.breadcrumb-component li:last-child {
  margin-right: 0;
}
.breadcrumb-component li.disabled {
  color: #70768d;
}
.breadcrumb-component li a {
  color: #0066c8;
}
.breadcrumb-component .fa-icon-caret-right {
  font-size: 10px;
}
.breadcrumb-component .fa-icon-caret-right:before {
  font-family: FontAwesome;
  content: '\f054';
  color: #000;
}
.breadcrumb-component .fa-icon-caret-right.disabled::before {
  color: #70768d;
}
.input-component {
  border: 1px solid #d5d7dc !important;
  border-radius: 3px;
  padding-left: 8px !important;
  background-clip: padding-box;
  height: 40px;
  width: 100%;
}
.input-component:focus {
  outline: none;
  border: 1px solid #2c3650 !important;
}
.input-component +.input-error-message-component {
  text-align: left;
}
.input-component::placeholder {
  color: #70768d;
}
.input-error-message-component {
  color: #e94d41;
  margin-top: 4px;
}
.pairing-img-component {
  display: grid;
  max-height: 624px;
}
.pairing-img-component .pairing-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.pairing-img-component.customization-2,
.pairing-img-component.customization-3,
.pairing-img-component.customization-4 {
  grid-gap: 1px;
  height: 164px;
}
.pairing-img-component.customization-2,
.pairing-img-component.customization-4 {
  grid-template-columns: repeat(2, 1fr);
}
.pairing-img-component.customization-2 .pairing-img,
.pairing-img-component.customization-4 .pairing-img {
  height: 100%;
}
@media only screen and (max-width: 800px) {
  .pairing-img-component.customization-2,
  .pairing-img-component.customization-4 {
    height: 40vw;
  }
}
.pairing-img-component.customization-3 {
  grid-template-columns: repeat(3, 1fr);
}
.pairing-img-component.customization-3 .pairing-img {
  height: 100%;
}
.pairing-img-component.customization-3 .pairing-img:first-child {
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 3;
  grid-row-end: 3;
}
@media only screen and (max-width: 800px) {
  .pairing-img-component.customization-3 {
    height: 40vw;
  }
}
.pairing-img-component.order-details-2,
.pairing-img-component.order-details-3,
.pairing-img-component.order-details-4,
.pairing-img-component.order-details-5,
.pairing-img-component.order-details-6 {
  margin: -32px -32px 32px -32px;
  height: 176px;
  grid-gap: 1px;
}
@media only screen and (max-width: 800px) {
  .pairing-img-component.order-details-2,
  .pairing-img-component.order-details-3,
  .pairing-img-component.order-details-4,
  .pairing-img-component.order-details-5,
  .pairing-img-component.order-details-6 {
    margin: -16px -16px 16px -16px;
    height: 45vw;
  }
}
.pairing-img-component.order-details-2 {
  grid-template-columns: repeat(2, 1fr);
}
.pairing-img-component.order-details-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 800px) {
  .pairing-img-component.order-details-3 .pairing-img:first-child {
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 3;
    grid-row-end: 3;
  }
}
.pairing-img-component.order-details-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 800px) {
  .pairing-img-component.order-details-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pairing-img-component.order-details-5 {
  grid-template-columns: repeat(4, 1fr);
}
.pairing-img-component.order-details-5 .pairing-img:first-child {
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 3;
  grid-row-end: 3;
}
.pairing-img-component.order-details-6 {
  grid-template-columns: repeat(3, 1fr);
}
.pairing-img-component.rdp-2,
.pairing-img-component.rdp-3,
.pairing-img-component.rdp-4,
.pairing-img-component.rdp-5,
.pairing-img-component.rdp-6 {
  width: 600px;
  grid-gap: 2px;
}
@media only screen and (max-width: 800px) {
  .pairing-img-component.rdp-2,
  .pairing-img-component.rdp-3,
  .pairing-img-component.rdp-4,
  .pairing-img-component.rdp-5,
  .pairing-img-component.rdp-6 {
    grid-gap: 1px;
    width: 100vw;
    height: 100vw;
  }
}
.pairing-img-component.rdp-2 {
  grid-template-columns: repeat(1, 1fr);
}
.pairing-img-component.rdp-3,
.pairing-img-component.rdp-5 {
  grid-template-columns: repeat(2, 1fr);
}
.pairing-img-component.rdp-3 .pairing-img:first-child,
.pairing-img-component.rdp-5 .pairing-img:first-child {
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 3;
  grid-row-end: 3;
}
.pairing-img-component.rdp-4,
.pairing-img-component.rdp-6 {
  grid-template-columns: repeat(2, 1fr);
}
#upcoming-app .body-container {
  display: flex;
  justify-content: center;
}
.cyo-selector {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 800px) {
  .cyo-selector {
    flex-direction: column;
  }
}
.cyo-selector .cyo-product-container {
  text-align: left;
  position: relative;
  width: 31%;
}
@media only screen and (max-width: 800px) {
  .cyo-selector .cyo-product-container {
    width: 100%;
    margin-bottom: 8px;
  }
}
.cyo-selector .cyo-product-container .checkbox-selector {
  position: absolute;
  top: 10px;
  right: 5px;
  width: initial;
}
.cyo-selector .cyo-product-container .product-card-simple .info {
  padding: 8px 0px;
}
.cyo-selector .cyo-product-container .product-card-simple .info .hr-paragraph-bold {
  font-size: 14px;
  letter-spacing: 0.18px;
}
.cyo-selector .cyo-product-container.selected .productCardImg {
  outline: 2px solid #2c3650;
}
.cyo-selector .cyo-product-container .mobile-product-card {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid #d5d7dc;
  border-radius: 5px;
}
.cyo-selector .cyo-product-container .mobile-product-card .hr-subtitle-sm {
  color: #70768d;
  text-transform: uppercase;
}
.cyo-selector .cyo-product-container .mobile-product-card.selected {
  border-color: #2c3650;
}
.cyo-selector .cyo-product-container .mobile-product-card img {
  height: 56px;
  padding-right: 8px;
}
.order-list-group {
  display: flex;
  flex-direction: column;
  width: 370px;
  min-height: 265px;
  max-height: 265px;
  margin: 0 32px 0 0;
  padding: 22px 16px 0;
  box-shadow: 0 2px 7px -5px rgba(0,0,0,0.5);
  background-color: #fff;
}
@media only screen and (max-width: 800px) {
  .order-list-group {
    margin: 0 0 16px 0;
    padding: 22px 16px 16px;
    max-height: 216px;
    min-height: 150px;
  }
}
.order-list-group .header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-list-group .on-hold-section,
.order-list-group .cancelled-section {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.order-list-group .on-hold-section .hr-subtitle-md,
.order-list-group .cancelled-section .hr-subtitle-md {
  color: #70768d;
}
.order-list-group .on-hold-section .hr-btn-blue,
.order-list-group .cancelled-section .hr-btn-blue {
  margin-top: 24px;
}
@media only screen and (max-width: 800px) {
  .order-list-group .on-hold-section .hr-btn-blue,
  .order-list-group .cancelled-section .hr-btn-blue {
    margin-top: 16px;
  }
}
.order-list-group .cancelled-section {
  align-items: center;
}
.order-list-group .cancelled-section .subtext {
  width: 80%;
  text-align: center;
}
.order-list-group .cancelled-section .hr-btn-blue {
  width: 100%;
  margin-top: 16px;
}
@media only screen and (max-width: 800px) {
  .order-list-group .header-section.hr-plr-16 {
    padding: 0 8px;
  }
}
.order-list-group .icon {
  height: 56px;
}
@media only screen and (max-width: 800px) {
  .order-list-group .icon {
    height: 48px;
  }
}
.order-list-element {
  width: 100%;
  height: 72px;
  margin: 0 0 8px 0;
  padding: 15px 16px;
  border: 1px solid #d5d7dc;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  .order-list-element {
    height: 48px;
    padding: 6px 8px;
  }
}
.order-list-element .order-list-elemnent-icon {
  height: 24px;
}
.order-list-element .order-list-elemnent-icon.calendar {
  max-width: 16px;
}
.order-list-element .edit-by-txt {
  color: #70768d;
}
.order-list-element.skipped {
  color: #70768d;
  border-color: #f6f3ee;
}
.order-list-element .skip-sky {
  color: #0066c8 !important;
}
.order-list-element .tiny-padding-btm {
  padding-bottom: 2px;
}
.order-list-element:last-child {
  margin: 0;
}
.rescheduler-modal {
  width: 450px;
  transform: translate(calc((100vw - 450px) / 2), calc((100vh - 500px) / 2));
  padding: 40px 40px;
}
@media only screen and (max-width: 800px) {
  .rescheduler-modal {
    width: 90vw;
    transform: translate(calc((100vw - 90vw) / 2), calc((100vh - 500px) / 2));
    padding: 24px 24px;
  }
}
.rescheduler-modal .hr-subtitle-md {
  color: #70768d;
}
.rescheduler-modal .close {
  right: 16px;
  top: 16px;
  font-size: 20px;
  position: absolute;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.1);
  padding: 7px 9px;
  border-radius: 45px;
  background-color: #fff;
}
.rescheduler-modal .close:before {
  font-family: FontAwesome;
  content: '\f00d';
  color: #2c3650;
}
.rescheduler-modal .radio-selector {
  margin-bottom: 0px;
  padding: 8px 0;
}
.rescheduler-modal .radio-selector::before {
  margin-left: 0px;
  margin-right: 8px;
}
.tiny-margin-btm {
  margin-bottom: 4px;
}
.spicy-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spicy-selector .spicy-tag-infos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.spicy-selector .spicy-tag-infos .spicy-tag-thumbnail {
  width: 90px;
}
.spicy-selector .spicy-tag-infos .hr-subtitle-sm {
  color: #70768d;
}
.spicy-selector .rc-slider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spicy-selector .rc-slider-container .rc-slider {
  width: 560px;
}
@media only screen and (max-width: 800px) {
  .spicy-selector .rc-slider-container .rc-slider {
    width: 90%;
  }
}
.spicy-selector .rc-slider-container .rc-slider-tooltip-arrow {
  border-top-color: #2c3650;
}
.spicy-selector .rc-slider-container .rc-slider-tooltip-inner {
  background-color: #2c3650;
  font-family: MaisonNeueDemi, "Avenir Light", Arial, sans-serif;
  font-size: 14px;
  border-radius: 3px;
}
.spicy-selector .rc-slider-container .rc-slider-dot {
  display: none;
}
.spicy-selector .rc-slider-container .label {
  color: #2c3650;
}
.spicy-selector .rc-slider-container .rc-slider-mark {
  margin-top: 12px;
  left: 10px;
  right: 17px;
  width: 95%;
}
@media only screen and (max-width: 800px) {
  .spicy-selector .rc-slider-container .rc-slider-mark {
    width: 92%;
  }
}
.spicy-selector .rc-slider-container .rc-slider-handle {
  border-color: #2c3650;
  margin-top: -10px;
  background-color: #fff;
  height: 32px;
  width: 32px;
}
@media only screen and (max-width: 800px) {
  .spicy-selector .rc-slider-container .rc-slider-handle {
    outline-color: transparent;
    outline-width: 12px;
  }
}
